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 693 694 695 696 697 698 699 700 701 702 703 704 705
|
#!/usr/bin/env python
"""
A terminal browser, similar to less(1) for testing printable width of unicode.
This displays the full range of unicode points for 1 or 2-character wide
ideograms, with pipes ('|') that should always align for any terminal that
supports utf-8.
Usage:
./bin/wcwidth-browser.py [--wide=<n>]
[--alignment=<str>]
[--combining]
[--help]
Options:
--wide=<int> Browser 1 or 2 character-wide cells.
--alignment=<str> Chose left or right alignment. [default: left]
--combining Use combining character generator. [default: 2]
--help Display usage
"""
# pylint: disable=C0103,W0622
# Invalid constant name "echo"
# Invalid constant name "flushout" (col 4)
# Invalid module name "wcwidth-browser"
from __future__ import division, print_function
# std imports
import sys
import signal
import string
import functools
import unicodedata
# 3rd party
import docopt
import blessed
# local
from wcwidth import ZERO_WIDTH, wcwidth, list_versions, _wcmatch_version
#: print function alias, does not end with line terminator.
echo = functools.partial(print, end='')
flushout = functools.partial(print, end='', flush=True)
#: printable length of highest unicode character description
LIMIT_UCS = 0x3fffd
UCS_PRINTLEN = len('{value:0x}'.format(value=LIMIT_UCS))
def readline(term, width):
"""A rudimentary readline implementation."""
text = ''
while True:
inp = term.inkey()
if inp.code == term.KEY_ENTER:
break
if inp.code == term.KEY_ESCAPE:
text = ''
break
if not inp.is_sequence and len(text) < width:
text += inp
echo(inp)
flushout()
elif inp.code in (term.KEY_BACKSPACE, term.KEY_DELETE):
if text:
text = text[:-1]
echo('\b \b')
flushout()
return text
class WcWideCharacterGenerator(object):
"""Generator yields unicode characters of the given ``width``."""
# pylint: disable=R0903
# Too few public methods (0/2)
def __init__(self, width, unicode_version):
"""
Class constructor.
:param width: generate characters of given width.
:param str unicode_version: Unicode Version for render.
:type width: int
"""
self.characters = (
chr(idx) for idx in range(LIMIT_UCS)
if wcwidth(chr(idx), unicode_version=unicode_version) == width)
def __iter__(self):
"""Special method called by iter()."""
return self
def __next__(self):
"""Special method called by next()."""
while True:
ucs = next(self.characters)
try:
name = string.capwords(unicodedata.name(ucs))
except ValueError:
continue
return (ucs, name)
class WcCombinedCharacterGenerator(object):
"""Generator yields unicode characters with combining."""
# pylint: disable=R0903
# Too few public methods (0/2)
def __init__(self, width, unicode_version):
"""
Class constructor.
:param int width: generate characters of given width.
:param str unicode_version: Unicode version.
"""
self.characters = []
letters_o = ('o' * width)
for (begin, end) in ZERO_WIDTH[_wcmatch_version(unicode_version)]:
for val in [_val for _val in
range(begin, end + 1)
if _val <= LIMIT_UCS]:
self.characters.append(
letters_o[:1] +
chr(val) +
letters_o[wcwidth(chr(val)) + 1:])
self.characters.reverse()
def __iter__(self):
"""Special method called by iter()."""
return self
def __next__(self):
"""
Special method called by next().
:return: unicode character and name, as tuple.
:rtype: tuple[unicode, unicode]
:raises StopIteration: no more characters
"""
while True:
if not self.characters:
raise StopIteration
ucs = self.characters.pop()
try:
name = string.capwords(unicodedata.name(ucs[1]))
except ValueError:
continue
return (ucs, name)
# python 2.6 - 3.3 compatibility
next = __next__
class Style(object):
"""Styling decorator class instance for terminal output."""
# pylint: disable=R0903
# Too few public methods (0/2)
@staticmethod
def attr_major(text):
"""Non-stylized callable for "major" text, for non-ttys."""
return text
@staticmethod
def attr_minor(text):
"""Non-stylized callable for "minor" text, for non-ttys."""
return text
delimiter = '|'
continuation = ' $'
header_hint = '-'
header_fill = '='
name_len = 10
alignment = 'right'
def __init__(self, **kwargs):
"""
Class constructor.
Any given keyword arguments are assigned to the class attribute of the same name.
"""
for key, val in kwargs.items():
setattr(self, key, val)
class Screen(object):
"""Represents terminal style, data dimensions, and drawables."""
intro_msg_fmt = ('Delimiters ({delim}) should align, '
'unicode version is {version}.')
def __init__(self, term, style, wide=2):
"""Class constructor."""
self.term = term
self.style = style
self.wide = wide
@property
def header(self):
"""Text of joined segments producing full heading."""
return self.head_item * self.num_columns
@property
def hint_width(self):
"""Width of a column segment."""
return sum((len(self.style.delimiter),
self.wide,
len(self.style.delimiter),
len(' '),
UCS_PRINTLEN + 2,
len(' '),
self.style.name_len,))
@property
def head_item(self):
"""Text of a single column heading."""
delimiter = self.style.attr_minor(self.style.delimiter)
hint = self.style.header_hint * self.wide
heading = ('{delimiter}{hint}{delimiter}'
.format(delimiter=delimiter, hint=hint))
def alignment(*args):
if self.style.alignment == 'right':
return self.term.rjust(*args)
return self.term.ljust(*args)
txt = alignment(heading, self.hint_width, self.style.header_fill)
return self.style.attr_major(txt)
def msg_intro(self, version):
"""Introductory message disabled above heading."""
return self.term.center(self.intro_msg_fmt.format(
delim=self.style.attr_minor(self.style.delimiter),
version=self.style.attr_minor(version))).rstrip()
@property
def row_ends(self):
"""Bottom of page."""
return self.term.height - 1
@property
def num_columns(self):
"""Number of columns displayed."""
if self.term.is_a_tty:
return self.term.width // self.hint_width
return 1
@property
def num_rows(self):
"""Number of rows displayed."""
return self.row_ends - self.row_begins - 1
@property
def row_begins(self):
"""Top row displayed for content."""
# pylint: disable=R0201
# Method could be a function (col 4)
return 2
@property
def page_size(self):
"""Number of unicode text displayed per page."""
return self.num_rows * self.num_columns
class Pager(object):
"""A less(1)-like browser for browsing unicode characters."""
# pylint: disable=too-many-instance-attributes
#: screen state for next draw method(s).
STATE_CLEAN, STATE_DIRTY, STATE_REFRESH = 0, 1, 2
def __init__(self, term, screen, character_factory):
"""
Class constructor.
:param term: blessed Terminal class instance.
:type term: blessed.Terminal
:param screen: Screen class instance.
:type screen: Screen
:param character_factory: Character factory generator.
:type character_factory: callable returning iterable.
"""
self.term = term
self.screen = screen
self.character_factory = character_factory
self.unicode_version = 'auto'
self.dirty = self.STATE_REFRESH
self.last_page = 0
self._page_data = list()
def on_resize(self, *args):
"""Signal handler callback for SIGWINCH."""
# pylint: disable=W0613
# Unused argument 'args'
assert self.term.width >= self.screen.hint_width, (
'Screen to small {}, must be at least {}'.format(
self.term.width, self.screen.hint_width))
self._set_lastpage()
self.dirty = self.STATE_REFRESH
def _set_lastpage(self):
"""Calculate value of class attribute ``last_page``."""
self.last_page = (len(self._page_data) - 1) // self.screen.page_size
def display_initialize(self):
"""Display 'please wait' message, and narrow build warning."""
echo(self.term.home + self.term.clear)
echo(self.term.move_y(self.term.height // 2))
echo(self.term.center('Initializing page data ...').rstrip())
flushout()
def initialize_page_data(self):
"""Initialize the page data for the given screen."""
# pylint: disable=attribute-defined-outside-init
if self.term.is_a_tty:
self.display_initialize()
self.character_generator = self.character_factory(
self.screen.wide, self.unicode_version)
self._page_data = list()
while True:
try:
self._page_data.append(next(self.character_generator))
except StopIteration:
break
self._set_lastpage()
def page_data(self, idx, offset):
"""
Return character data for page of given index and offset.
:param idx: page index.
:type idx: int
:param offset: scrolling region offset of current page.
:type offset: int
:returns: list of tuples in form of ``(ucs, name)``
:rtype: list[(unicode, unicode)]
"""
size = self.screen.page_size
while offset < 0 and idx:
offset += size
idx -= 1
offset = max(0, offset)
while offset >= size:
offset -= size
idx += 1
if idx == self.last_page:
offset = 0
idx = min(max(0, idx), self.last_page)
start = (idx * self.screen.page_size) + offset
end = start + self.screen.page_size
return (idx, offset), self._page_data[start:end]
def _run_notty(self, writer):
"""Pager run method for terminals that are not a tty."""
page_idx = page_offset = 0
while True:
npage_idx, _ = self.draw(writer, page_idx + 1, page_offset)
if npage_idx == self.last_page:
# page displayed was last page, quit.
break
page_idx = npage_idx
self.dirty = self.STATE_DIRTY
def _run_tty(self, writer, reader):
"""Pager run method for terminals that are a tty."""
# allow window-change signal to reflow screen
signal.signal(signal.SIGWINCH, self.on_resize)
page_idx = page_offset = 0
while True:
if self.dirty:
page_idx, page_offset = self.draw(writer,
page_idx,
page_offset)
self.dirty = self.STATE_CLEAN
inp = reader(timeout=0.25)
if inp is not None:
nxt, noff = self.process_keystroke(inp,
page_idx,
page_offset)
if self.dirty:
continue
if not self.dirty:
self.dirty = nxt != page_idx or noff != page_offset
page_idx, page_offset = nxt, noff
if page_idx == -1:
return
def run(self, writer, reader):
"""
Pager entry point.
In interactive mode (terminal is a tty), run until
``process_keystroke()`` detects quit keystroke ('q'). In
non-interactive mode, exit after displaying all unicode points.
:param writer: callable writes to output stream, receiving unicode.
:type writer: callable
:param reader: callable reads keystrokes from input stream, sending
instance of blessed.keyboard.Keystroke.
:type reader: callable
"""
self.initialize_page_data()
if not self.term.is_a_tty:
self._run_notty(writer)
else:
self._run_tty(writer, reader)
def process_keystroke(self, inp, idx, offset):
"""
Process keystroke ``inp``, adjusting screen parameters.
:param inp: return value of blessed.Terminal.inkey().
:type inp: blessed.keyboard.Keystroke
:param idx: page index.
:type idx: int
:param offset: scrolling region offset of current page.
:type offset: int
:returns: tuple of next (idx, offset).
:rtype: (int, int)
"""
if inp.lower() in ('q', 'Q'):
# exit
return (-1, -1)
self._process_keystroke_commands(inp)
idx, offset = self._process_keystroke_movement(inp, idx, offset)
return idx, offset
def _process_keystroke_commands(self, inp):
"""Process keystrokes that issue commands (side effects)."""
if inp in ('1', '2') and self.screen.wide != int(inp):
# change between 1 or 2-character wide mode.
self.screen.wide = int(inp)
self.initialize_page_data()
self.on_resize(None, None)
elif inp == 'c':
# switch on/off combining characters
self.character_factory = (
WcWideCharacterGenerator
if self.character_factory != WcWideCharacterGenerator
else WcCombinedCharacterGenerator)
self.initialize_page_data()
self.on_resize(None, None)
elif inp in ('_', '-'):
# adjust name length -2
nlen = max(1, self.screen.style.name_len - 2)
if nlen != self.screen.style.name_len:
self.screen.style.name_len = nlen
self.on_resize(None, None)
elif inp in ('+', '='):
# adjust name length +2
nlen = min(self.term.width - 8, self.screen.style.name_len + 2)
if nlen != self.screen.style.name_len:
self.screen.style.name_len = nlen
self.on_resize(None, None)
elif inp == 'v':
with self.term.location(x=0, y=self.term.height - 2):
print(self.term.clear_eos())
input_selection_msg = (
"--> Enter unicode version [{versions}] ("
"current: {self.unicode_version}):".format(
versions=', '.join(list_versions()),
self=self))
echo('\n'.join(self.term.wrap(input_selection_msg,
subsequent_indent=' ')))
echo(' ')
flushout()
inp = readline(self.term, width=max(map(len, list_versions())))
if inp.strip() and inp != self.unicode_version:
# set new unicode version -- page data must be
# re-initialized. Any version is legal, underlying
# library performs best-match (with warnings)
self.unicode_version = _wcmatch_version(inp)
self.initialize_page_data()
self.on_resize(None, None)
def _process_keystroke_movement(self, inp, idx, offset):
"""Process keystrokes that adjust index and offset."""
term = self.term
# a little vi-inspired.
if inp in ('y', 'k') or inp.code in (term.KEY_UP,):
# scroll backward 1 line
offset -= self.screen.num_columns
elif inp in ('e', 'j') or inp.code in (term.KEY_ENTER,
term.KEY_DOWN,):
# scroll forward 1 line
offset = offset + self.screen.num_columns
elif inp in ('f', ' ') or inp.code in (term.KEY_PGDOWN,):
# scroll forward 1 page
idx += 1
elif inp == 'b' or inp.code in (term.KEY_PGUP,):
# scroll backward 1 page
idx = max(0, idx - 1)
elif inp == 'F' or inp.code in (term.KEY_SDOWN,):
# scroll forward 10 pages
idx = max(0, idx + 10)
elif inp == 'B' or inp.code in (term.KEY_SUP,):
# scroll backward 10 pages
idx = max(0, idx - 10)
elif inp.code == term.KEY_HOME:
# top
idx, offset = (0, 0)
elif inp == 'G' or inp.code == term.KEY_END:
# bottom
idx, offset = (self.last_page, 0)
elif inp == '\x0c':
self.dirty = True
return idx, offset
def draw(self, writer, idx, offset):
"""
Draw the current page view to ``writer``.
:param callable writer: callable writes to output stream, receiving unicode.
:param int idx: current page index.
:param int offset: scrolling region offset of current page.
:returns: tuple of next (idx, offset).
:rtype: (int, int)
"""
# as our screen can be resized while we're mid-calculation,
# our self.dirty flag can become re-toggled; because we are
# not re-flowing our pagination, we must begin over again.
while self.dirty:
self.draw_heading(writer)
self.dirty = self.STATE_CLEAN
(idx, offset), data = self.page_data(idx, offset)
for txt in self.page_view(data):
writer(txt)
self.draw_status(writer, idx)
flushout()
return idx, offset
def draw_heading(self, writer):
"""
Conditionally redraw screen when ``dirty`` attribute is valued REFRESH.
When Pager attribute ``dirty`` is ``STATE_REFRESH``, cursor is moved
to (0,0), screen is cleared, and heading is displayed.
:param callable writer: callable writes to output stream, receiving unicode.
:return: True if class attribute ``dirty`` is ``STATE_REFRESH``.
:rtype: bool
"""
if self.dirty == self.STATE_REFRESH:
writer(''.join(
(self.term.home, self.term.clear,
self.screen.msg_intro(version=self.unicode_version), '\n',
self.screen.header, '\n',)))
return True
return False
def draw_status(self, writer, idx):
"""
Conditionally draw status bar when output terminal is a tty.
:param callable writer: callable writes to output stream, receiving unicode.
:param int idx: current page position index.
:type idx: int
"""
if self.term.is_a_tty:
writer(self.term.hide_cursor())
style = self.screen.style
writer(self.term.move(self.term.height - 1))
if idx == self.last_page:
last_end = '(END)'
else:
last_end = '/{0}'.format(self.last_page)
txt = ('Page {idx}{last_end} - '
'{q} to quit, [keys: {keyset}]'
.format(idx=style.attr_minor('{0}'.format(idx)),
last_end=style.attr_major(last_end),
keyset=style.attr_major('kjfbvc12-='),
q=style.attr_minor('q')))
writer(self.term.center(txt).rstrip())
def page_view(self, data):
"""
Generator yields text to be displayed for the current unicode pageview.
:param list[(unicode, unicode)] data: The current page's data as tuple
of ``(ucs, name)``.
:returns: generator for full-page text for display
"""
if self.term.is_a_tty:
yield self.term.move(self.screen.row_begins, 0)
# sequence clears to end-of-line
clear_eol = self.term.clear_eol
# sequence clears to end-of-screen
clear_eos = self.term.clear_eos
# track our current column and row, where column is
# the whole segment of unicode value text, and draw
# only self.screen.num_columns before end-of-line.
#
# use clear_eol at end of each row to erase over any
# "ghosted" text, and clear_eos at end of screen to
# clear the same, especially for the final page which
# is often short.
col = 0
for ucs, name in data:
val = self.text_entry(ucs, name)
col += 1
if col == self.screen.num_columns:
col = 0
if self.term.is_a_tty:
val = ''.join((val, clear_eol, '\n'))
else:
val = ''.join((val.rstrip(), '\n'))
yield val
if self.term.is_a_tty:
yield ''.join((clear_eol, '\n', clear_eos))
def text_entry(self, ucs, name):
"""
Display a single column segment row describing ``(ucs, name)``.
:param str ucs: target unicode point character string.
:param str name: name of unicode point.
:return: formatted text for display.
:rtype: unicode
"""
style = self.screen.style
if len(name) > style.name_len:
idx = max(0, style.name_len - len(style.continuation))
name = ''.join((name[:idx], style.continuation if idx else ''))
if style.alignment == 'right':
fmt = ' '.join(('0x{val:0>{ucs_printlen}x}',
'{name:<{name_len}s}',
'{delimiter}{ucs}{delimiter}'
))
else:
fmt = ' '.join(('{delimiter}{ucs}{delimiter}',
'0x{val:0>{ucs_printlen}x}',
'{name:<{name_len}s}'))
delimiter = style.attr_minor(style.delimiter)
if len(ucs) != 1:
# determine display of combining characters
val = ord(ucs[1])
# a combining character displayed of any fg color
# will reset the foreground character of the cell
# combined with (iTerm2, OSX).
disp_ucs = style.attr_major(ucs[0:2])
if len(ucs) > 2:
disp_ucs += ucs[2]
else:
# non-combining
val = ord(ucs)
disp_ucs = style.attr_major(ucs)
return fmt.format(name_len=style.name_len,
ucs_printlen=UCS_PRINTLEN,
delimiter=delimiter,
name=name,
ucs=disp_ucs,
val=val)
def validate_args(opts):
"""Validate and return options provided by docopt parsing."""
if opts['--wide'] is None:
opts['--wide'] = 2
else:
assert opts['--wide'] in ("1", "2"), opts['--wide']
if opts['--alignment'] is None:
opts['--alignment'] = 'left'
else:
assert opts['--alignment'] in ('left', 'right'), opts['--alignment']
opts['--wide'] = int(opts['--wide'])
opts['character_factory'] = WcWideCharacterGenerator
if opts['--combining']:
opts['character_factory'] = WcCombinedCharacterGenerator
return opts
def main(opts):
"""Program entry point."""
term = blessed.Terminal()
style = Style()
# if the terminal supports colors, use a Style instance with some
# standout colors (magenta, cyan).
if term.number_of_colors:
style = Style(attr_major=term.magenta,
attr_minor=term.bright_cyan,
alignment=opts['--alignment'])
style.name_len = 10
screen = Screen(term, style, wide=opts['--wide'])
pager = Pager(term, screen, opts['character_factory'])
with term.location(), term.cbreak(), \
term.fullscreen(), term.hidden_cursor():
pager.run(writer=echo, reader=term.inkey)
return 0
if __name__ == '__main__':
sys.exit(main(validate_args(docopt.docopt(__doc__))))
|