-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbashful-list.inc.sh
513 lines (456 loc) · 13.5 KB
/
bashful-list.inc.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
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
#!/bin/bash
# Bashful is copyright 2009-2016 Dejay Clayton, all rights reserved:
# https://github.com/dejayc/bashful
# Bashful is licensed under the 2-Clause BSD License:
# http://opensource.org/licenses/BSD-2-Clause
# Declare the module name.
declare BASHFUL_MODULE='list'
declare BASHFUL_MODULE_DEPENDENCIES='text'
# Verify execution context and module dependencies, and register the module.
{
declare BASHFUL_MODULE_VAR="BASHFUL_LOADED_${BASHFUL_MODULE}"
[[ -z "${!BASHFUL_MODULE_VAR-}" ]] || return 0
# Ensure the module is sourced, not executed, generating an error
# otherwise.
[[ "${BASH_ARGV}" != '' ]] || {
echo "ERROR: ${BASH_SOURCE[0]##*/} must be sourced, not executed"
exit 1
} >&2
# Register the module and dependencies.
declare "${BASHFUL_MODULE_VAR}"="${BASHFUL_MODULE}"
declare "BASHFUL_DEPS_${BASHFUL_MODULE}"="${BASHFUL_MODULE_DEPENDENCIES}"
}
# function joinedList:
#
# Returns a separated list of items, with each item separated from the next
# by the specified output separator. The list of items is constructed from
# each argument passed in to this function.
#
# -q optionally escapes each item being output, in a way that protects spaces,
# quotes, and other special characters from being misinterpreted by the
# shell. Useful for assigning the output of this function to an array,
# via the following construct:
#
# declare -a ARRAY="( `joinedList -q "${INPUT_ARRAY[@]}"` )"
#
# Note that while this option can be used simultaneously with an output
# separator specified via -s, such usage is not guaranteed to be parsable,
# depending upon the value of the separator.
#
# -s optionally specifies an output separator. Defaults to ' '.
#
# -S optionally appends an output separator at the end of the output. By
# default, no output separator appears at the end of the output. If an
# output separator already exists at the end of the output because the
# last item is null, an additional output separator will not be appended.
#
# Examples:
#
# $ joinedList -s ',' a b c d e
# a,b,c,d,e
#
# $ joinedList -s ';' -S a b c d e
# a;b;c;d;e;
#
# $ joinedList -s ',' a ''
# a,,
#
# $ joinedList -s ',' -S a ''
# a,,
#
# $ joinedList -s ',' '' ''
# ,,
#
# $ joinedList -q '' ''
# '' ''
#
# $ joinedList -q 'hello there' 'my "friend"'
# hello\ there my\ \"friend\"
#
# $ joinedList -q -s ';' 'hello there' 'my "friend"'
# hello\ there;my\ \"friend\"
function joinedList()
{
local SEP=' '
declare -i TRAILING_SEP=0
local FORMAT_STR='%s'
# Parse function options.
declare -i OPTIND
local OPT=''
while getopts ":qs:S" OPT
do
case "${OPT}" in
q)
FORMAT_STR='%q'
;;
s)
SEP="${OPTARG}"
;;
S)
let TRAILING_SEP=1
;;
*)
return 2
esac
done
shift $(( OPTIND - 1 ))
# Done parsing function options.
declare -i COUNT=$#
if [ ${COUNT} -gt 0 ]
then
declare -i TERMINAL_NULL=0
[[ -n "${!COUNT}" ]] || {
let TERMINAL_NULL=1
let TRAILING_SEP=0 ||:
}
declare -i END=$(( TRAILING_SEP == 0 ? 1 : 0 ))
while [ $# -gt ${END} ]
do
printf "${FORMAT_STR}%s" "${1}" "${SEP}"
shift
done
[[ $# -gt 0 ]] && printf "${FORMAT_STR}" "${1}"
# If the final argument is null, append an extra separator, to be
# consistent with the logic of splitList.
if [ ${TERMINAL_NULL} -eq 1 ]
then
printf '%s' "${SEP}"
fi
fi
}
# function splitList:
#
# Splits one or more delimited lists, and outputs a list in which each item is
# escaped in a way that protects spaces, quotes, and other special characters
# from being misinterpreted by the shell. Useful for assigning the output of
# this function to an array, via the following construct:
#
# declare -a ARRAY="( `splitList 'arg1 arg2 arg3 etc.'` )"
#
# -d optionally specifies one or more input delimiter characters. Defaults to
# $IFS. If null, splits every string into an array of characters.
#
# -e optionally protects instances of escaped delimiter characters. For
# example, if delimiter ';' is specified, and an instance of ';' must appear
# within a list element without being interpreted as a delimiter, that
# character may be represented as '\;' without being interpreted as a
# delimiter, if '-e' is specified.
#
# Examples:
#
# $ splitList -d ',' 'a,b' ',c'
# a b '' c
#
# $ splitList -d ',' 'a,'
# a
#
# $ splitList -d ',' 'a,,'
# a ''
#
# $ splitList -d ',' ',,'
# '' ''
#
# $ splitList -d ',' 'a,b,' ',c'
# a b '' c
#
# splitList -d ',' 'a,b,,' ',c'
# a b '' '' c
#
# $ splitList -d ',' 'a,b\,' ',c'
# a b\\ '' c
#
# $ splitList -d ',' -e 'a,b\,' ',c'
# a b, '' c
#
# $ splitList -d ',' -e 'a\,b,'
# a\, b
#
# $ splitList -d ',' 'hello,there' 'my "friend"'
# hello there my\ \"friend\"
#
# $ splitList -d '' 'hi there' 'bye'
# h i \ t h e r e b y e
function splitList()
{
local DELIM="${IFS}"
declare -i PROTECT_ESCAPED_DELIMS=0
# Parse function options.
declare -i OPTIND
local OPT=''
while getopts ":d:e" OPT
do
case "${OPT}" in
d)
DELIM="${OPTARG}"
;;
e)
let PROTECT_ESCAPED_DELIMS=1
;;
*)
return 2
esac
done
shift $(( OPTIND - 1 ))
# Done parsing function options.
local OUT=''
declare -i TRIM_TRAIL_NL=0
[[ "${DELIM}" =~ $'\n' ]] || let TRIM_TRAIL_NL=1
local DELIM_REGEX=''
[[ ${PROTECT_ESCAPED_DELIMS} -ne 0 ]] && {
if [ -n "${DELIM}" ]
then
DELIM_REGEX="$( orderedBracketExpression "${DELIM}" )" || return
else
let PROTECT_ESCAPED_DELIMS=0 ||:
fi
}
while [ $# -gt 0 ]
do
local ARG="${1}"
shift
[[ -n "${ARG}" ]] || {
printf '%q ' ''
continue
}
unset SET
declare -a SET=()
declare -i TRIM_TRAIL_NL=0
[[ "${DELIM}" =~ $'\n' ]] || let TRIM_TRAIL_NL=1
if [ -n "${DELIM}" ]
then
if [ ${PROTECT_ESCAPED_DELIMS} -ne 0 ]
then
unset SET
declare -a SET=()
local LAST_PREFIX=''
while :
do
[[ -n "${ARG}" ]] || break
[[ "${ARG}" =~ \
^([^${DELIM_REGEX}]*)([${DELIM_REGEX}]?)(.*)$ ]] &&:
local PREFIX="${BASH_REMATCH[1]}"
local INFIX="${BASH_REMATCH[2]}"
local SUFFIX="${BASH_REMATCH[3]}"
if [[ -n "${INFIX}" && "${PREFIX:(-1)}" =~ [\\] ]]
then
LAST_PREFIX="${LAST_PREFIX}${PREFIX%?}${INFIX}"
else
SET[${#SET[@]}]="${LAST_PREFIX}${PREFIX}"
LAST_PREFIX=''
fi
ARG="${SUFFIX}"
done
[[ -n "${LAST_PREFIX}" ]] && SET[${#SET[@]}]="${LAST_PREFIX}"
else
[[ ${TRIM_TRAIL_NL} -eq 0 ]] || {
# Remove the trailing delimiter, if present, because
# otherwise an empty array element will be created in the
# 'read' command below, thanks to the newline appended by
# the here-string.
ARG="${ARG%["${DELIM}"]}"
}
IFS="${DELIM}" read -r -d '' -a SET <<< "${ARG}"
fi
else
while IFS='' read -r -d '' -n 1 CHAR
do
SET[${#SET[@]}]="${CHAR}"
done <<< "${ARG}"
fi
declare -i SET_LEN=${#SET[@]-}
[[ ${TRIM_TRAIL_NL} -eq 0 || ${SET_LEN} -eq 0 ]] || {
# Remove the trailing newline that the here-string unhelpfully
# appends in the above 'read' command.
declare -i SET_LAST=$(( ${#SET[@]} - 1 ))
if [ -n "${DELIM}" ]
then
SET[SET_LAST]="${SET[SET_LAST]%[[:space:]]}"
else
unset SET[SET_LAST]
fi
}
local LIST
printf -v LIST '%q ' "${SET[@]-}"
printf -v OUT '%s%s' "${OUT}" "${LIST}"
done
printf '%s' "${OUT% }"
}
# function translatedList:
#
# Returns a list of items separated by the specified output separator,
# optionally trimming whitespace from items, removing duplicate entries,
# and/or outputting the list in reverse order, according to the flags
# specified.
#
# -l optionally trims leading whitespace from each set item.
#
# -n optionally preserves null items.
#
# -q optionally escapes each item being output, in a way that protects spaces,
# quotes, and other special characters from being misinterpreted by the
# shell. Useful for assigning the output of this function to an array,
# via the following construct:
#
# declare -a ARRAY="( `translatedList -q "${INPUT_ARRAY[@]}"` )"
#
# Note that while this option can be used simultaneously with an output
# separator specified via -s, such usage is not guaranteed to be parsable,
# depending upon the value of the separator.
#
# -r optionally processes the set in reverse order, outputting the set in
# reverse order, and eliminating duplicate items in reverse order when -u
# is specified.
#
# -s optionally specifies an output separator for each set item. Defaults to
# ' '.
#
# -S optionally appends an output separator at the end of the output. By
# default, no output separator appears at the end of the output.
#
# -t optionally trims trailing whitespace from each set item.
#
# -T optionally trims leading and trailing whitespace from each set item.
#
# -u optionally outputs only unique items, discarding duplicates from the
# output.
#
# Examples:
#
# $ translatedList a b a c b d a
# a b a c b d a
#
# $ translatedList -r a b a c b d a
# a d b c a b a
#
# $ translatedList -u a b a c b d a
# a b c d
#
# $ translatedList -r -u a b a c b d a
# a d b c
#
# $ translatedList -s ';' -S a b a c b d a
# a;b;a;c;b;d;a;
#
# $ translatedList -l '[' ' leading' ' both ' 'trailing ' ']'
# [ leading both trailing ]
#
# $ translatedList -t '[' ' leading' ' both ' 'trailing ' ']'
# [ leading both trailing ]
#
# $ translatedList -T '[' ' leading' ' both ' 'trailing ' ']'
# [ leading both trailing ]
#
# $ translatedList -l -t '[' ' leading' ' both ' 'trailing ' ']'
# [ leading both trailing ]
#
# $ translatedList -s ',' 1 2 '' 4 '' 5
# 1,2,4,5
#
# $ translatedList -s ',' -n 1 2 '' 4 '' 5
# 1,2,,4,,5
#
# $ translatedList -s ',' -n -u 1 2 '' 4 '' 5
# 1,2,,4,5
#
# $ translatedList -q 'hello there' 'my "friend"' '`whoami`'
# hello\ there my\ \"friend\" \`whoami\`
#
# $ translatedList -s ',' -q 'hello there' 'my "friend"'
# hello\ there,my\ \"friend\" \`whoami\`
function translatedList()
{
local SEP=' '
declare -i IS_REVERSED=0
declare -i IS_LEAD_TRIMMED=0
declare -i IS_TRAIL_TRIMMED=0
declare -i IS_UNIQUE=0
declare -i PRESERVE_NULL_ITEMS=0
local FLAG_QUOTED=''
local FLAG_TRAILING_SEP=''
# Parse function options.
declare -i OPTIND
local OPT=''
while getopts ':lnqrs:StTu' OPT
do
case "${OPT}" in
d)
DELIM="${OPTARG}"
;;
l)
let IS_LEAD_TRIMMED=1
;;
n)
let PRESERVE_NULL_ITEMS=1
;;
q)
FLAG_QUOTED="-${OPT}"
;;
r)
let IS_REVERSED=1
;;
s)
SEP="${OPTARG}"
;;
S)
FLAG_TRAILING_SEP="-${OPT}"
;;
t)
let IS_TRAIL_TRIMMED=1
;;
T)
let IS_LEAD_TRIMMED=1
let IS_TRAIL_TRIMMED=1
;;
u)
let IS_UNIQUE=1
;;
*)
return 2
esac
done
shift $(( OPTIND - 1 ))
# Done parsing function options.
local UNIQUE='|'
local RESULTS=()
if [ ${IS_REVERSED} -eq 0 ]
then
declare -i I=1
declare -i STOP=$(( ${#} + 1 ))
declare -i INC=1
else
declare -i I=${#}
declare -i STOP=0
declare -i INC=-1
fi
while [ ${I} -ne ${STOP} ]
do
local SET_MEMBER="${!I}"
let I+=INC
[[ ${IS_LEAD_TRIMMED} -eq 0 ]] || \
SET_MEMBER="${SET_MEMBER#"${SET_MEMBER%%[![:space:]]*}"}"
[[ ${IS_TRAIL_TRIMMED} -eq 0 ]] || \
SET_MEMBER="${SET_MEMBER%"${SET_MEMBER##*[![:space:]]}"}"
[[ -n "${SET_MEMBER}" || ${PRESERVE_NULL_ITEMS} -ne 0 ]] \
|| continue
if [ ${IS_UNIQUE} -ne 0 ]
then
local UNIQUE_MEMBER
# Perform CSV-like escaping of the '|' character so that
# it can be used safely as an item delimiter within the
# concatenated string of unique values This is to
# prevent item values with '|' from causing the unique
# verification to report false positives.
UNIQUE_MEMBER="${SET_MEMBER//\"/\"\"}"
UNIQUE_MEMBER="${UNIQUE_MEMBER//|/\"|\"}"
[[ "${UNIQUE}" =~ "|${UNIQUE_MEMBER}|" ]] && continue
UNIQUE="${UNIQUE}${UNIQUE_MEMBER}|"
fi
printf -v SET_MEMBER '%s' "${SET_MEMBER}"
RESULTS[${#RESULTS[@]}]="${SET_MEMBER}"
done
if [ ${#RESULTS[@]} -gt 0 ]
then
joinedList ${FLAG_QUOTED} -s "${SEP}" ${FLAG_TRAILING_SEP} \
"${RESULTS[@]}"
fi
}