18
18
"""Simple terminal related routines."""
19
19
20
20
import getopt
21
- import os
22
21
import re
23
- import struct
22
+ import shutil
24
23
import sys
25
24
import time
26
25
32
31
except (ImportError , ModuleNotFoundError ):
33
32
pass
34
33
35
- __version__ = '0.1.1'
36
-
37
34
# ANSI, ISO/IEC 6429 escape sequences, SGR (Select Graphic Rendition) subset.
38
35
SGR = {
39
36
'reset' : 0 ,
@@ -168,21 +165,6 @@ def EncloseAnsiText(text):
168
165
return sgr_re .sub (lambda x : ANSI_START + x .group (1 ) + ANSI_END , text )
169
166
170
167
171
- def TerminalSize ():
172
- """Returns terminal length and width as a tuple."""
173
- try :
174
- with open (os .ctermid ()) as tty_instance :
175
- length_width = struct .unpack (
176
- 'hh' , fcntl .ioctl (tty_instance .fileno (), termios .TIOCGWINSZ , '1234' )
177
- )
178
- except (IOError , OSError , NameError ):
179
- try :
180
- length_width = (int (os .environ ['LINES' ]), int (os .environ ['COLUMNS' ]))
181
- except (ValueError , KeyError ):
182
- length_width = (24 , 80 )
183
- return length_width
184
-
185
-
186
168
def LineWrap (text , omit_sgr = False ):
187
169
"""Break line to fit screen width, factoring in ANSI/SGR escape sequences.
188
170
@@ -194,7 +176,7 @@ def LineWrap(text, omit_sgr=False):
194
176
Text with additional line wraps inserted for lines grater than the width.
195
177
"""
196
178
197
- def _SplitWithSgr (text_line ):
179
+ def _SplitWithSgr (text_line , width ):
198
180
"""Tokenise the line so that the sgr sequences can be omitted."""
199
181
token_list = sgr_re .split (text_line )
200
182
text_line_list = []
@@ -226,20 +208,20 @@ def _SplitWithSgr(text_line):
226
208
227
209
# We don't use textwrap library here as it insists on removing
228
210
# trailing/leading whitespace (pre 2.6).
229
- (_ , width ) = TerminalSize ()
211
+ (term_width , _ ) = shutil . get_terminal_size ()
230
212
text = str (text )
231
213
text_multiline = []
232
214
for text_line in text .splitlines ():
233
215
# Is this a line that needs splitting?
234
- while (omit_sgr and (len (StripAnsiText (text_line )) > width )) or (
235
- len (text_line ) > width
216
+ while (omit_sgr and (len (StripAnsiText (text_line )) > term_width )) or (
217
+ len (text_line ) > term_width
236
218
):
237
219
# If there are no sgr escape characters then do a straight split.
238
220
if not omit_sgr :
239
- text_multiline .append (text_line [:width ])
240
- text_line = text_line [width :]
221
+ text_multiline .append (text_line [:term_width ])
222
+ text_line = text_line [term_width :]
241
223
else :
242
- (multiline_line , text_line ) = _SplitWithSgr (text_line )
224
+ (multiline_line , text_line ) = _SplitWithSgr (text_line , term_width )
243
225
text_multiline .append (multiline_line )
244
226
if text_line :
245
227
text_multiline .append (text_line )
@@ -318,7 +300,7 @@ def SetLines(self, lines):
318
300
ValueError, TypeError: Not a valid integer representation.
319
301
"""
320
302
321
- (self ._cli_lines , self ._cli_cols ) = TerminalSize ()
303
+ (self ._cli_cols , self ._cli_lines ) = shutil . get_terminal_size ()
322
304
323
305
if lines :
324
306
self ._cli_lines = int (lines )
@@ -472,7 +454,8 @@ def main(argv=None):
472
454
# Prints the size of the terminal and returns.
473
455
# Mutually exclusive to the paging of text and overrides that behaviour.
474
456
if opt in ('-s' , '--size' ):
475
- print ('Length: %d, Width: %d' % TerminalSize ())
457
+ print (
458
+ 'Width: %d, Length: %d' % shutil .get_terminal_size ())
476
459
return 0
477
460
elif opt in ('-d' , '--delay' ):
478
461
isdelay = True
0 commit comments