Project

General

Profile

1
#!/bin/bash -e
2
set -o errexit # in case caller did not have -e in #! line
3

    
4
if test ! "$_util_sh_include_guard_utils"; then
5
_util_sh_include_guard_utils=1
6

    
7
isset() { test "${!1+isset}"; }
8

    
9
realpath() { readlink -f -- "$1"; }
10

    
11
include_guard_var() { realpath "$1"|builtin command sed 's/[^a-zA-Z0-9_]/_/g'; }
12

    
13
self_not_included() # usage: if self_not_included; then ... fi
14
{
15
	test $# -ge 1 || set -- "${BASH_SOURCE[1]}"
16
	local include_guard="$(include_guard_var "$1")"
17
	alias self_being_included=false
18
	! isset "$include_guard" && \
19
	{ eval "$include_guard"=1; alias self_being_included=true; }
20
}
21

    
22
# to load newly-defined aliases for use in functions in the same file:
23
## fi # load new aliases
24
## if self_being_included; then
25
# this is needed because aliases defined inside an if statement are not
26
# available inside that if statement
27

    
28
fi
29

    
30

    
31
if self_not_included "${BASH_SOURCE[0]}"; then
32

    
33

    
34
#### options
35

    
36
shopt -s expand_aliases
37

    
38

    
39
#### vars
40

    
41
set_var() { eval "$1"'="$2"'; }
42

    
43
set_inv() { set_var no_"$1" "$(test "${!1}" || echo 1)"; }
44

    
45
# usage: local var=...; local_inv
46
alias local_inv='declare "no_$var=$(test "${!var}" || echo 1)"'
47

    
48
unexport() { export -n "$@"; }
49
	# `declare +x` won't work because it defines the var if it isn't set
50

    
51
get_prefix_vars() { : "${prefix:?}"; eval echo '${!'$prefix'*}'; }
52

    
53
# usage: local prefix=..._; import_vars
54
# when used inside another alias 2+ levels deep, *must* be run inside a function
55
alias import_vars="$(cat <<'EOF'
56
: "${prefix:?}"
57
declare src_var dest_var
58
for src_var in $(get_prefix_vars); do
59
	dest_var="${src_var#$prefix}"
60
	declare "$dest_var=${!src_var}"; echo_vars "$dest_var"
61
done
62
EOF
63
)"
64

    
65

    
66
#### aliases
67

    
68
unalias() { builtin unalias "$@" 2>&- || true; } # no error if undefined
69

    
70
# usage: alias alias_='var=value run_cmd '
71
function run_cmd() { "$@"; }
72
alias run_cmd='"run_cmd" ' # last space alias-expands next word
73

    
74

    
75
#### functions
76

    
77
alias self='command "$FUNCNAME"' # usage: wrapper() { self ...; }
78

    
79

    
80
#### exceptions
81

    
82
# usage: cmd || { save_e; ...; rethrow; }
83
alias export_e='e=$?'
84
alias save_e='declare e=$?'
85
alias rethrow='return "$e"'
86
alias rethrow_subshell='exit "$e"'
87

    
88
fi # load new aliases
89
if self_being_included; then
90

    
91
# usage: try cmd...; ignore status; if catch status; then ...; fi; end_try
92

    
93
function try() { e=0; "$@" || { export_e; true; }; }
94
alias try='declare e; "try" ' # last space alias-expands next word
95

    
96
catch() { test "$e" -eq "$1"; e=0; }
97

    
98
ignore() { catch "$@" || true; }
99

    
100
alias end_try='rethrow'
101
alias end_try_subshell='rethrow_subshell'
102

    
103
fi # load new aliases
104
if self_being_included; then
105

    
106

    
107
#### integers
108

    
109
let!() { let "$@" || true; } # always returns true; safe to use for setting
110
	# "If the last ARG evaluates to 0, let returns 1" (`help let`)
