Project

General

Profile

1 8291 aaronmk
#!/bin/bash -e
2 9328 aaronmk
set -o errexit -o pipefail # errexit in case caller's #! line missing -e
3 8952 aaronmk
4 9018 aaronmk
if test ! "$_util_sh_include_guard_utils"; then
5
_util_sh_include_guard_utils=1
6
7 9798 aaronmk
isset() { declare -p "$1" &>/dev/null; }
8 9002 aaronmk
9 9074 aaronmk
realpath() { readlink -f -- "$1"; }
10 8703 aaronmk
11 9314 aaronmk
str2varname() { echo "${1//[^a-zA-Z0-9_]/_}"; }
12 8716 aaronmk
13 9312 aaronmk
include_guard_var() { str2varname "$(realpath "$1")"; }
14
15 9074 aaronmk
self_not_included() # usage: if self_not_included; then ... fi
16 8703 aaronmk
{
17 8971 aaronmk
	test $# -ge 1 || set -- "${BASH_SOURCE[1]}"
18 8703 aaronmk
	local include_guard="$(include_guard_var "$1")"
19 8793 aaronmk
	alias self_being_included=false
20 9003 aaronmk
	! isset "$include_guard" && \
21 8793 aaronmk
	{ eval "$include_guard"=1; alias self_being_included=true; }
22 8703 aaronmk
}
23
24 8793 aaronmk
# to load newly-defined aliases for use in functions in the same file:
25
## fi # load new aliases
26
## if self_being_included; then
27
# this is needed because aliases defined inside an if statement are not
28
# available inside that if statement
29
30 9018 aaronmk
fi
31 9017 aaronmk
32 9018 aaronmk
33 8704 aaronmk
if self_not_included "${BASH_SOURCE[0]}"; then
34
35 9017 aaronmk
36
#### options
37
38 8709 aaronmk
shopt -s expand_aliases
39
40 9017 aaronmk
41 9789 aaronmk
#### stubs
42
43 9794 aaronmk
__caller_indent='log_indent="$log_indent$log_indent_step"'
44
alias caller_indent="$__caller_indent"
45
alias indent="declare $__caller_indent"
46
47 9789 aaronmk
function echo_func() { :; }
48 9790 aaronmk
alias echo_func='"echo_func" "$FUNCNAME" "$@" && indent || true'
49 9789 aaronmk
50 9796 aaronmk
function echo_run() { :; }
51
alias echo_run='"echo_run" ' # last space alias-expands next word
52 9789 aaronmk
53 10017 aaronmk
# auto-echo common external commands
54 10018 aaronmk
for cmd in env rm which; do alias "$cmd=echo_run $cmd"; done; unset cmd
55 10017 aaronmk
56 9797 aaronmk
function echo_vars() { :; }
57 9796 aaronmk
58 9797 aaronmk
59 9226 aaronmk
#### vars
60
61
set_var() { eval "$1"'="$2"'; }
62
63 9420 aaronmk
set_default() { if ! isset "$1"; then set_var "$@"; fi; }
64
65 9226 aaronmk
set_inv() { set_var no_"$1" "$(test "${!1}" || echo 1)"; }
66
67
# usage: local var=...; local_inv
68
alias local_inv='declare "no_$var=$(test "${!var}" || echo 1)"'
69
70 9227 aaronmk
unexport() { export -n "$@"; }
71
	# `declare +x` won't work because it defines the var if it isn't set
72
73 9236 aaronmk
alias local_export='declare -x' # combines effects of local and export
74
75 9226 aaronmk
get_prefix_vars() { : "${prefix:?}"; eval echo '${!'$prefix'*}'; }
76
77
# usage: local prefix=..._; import_vars
78
# when used inside another alias 2+ levels deep, *must* be run inside a function
79
alias import_vars="$(cat <<'EOF'
80
: "${prefix:?}"
81
declare src_var dest_var
82
for src_var in $(get_prefix_vars); do
83
	dest_var="${src_var#$prefix}"
84
	declare "$dest_var=${!src_var}"; echo_vars "$dest_var"
