mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
(cherry picked from commit bb444ad59a7a61ab1cab46eacda1eecf917848fc) GitOrigin-RevId: 188b265d02d446e2f77ba699b2aa8f0c57064a09
126 lines
3.5 KiB
Python
126 lines
3.5 KiB
Python
from _pydevd_bundle import pydevd_constants
|
|
|
|
IS_PY3K = pydevd_constants.IS_PY3K
|
|
|
|
|
|
class IORedirector:
|
|
'''
|
|
This class works to wrap a stream (stdout/stderr) with an additional redirect.
|
|
'''
|
|
|
|
def __init__(self, original, new_redirect, wrap_buffer=False):
|
|
'''
|
|
:param stream original:
|
|
The stream to be wrapped (usually stdout/stderr, but could be None).
|
|
|
|
:param stream new_redirect:
|
|
Usually IOBuf (below).
|
|
|
|
:param bool wrap_buffer:
|
|
Whether to create a buffer attribute (needed to mimick python 3 s
|
|
tdout/stderr which has a buffer to write binary data).
|
|
'''
|
|
self._redirect_to = (original, new_redirect)
|
|
if wrap_buffer and hasattr(original, 'buffer'):
|
|
self.buffer = IORedirector(original.buffer, new_redirect.buffer, False)
|
|
|
|
def write(self, s):
|
|
# Note that writing to the original stream may fail for some reasons
|
|
# (such as trying to write something that's not a string or having it closed).
|
|
for r in self._redirect_to:
|
|
if hasattr(r, 'write'):
|
|
r.write(s)
|
|
|
|
def isatty(self):
|
|
for r in self._redirect_to:
|
|
if hasattr(r, 'isatty'):
|
|
return r.isatty()
|
|
return False
|
|
|
|
def flush(self):
|
|
for r in self._redirect_to:
|
|
if hasattr(r, 'flush'):
|
|
r.flush()
|
|
|
|
def __getattr__(self, name):
|
|
for r in self._redirect_to:
|
|
if hasattr(r, name):
|
|
return r.__getattribute__(name)
|
|
raise AttributeError(name)
|
|
|
|
|
|
class IOBuf:
|
|
'''This class works as a replacement for stdio and stderr.
|
|
It is a buffer and when its contents are requested, it will erase what
|
|
it has so far so that the next return will not return the same contents again.
|
|
'''
|
|
def __init__(self):
|
|
self.buflist = []
|
|
import os
|
|
self.encoding = os.environ.get('PYTHONIOENCODING', 'utf-8')
|
|
|
|
def getvalue(self):
|
|
b = self.buflist
|
|
self.buflist = [] # clear it
|
|
return ''.join(b) # bytes on py2, str on py3.
|
|
|
|
def write(self, s):
|
|
if not IS_PY3K:
|
|
if isinstance(s, unicode):
|
|
# can't use 'errors' as kwargs in py 2.6
|
|
s = s.encode(self.encoding, 'replace')
|
|
else:
|
|
if isinstance(s, bytes):
|
|
s = s.decode(self.encoding, errors='replace')
|
|
self.buflist.append(s)
|
|
|
|
def isatty(self):
|
|
return False
|
|
|
|
def flush(self):
|
|
pass
|
|
|
|
def empty(self):
|
|
return len(self.buflist) == 0
|
|
|
|
|
|
class _RedirectionsHolder:
|
|
_stack_stdout = []
|
|
_stack_stderr = []
|
|
|
|
|
|
def start_redirect(keep_original_redirection=False, std='stdout'):
|
|
'''
|
|
@param std: 'stdout', 'stderr', or 'both'
|
|
'''
|
|
import sys
|
|
buf = IOBuf()
|
|
|
|
if std == 'both':
|
|
config_stds = ['stdout', 'stderr']
|
|
else:
|
|
config_stds = [std]
|
|
|
|
for std in config_stds:
|
|
original = getattr(sys, std)
|
|
stack = getattr(_RedirectionsHolder, '_stack_%s' % std)
|
|
stack.append(original)
|
|
|
|
if keep_original_redirection:
|
|
setattr(sys, std, IORedirector(getattr(sys, std), buf))
|
|
else:
|
|
setattr(sys, std, buf)
|
|
return buf
|
|
|
|
|
|
def end_redirect(std='stdout'):
|
|
import sys
|
|
if std == 'both':
|
|
config_stds = ['stdout', 'stderr']
|
|
else:
|
|
config_stds = [std]
|
|
for std in config_stds:
|
|
stack = getattr(_RedirectionsHolder, '_stack_%s' % std)
|
|
setattr(sys, std, stack.pop())
|
|
|