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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
|
"This primary module provides the Terminal class."
# standard modules
import collections
import contextlib
import functools
import warnings
import termios
import codecs
import curses
import locale
import select
import struct
import fcntl
import time
import tty
import sys
import os
try:
from io import UnsupportedOperation as IOUnsupportedOperation
except ImportError:
class IOUnsupportedOperation(Exception):
"""A dummy exception to take the place of Python 3's
``io.UnsupportedOperation`` in Python 2.5"""
try:
_ = InterruptedError
del _
except NameError:
# alias py2 exception to py3
InterruptedError = select.error
# local imports
from formatters import (
ParameterizingString,
NullCallableString,
resolve_capability,
resolve_attribute,
)
from sequences import (
get_keyboard_sequences,
init_sequence_patterns,
SequenceTextWrapper,
Sequence,
)
from keyboard import (
get_keyboard_codes,
resolve_sequence,
)
class Terminal(object):
"""A wrapper for curses and related terminfo(5) terminal capabilities.
Instance attributes:
``stream``
The stream the terminal outputs to. It's convenient to pass the stream
around with the terminal; it's almost always needed when the terminal
is and saves sticking lots of extra args on client functions in
practice.
"""
#: Sugary names for commonly-used capabilities
_sugar = dict(
save='sc',
restore='rc',
# 'clear' clears the whole screen.
clear_eol='el',
clear_bol='el1',
clear_eos='ed',
position='cup', # deprecated
enter_fullscreen='smcup',
exit_fullscreen='rmcup',
move='cup',
move_x='hpa',
move_y='vpa',
move_left='cub1',
move_right='cuf1',
move_up='cuu1',
move_down='cud1',
hide_cursor='civis',
normal_cursor='cnorm',
reset_colors='op', # oc doesn't work on my OS X terminal.
normal='sgr0',
reverse='rev',
italic='sitm',
no_italic='ritm',
shadow='sshm',
no_shadow='rshm',
standout='smso',
no_standout='rmso',
subscript='ssubm',
no_subscript='rsubm',
superscript='ssupm',
no_superscript='rsupm',
underline='smul',
no_underline='rmul')
def __init__(self, kind=None, stream=None, force_styling=False):
"""Initialize the terminal.
If ``stream`` is not a tty, I will default to returning an empty
Unicode string for all capability values, so things like piping your
output to a file won't strew escape sequences all over the place. The
``ls`` command sets a precedent for this: it defaults to columnar
output when being sent to a tty and one-item-per-line when not.
:arg kind: A terminal string as taken by ``setupterm()``. Defaults to
the value of the ``TERM`` environment variable.
:arg stream: A file-like object representing the terminal. Defaults to
the original value of stdout, like ``curses.initscr()`` does.
:arg force_styling: Whether to force the emission of capabilities, even
if we don't seem to be in a terminal. This comes in handy if users
are trying to pipe your output through something like ``less -r``,
which supports terminal codes just fine but doesn't appear itself
to be a terminal. Just expose a command-line option, and set
``force_styling`` based on it. Terminal initialization sequences
will be sent to ``stream`` if it has a file descriptor and to
``sys.__stdout__`` otherwise. (``setupterm()`` demands to send them
somewhere, and stdout is probably where the output is ultimately
headed. If not, stderr is probably bound to the same terminal.)
If you want to force styling to not happen, pass
``force_styling=None``.
"""
global _CUR_TERM
self.keyboard_fd = None
# default stream is stdout, keyboard only valid as stdin with stdout.
if stream is None or stream == sys.__stdout__:
stream = sys.__stdout__
self.keyboard_fd = sys.__stdin__.fileno()
try:
stream_fd = (stream.fileno() if hasattr(stream, 'fileno')
and callable(stream.fileno) else None)
except IOUnsupportedOperation:
stream_fd = None
self._is_a_tty = stream_fd is not None and os.isatty(stream_fd)
self._does_styling = ((self.is_a_tty or force_styling) and
force_styling is not None)
self._normal = None # cache normal attr, preventing recursive lookups
# The descriptor to direct terminal initialization sequences to.
# sys.__stdout__ seems to always have a descriptor of 1, even if output
# is redirected.
self._init_descriptor = (stream_fd is None and sys.__stdout__.fileno()
or stream_fd)
self._kind = kind or os.environ.get('TERM', 'unknown')
if self.does_styling:
# Make things like tigetstr() work. Explicit args make setupterm()
# work even when -s is passed to nosetests. Lean toward sending
# init sequences to the stream if it has a file descriptor, and
# send them to stdout as a fallback, since they have to go
# somewhere.
try:
curses.setupterm(self._kind, self._init_descriptor)
except curses.error:
warnings.warn('Failed to setupterm(kind=%s)' % (self._kind,))
self._kind = None
self._does_styling = False
else:
if _CUR_TERM is None or self._kind == _CUR_TERM:
_CUR_TERM = self._kind
else:
warnings.warn(
'A terminal of kind "%s" has been requested; due to an'
' internal python curses bug, terminal capabilities'
' for a terminal of kind "%s" will continue to be'
' returned for the remainder of this process.' % (
self._kind, _CUR_TERM,))
if self.does_styling:
init_sequence_patterns(self)
# build database of int code <=> KEY_NAME
self._keycodes = get_keyboard_codes()
# store attributes as: self.KEY_NAME = code
for key_code, key_name in self._keycodes.items():
setattr(self, key_name, key_code)
# build database of sequence <=> KEY_NAME
self._keymap = get_keyboard_sequences(self)
self._keyboard_buf = collections.deque()
locale.setlocale(locale.LC_ALL, '')
self._encoding = locale.getpreferredencoding()
self._keyboard_decoder = codecs.getincrementaldecoder(self._encoding)()
self.stream = stream
def __getattr__(self, attr):
"""Return a terminal capability as Unicode string.
For example, ``term.bold`` is a unicode string that may be prepended
to text to set the video attribute for bold, which should also be
terminated with the pairing ``term.normal``.
This capability is also callable, so you can use ``term.bold("hi")``
which results in the joining of (term.bold, "hi", term.normal).
Compound formatters may also be used, for example:
``term.bold_blink_red_on_green("merry x-mas!")``.
For a parametrized capability such as ``cup`` (cursor_address), pass
the parameters as arguments ``some_term.cup(line, column)``. See
manual page terminfo(5) for a complete list of capabilities.
"""
if not self.does_styling:
return NullCallableString()
val = resolve_attribute(self, attr)
# Cache capability codes.
setattr(self, attr, val)
return val
@property
def does_styling(self):
"""Whether this instance will emit terminal sequences (bool)."""
return self._does_styling
@property
def is_a_tty(self):
"""Whether the ``stream`` associated with this instance is a terminal
(bool)."""
return self._is_a_tty
@property
def height(self):
"""T.height -> int
The height of the terminal in characters.
"""
return self._height_and_width().ws_row
@property
def width(self):
"""T.width -> int
The width of the terminal in characters.
"""
return self._height_and_width().ws_col
@staticmethod
def _winsize(fd):
"""T._winsize -> WINSZ(ws_row, ws_col, ws_xpixel, ws_ypixel)
The tty connected by file desriptor fd is queried for its window size,
and returned as a collections.namedtuple instance WINSZ.
May raise exception IOError.
"""
data = fcntl.ioctl(fd, termios.TIOCGWINSZ, WINSZ._BUF)
return WINSZ(*struct.unpack(WINSZ._FMT, data))
def _height_and_width(self):
"""Return a tuple of (terminal height, terminal width).
"""
# TODO(jquast): hey kids, even if stdout is redirected to a file,
# we can still query sys.__stdin__.fileno() for our terminal size.
# -- of course, if both are redirected, we have no use for this fd.
for fd in (self._init_descriptor, sys.__stdout__):
try:
if fd is not None:
return self._winsize(fd)
except IOError:
pass
return WINSZ(ws_row=int(os.getenv('LINES', '25')),
ws_col=int(os.getenv('COLUMNS', '80')),
ws_xpixel=None,
ws_ypixel=None)
@contextlib.contextmanager
def location(self, x=None, y=None):
"""Return a context manager for temporarily moving the cursor.
Move the cursor to a certain position on entry, let you print stuff
there, then return the cursor to its original position::
term = Terminal()
with term.location(2, 5):
print 'Hello, world!'
for x in xrange(10):
print 'I can do it %i times!' % x
Specify ``x`` to move to a certain column, ``y`` to move to a certain
row, both, or neither. If you specify neither, only the saving and
restoration of cursor position will happen. This can be useful if you
simply want to restore your place after doing some manual cursor
movement.
"""
# Save position and move to the requested column, row, or both:
self.stream.write(self.save)
if x is not None and y is not None:
self.stream.write(self.move(y, x))
elif x is not None:
self.stream.write(self.move_x(x))
elif y is not None:
self.stream.write(self.move_y(y))
try:
yield
finally:
# Restore original cursor position:
self.stream.write(self.restore)
@contextlib.contextmanager
def fullscreen(self):
"""Return a context manager that enters fullscreen mode while inside it
and restores normal mode on leaving. Fullscreen mode is characterized
by instructing the terminal emulator to store and save the current
screen state (all screen output), switch to "alternate screen". Upon
exiting, the previous screen state is returned.
This call may not be tested; only one screen state may be saved at a
time.
"""
self.stream.write(self.enter_fullscreen)
try:
yield
finally:
self.stream.write(self.exit_fullscreen)
@contextlib.contextmanager
def hidden_cursor(self):
"""Return a context manager that hides the cursor upon entering,
and makes it visible again upon exiting."""
self.stream.write(self.hide_cursor)
try:
yield
finally:
self.stream.write(self.normal_cursor)
@property
def color(self):
"""Returns capability that sets the foreground color.
The capability is unparameterized until called and passed a number
(0-15), at which point it returns another string which represents a
specific color change. This second string can further be called to
color a piece of text and set everything back to normal afterward.
:arg num: The number, 0-15, of the color
"""
if not self.does_styling:
return NullCallableString()
return ParameterizingString(name='color', normal=self.normal)
@property
def on_color(self):
"Returns capability that sets the background color."
if not self.does_styling:
return NullCallableString()
return ParameterizingString(name='on_color', normal=self.normal)
@property
def normal(self):
"Returns sequence that resets video attribute."
if self._normal:
return self._normal
self._normal = resolve_capability(self, 'normal')
return self._normal
@property
def number_of_colors(self):
"""Return the number of colors the terminal supports.
Common values are 0, 8, 16, 88, and 256. Most commonly
this may be used to test color capabilities at all::
if term.number_of_colors:
..."""
# trim value to 0, as tigetnum('colors') returns -1 if no support,
# -2 if no such capability.
return max(0, self.does_styling and curses.tigetnum('colors') or -1)
@property
def _foreground_color(self):
return self.setaf or self.setf
@property
def _background_color(self):
return self.setab or self.setb
def ljust(self, text, width=None, fillchar=u' '):
"""T.ljust(text, [width], [fillchar]) -> unicode
Return string ``text``, left-justified by printable length ``width``.
Padding is done using the specified fill character (default is a
space). Default ``width`` is the attached terminal's width. ``text``
may contain terminal sequences."""
if width is None:
width = self.width
return Sequence(text, self).ljust(width, fillchar)
def rjust(self, text, width=None, fillchar=u' '):
"""T.rjust(text, [width], [fillchar]) -> unicode
Return string ``text``, right-justified by printable length ``width``.
Padding is done using the specified fill character (default is a
space). Default ``width`` is the attached terminal's width. ``text``
may contain terminal sequences."""
if width is None:
width = self.width
return Sequence(text, self).rjust(width, fillchar)
def center(self, text, width=None, fillchar=u' '):
"""T.center(text, [width], [fillchar]) -> unicode
Return string ``text``, centered by printable length ``width``.
Padding is done using the specified fill character (default is a
space). Default ``width`` is the attached terminal's width. ``text``
may contain terminal sequences."""
if width is None:
width = self.width
return Sequence(text, self).center(width, fillchar)
def length(self, text):
"""T.length(text) -> int
Return the printable length of string ``text``, which may contain
terminal sequences. Strings containing sequences such as 'clear',
which repositions the cursor, does not give accurate results, and
their printable length is evaluated *0*..
"""
return Sequence(text, self).length()
def strip(self, text):
"""T.strip(text) -> unicode
Return string ``text`` stripped of its whitespace *and* sequences.
Text containing backspace or term.left will "overstrike", so that
the string ``u"_\\b"`` or ``u"__\\b\\b="`` becomes ``u"x"``,
not ``u"="`` (as would actually be printed on a terminal).
"""
return Sequence(text, self).strip()
def strip_seqs(self, text):
"""T.strip_seqs(text) -> unicode
Return string ``text`` stripped only of its sequences.
"""
return Sequence(text, self).strip_seqs()
def wrap(self, text, width=None, **kwargs):
"""T.wrap(text, [width=None, indent=u'', ...]) -> unicode
Wrap paragraphs containing escape sequences, ``text``, to the full
width of Terminal instance T, unless width is specified, wrapped by
the virtual printable length, irregardless of the video attribute
sequences it may contain.
Returns a list of strings that may contain escape sequences. See
textwrap.TextWrapper class for available additional kwargs to
customize wrapping behavior.
Note that the keyword argument ``break_long_words`` may not be set,
it is not sequence-safe.
"""
_blw = 'break_long_words'
assert (_blw not in kwargs or not kwargs[_blw]), (
"keyword argument, '{}' is not sequence-safe".format(_blw))
width = width is None and self.width or width
lines = []
for line in text.splitlines():
lines.extend(
(_linewrap for _linewrap in SequenceTextWrapper(
width=width, term=self, **kwargs).wrap(text))
if line.strip() else (u'',))
return lines
def kbhit(self, timeout=0):
"""T.kbhit([timeout=0]) -> bool
Returns True if a keypress has been detected on keyboard.
When ``timeout`` is 0, this call is non-blocking(default).
Otherwise blocking until keypress is detected, returning
True, or False after ``timeout`` seconds have elapsed.
If input is not a terminal, False is always returned.
"""
# Special care is taken to handle a custom SIGWINCH handler, which
# causes select() to be interrupted with errno 4 (EAGAIN) --
# it is ignored, and a new timeout value is derived from the previous,
# unless timeout becomes negative, because signal handler has blocked
# beyond timeout, then False is returned. Otherwise, when timeout is 0,
# we continue to block indefinitely (default).
stime = time.time()
check_w, check_x = [], []
check_r = [self.keyboard_fd] if self.keyboard_fd is not None else []
while True:
try:
ready_r, ready_w, ready_x = select.select(
check_r, check_w, check_x, timeout)
except InterruptedError:
if timeout != 0:
# subtract time already elapsed,
timeout -= time.time() - stime
if timeout > 0:
continue
ready_r = False
break
else:
break
return False if self.keyboard_fd is None else check_r == ready_r
@contextlib.contextmanager
def cbreak(self):
"""Return a context manager that enters 'cbreak' mode: disabling line
buffering of keyboard input, making characters typed by the user
immediately available to the program. Also referred to as 'rare'
mode, this is the opposite of 'cooked' mode, the default for most
shells.
In 'cbreak' mode, echo of input is also disabled: the application must
explicitly print any input received, if they so wish.
More information can be found in the manual page for curses.h,
http://www.openbsd.org/cgi-bin/man.cgi?query=cbreak
The python manual for curses,
http://docs.python.org/2/library/curses.html
Note also that setcbreak sets VMIN = 1 and VTIME = 0,
http://www.unixwiz.net/techtips/termios-vmin-vtime.html
"""
if self.keyboard_fd is not None:
# save current terminal mode,
save_mode = termios.tcgetattr(self.keyboard_fd)
tty.setcbreak(self.keyboard_fd, termios.TCSANOW)
try:
yield
finally:
# restore prior mode,
termios.tcsetattr(self.keyboard_fd,
termios.TCSAFLUSH,
save_mode)
else:
yield
@contextlib.contextmanager
def raw(self):
"""Return a context manager that enters *raw* mode. Raw mode is
similar to *cbreak* mode, in that characters typed are immediately
available to ``inkey()`` with one exception: the interrupt, quit,
suspend, and flow control characters are all passed through as their
raw character values instead of generating a signal.
"""
if self.keyboard_fd is not None:
# save current terminal mode,
save_mode = termios.tcgetattr(self.keyboard_fd)
tty.setraw(self.keyboard_fd, termios.TCSANOW)
try:
yield
finally:
# restore prior mode,
termios.tcsetattr(self.keyboard_fd,
termios.TCSAFLUSH,
save_mode)
else:
yield
def inkey(self, timeout=None, esc_delay=0.35):
"""T.inkey(timeout=None, esc_delay=0.35) -> Keypress()
Receive next keystroke from keyboard (stdin), blocking until a
keypress is received or ``timeout`` elapsed, if specified.
When used without the context manager ``cbreak``, stdin remains
line-buffered, and this function will block until return is pressed,
even though only one unicode character is returned at a time..
The value returned is an instance of ``Keystroke``, with properties
``is_sequence``, and, when True, non-None values for attributes
``code`` and ``name``. The value of ``code`` may be compared against
attributes of this terminal beginning with *KEY*, such as
``KEY_ESCAPE``.
To distinguish between ``KEY_ESCAPE``, and sequences beginning with
escape, the ``esc_delay`` specifies the amount of time after receiving
the escape character (chr(27)) to seek for the completion
of other application keys before returning ``KEY_ESCAPE``.
"""
# TODO(jquast): "meta sends escape", where alt+1 would send '\x1b1',
# what do we do with that? Surely, something useful.
# comparator to term.KEY_meta('x') ?
# TODO(jquast): Ctrl characters, KEY_CTRL_[A-Z], and the rest;
# KEY_CTRL_\, KEY_CTRL_{, etc. are not legitimate
# attributes. comparator to term.KEY_ctrl('z') ?
def _timeleft(stime, timeout):
"""_timeleft(stime, timeout) -> float
Returns time-relative time remaining before ``timeout`` after time
elapsed since ``stime``.
"""
if timeout is not None:
if timeout is 0:
return 0
return max(0, timeout - (time.time() - stime))
def _decode_next():
"""Read and decode next byte from stdin."""
byte = os.read(self.keyboard_fd, 1)
return self._keyboard_decoder.decode(byte, final=False)
resolve = functools.partial(resolve_sequence,
mapper=self._keymap,
codes=self._keycodes)
stime = time.time()
# re-buffer previously received keystrokes,
ucs = u''
while self._keyboard_buf:
ucs += self._keyboard_buf.pop()
# receive all immediately available bytes
while self.kbhit():
ucs += _decode_next()
# decode keystroke, if any
ks = resolve(text=ucs)
# so long as the most immediately received or buffered keystroke is
# incomplete, (which may be a multibyte encoding), block until until
# one is received.
while not ks and self.kbhit(_timeleft(stime, timeout)):
ucs += _decode_next()
ks = resolve(text=ucs)
# handle escape key (KEY_ESCAPE) vs. escape sequence (which begins
# with KEY_ESCAPE, \x1b[, \x1bO, or \x1b?), up to esc_delay when
# received. This is not optimal, but causes least delay when
# (currently unhandled, and rare) "meta sends escape" is used,
# or when an unsupported sequence is sent.
if ks.code is self.KEY_ESCAPE:
esctime = time.time()
while (ks.code is self.KEY_ESCAPE and
self.kbhit(_timeleft(esctime, esc_delay))):
ucs += _decode_next()
ks = resolve(text=ucs)
# buffer any remaining text received
self._keyboard_buf.extendleft(ucs[len(ks):])
return ks
# From libcurses/doc/ncurses-intro.html (ESR, Thomas Dickey, et. al):
#
# "After the call to setupterm(), the global variable cur_term is set to
# point to the current structure of terminal capabilities. By calling
# setupterm() for each terminal, and saving and restoring cur_term, it
# is possible for a program to use two or more terminals at once."
#
# However, if you study Python's ./Modules/_cursesmodule.c, you'll find:
#
# if (!initialised_setupterm && setupterm(termstr,fd,&err) == ERR) {
#
# Python - perhaps wrongly - will not allow a re-initialisation of new
# terminals through setupterm(), so the value of cur_term cannot be changed
# once set: subsequent calls to setupterm() have no effect.
#
# Therefore, the ``kind`` of each Terminal() is, in essence, a singleton.
# This global variable reflects that, and a warning is emitted if somebody
# expects otherwise.
_CUR_TERM = None
WINSZ = collections.namedtuple('WINSZ', (
'ws_row', # /* rows, in characters */
'ws_col', # /* columns, in characters */
'ws_xpixel', # /* horizontal size, pixels */
'ws_ypixel', # /* vertical size, pixels */
))
#: format of termios structure
WINSZ._FMT = 'hhhh'
#: buffer of termios structure appropriate for ioctl argument
WINSZ._BUF = '\x00' * struct.calcsize(WINSZ._FMT)
|