-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.sh
373 lines (312 loc) · 7.5 KB
/
box.sh
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
#!/usr/bin/env bash
set -o errexit -o pipefail -o nounset -o noclobber
script_dir=${BASH_SOURCE:-$0}
source "$(dirname "$(realpath "$script_dir")")/string.sh"
unset script_dir
box::make_lines() {
for line in "$@"; do
echo -e "$line"
done
}
box::get_width() {
local string="$1"
# from string to lines
local lines=()
set +e
IFS=$'\n' read -rd '' -a lines <<< "$string"
set -e
echo "$(string::length "${lines[0]}")"
return 0
}
box::get_height() {
local string="$1"
# from string to lines
local lines=()
set +e
IFS=$'\n' read -rd '' -a lines <<< "$string"
set -e
echo "${#lines[@]}"
return 0
}
box::exec() {
local string="$1"
local pad=' '
# from string to lines
local lines=()
set +e
IFS=$'\n' read -rd '' -a lines <<< "$string"
set -e
shift
while [[ "$#" -gt 0 ]]; do
case "$1" in
set_pad | sp)
shift
pad="$1"
local pad_clean=$(string::clean "$pad")
if [[ "${#pad_clean}" -ne 1 ]]; then
string::err "Error: Invalid pad character '$1'"
return 1
fi
;;
norm | normalize | n)
shift
local align="$1"
case "$align" in
l | left)
align="l"
;;
r | right)
align="r"
;;
c | center)
align="c"
;;
*)
string::err "Error: Invalid alignment '$1'"
return 1
;;
esac
local max_length=0
for line in "${lines[@]}"; do
local line_length=$(string::length "$line")
if [[ "$line_length" -gt "$max_length" ]]; then
max_length="$line_length"
fi
done
for i in "${!lines[@]}"; do
local pad_left=0
local pad_right=0
local diff=$((max_length - ${#lines[i]}))
if [[ "$align" == "l" ]]; then
pad_right="$diff"
elif [[ "$align" == "r" ]]; then
pad_left="$diff"
elif [[ "$align" == "c" ]]; then
pad_left=$((diff / 2))
pad_right=$((diff - pad_left))
fi
lines[i]=$(string::pad "${lines[i]}" "$max_length" "$align" "$pad")
done
;;
pad_lr | ph)
shift
local left="$1"
shift
local right="$1"
local pad_left=$(string::make_pad "$left" "$pad")
local pad_right=$(string::make_pad "$right" "$pad")
for i in "${!lines[@]}"; do
lines[i]=$(printf "%s%s%s" "$pad_left" "${lines[i]}" "$pad_right")
done
;;
pad_tb | pv)
shift
local top="$1"
shift
local bottom="$1"
local pad_string=$(string::make_pad "$(string::length "${lines[0]}")" "$pad")
local temp_lines=()
for i in $(seq 1 "$top"); do
temp_lines+=("$pad_string")
done
for line in "${lines[@]}"; do
temp_lines+=("$line")
done
for i in $(seq 1 "$bottom"); do
temp_lines+=("$pad_string")
done
lines=(${temp_lines[@]})
;;
align_lr | ah)
shift
local align="$1"
shift
local length="$1"
case "$align" in
l | left)
align="l"
;;
r | right)
align="r"
;;
c | center)
align="c"
;;
*)
string::err "Error: Invalid alignment '$1'"
return 1
;;
esac
local left=0
local right=0
local diff=$((length - ${#lines[0]}))
if [[ "$align" == "l" ]]; then
right="$diff"
elif [[ "$align" == "r" ]]; then
left="$diff"
elif [[ "$align" == "c" ]]; then
left=$((diff / 2))
right=$((diff - left))
fi
local pad_left=$(string::make_pad "$left" "$pad")
local pad_right=$(string::make_pad "$right" "$pad")
for i in "${!lines[@]}"; do
lines[i]=$(printf "%s%s%s" "$pad_left" "${lines[i]}" "$pad_right")
done
;;
align_tb | av)
shift
local align="$1"
shift
local length="$1"
case "$align" in
t | top)
align="t"
;;
b | bottom)
align="b"
;;
c | center)
align="c"
;;
*)
string::err "Error: Invalid alignment '$1'"
return 1
;;
esac
local top=0
local bottom=0
local diff=$((length - ${#lines[@]}))
if [[ "$align" == "t" ]]; then
bottom="$diff"
elif [[ "$align" == "b" ]]; then
top="$diff"
elif [[ "$align" == "c" ]]; then
top=$((diff / 2))
bottom=$((diff - top))
fi
local pad_string=$(string::make_pad "$(string::length "${lines[0]}")" "$pad")
local temp_lines=()
for i in $(seq 1 "$top"); do
temp_lines+=("$pad_string")
done
for line in "${lines[@]}"; do
temp_lines+=("$line")
done
for i in $(seq 1 "$bottom"); do
temp_lines+=("$pad_string")
done
lines=(${temp_lines[@]})
;;
clean | c)
for i in "${!lines[@]}"; do
lines[i]=$(string::clean "${lines[i]}")
done
;;
extract | e)
shift
local from="$1"
shift
local count="$1"
lines=("${lines[@]:$from:$count}")
;;
*)
string::err "Error: Invalid option '$1'"
return 1
;;
esac
shift
done
# from lines to string
for line in "${lines[@]}"; do
echo -e "$line"
done
return 0
}
box::stack_lr() {
local string1="$1"
local string2="$2"
# from string to lines
local lines1=()
set +e
IFS=$'\n' read -rd '' -a lines1 <<< "$string1"
set -e
local lines2=()
set +e
IFS=$'\n' read -rd '' -a lines2 <<< "$string2"
set -e
if [ "${#lines1[@]}" -ne "${#lines2[@]}" ]; then
string::err "Error: Strings have different number of lines"
return 1
fi
# add left
for i in "${!lines1[@]}"; do
lines1[i]=$(printf "%s%s" "${lines1[i]}" "${lines2[i]}")
done
# from lines to string
for line in "${lines1[@]}"; do
echo -e "$line"
done
return 0
}
box::stack_tb() {
local string1="$1"
local string2="$2"
# from string to lines
local lines1=()
set +e
IFS=$'\n' read -rd '' -a lines1 <<< "$string1"
set -e
local lines2=()
set +e
IFS=$'\n' read -rd '' -a lines2 <<< "$string2"
set -e
if [ "${#lines1[0]}" -ne "${#lines2[0]}" ]; then
string::err "Error: Strings have different width"
return 1
fi
# add bottom
lines1+=("${lines2[@]}")
# from lines to string
for line in "${lines1[@]}"; do
echo -e "$line"
done
}
box::err() {
local string="$1"
# from string to lines
local lines=()
set +e
IFS=$'\n' read -rd '' -a lines <<< "$string"
set -e
# from lines to string
if [[ -t 2 || -z "$TERM" ]]; then
for line in "${lines[@]}"; do
echo -e "$line" >&2
done
return 1
fi
for line in "${lines[@]}"; do
echo -e "$(string::clean "$line")" >&2
done
return 1
}
box::out() {
local string="$1"
# from string to lines
local lines=()
set +e
IFS=$'\n' read -rd '' -a lines <<< "$string"
set -e
# from lines to string
if [[ -t 1 || -z "$TERM" ]]; then
for line in "${lines[@]}"; do
echo -e "$line"
done
return 0
fi
for line in "${lines[@]}"; do
echo -e "$(string::clean "$line")"
done
return 0
}