85
done
86
EOF
87
)"
88
89
90 9311 aaronmk
#### caching
91
92
## shell-variable-based caching
93
94 9330 aaronmk
# usage: local cache_key=...; load_cache; \
95 9331 aaronmk
# if ! cached; then save_cache value || return; fi; echo_cached_value
96 9561 aaronmk
# cache_key for function inputs: "$(declare -p kw_param...) $*"
97 9311 aaronmk
alias load_cache='declare cache_var="$(str2varname "${FUNCNAME}___$cache_key")"'
98
alias cached='isset "$cache_var"'
99
alias save_cache='set_var "$cache_var"'
100
alias echo_cached_value='echo "${!cache_var}"'
101
102
clear_cache() # usage: func=... clear_cache
103
{ : "${func:?}"; unset $(prefix="${func}___" get_prefix_vars); }
104
105
fi # load new aliases
106
if self_being_included; then
107
108
109 9017 aaronmk
#### aliases
110
111 9074 aaronmk
unalias() { builtin unalias "$@" 2>&- || true; } # no error if undefined
112 8889 aaronmk
113 9191 aaronmk
# usage: alias alias_='var=value run_cmd '
114
function run_cmd() { "$@"; }
115
alias run_cmd='"run_cmd" ' # last space alias-expands next word
116 9017 aaronmk
117 9688 aaronmk
alias_append() { eval $(alias "$1")'"$2"'; } # usage: alias_append alias '; cmd'
118 9191 aaronmk
119 9688 aaronmk
120 9082 aaronmk
#### functions
121
122 9235 aaronmk
kw_params() # usage: func() { kw_params param_var...; }; ...; param_var=... cmd
123 9229 aaronmk
# removes keyword-param-only vars from the environment
124
{ unexport "$@"; }
125 9228 aaronmk
126 9799 aaronmk
# usage: cmd=... foreach_arg
127
function foreach_arg()
128
{
129 9808 aaronmk
	echo_func; kw_params cmd; : "${cmd:?}"
130
	local a; for a in "$@"; do
131 9806 aaronmk
		a="$(clog++ echo_run "$cmd" "$a")" || return; args+=("$a")
132
	done
133 9799 aaronmk
	echo_vars args
134
}
135
alias foreach_arg='"foreach_arg" "$@"; set -- "${args[@]}"; unset args'
136
137 9865 aaronmk
alias self='command "${FUNCNAME%%__*}"' # usage: wrapper() { self ...; }
138
alias self_sys='command -p "${FUNCNAME%%__*}"' # wrapper() { self_sys ...; }
139 9082 aaronmk
140 9678 aaronmk
pf() { declare -f "$@"; } # usage: pf function # prints func decl for debugging
141 9082 aaronmk
142 9677 aaronmk
all_funcs() # usage: for func in $(all_funcs); do ...; done # all declared funcs
143
{ declare -F|while read -r line; do echo -n "${line#declare -f } "; done; }
144 9673 aaronmk
145 9677 aaronmk
146 8886 aaronmk
#### exceptions
147
148 9032 aaronmk
# usage: cmd || { save_e; ...; rethrow; }
149 9031 aaronmk
alias export_e='e=$?'
150 9032 aaronmk
alias save_e='declare e=$?'
151 8976 aaronmk
alias rethrow='return "$e"'
152
alias rethrow_subshell='exit "$e"'
153
154 8978 aaronmk
fi # load new aliases
155
if self_being_included; then
156
157 9535 aaronmk
# usage: try cmd...; ignore_e status; if catch status; then ...; fi; end_try
158 8886 aaronmk
159 9448 aaronmk
function try() { e=0; benign_error=1 "$@" || { export_e; true; }; }
160 9177 aaronmk
alias try='declare e; "try" ' # last space alias-expands next word
161 8886 aaronmk
162 9534 aaronmk
catch() { test "$e" -eq "$1" && e=0; }
163 8886 aaronmk
164 9535 aaronmk
ignore_e() { catch "$@" || true; }
165 8886 aaronmk
166 8977 aaronmk
alias end_try='rethrow'
167
alias end_try_subshell='rethrow_subshell'
168 8886 aaronmk
169 9536 aaronmk
ignore() { save_e; ignore_e "$@"; rethrow; } # usage: try cmd || ignore status
170
171 9551 aaronmk
### signals
172
173
sig_e() { echo $(( 128+$(kill -l "$1") )); } # usage: sig_e SIGINT, etc.
174
175
ignore_sig() { ignore "$(sig_e "$1")"; }
176
177 9678 aaronmk
# usage: piped_cmd cmd1...|cmd2... # cmd2 doesn't read all its input
178 9551 aaronmk
function piped_cmd() { "$@" || ignore_sig SIGPIPE; }
179
alias piped_cmd='"piped_cmd" ' # last space alias-expands next word
180
181 9020 aaronmk
fi # load new aliases
182
if self_being_included; then
183 9017 aaronmk
184 9020 aaronmk
185 8899 aaronmk
#### integers
186
187 9074 aaronmk
let!() { let "$@" || true; } # always returns true; safe to use for setting
188 8899 aaronmk
	# "If the last ARG evaluates to 0, let returns 1" (`help let`)