111

    
112
bool2int() { try test ! "$1"; echo "$e"; } # empty->0; non-empty->1
113

    
114

    
115
#### strings
116

    
117
repeat() # usage: str=... n=... repeat
118
{
119
	: "${str?}" "${n:?}"; local n="$n" # will be modified in function
120
	for (( ; n > 0; n-- )); do printf '%q' "$str"; done
121
}
122

    
123
sed_ere_flag="$(test "$(uname)" = Darwin && echo E || echo r)"
124

    
125
sed() { self -"$sed_ere_flag" "$@";}
126

    
127
rtrim() { sed 's/[[:space:]]+$//' <<<"$1"; }
128

    
129

    
130
#### arrays
131

    
132
join() { local IFS="$delim"; echo "$*"; } # usage: delim=... join elems...
133

    
134
reverse() # usage: array=($(reverse args...))
135
{
136
	local i
137
	for (( i=$#; i > 0; i-- )); do printf '%q ' "${!i}"; done
138
}
139

    
140
contains() # usage: contains value in_array...
141
{
142
	local value="$1"; shift
143
	local elem
144
	for elem in "$@"; do if test "$elem" = "$value"; then return 0; fi; done
145
	return 1
146
}
147

    
148

    
149
#### paths
150

    
151
canon_rel_path()
152
{
153
	local path="$1"
154
	path="$(realpath "$path")" # canonicalize
155
	path="${path#$(pwd -P)/}" # remove any shared prefix with the current dir
156
	echo "$path"
157
}
158

    
159
# makes $1 a canon_rel_path if it's a filesystem path
160
alias cmd2rel_path="$(cat <<'EOF'
161
if test "$(type -t "$1")" = file && test -e "$1"; then # not relative to PATH
162
	declare _1="$1"; shift
163
	set -- "$(canon_rel_path "$_1")" "$@"
164
fi
165
EOF
166
)"
167

    
168

    
169
#### verbose output
170

    
171

    
172
err_fd=2 # stderr
173

    
174
usage() { echo "Usage: $1" >&2; return 2; }
175

    
176

    
177
### logging
178

    
179
log_fd=2 # stderr
180

    
181
if test "$explicit_errors_only"; then verbosity=0; fi # hide startup logging
182

    
183
# set verbosity
184
if isset verbose; then : "${verbosity:=$(bool2int "$verbose")}"; fi
185
if isset vb; then : "${verbosity:=$vb}"; fi
186
: "${verbosity=2}" # default
187
: "${verbosity:=0}" # ensure non-empty
188
export verbosity # propagate to invoked commands
189

    
190
: "${log_level_indent=| }" "${log_indent=}"
191
export log_level_indent log_indent # propagate to invoked commands
192
alias indent='declare log_indent="$log_indent$log_level_indent"'
193

    
194
# usage: in func:      PS4++; ...
195
#        outside func: PS4++; ...; PS4--
196
alias PS4++='declare PS4="${PS4:0:1}$PS4"'
197
alias PS4--='declare PS4="${PS4#${PS4:0:1}}"'
198

    
199
# usage: in func:      log++; ...
200
#        outside func: log++; ...; log--
201
alias log++='{ PS4++; declare verbosity="$verbosity"; let! verbosity--; }'
202
alias log--='{ PS4--; declare verbosity="$verbosity"; let! verbosity++; }'
203

    
204
fi # load new aliases
205
if self_being_included; then
206

    
207
can_log() { test "$verbosity" -gt 0; } # verbosity=0 turns off all logging
208

    
209
log() { if can_log; then echo "$log_indent$PS4$1" >&"$log_fd"; fi; }
210

    
211
# usage: symbol=... log_custom msg
212
log_custom()
213
{
214
	local log_indent="${log_indent//[^ ]/$symbol}" PS4="$symbol${PS4#?}"
215
	log "$@"
216
}
217

    
218
log_err() { symbol=* verbosity=1 log_fd="$err_fd" log_custom "$@"; }
219

    
220
log_info() { symbol='#' log_custom "$@"; }
221

    
222
# usage: cmd || { save_e; log_e; ...; rethrow; }
223
log_e() { log_err "command exited with error $e"; }
224

    
225
# usage: cmd || [type=...] die msg
226
die() { save_e; "log_${type:-err}" "$1"; rethrow; }
227

    
228

    
229
### command echoing
230

    
231
alias echo_params='log "$*"'
232

    
233
fi # load new aliases
234
if self_being_included; then
235

    
236
echo_cmd() { echo_params; }
237

    
238
## internal commands
239

    
240
.()
241
{
242
	cmd2rel_path; set -- . "$@"; (log++; echo_params; can_log) && indent || true
243
	builtin "$@"
244
}
245

    
246
echo_eval() { echo_params; builtin eval "$@"; }
247

    
248
## external commands
249

    
250
disable_logging() { echo_eval exec "$log_fd>/dev/null"; }
251

    
252
function command() # usage: [cmd_log_fd=|1|2|#] command extern_cmd...
253
# to view only explicitly-displayed errors: explicit_errors_only=1 script...
254
{
255
	cmd2rel_path; (echo_params; can_log) && indent || true
256
	(
257
		# the following redirections must happen in exactly this order
258
		if test "$cmd_log_fd"; then
259
			echo_eval exec "$cmd_log_fd>$(if (log++; can_log); then \
260
			echo "&$log_fd"; else echo /dev/null; fi)"
261
		fi
262
		if test "$cmd_log_fd" != 2; then # fd 2 not used for logging
263
			exec 2>&"$err_fd" # assume fd 2 used for errors
264
		fi
265
		
266
		exec -- "$@" # -- so cmd name not treated as `exec` option
267
	) || return
268
}
269

    
270
# auto-echo common external commands
271
for cmd in env rm; do alias "$cmd=command $cmd"; done; unset cmd
272

    
273
## functions
274

    
275
# usage: func() { [minor=1] echo_func; ... }
276
function echo_func() # usage: [minor=1] "echo_func" "$@" && indent || true
277
# exit status: whether function call was echoed
278
{
279
	log++; if test "$minor"; then log++; fi
280
	local script="$(canon_rel_path "${BASH_SOURCE[1]}")"
281
	echo_cmd "$script:${BASH_LINENO[0]}" "${FUNCNAME[1]}" "$@"
282
	can_log
283
}
284
alias echo_func='"echo_func" "$@" && indent || true'
285

    
286
## vars
287

    
288
echo_vars() # usage: echo_vars var...
289
{
290
	log++; log++
291
	if can_log; then
292
		local var
293
		for var in "${@%%=*}"; do log "$(declare -p "$var")"; done
294
	fi
295
}
296

    
297
echo_export() { builtin export "$@"; echo_vars "$@"; }
298

    
299
if test "$verbosity" -ge 2; then
300
	alias export="echo_export" # automatically echo env vars when they are set
