1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""
A library to provide automatic paging for console output.
By Zane Bitter.
"""
import codecs
import contextlib
import enum
import io
import os
import signal
import subprocess
import sys
import types
import typing
from typing import Any, Optional, Type, Dict, TextIO
from autopage import command
__all__ = ['AutoPager', 'line_buffer_from_input']
class ErrorStrategy(enum.Enum):
"""
The strategy for dealing with unicode errors when convering text to bytes.
"""
STRICT = 'strict'
IGNORE = 'ignore'
REPLACE = 'replace'
BACKSLASH_REPLACE = 'backslashreplace'
XML_CHARREF_REPLACE = 'xmlcharrefreplace'
NAME_REPLACE = 'namereplace'
class AutoPager:
"""
A context manager that launches a pager for the output if appropriate.
If the output stream is not to the console (i.e. it is piped or
redirected), no pager will be launched.
"""
def __init__(self,
output_stream: Optional[TextIO] = None, *,
pager_command: command.CommandType = command.DefaultPager(),
allow_color: bool = True,
line_buffering: Optional[bool] = None,
reset_on_exit: bool = False,
errors: Optional[ErrorStrategy] = None):
self._use_stdout = output_stream is None or output_stream is sys.stdout
self._out = sys.stdout if output_stream is None else output_stream
self._tty = (not self._out.closed) and self._out.isatty()
self._command = command.get_pager_command(pager_command)
self._config = command.PagerConfig(
color=allow_color,
line_buffering_requested=bool(line_buffering),
reset_terminal=reset_on_exit,
)
self._set_line_buffering = line_buffering
self._set_errors = (ErrorStrategy(errors) if errors is not None
else None)
self._pager: Optional[subprocess.Popen] = None
self._exit_code: typing.Union[int, BaseException] = 0
def to_terminal(self) -> bool:
"""Return whether the output stream is a terminal."""
return self._tty
def __enter__(self) -> TextIO:
# Only invoke the pager if the output is going to a tty; if it is
# being sent to a file or pipe then we don't want the pager involved
if self.to_terminal() and self._command.command() != ['cat']:
try:
return self._paged_stream()
except OSError:
pass
self._reconfigure_output_stream()
return self._out
def _line_buffering(self) -> bool:
if self._set_line_buffering is None:
return getattr(self._out, 'line_buffering', self._tty)
return self._set_line_buffering
def _encoding(self) -> str:
dflt = 'utf-8' if getattr(sys.flags, 'utf8_mode', False) else 'ascii'
encoding = getattr(self._out, 'encoding', dflt)
try:
return codecs.lookup(encoding).name
except LookupError:
return dflt
def _errors(self) -> str:
if self._set_errors is None:
return getattr(self._out, 'errors', ErrorStrategy.STRICT.value)
return self._set_errors.value
def _reconfigure_output_stream(self) -> None:
if self._set_line_buffering is None and self._set_errors is None:
return
if not isinstance(self._out, io.TextIOWrapper):
return
# Python 3.7 & later
if hasattr(self._out, 'reconfigure'):
self._out.reconfigure(line_buffering=self._set_line_buffering,
errors=(self._set_errors.value
if self._set_errors is not None
else None))
# Python 3.6
elif (self._out.line_buffering != self._line_buffering()
or self._out.errors != self._errors()):
# Pure-python I/O
if (hasattr(self._out, '_line_buffering')
and hasattr(self._out, '_errors')):
py_out = typing.cast(Any, self._out)
py_out._line_buffering = self._line_buffering()
py_out._errors = self._errors()
py_out.flush()
# Native C I/O
else:
encoding = self._encoding()
errors = self._errors()
line_buffering = self._line_buffering()
try:
if self._use_stdout:
sys.stdout = typing.cast(TextIO, None)
newstream = io.TextIOWrapper(
self._out.detach(),
line_buffering=line_buffering,
encoding=encoding,
errors=errors)
self._out = newstream
finally:
if self._use_stdout:
sys.stdout = self._out
def _pager_env(self) -> Optional[Dict[str, str]]:
new_vars = self._command.environment_variables(self._config)
if not new_vars:
return None
env = dict(os.environ)
env.update(new_vars)
return env
def _pager_out_stream(self) -> Optional[TextIO]:
if not self._use_stdout:
try:
# Ensure the output stream has a file descriptor
self._out.fileno()
except OSError:
pass
else:
return self._out
return None
def _paged_stream(self) -> TextIO:
buffer_size = 1 if self._line_buffering() else -1
self._pager = subprocess.Popen(self._command.command(),
env=self._pager_env(),
bufsize=buffer_size,
universal_newlines=True,
encoding=self._encoding(),
errors=self._errors(),
stdin=subprocess.PIPE,
stdout=self._pager_out_stream())
assert self._pager.stdin is not None
return typing.cast(TextIO, self._pager.stdin)
def __exit__(self,
exc_type: Optional[Type[BaseException]],
exc: Optional[BaseException],
traceback: Optional[types.TracebackType]) -> bool:
if self._pager is not None:
# Pager ignores Ctrl-C, so we should too
with _sigint_ignore():
pager_in = self._pager.stdin
assert pager_in is not None
try:
pager_in.close()
except BrokenPipeError:
# Other end of pipe already closed
self._exit_code = _signal_exit_code(signal.SIGPIPE)
# Wait for user to exit pager
self._pager.wait()
else:
self._flush_output()
return self._process_exception(exc)
def _flush_output(self) -> None:
try:
if not self._out.closed:
self._out.flush()
except BrokenPipeError:
self._exit_code = _signal_exit_code(signal.SIGPIPE)
try:
# Other end of pipe already closed, so close the stream now
# and handle the error. If we leave the stream open with
# unflushed data, then it will print an unhandleable
# exception during Python's interpreter shutdown.
self._out.close()
except BrokenPipeError:
# This will always happen
pass
def _process_exception(self, exc: Optional[BaseException]) -> bool:
if exc is not None:
if isinstance(exc, BrokenPipeError):
self._exit_code = _signal_exit_code(signal.SIGPIPE)
# Suppress exceptions caused by a broken pipe (indicating that
# the user has exited the pager, or the following process in
# the pipeline has exited)
return True
elif isinstance(exc, KeyboardInterrupt):
self._exit_code = _signal_exit_code(signal.SIGINT)
elif isinstance(exc, SystemExit) and isinstance(exc.code, int):
self._exit_code = exc.code
else:
self._exit_code = exc
return False
def exit_code(self, *, on_error_default: int = 1) -> int:
"""
Return an appropriate exit code for the process based on any errors.
If the user exits the program prematurely by closing the pager, we may
want to return a different exit code for the process. This method
returns an appropriate exit code on the basis of the existence and type
of any uncaught exceptions.
"""
if not isinstance(self._exit_code, int):
return on_error_default
return self._exit_code
def line_buffer_from_input(input_stream: Optional[typing.IO] = None) -> bool:
"""
Return whether line buffering should be enabled for a given input stream.
When data is being read from an input stream, processed somehow, and then
written to an autopaged output stream, it may be desirable to enable line
buffering on the output. This means that each line of data written to the
output will be visible immediately, as opposed to waiting for the output
buffer to fill up. This is, however, slower.
If the input stream is a file, line buffering is unnecessary. This function
determines whether an input stream might require line buffering on output.
If no input stream is specified, sys.stdin is assumed.
>>> with AutoPager(line_buffering=line_buffer_from_input()) as out:
>>> for l in sys.stdin:
>>> out.write(l)
"""
if input_stream is None:
input_stream = sys.stdin
# On Illumos, TTYs claim to be seekable so don't believe them
return not (input_stream.seekable() and not input_stream.isatty())
def _signal_exit_code(signum: signal.Signals) -> int:
"""
Return the exit code corresponding to a received signal.
Conventionally, when a program exits due to a signal its exit code is 128
plus the signal number.
"""
return 128 + int(signum)
@contextlib.contextmanager
def _sigint_ignore() -> typing.Generator[None, None, None]:
"""
Context manager to temporarily ignore SIGINT.
"""
old_int_handler: Any = None
try:
old_int_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
yield
finally:
# If this is called from a finalizer during interpreter shutdown,
# CPython will have removed the definition of SIG_IGN, so we can't
# set the signal handler back to anything. We can detect this by
# checking for None returned from getsignal()
if signal.getsignal(signal.SIGINT) is not None:
signal.signal(signal.SIGINT, old_int_handler)
|