189
190 9074 aaronmk
bool2int() { try test ! "$1"; echo "$e"; } # empty->0; non-empty->1
191 9004 aaronmk
192 9696 aaronmk
int2exit() { (( "$1" != 0 )); }
193 9017 aaronmk
194 9697 aaronmk
exit2bool() { if (( $? == 0 )); then echo 1; fi } # 0->non-empty; !=0->empty
195 9538 aaronmk
196 9697 aaronmk
197 9364 aaronmk
#### floats
198
199
int_part() { echo "${1%%.*}"; }
200
201
dec_suffix() { echo "${1#$(int_part "$1")}"; }
202
203
round_down() { int_part "$1"; }
204
205
float+int() { echo "$(($(int_part "$1")+$2))$(dec_suffix "$1")"; }
206
207 9544 aaronmk
float_set_min() { if (($(int_part $1) >= $2)); then echo $1; else echo $2; fi; }
208 9364 aaronmk
209 9544 aaronmk
210 9079 aaronmk
#### strings
211
212 9653 aaronmk
starts_with() { test "${2#$1}" != "$2"; } # usage: starts_with pattern str
213
214 9711 aaronmk
match_prefix() # usage: match_prefix pattern str
215
{ if starts_with "$1" "$2"; then echo "${2%${2#$1}}"; fi }
216
217 9081 aaronmk
repeat() # usage: str=... n=... repeat
218
{
219 9304 aaronmk
	: "${str?}" "${n:?}"; local result= n="$n" # n will be modified in function
220
	for (( ; n > 0; n-- )); do result="$result$str"; done
221
	echo "$result"
222 9081 aaronmk
}
223
224 9550 aaronmk
sed_cmd="sed -`case "$(uname)" in Darwin) echo E;; *) echo r;; esac`"
225 9366 aaronmk
alias sed="$sed_cmd"
226 9079 aaronmk
227 9366 aaronmk
fi # load new aliases
228
if self_being_included; then
229 9079 aaronmk
230 9425 aaronmk
rtrim() { log+ 3; sed 's/[[:space:]]+$//' <<<"$1"; }
231 9079 aaronmk
232 9085 aaronmk
233 8854 aaronmk
#### arrays
234 8694 aaronmk
235 9938 aaronmk
echo1() { echo "$1"; } # usage: echo1 values...
236
237 9074 aaronmk
join() { local IFS="$delim"; echo "$*"; } # usage: delim=... join elems...
238 8816 aaronmk
239 9074 aaronmk
reverse() # usage: array=($(reverse args...))
240 8691 aaronmk
{
241
	local i
242 9080 aaronmk
	for (( i=$#; i > 0; i-- )); do printf '%q ' "${!i}"; done
243 8691 aaronmk
}
244
245 9097 aaronmk
contains() # usage: contains value in_array...
246
{
247
	local value="$1"; shift
248
	local elem
249
	for elem in "$@"; do if test "$elem" = "$value"; then return 0; fi; done
250
	return 1
251
}
252 9017 aaronmk
253 9715 aaronmk
#### streams
254 9097 aaronmk
255 9715 aaronmk
pipe_delay() # usage: cmd1 | { pipe_delay; cmd2; }
256
{ sleep 0.1; } # s; display after leading output of cmd1
257
258
259 8854 aaronmk
#### verbose output
260
261 9110 aaronmk
262 9208 aaronmk
err_fd=2 # stderr
263
264 9111 aaronmk
usage() { echo "Usage: $1" >&2; return 2; }
265 9110 aaronmk
266
267 9452 aaronmk
### log++
268 9110 aaronmk
269 9361 aaronmk
log_fd=2 # initially stderr
270 9209 aaronmk
271 9142 aaronmk
if test "$explicit_errors_only"; then verbosity=0; fi # hide startup logging
272
273 9006 aaronmk
# set verbosity
274 9005 aaronmk
if isset verbose; then : "${verbosity:=$(bool2int "$verbose")}"; fi
275 9145 aaronmk
if isset vb; then : "${verbosity:=$vb}"; fi
276 9272 aaronmk
: "${verbosity=1}" # default
277 9006 aaronmk
: "${verbosity:=0}" # ensure non-empty
278 9119 aaronmk
export verbosity # propagate to invoked commands
279 9381 aaronmk
export PS4 # follows verbosity, so also propagate this
280 8710 aaronmk
281 9731 aaronmk
is_outermost="$(! isset log_level; exit2bool)" # if util.sh env not yet set up
282
283 9542 aaronmk
# set log_level
284
: "${log_level=$(( ${#PS4}-1 ))}" # defaults to # non-space symbols in PS4
285
export log_level # propagate to invoked commands
286
287 9396 aaronmk
verbosity_int() { round_down "$verbosity"; }
288
289 9450 aaronmk
# verbosities (and `make` equivalents):
290 9359 aaronmk
# 0: just print errors. useful for cron jobs.
291 9451 aaronmk
#    vs. make: equivalent to --silent, but suppresses external command output
292 9359 aaronmk
# 1: also external commands run. useful for running at the command line.
293 9450 aaronmk
#    vs. make: not provided (but sorely needed to avoid excessive output)
294 9359 aaronmk
# 2: full graphical call tree. useful for determining where error occurred.
295 9450 aaronmk
#    vs. make: equivalent to default verbosity, but with much-needed indents
296 9360 aaronmk
# 3: also values of kw params and variables. useful for low-level debugging.
297 9450 aaronmk
#    vs. make: not provided; need to manually use $(error $(var))
298 9359 aaronmk
# 4: also variables in util.sh commands. useful for debugging util.sh.
299 9450 aaronmk
#    vs. make: somewhat similar to --print-data-base
300 9359 aaronmk
# 5: also variables in logging commands themselves. useful for debugging echo_*.
301 9450 aaronmk
#    vs. make: not provided; need to search Makefile for @ at beginning of cmd
302 9359 aaronmk
# 6+: not currently used (i.e. same as 5)
303
304 9287 aaronmk
# definition: the log_level is the minimum verbosity needed to display a message
305
# for messages that use can_log(), the log_level starts with *1*, not 0
306
# for unfiltered messages, the log_level is 0 (i.e. still output at verbosity=0)
307 9288 aaronmk
# to view a message's log_level, count the # of + signs before it in the output
308 9284 aaronmk
309 9305 aaronmk
fi # load new aliases
310
if self_being_included; then
311
312 9299 aaronmk
# usage: in func:      log++; ...         OR  log_local; "log++"; ...
313 9176 aaronmk
#        outside func: log++; ...; log--
314 9720 aaronmk
#        before cmd:  "log++" cmd  OR  "log+" # cmd  OR  "log++" "log++" cmd
315 9716 aaronmk
# with a cmd, assignments are applied just to it, so log_local is not needed
316 9302 aaronmk
# without a cmd, "$@" expands to nothing and assignments are applied to caller
317 9305 aaronmk
# "${@:2}" expands to all of $@ after *1st* arg, not 2nd ($@ indexes start at 1)
318 9373 aaronmk
log+()
319
{
320
	# no local vars because w/o cmd, assignments should be applied to caller
321 9545 aaronmk
	PS4="$(str="${PS4:0:1}" n=$((log_level+$1-1)) repeat)${PS4: -2}"; \
322 9543 aaronmk
	log_level=$((log_level+$1)) \
323 9377 aaronmk
	verbosity="$(float+int "$verbosity" "-$1")" "${@:2}"
324 9373 aaronmk
}
325 9374 aaronmk
log++() { log+  1 "$@"; }
326
log--() { log+ -1 "$@"; }
327 9542 aaronmk
alias log_local=\
328
'declare PS4="$PS4" log_level="$log_level" verbosity="$verbosity"'
329 9395 aaronmk
alias log+='log_local; "log+"' # don't expand next word because it's not a cmd
330 9301 aaronmk
alias log++='log_local; "log++" ' # last space alias-expands next word
331
alias log--='log_local; "log--" ' # last space alias-expands next word
332 9751 aaronmk
# no clog+ alias because next word is not a cmd
333
alias clog++='"log++" ' # last space alias-expands next word
334
alias clog--='"log--" ' # last space alias-expands next word
335 9176 aaronmk
336 9846 aaronmk
verbosity_min() # usage: verbosity_min {min|} # ''->verbosity=''
337
{ if test ! "$1" -o "$(verbosity_int)" -lt "$1"; then verbosity="$1"; fi; }
338 9397 aaronmk
alias verbosity_min='log_local; "verbosity_min"'
339 9289 aaronmk
340 9878 aaronmk
# usage: (verbosity_compat; cmd)
341 9867 aaronmk
function verbosity_compat()
342 9878 aaronmk
{ echo_func; if ((verbosity == 1)); then unset verbosity; fi; }
343 9867 aaronmk
alias verbosity_compat='declare verbosity; "verbosity_compat"'
344 9397 aaronmk
345 9867 aaronmk
346 9289 aaronmk
# indent for call tree. this is *not* the log_level (below).
347 9382 aaronmk
: "${log_indent_step=| }" "${log_indent=}"
348
export log_indent_step log_indent # propagate to invoked commands
349 9289 aaronmk
350 9794 aaronmk
# see indent alias in stubs
351 9289 aaronmk
352
353 9190 aaronmk
fi # load new aliases
354
if self_being_included; then
355
356 9396 aaronmk
can_log() { test "$(verbosity_int)" -gt 0; }
357 9380 aaronmk
	# verbosity=0 turns off all logging
358 8895 aaronmk
359 9212 aaronmk
log() { if can_log; then echo "$log_indent$PS4$1" >&"$log_fd"; fi; }
360 9064 aaronmk
361 9270 aaronmk
log_custom() # usage: symbol=... log_custom msg
362 9242 aaronmk
{ log_indent="${log_indent//[^ ]/$symbol}" PS4="${PS4//[^ ]/$symbol}" log "$@";}
363 9070 aaronmk
364 9251 aaronmk
log_err() { symbol='#' verbosity=1 log_fd="$err_fd" log_custom "$@"; }
365 9070 aaronmk
366 9250 aaronmk
log_info() { symbol=: log_custom "$@"; }
367 9070 aaronmk
368 9678 aaronmk
die() # usage: cmd || [type=...] die msg # msg can use $? but not $()
369 9270 aaronmk
{ save_e; kw_params type; "log_${type:-err}" "$1"; rethrow; }
370 9069 aaronmk
371 9447 aaronmk
die_e() # usage: cmd || [benign_error=1] die_e [|| handle error]
372
{
373
	save_e; kw_params benign_error
374 9449 aaronmk
	if test "$benign_error"; then log++; fi
375 9447 aaronmk
	type="${benign_error:+info}" die "command exited with \
376
$(if test "$benign_error"; then echo status; else echo error; fi) $e"
377
	rethrow
378
}
379 8919 aaronmk
380 9437 aaronmk
381 9233 aaronmk
#### functions
382
383
func_exists() { declare -f "$1" >/dev/null; }
384
385
copy_func() # usage: from=... to=... copy_func
386
# $to must not exist. to get around the no-clobber restriction, use `unset -f`.
387
{
388
	: "${from:?}" "${to:?}"
389
	func_exists "$from" || die "function does not exist: $from"
390
	! func_exists "$to" || die "function already exists: $to"
391
	local from_def="$(declare -f "$from")"
392
	eval "$to${from_def#$from}"
393
}
394
395
func_override() # usage: func_override old_name__suffix
396 9559 aaronmk
{ from="${1%__*}" to="$1" copy_func; }
397 9233 aaronmk
398
ensure_nested_func() # usage: func__nested_func() { ensure_nested_func; ... }
399
{
400
	local nested_func="${FUNCNAME[1]}"
401
	local func="${nested_func%%__*}"
402
	contains "$func" "${FUNCNAME[@]}" || \
403
		die "$nested_func() must be used by $func()"
404
}
405
406
407 9240 aaronmk
#### paths
408
409 9313 aaronmk
# cache realpath
410
: "${realpath_cache=}" # default off because slower than without
411
if test "$realpath_cache"; then
412
func_override realpath__no_cache
413
realpath() # caches the last result for efficiency
414
{
415
	local cache_key="$*"; load_cache
416 9331 aaronmk
	if ! cached; then save_cache "$(realpath__no_cache "$@")" || return; fi
417 9313 aaronmk
	echo_cached_value
418
}
419
fi
420
421 9244 aaronmk
rel_path() # usage: base_dir=... path=... rel_path
422 9240 aaronmk
{
423 9788 aaronmk
	kw_params base_dir path
424 9244 aaronmk
	: "${base_dir:?}" "${path:?}"
425
426 9246 aaronmk
	local path="$path/" # add *extra* / to match path when exactly = base_dir
427
	path="${path#$base_dir/}" # remove prefix shared with base_dir
428
	path="${path%/}" # remove any remaining extra trailing /
429 9244 aaronmk
430 9245 aaronmk
	if test ! "$path"; then path=.; fi # ensure non-empty
431
432 9244 aaronmk
	echo_vars path
433 9240 aaronmk
	echo "$path"
434
}
435
436 9309 aaronmk
cd -P . # expand symlinks in $PWD so it matches the output of realpath
437
# do before setting $top_script_abs so realpath has less symlinks to resolve
438
439 9791 aaronmk
canon_rel_path() # usage: [base_dir=...] canon_rel_path path
440 9331 aaronmk
{
441 9791 aaronmk
	kw_params base_dir; local base_dir="${base_dir-$PWD}"
442
	base_dir="$(realpath "$base_dir")" || return
443 9331 aaronmk
	local path; path="$(realpath "$1")" || return
444 9791 aaronmk
	rel_path
445 9331 aaronmk
}
446 9244 aaronmk
447 9240 aaronmk
# makes $1 a canon_rel_path if it's a filesystem path
448
alias cmd2rel_path="$(cat <<'EOF'
449
if test "$(type -t "$1")" = file && test -e "$1"; then # not relative to PATH
450
	declare _1="$1"; shift
451 9788 aaronmk
	_1="$(clog++ canon_rel_path "$_1")" || return
452 9331 aaronmk
	set -- "$_1" "$@"
453 9240 aaronmk
fi
454
EOF
455
)"
456
457 9810 aaronmk
# usage: path_parents path; use ${dirs[@]} # includes the path itself
458
function path_parents()
459
{
460
	echo_func; local path="$1" prev_path=; dirs=()
461
	while test "$path" != "$prev_path"; do
462
		prev_path="$path"
463
		dirs+=("$path")
464
		path="${path%/*}"
465
	done
466
}
467
alias path_parents='declare dirs; "path_parents"'
468 9240 aaronmk
469 9810 aaronmk
470 9240 aaronmk
#### verbose output
471
472
473 9165 aaronmk
### command echoing
474
475
alias echo_params='log "$*"'
476
477 8995 aaronmk
fi # load new aliases
478
if self_being_included; then
479
480 9197 aaronmk
echo_cmd() { echo_params; }
481 9056 aaronmk
482 9549 aaronmk
function echo_run() { echo_params; "$@"; }
483 9796 aaronmk
# see echo_run alias after stub
484 9539 aaronmk
485 9278 aaronmk
echo_eval() { echo_params; builtin eval "$@"; }
486
487 9730 aaronmk
# usage: redirs=(...); [cmd_name_log_inc=#] echo_redirs_cmd
488 9655 aaronmk
function echo_redirs_cmd()
489
{
490 9730 aaronmk
	local cmd_name_log_inc="${cmd_name_log_inc-0}"
491
492 9657 aaronmk
	# print <>file redirs before cmd, because they introduce it
493 9730 aaronmk
	"log+" "$cmd_name_log_inc" echo_cmd "$@" $(
494 9809 aaronmk
		set -- "${redirs[@]}" # operate on ${redirs[@]}
495 9657 aaronmk
		while test "$#" -gt 0 && starts_with '[<>][^&]' "$1"
496
		do log "$1 \\"; shift; done # log() will run *before* echo_cmd itself
497
		echo "$@"
498 9655 aaronmk
	)
499
}
500
alias echo_redirs_cmd='"echo_redirs_cmd" "$@"'
501
502 9263 aaronmk
## vars
503
504
echo_vars() # usage: echo_vars var...
505
{
506 9320 aaronmk
	log+ 2
507 9263 aaronmk
	if can_log; then
508
		local var
509
		for var in "${@%%=*}"; do
510
			if isset "$var"; then log "$(declare -p "$var")"; fi
511
		done
512
	fi
513
}
514
515
echo_export() { builtin export "$@"; echo_vars "$@"; }
516
517 9379 aaronmk
alias export="echo_export" # automatically echo env vars when they are set
518 9263 aaronmk
519
func_override kw_params__lang
520
kw_params() { kw_params__lang "$@"; echo_vars "$@"; } # echo all keyword params
521
522 9273 aaronmk
## functions
523 9264 aaronmk
524 9315 aaronmk
# usage: local func=...; set_func_loc; use $file, $line
525
alias set_func_loc="$(cat <<'EOF'
526
: "${func:?}"
527
local func_info="$(shopt -s extdebug; declare -F "$func")" # 'func line file'
528
func_info="${func_info#$func }"
529
local line="${func_info%% *}"
530
local file="${func_info#$line }"
531
EOF
532
)"
533
534
fi # load new aliases
535
if self_being_included; then
536
537
func_loc() # gets where function declared in the format file:line
538 9331 aaronmk
{
539
	local func="$1"; set_func_loc
540
	file="$(canon_rel_path "$file")" || return
541
	echo "$file:$line"
542
}
543 9315 aaronmk
544 9273 aaronmk
# usage: func() { [minor=1] echo_func; ... }
545 9317 aaronmk
function echo_func()
546 9871 aaronmk
# usage: "echo_func" "$FUNCNAME" "$@" && indent || true
547 9273 aaronmk
# exit status: whether function call was echoed
548
{
549 9872 aaronmk
	log++; can_log || return
550 9317 aaronmk
	local func="$1"; shift
551 9788 aaronmk
	local loc; loc="$(clog++ func_loc "$func")" || return
552 9331 aaronmk
	echo_cmd "$loc" "$func" "$@"
553 9273 aaronmk
}
554 9790 aaronmk
# see echo_func alias after stub
555 9273 aaronmk
556 9276 aaronmk
fi # load new aliases
557
if self_being_included; then
558 9273 aaronmk
559 9276 aaronmk
560 9279 aaronmk
#### streams
561
562
fd_exists() { (: <&"$1") 2>/dev/null; }
563
564
require_fd_not_exists() # usage: require_fd_not_exists fd || return 0
565
{ ! fd_exists "$1" || type=info die "fd $1 already exists, skipping"; }
566
567 9712 aaronmk
set_fds() # usage: set_fds redirect...
568
{
569
	echo_func
570
571
	# add #<>&- before every #<>&# reopen to fix strange bash bug
572 9804 aaronmk
	local redirs=() i
573 9712 aaronmk
	for i in "$@"; do
574 9713 aaronmk
		local redir_prefix="$(match_prefix '*[<>]' "$i")"
575 9712 aaronmk
		if test "$redir_prefix"; then redirs+=("$redir_prefix&-"); fi
576 9713 aaronmk
		redirs+=("$i")
577 9712 aaronmk
	done
578
	set -- "${redirs[@]}"
579
580 9795 aaronmk
	if (($# > 0)); then echo_eval exec "$@"; fi
581 9712 aaronmk
}
582 9279 aaronmk
583
fd_set_default() # usage: fd_set_default 'dest[<>]src'
584
{
585
	echo_func
586
	local dest="${1%%[<>]*}"
587
	require_fd_not_exists "$dest" || return 0
588
	set_fds "$1"
589
}
590
591 9728 aaronmk
function filter_fd() # usage: (fd=# filter_fd filter_cmd...; with filter...)
592 9717 aaronmk
# useful e.g. to filter logging output or highlight errors
593
{
594
	echo_func; kw_params fd; : "${fd?}"
595
	set_fds "$fd>" >(pipe_delay; redirs=(">&$fd" "${redirs[@]}"); redir "$@")
596
	pipe_delay; pipe_delay # wait for >()'s pipe_delay and initial logging
597
}
598 9728 aaronmk
alias filter_fd='"filter_fd" ' # last space alias-expands next word
599 9717 aaronmk
600 9651 aaronmk
# convention: use fd 40/41/42 for command-specific alternate stdin/stdout/stderr
601 9900 aaronmk
# mnemonic: 4 looks like A for Alternate
602 9651 aaronmk
# do NOT use 1x, which are used by eval (which is used by set_fds())
603
# do NOT use 2x, which are used as global stdin/stdout/stderr
604
# do NOT use 3x, which are used for logging
605 9279 aaronmk
606 9282 aaronmk
setup_log_fd() # view logging output at verbosity >= 5
607
{
608 9319 aaronmk
	log+ 4; log-- echo_func
609 9282 aaronmk
	fd_set_default '30>&2' || true # stdlog
610
	log_fd=30 # stdlog
611
}
612
setup_log_fd
613
614 9279 aaronmk
set_global_fds()
615
# allows commands to access global stdin/stdout/stderr using fd 20/21/22
616
# this works even when /dev/tty isn't available
617 9283 aaronmk
# view logging output at verbosity >= 3
618 9279 aaronmk
{
619 9319 aaronmk
	log+ 2; log-- echo_func
620 9279 aaronmk
	# ignore errors if a source fd isn't open
621
	fd_set_default '20<&0' || true
622
	fd_set_default '21>&1' || true
623
	fd_set_default '22>&2' || true
624
}
625
set_global_fds
626
627
# usage: explicit_errors_only=1 script...
628
# show only explicitly-displayed errors (which have been redirected to fd 22)
629
# most of the time this has the same effect as `verbosity=0 script...`,
630
# which displays everything that isn't explicitly hidden
631
# this option should only be used for testing the explicit error displaying
632
if test "$explicit_errors_only"; then disable_logging; fi
633
634
635 9731 aaronmk
echo_vars is_outermost
636
637
638 9264 aaronmk
#### paths
639
640 9735 aaronmk
top_symlink_dir="$(dirname "$0")"; echo_vars top_symlink_dir
641 9736 aaronmk
top_symlink_dir_abs="$(realpath "$top_symlink_dir")"
642
	echo_vars top_symlink_dir_abs
643 9724 aaronmk
644 9269 aaronmk
top_script_abs="$(realpath "$0")"; echo_vars top_script_abs # outermost script
645
	# realpath this before doing any cd so this points to the right place
646 9724 aaronmk
top_dir_abs="$(dirname "$top_script_abs")"; echo_vars top_dir_abs
647 9269 aaronmk
648 9265 aaronmk
set_paths()
649
{
650 9788 aaronmk
	top_script="$(clog++ canon_rel_path "$top_script_abs")" || return
651 9331 aaronmk
		echo_vars top_script
652
	top_dir="$(dirname "$top_script")" || return; echo_vars top_dir
653 9265 aaronmk
}
654
set_paths
655 9264 aaronmk
656 9945 aaronmk
# usage: in_top_dir cmd...
657
function in_top_dir() { echo_func; (cd "$top_dir"; "$@"); }
658
alias in_top_dir='"in_top_dir" ' # last space alias-expands next word
659
660 9725 aaronmk
PATH_rm() # usage: PATH_rm path... # removes components from the PATH
661
{
662
	echo_func; echo_vars PATH; : "${PATH?}"
663
	PATH=":$PATH:" # add *extra* : to match at beginning and end
664
	for path in "$@"; do PATH="${PATH//:$path:/:}"; done
665
	PATH="${PATH#:}" # remove any remaining extra leading :
666
	PATH="${PATH%:}" # remove any remaining extra trailing :
667
	echo_vars PATH
668
}
669 9264 aaronmk
670 9726 aaronmk
no_PATH_recursion() # usage: (no_PATH_recursion; cmd...)
671
# allows running a system command of the same name as the script
672 9737 aaronmk
{
673
	echo_func
674
	PATH_rm "$top_dir_abs" "$top_symlink_dir" "$top_symlink_dir_abs" "$top_dir"
675
}
676 9725 aaronmk
677 9726 aaronmk
678 9264 aaronmk
#### verbose output
679
680
681 9123 aaronmk
## internal commands
682
683 9166 aaronmk
.()
684
{
685 9850 aaronmk
	clog++ clog++ echo_func
686
	cmd2rel_path; set -- "$FUNCNAME" "$@"
687 9435 aaronmk
	if (log++; echo_params; can_log); then indent; fi
688 9166 aaronmk
	builtin "$@"
689
}
690 9158 aaronmk
691 9853 aaronmk
.rel() # usage: .rel file [args...] # file relative to ${BASH_SOURCE[0]} dir
692
{
693
	clog++ clog++ echo_func; local file="$1"; shift
694
	. "$(canon_rel_path "$(dirname "${BASH_SOURCE[1]}")/$file")" "$@"
695
}
696
697 9253 aaronmk
cd() # indent is permanent within subshell cd was used in
698
{
699 9393 aaronmk
	log++ echo_func
700 9306 aaronmk
	cmd2rel_path; echo_cmd "$FUNCNAME" "$@"
701 9435 aaronmk
	if can_log; then caller_indent; fi
702 9307 aaronmk
	# -P: expand symlinks so $PWD matches the output of realpath
703 9306 aaronmk
	builtin "$FUNCNAME" -P "$@"
704 9313 aaronmk
705
	func=realpath clear_cache
706 9266 aaronmk
	set_paths
707 9253 aaronmk
}
708
709 9110 aaronmk
## external commands
710
711 9262 aaronmk
disable_logging() { set_fds "$log_fd>/dev/null"; }
712 9224 aaronmk
713 9685 aaronmk
function redir() # usage: local redirs=(#<>...); redir cmd...; unset redirs
714 9138 aaronmk
# to view only explicitly-displayed errors: explicit_errors_only=1 script...
715 9134 aaronmk
{
716 9686 aaronmk
	echo_func; kw_params redirs
717 9687 aaronmk
718
	case "$1" in redir|command) "$@"; return;; esac # redir will be run later
719 9685 aaronmk
	(
720
		log++ set_fds "${redirs[@]}"
721
		(case "$1" in command__exec) shift;; esac; echo_redirs_cmd)
722
		"$@"
723
	) || return
724
}
725
alias redir='"redir" ' # last space alias-expands next word
726
727 9689 aaronmk
alias_append save_e '; unset redirs' # don't redirect error handlers
728
729 9685 aaronmk
command() # usage: [cmd_log_fd=|1|2|#] [verbosity_min=] command extern_cmd...
730
{
731 9740 aaronmk
	echo_func; kw_params log_fd cmd_log_fd redirs verbosity_min
732 9291 aaronmk
	# if no cmd_log_fd, limit log_fd in case command uses util.sh
733
	local cmd_log_fd="${cmd_log_fd-$log_fd}"
734 9473 aaronmk
	local redirs=("${redirs[@]}")
735 9231 aaronmk
736 9685 aaronmk
	# determine redirections
737 9436 aaronmk
	if test "$cmd_log_fd"; then
738
		if can_log; then
739
			if test "$cmd_log_fd" != "$log_fd"; then
740 9473 aaronmk
				redirs+=("$cmd_log_fd>&$log_fd")
741 9436 aaronmk
			fi # else no redir needed
742 9473 aaronmk
		else redirs+=("$cmd_log_fd>/dev/null");
743 9436 aaronmk
		fi
744
	fi
745 9444 aaronmk
746 9685 aaronmk
	cmd2rel_path
747
	redir command__exec "$@" || die_e
748 9134 aaronmk
}
749 9685 aaronmk
command__exec()
750
{
751
	ensure_nested_func
752
	if can_log; then indent; fi
753
	if test "$verbosity_min"; then verbosity_min "$verbosity_min"; fi
754 9868 aaronmk
	verbosity_compat
755 9723 aaronmk
	builtin command "$@"
756 9685 aaronmk
}
757 9133 aaronmk
758 9110 aaronmk
759
### external command input/output
760 8907 aaronmk
761 9074 aaronmk
echo_stdin() # usage: input|echo_stdin|cmd
762 8702 aaronmk
{
763 8897 aaronmk
	if can_log; then
764 8998 aaronmk
		pipe_delay
765 9212 aaronmk
		echo ----- >&"$log_fd"
766
		tee -a /dev/fd/"$log_fd";
767
		echo ----- >&"$log_fd"
768 8897 aaronmk
	else cat
769
	fi
770 8702 aaronmk
}
771 8275 aaronmk
772 9318 aaronmk
echo_stdout() { echo_stdin; } # usage: cmd|echo_stdout
773 9044 aaronmk
774 8873 aaronmk
775 8854 aaronmk
#### commands
776
777 9622 aaronmk
already_exists_msg() # usage: cond || what=... already_exists_msg || return 0
778
{ type=info die "$what already exists, skipping"; }
779 9620 aaronmk
780 9122 aaronmk
require_not_exists() # usage: require_not_exists file || return 0
781 9622 aaronmk
{ test ! -e "$1" || what="file \"$1\"" already_exists_msg; }
782 9062 aaronmk
783 9680 aaronmk
function to_file() # usage: stdout=... [if_not_exists=1] [del=] to_file cmd...
784 8986 aaronmk
# auto-removes a command's output file on error (like make's .DELETE_ON_ERROR)
785 9048 aaronmk
{
786 9695 aaronmk
	echo_func; kw_params stdout if_not_exists del
787 9680 aaronmk
	: "${stdout?}"; local del="${del-1}"
788 9475 aaronmk
	if test "$if_not_exists"; then require_not_exists "$stdout" || return 0; fi
789 9481 aaronmk
790 9652 aaronmk
	local redirs=("${redirs[@]}" ">$stdout")
791 9690 aaronmk
	redir "$@" || { save_e; test ! "$del" || rm "$stdout"; rethrow; }
792 9048 aaronmk
}
793 9177 aaronmk
alias to_file='"to_file" ' # last space alias-expands next word
794 8986 aaronmk
795 9747 aaronmk
log_bg() { symbol='&' log_custom "$@"; }
796
797
log_last_bg() { log_bg '$!='"$!"; }
798
799
function bg_cmd() { echo_func; "$@" & log_last_bg; } # usage: bg_cmd cmd...
800
alias bg_cmd='"bg_cmd" ' # last space alias-expands next word
801
802 9074 aaronmk
run_args_cmd() # runs the command line args command
803 8272 aaronmk
{
804 8693 aaronmk
	eval set -- "$(reverse "${BASH_ARGV[@]}")"
805 8971 aaronmk
	test $# -ge 1 || set -- all
806 9844 aaronmk
	echo_cmd "$top_script" "$@"; time "$@"
807 8272 aaronmk
}
808
809 9074 aaronmk
fwd() # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
810 8272 aaronmk
{
811 8881 aaronmk
	echo_func
812 8284 aaronmk
	: "${subdirs?}"
813
814 9297 aaronmk
	for subdir in "${subdirs[@]}"; do "$top_dir"/"$subdir"/run "$@"; done
815 8272 aaronmk
}
816
817 9017 aaronmk
818 9552 aaronmk
#### filesystem
819
820 9830 aaronmk
alias mkdir='mkdir -p'
821
822 9556 aaronmk
alias file_size=\
823 9558 aaronmk
"stat `case "$(uname)" in Darwin) echo -f %z;; *) echo --format=%s;; esac`"
824 9552 aaronmk
825 9829 aaronmk
alias wildcard='shopt -s nullglob; echo' # usage: "$(wildcard glob...)"
826 9939 aaronmk
alias wildcard1='shopt -s nullglob; echo1' # usage: "$(wildcard1 glob...)"
827 9552 aaronmk
828 9831 aaronmk
fi # load new aliases
829
if self_being_included; then
830 9829 aaronmk
831 9831 aaronmk
mv2dir() { echo_func; mkdir "${!#}"; mv "$@"; } # usage: mv2dir ... dir
832
833
# usage: (mv_glob ... dir)
834
function mv_glob() { echo_func; if (($# > 1)); then mv2dir "$@"; fi; }
835
alias mv_glob='shopt -s nullglob; "mv_glob"'
836
837
838 8966 aaronmk
#### URLs
839
840 9074 aaronmk
localize_url() { test _"$1" = _"$(hostname -f)" || echo "$1"; }
841 8966 aaronmk
842 8704 aaronmk
fi