301
fi
302

    
303

    
304
### external command input/output
305

    
306
# usage: cmd1 | { pipe_delay; cmd2; }
307
alias pipe_delay='sleep 0.1' # s; display after leading output of cmd1
308

    
309
fi # load new aliases
310
if self_being_included; then
311

    
312
echo_stdin() # usage: input|echo_stdin|cmd
313
{
314
	log++
315
	if can_log; then
316
		pipe_delay
317
		echo ----- >&"$log_fd"
318
		tee -a /dev/fd/"$log_fd";
319
		echo ----- >&"$log_fd"
320
	else cat
321
	fi
322
}
323

    
324
alias echo_stdout='echo_stdin' # usage: cmd|echo_stdout
325

    
326
fi # load new aliases
327
if self_being_included; then
328

    
329

    
330
#### streams
331

    
332
fd_exists() { (: <&"$1") 2>/dev/null; }
333

    
334
require_fd_not_exists() # usage: require_fd_not_exists fd || return 0
335
{ ! fd_exists "$1" || type=info die "fd $1 already exists, skipping"; }
336

    
337
set_fd() # usage: dest=fd dir='[<>]' src=fd [noclobber=1] set_fd
338
{
339
	echo_func
340
	: "${dest:?}" "${dir:?}" "${src:?}"
341
	test ! "$noclobber" || require_fd_not_exists "$dest" || return 0
342
	echo_eval exec "$dest$dir&$src"
343
}
344

    
345
shadow_fd() # usage: prefix=# src=fd dir='[<>]' shadow_fd
346
{
347
	echo_func
348
	: "${prefix:?}" "${src:?}" "${dir:?}"
349
	dest="$prefix$src" noclobber=1 set_fd
350
}
351

    
352
# convention: use fd 10/11/12 for command-specific alternate stdin/stdout/stderr
353

    
354
set_global_fds()
355
# allows commands to access global stdin/stdout/stderr using fd 20/21/22
356
# this works even when /dev/tty isn't available
357
{
358
	log++; echo_func; log++
359
	local prefix=2
360
	# ignore errors if a source fd isn't open
361
	src=0 dir='<' shadow_fd || true
362
	src=1 dir='>' shadow_fd || true
363
	src=2 dir='>' shadow_fd || true
364
}
365
set_global_fds
366
err_fd=22 # global stderr
367

    
368
# usage: explicit_errors_only=1 script...
369
# show only explicitly-displayed errors (which have been redirected to fd 22)
370
# most of the time this has the same effect as `verbosity=0 script...`,
371
# which displays everything that isn't explicitly hidden
372
# this option should only be used for testing the explicit error displaying
373
if test "$explicit_errors_only"; then disable_logging; fi
374

    
375

    
376
#### functions
377

    
378
func_exists() { declare -f "$1" >/dev/null; }
379

    
380
copy_func() # usage: from=... to=... copy_func
381
# $to must not exist. to get around the no-clobber restriction, use `unset -f`.
382
{
383
	: "${from:?}" "${to:?}"
384
	func_exists "$from" || die "function does not exist: $from"
385
	! func_exists "$to" || die "function already exists: $to"
386
	local from_def="$(declare -f "$from")"
387
	eval "$to${from_def#$from}"
388
}
389

    
390
func_override() # usage: func_override old_name__suffix
391
{ from="${1%%__*}" to="$1" copy_func; }
392

    
393
ensure_nested_func() # usage: func__nested_func() { ensure_nested_func; ... }
394
{
395
	local nested_func="${FUNCNAME[1]}"
396
	local func="${nested_func%%__*}"
397
	contains "$func" "${FUNCNAME[@]}" || \
398
		die "$nested_func() must be used by $func()"
399
}
400

    
401

    
402
#### commands
403

    
404
top_script="$(canon_rel_path "$0")" # outermost script
405
top_dir="$(dirname "$top_script")"
406

    
407
require_not_exists() # usage: require_not_exists file || return 0
408
{ test ! -e "$1" || type=info die "file "$1" already exists, skipping"; }
409

    
410
# auto-removes a command's output file on error (like make's .DELETE_ON_ERROR)
411
function to_file() # usage: stdout=... [if_not_exists=1] to_file cmd...
412
{
413
	echo_func
414
	: "${stdout?}"; echo_vars stdout
415
	test ! "$if_not_exists" || require_not_exists "$stdout" || return 0
416
	"$@" >"$stdout" || { save_e; log_e; rm "$stdout"; rethrow; }
417
}
418
alias to_file='"to_file" ' # last space alias-expands next word
419

    
420
run_args_cmd() # runs the command line args command
421
{
422
	test $? -eq 0 || return
423
	eval set -- "$(reverse "${BASH_ARGV[@]}")"
424
	test $# -ge 1 || set -- all
425
	echo_cmd "$top_script" "$@"; "$@"
426
}
427

    
428
fwd() # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
429
{
430
	echo_func
431
	: "${subdirs?}"
432
	
433
	for subdir in "${subdirs[@]}"; do
434
		"$(dirname "${BASH_SOURCE[1]}")"/"$subdir"/run "$@"
435
	done
436
}
437

    
438

    
439
#### URLs
440

    
441
localize_url() { test _"$1" = _"$(hostname -f)" || echo "$1"; }
442

    
443
fi
(5-5/5)