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
#!/bin/bash
# shellcheck disable=SC2030,SC2031
# This library gives access to these functions:
# msg MSG prints MSG, except if $quiet==1
# prompt MSG prints MSG and sets $response to user input
# debug_msg MSG prints MSG only if $verbose==1
# nonfatal_error_msg MSG prints MSG to STDERR, except if $quiet==1
# error_msg MSG prints MSG to STDERR, except if $quiet==1
# help_msg prints built-in documentation
# usage_msg prints usage instructions to STDERR, except if $quiet==1
# version_msg prints version to STDERR, except if $quiet==1
# assert_root checks if user is root, else errors
# is_integer VALUE checks if VALUE is an integer
# is_natural VALUE checks if VALUE is an integer >= 0
# is_positive_integer VALUE checks if VALUE is an integer
# contains NEEDLE HAYSTACK checks if NEEDLE is in array HAYSTACK
# prompt_overwrite FILE prompts user for permission to overwrite FILE
# fn_basename FN extracts identifiable base from FN
# fn_extension FN extracts file extension from FN
# archive_extension FN extracts compression and encryption extension from FN
#
# Through some means, these environment variables should be set:
# name name of program
# version version of program
# help_message built-in documentation
# verbose 0 or 1; should more messages be shown, with debugging prefixes?
# quiet 0 or 1; should messages be suppressed?
# Internal API - precedes a message
# Normal ->
# Quiet ->
# Verbose -> <LEVEL>:<PROGRAM>:
# Verbose AND Quiet -> <LEVEL>:<PROGRAM>:
verbose_prefix() {
if [[ "${verbose:=0}" -eq 1 ]]; then
(/usr/bin/printf "%s:%s:" "$1" "$name")
fi
}
# Internal API - precedes a message
# Normal -> <PROGRAM>:
# Quiet ->
# Verbose -> ERROR:<PROGRAM>:
# Verbose AND Quiet -> ERROR:<PROGRAM>:
error_prefix() {
if [[ "${verbose:=0}" -eq 1 ]]; then
(>&2 /usr/bin/printf "ERROR:%s:" "$name")
elif [[ "${quiet:=0}" -eq 0 ]]; then
(>&2 /usr/bin/printf "%s: " "$name")
fi
}
# Internal API - follows a prefix
# Normal -> <MESSAGE>
# Quiet ->
# Verbose -> <MESSAGE>
# Verbose AND Quiet -> <MESSAGE> (NOTE: unsuppressed)
base_msg() {
if [[ "${quiet:=0}" -eq 0 ]]; then
/usr/bin/printf "%s\n" "$1"
elif [[ "${verbose:=0}" -eq 1 ]]; then
/usr/bin/printf "%s (NOTE: unsuppressed)\n" "$1"
fi
}
# Internal API
# Normal -> <MESSAGE>
# Quiet ->
# Note: ignore Verbose
dump_msg() {
if [[ "${quiet:=0}" -eq 0 ]]; then
/usr/bin/printf "%s\n" "$1"
fi
}
# Normal -> <MESSAGE>
# Quiet ->
# Verbose -> INFO:<PROGRAM>:<MESSAGE>
# Verbose AND Quiet -> INFO:<PROGRAM>:<MESSAGE> (NOTE: unsuppressed)
msg() {
verbose_prefix "INFO"
base_msg "$1"
}
# Normal -> <MESSAGE>
# Verbose -> PROMPT:<PROGRAM>:<MESSAGE>
# DEBUG:<PROGRAM>:Received value of <VALUE>
# Note: if Quiet, exit as failure
prompt() {
if [[ "${quiet:=0}" -eq 0 ]]; then
verbose_prefix "PROMPT"
read -r -p "$1" response
debug_msg "Received value of '${response}'"
else
exit 1
fi
}
# Normal ->
# Quiet ->
# Verbose -> DEBUG:<PROGRAM>:<MESSAGE>
# Verbose AND Quiet -> DEBUG:<PROGRAM>:<MESSAGE>
debug_msg() {
if [[ "${verbose:=0}" -eq 1 ]]; then
verbose_prefix "DEBUG"
/usr/bin/printf "%s\n" "$1"
fi
}
# Normal -> <PROGRAM>: <MESSAGE>
# Quiet ->
# Verbose -> ERROR:<PROGRAM>:<MESSAGE>
# Verbose AND Quiet -> ERROR:<PROGRAM>:<MESSAGE> (NOTE: unsuppressed)
nonfatal_error_msg() {
error_prefix
(>&2 base_msg "$1")
}
# Normal -> <PROGRAM>: <MESSAGE>
# Quiet ->
# Verbose -> ERROR:<PROGRAM>:<MESSAGE>
# Verbose AND Quiet -> ERROR:<PROGRAM>:<MESSAGE> (NOTE: unsuppressed)
# Note: exit as error
error_msg() {
nonfatal_error_msg "$1"
exit 1
}
# Normal -> <USAGE MESSAGE>
# Quiet ->
# Note: exit as error
# Note: ignore Verbose
usage_msg() {
(>&2 dump_msg "$(/usr/bin/printf "${help_message:=Usage: DEFAULT MYLIB HELP MSG}\n" | /usr/bin/grep -e 'Usage' | /usr/bin/head -n 1)")
exit 1
}
# Normal -> <HELP MESSAGE>
# <HELP MESSAGE>
# <HELP MESSAGE>
# Quiet ->
# Note: exit as success
# Note: ignore Verbose
help_msg() {
(dump_msg "${help_message:=DEFAULT MYLIB HELP MSG}")
exit 0
}
# Normal -> <PROGRAM> <VERSION>
# Quiet ->
# Note: exit as success
# Note: ignore Verbose
version_msg() {
(dump_msg "${name:=DEFAULT MYLIB NAME} ${version:=X.Y}")
exit 0
}
# Normal -> <PROGRAM>: Must be run as root
# Quiet ->
# Verbose -> ERROR:<PROGRAM>:Must be run as root
# Verbose AND Quiet -> ERROR:<PROGRAM>:Must be run as root (NOTE: unsuppressed)
# Note: exit as error
assert_root() {
if [[ "${EUID}" -ne 0 ]]; then
error_msg "Must be run as root"
fi
}
# is integer -> 0
# else -> 1
is_integer() {
[[ "$1" -eq "$1" ]] 2>/dev/null && return 0 || return 1
}
# is integer >=0 -> 0
# else -> 1
is_natural() {
[[ "$1" -ge 0 ]] 2>/dev/null && return 0 || return 1
}
# is integer >=1 -> 0
# else -> 1
is_positive_integer() {
[[ "$1" -ge 1 ]] 2>/dev/null && return 0 || return 1
}
# is in array -> 0
# else -> 1
contains() {
local pattern="$1"
shift
local code=1
for arg; do
if [[ "$arg" == "$pattern" ]]; then
code=0
break
fi
done
return "$code"
}
# file does not exist OR user input 'Yy*' -> 0
# else -> 1
prompt_overwrite() {
local code=0
if [[ -f "$1" ]]; then
prompt "File '${1}' already exists. Overwrite? [Y/n] "
case "$response" in
[Yy]*)
msg "Overwriting..."
;;
*)
nonfatal_error_msg "Exiting"
code=1
;;
esac
fi
return "$code"
}
# filename begins in . -> original filename
# else -> original filename up to first .
fn_basename() {
if [[ "$1" = ".*" ]]; then
/usr/bin/printf "%s\n" "$1"
else
/usr/bin/printf "%s\n" "$1" | /usr/bin/cut -f 1 -d '.'
fi
}
# filename begins in . -> original filename
# else -> original filename after first .
fn_extension() {
if [[ "$1" = ".*" ]]; then
/usr/bin/printf "%s\n" "$1"
else
/usr/bin/printf "%s\n" "$1" | /usr/bin/cut -f 2- -d '.'
fi
}
# filename matches a pattern -> pattern without leading .
# else ->
archive_extension() {
local ext=
case "$1" in
*.tar)
debug_msg "Detected tarball (no compression) without encryption"
ext="tar"
;;
*.tar.age)
debug_msg "Detected age tarball (no compression)"
ext="tar.age"
;;
*.tar.gpg)
debug_msg "Detected gpg tarball (no compression)"
ext="tar.gpg"
;;
*.tar.gz)
debug_msg "Detected gzip tarball without encryption"
ext="tar.gz"
;;
*.tar.gz.age)
debug_msg "Detected age gzip tarball"
ext="tar.gz.age"
;;
*.tar.gz.gpg)
debug_msg "Detected gpg gzip tarball"
ext="tar.gz.gpg"
;;
*.tar.xz)
debug_msg "Detected xz tarball without encryption"
ext="tar.xz"
;;
*.tar.xz.age)
debug_msg "Detected age xz tarball"
ext="tar.xz.age"
;;
*.tar.xz.gpg)
debug_msg "Detected gpg xz tarball"
ext="tar.xz.gpg"
;;
*.tar.zst|*.tar.zstd)
debug_msg "Detected zstandard tarball without encryption"
ext="tar.zst"
;;
*.tar.zst.age|*.tar.zstd.age)
debug_msg "Detected age zstandard tarball"
ext="tar.zst.age"
;;
*.tar.zst.gpg|*.tar.zstd.gpg)
debug_msg "Detected gpg zstandard tarball"
ext="tar.zst.gpg"
;;
*.tar.bz2)
debug_msg "Detected bz2 tarball without encryption"
ext="tar.bz2"
;;
*.tar.bz2.age)
debug_msg "Detected age bz2 tarball"
ext="tar.bz2.age"
;;
*.tar.bz2.gpg)
debug_msg "Detected gpg bz2 tarball"
ext="tar.bz2.gpg"
;;
*)
debug_msg "Could not parse filename"
;;
esac
/usr/bin/printf "%s\n" "$ext"
}