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
|
#!/usr/bin/env python3
"""Utilities for dealing with "text"."""
from collections import defaultdict
import math
import sys
from typing import List, NamedTuple, Optional
from ansi import fg, reset
class RowsColumns(NamedTuple):
rows: int
columns: int
def get_console_rows_columns() -> RowsColumns:
from exec_utils import cmd
rows, columns = cmd("stty size").split()
return RowsColumns(int(rows), int(columns))
def progress_graph(
current: int,
total: int,
*,
width=70,
fgcolor=fg("school bus yellow"),
left_end="[",
right_end="]",
redraw=True,
) -> None:
percent = current / total
ret = "\r" if redraw else "\n"
bar = bar_graph(
percent,
include_text = True,
width = width,
fgcolor = fgcolor,
left_end = left_end,
right_end = right_end)
print(
bar,
end=ret,
flush=True,
file=sys.stderr)
def bar_graph(
percentage: float,
*,
include_text=True,
width=70,
fgcolor=fg("school bus yellow"),
left_end="[",
right_end="]",
) -> None:
if percentage < 0.0 or percentage > 1.0:
raise ValueError(percentage)
if include_text:
text = f"{percentage*100.0:2.1f}%"
else:
text = ""
whole_width = math.floor(percentage * width)
if whole_width == width:
whole_width -= 1
part_char = "▉"
else:
remainder_width = (percentage * width) % 1
part_width = math.floor(remainder_width * 8)
part_char = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"][part_width]
return (
left_end +
fgcolor +
"█" * whole_width + part_char +
" " * (width - whole_width - 1) +
reset() +
right_end + " " +
text)
def distribute_strings(
strings: List[str],
*,
width: int = 80,
alignment: str = "c",
padding: str = " ",
) -> str:
subwidth = math.floor(width / len(strings))
retval = ""
for string in strings:
string = justify_string(
string, width=subwidth, alignment=alignment, padding=padding
)
retval += string
return retval
def justify_string_by_chunk(
string: str, width: int = 80, padding: str = " "
) -> str:
padding = padding[0]
first, *rest, last = string.split()
w = width - (len(first) + 1 + len(last) + 1)
retval = (
first + padding + distribute_strings(rest, width=w, padding=padding)
)
while len(retval) + len(last) < width:
retval += padding
retval += last
return retval
def justify_string(
string: str, *, width: int = 80, alignment: str = "c", padding: str = " "
) -> str:
alignment = alignment[0]
padding = padding[0]
while len(string) < width:
if alignment == "l":
string += padding
elif alignment == "r":
string = padding + string
elif alignment == "j":
return justify_string_by_chunk(
string,
width=width,
padding=padding
)
elif alignment == "c":
if len(string) % 2 == 0:
string += padding
else:
string = padding + string
else:
raise ValueError
return string
def justify_text(text: str, *, width: int = 80, alignment: str = "c") -> str:
print("-" * width)
retval = ""
line = ""
for word in text.split():
if len(line) + len(word) > width:
line = line[1:]
line = justify_string(line, width=width, alignment=alignment)
retval = retval + "\n" + line
line = ""
line = line + " " + word
if len(line) > 0:
retval += "\n" + line[1:]
return retval[1:]
def generate_padded_columns(text: List[str]) -> str:
max_width = defaultdict(int)
for line in text:
for pos, word in enumerate(line.split()):
max_width[pos] = max(max_width[pos], len(word))
for line in text:
out = ""
for pos, word in enumerate(line.split()):
width = max_width[pos]
word = justify_string(word, width=width, alignment='l')
out += f'{word} '
yield out
def wrap_string(text: str, n: int) -> str:
chunks = text.split()
out = ''
width = 0
for chunk in chunks:
if width + len(chunk) > n:
out += '\n'
width = 0
out += chunk + ' '
width += len(chunk) + 1
return out
class Indenter:
"""
with Indenter(pad_count = 8) as i:
i.print('test')
with i:
i.print('-ing')
with i:
i.print('1, 2, 3')
"""
def __init__(self,
*,
pad_prefix: Optional[str] = None,
pad_char: str = ' ',
pad_count: int = 4):
self.level = -1
if pad_prefix is not None:
self.pad_prefix = pad_prefix
else:
self.pad_prefix = ''
self.padding = pad_char * pad_count
def __enter__(self):
self.level += 1
return self
def __exit__(self, exc_type, exc_value, exc_tb):
self.level -= 1
if self.level < -1:
self.level = -1
def print(self, *arg, **kwargs):
import string_utils
text = string_utils.sprintf(*arg, **kwargs)
print(self.pad_prefix + self.padding * self.level + text, end='')
|