Project

General

Profile

1
#!/bin/bash -e
2
set -o errexit -o pipefail # errexit in case caller's #! line missing -e
3

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

    
7
isset() { declare -p "$1" &>/dev/null; }
8

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

    
11
str2varname() { echo "${1//[^a-zA-Z0-9_]/_}"; }
12

    
13
include_guard_var() { str2varname "$(realpath "$1")"; }
14

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

    
24
# 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
fi
31

    
32

    
33
if self_not_included "${BASH_SOURCE[0]}"; then
34

    
35

    
36
#### options
37

    
38
shopt -s expand_aliases
39
# **DON'T** do `shopt -s lastpipe` because this causes a segfault on Linux in
40
# stderr_matches(). (it also isn't supported on Mac.) use @PIPESTATUS instead.
41

    
42

    
43
#### stubs
44

    
45
alias log_local='declare PS4="$PS4" log_level="$log_level"'
46

    
47
function log++() { :; }
48

    
49
function log() { :; }
50

    
51
__caller_indent='log_indent="$log_indent$log_indent_step"'
52
alias caller_indent="$__caller_indent"
53
alias indent="declare $__caller_indent"
54

    
55
function echo_func() { :; }
56
alias echo_func='"echo_func" "$FUNCNAME" "$@" && indent || true'
57

    
58
function echo_run() { :; }
59
alias echo_run='"echo_run" ' # last space alias-expands next word
60

    
61
# auto-echo common external commands
62
for cmd in env rm which; do alias "$cmd=echo_run $cmd"; done; unset cmd
63

    
64
echo_builtin() { :; }
65

    
66
function echo_vars() { :; }
67

    
68

    
69
#### errors
70

    
71
err_fd=2 # stderr
72

    
73

    
74
#### debugging
75

    
76
debug_fd="$err_fd"
77

    
78
ps() { echo "$@" >&"$debug_fd"; } # usage: ps str...
79

    
80
pv() { declare -p "$@" >&"$debug_fd"; } # usage: pv var... # debug-prints vars
81

    
82
pf() { declare -f "$@" >&"$debug_fd"; } # usage: pf func... # prints func decls
83

    
84

    
85
#### logic
86

    
87
not() { ! "$@"; } # usage: wrapper_cmd not wrapped_cmd... # inverts exit status
88

    
89
bool!() # usage: "$(bool! "$bool_var")"
90
{ if test ! "$1"; then echo -n 1; fi } # empty<->non-empty
91

    
92

    
93
#### vars
94

    
95
alias local_array='declare -a'
96
	# `local` does not support arrays in older versions of bash/on Mac
97

    
98
set_var() { eval "$1"'="$2"'; }
99

    
100
set_default() { if ! isset "$1"; then set_var "$@"; fi; }
101

    
102
set_inv() { set_var no_"$1" "$(test "${!1}" || echo 1)"; }
103

    
104
# usage: local var=...; local_inv
105
alias local_inv=\
106
'declare "no_$var=$(test "${!var}" || echo 1)"; echo_vars no_$var'
107

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

    
111
alias local_export='declare -x' # combines effects of local and export
112

    
113
alias export_array='declare -ax'
114
	# `export` does not support arrays in older versions of bash/on Mac
115

    
116
# to make export only visible locally: local var="$var"; export var
117
# within cmd: var="$var" cmd...
118

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

    
121
# usage: local prefix=..._; import_vars
122
# when used inside another alias 2+ levels deep, *must* be run inside a function
123
# idempotent: vars already set will *not* be overwritten
124
alias import_vars="$(cat <<'EOF'
125
: "${prefix:?}"
126
declare src_var dest_var
127
for src_var in $(get_prefix_vars); do
128
	dest_var="${src_var#$prefix}"
129
	# use ${...-...} to avoid overwriting an already-set var
130
	declare "$dest_var=${!dest_var-${!src_var}}"; echo_vars "$dest_var"
131
done
132
EOF
133
)"
134

    
135

    
136
#### integers
137

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

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

    
143
int2exit() { (( "$1" != 0 )); }
144

    
145
exit2bool() { if (( $? == 0 )); then echo 1; fi } # 0->non-empty; !=0->empty
146

    
147

    
148
#### floats
149

    
150
int_part() { echo "${1%%.*}"; }
151

    
152
dec_suffix() { echo "${1#$(int_part "$1")}"; }
153

    
154
round_down() { int_part "$1"; }
155

    
156
float+int() { echo "$(($(int_part "$1")+$2))$(dec_suffix "$1")"; }
157

    
158
float_set_min() { if (($(int_part $1) >= $2)); then echo $1; else echo $2; fi; }
159

    
160

    
161
#### strings
162

    
163
starts_with() { test "${2#$1}" != "$2"; } # usage: starts_with pattern str
164

    
165
ends_with() { test "${2%$1}" != "$2"; } # usage: ends_with pattern str
166

    
167
match_prefix() # usage: match_prefix pattern str
168
{ if starts_with "$1" "$2"; then echo "${2%${2#$1}}"; fi }
169

    
170
rm_prefix() { echo "${2#$1}"; } # usage: rm_prefix pattern str
171

    
172
contains_match() { starts_with "*$1" "$2"; } # usage: contains_match pattern str
173

    
174
repeat() # usage: str=... n=... repeat
175
{
176
	: "${str?}" "${n:?}"; local result= n="$n" # n will be modified in function
177
	for (( ; n > 0; n-- )); do result="$result$str"; done
178
	echo "$result"
179
}
180

    
181
# usage: outer_cmd $sed_cmd ...
182
sed_cmd="env LANG= sed -`case "$(uname)" in Darwin) echo El;; *) echo ru;;esac`"
183
	# LANG: avoid invalid UTF-8 "illegal byte sequence" errors when LANG=*.UTF-8
184
	# -l: line buffered / -u: unbuffered
185
alias sed="$sed_cmd"
186
	# can't be function because this causes segfault in redir() subshell when
187
	# used with make.sh make() filter
188

    
189
fi # load new aliases
190
if self_being_included; then
191

    
192
rtrim() { log_local; log+ 3; sed 's/[[:space:]]+$//' <<<"$1"; }
193

    
194

    
195
#### arrays
196

    
197
echo1() { echo "$1"; } # usage: echo1 values...
198

    
199
esc() # usage: array=($(log++; prep_env... (eg. cd); esc args...))
200
{ local arg; for arg in "$@"; do printf '%q ' "$arg"; done; }
201

    
202
# usage: split delim str; use ${parts[@]}
203
function split() { split__with_IFS "$@"; echo_vars parts; }
204
	# no echo_func because used by log++
205
split__with_IFS() { local IFS="$1"; parts=($2); } # limit effects of IFS
206
alias split='declare parts; "split"'
207

    
208
join() { local IFS="$delim"; echo "$*"; } # usage: delim=char join elems...
209

    
210
reverse() # usage: array=($(reverse args...))
211
{
212
	local i
213
	for (( i=$#; i > 0; i-- )); do printf '%q ' "${!i}"; done
214
}
215

    
216
contains() # usage: contains value in_array...
217
{
218
	local value="$1"; shift
219
	local elem
220
	for elem in "$@"; do if test "$elem" = "$value"; then return 0; fi; done
221
	return 1
222
}
223

    
224
is_array() # handles unset vars (=false)
225
{
226
	isset "$1" || return 1
227
	local decl; decl="$(declare -p "$1")" || return; echo_vars decl
228
	starts_with 'declare -a' "$decl" # also matches -ax
229
}
230

    
231

    
232
#### caching
233

    
234
## shell-variable-based caching
235

    
236
# usage: local cache_key=...; load_cache; \
237
# if ! cached; then save_cache value || return; fi; echo_cached_value
238
# cache_key for function inputs: "$(declare -p kw_param...) $*"
239
alias load_cache='declare cache_var="$(str2varname "${FUNCNAME}___$cache_key")"'
240
alias cached='isset "$cache_var"'
241
alias save_cache='set_var "$cache_var"'
242
alias echo_cached_value='echo "${!cache_var}"'
243

    
244
clear_cache() # usage: func=... clear_cache
245
{ : "${func:?}"; unset $(prefix="${func}___" get_prefix_vars); }
246

    
247
fi # load new aliases
248
if self_being_included; then
249

    
250

    
251
#### functions
252

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

    
255
kw_params() # usage: func() { kw_params param_var...; }; ...; param_var=... cmd
256
# removes keyword-param-only vars from the environment
257
{ unexport "$@"; }
258

    
259
1st_non_opt() { while starts_with - "$1"; do shift; done; echo "$1"; }
260

    
261
# usage: cmd=... foreach_arg
262
function foreach_arg()
263
{
264
	echo_func; kw_params cmd; : "${cmd:?}"
265
	local a; for a in "$@"; do
266
		a="$(log++ echo_run "$cmd" "$a")" || return; args+=("$a")
267
	done
268
	echo_vars args
269
}
270
alias foreach_arg='"foreach_arg" "$@"; set -- "${args[@]}"; unset args'
271

    
272
alias self_name='echo "${FUNCNAME%%__*}"' # usage: "$(self_name)"
273

    
274
alias self='command "$(self_name)"' # usage: wrapper() { self ...; }
275
alias self_sys='sys_cmd "$(self_name)"' # wrapper() { self_sys ...; }
276
alias self_builtin='builtin "${FUNCNAME%%__*}"' #wrapper() { self_builtin ...; }
277

    
278
all_funcs() # usage: for func in $(all_funcs); do ...; done # all declared funcs
279
{ declare -F|while read -r line; do echo -n "${line#declare -f } "; done; }
280

    
281
copy_func() # usage: from=... to=... copy_func
282
# $to must not exist. to get around the no-clobber restriction, use `unset -f`.
283
{
284
	: "${from:?}" "${to:?}"
285
	func_exists "$from" || die "function does not exist: $from"
286
	! func_exists "$to" || die "function already exists: $to"
287
	local from_def="$(declare -f "$from")"
288
	eval "$to${from_def#$from}"
289
}
290

    
291
func_override() # usage: func_override old_name__suffix
292
{ from="${1%__*}" to="$1" copy_func; }
293

    
294
ensure_nested_func() # usage: func__nested_func() { ensure_nested_func; ... }
295
{
296
	local nested_func="${FUNCNAME[1]}"
297
	local func="${nested_func%%__*}"
298
	contains "$func" "${FUNCNAME[@]}" || \
299
		die "$nested_func() must be used by $func()"
300
}
301

    
302

    
303
#### aliases
304

    
305
fi # load new aliases
306
if self_being_included; then
307

    
308
unalias() { self_builtin "$@" 2>&- || true; } # no error if undefined
309

    
310
# usage: alias alias_='var=value run_cmd '
311
function run_cmd() { "$@"; }
312
alias run_cmd='"run_cmd" ' # last space alias-expands next word
313

    
314
alias_append() { eval "$(alias "$1")"'"$2"';} #usage: alias_append alias '; cmd'
315

    
316

    
317
#### commands
318

    
319
type() # handles fact that any alias would already be expanded
320
{ (unalias "$(1st_non_opt "$@")"; self_builtin "$@") || return; }
321

    
322
is_callable() { type -t -- "$1" >/dev/null; }
323

    
324
is_extern() { test "$(type -t -- "$1")" = file; }
325

    
326
is_intern() { is_callable "$1" && ! is_extern "$1"; }
327

    
328
is_dot_script()
329
{ log_local;log++; echo_func; test "${BASH_LINENO[${#BASH_LINENO[@]}-1]}" != 0;}
330

    
331
require_dot_script() # usage: require_dot_script || return
332
{
333
	echo_func
334
	if ! is_dot_script; then # was run without initial "."
335
		echo "usage: . $top_script (note initial \".\")"|fold -s >&2
336
		return 2
337
	fi
338
}
339

    
340
sys_cmd_path() { echo_func; echo_builtin command -p which "$1"|echo_stdout; }
341

    
342
# makes command in $1 a system command
343
# allows running a system command of the same name as the script
344
alias cmd2sys="$(cat <<'EOF'
345
declare _1="$1"; shift
346
_1="$(indent; log++ sys_cmd_path "$_1")" || return
347
set -- "$_1" "$@"
348
EOF
349
)"
350

    
351
fi # load new aliases
352
if self_being_included; then
353

    
354
sys_cmd() { cmd2sys; command "$@"; } # usage: sys_cmd cmd... # runs system cmd
355
	# allows running a system command of the same name as the script
356

    
357
function sudo()
358
{
359
	echo_func
360
	if is_callable "$1"; then set -- env PATH="$PATH" "$@"; fi # preserve PATH
361
	self -E "$@"
362
}
363
alias sudo='"sudo" ' # last space alias-expands next word
364

    
365

    
366
#### exceptions
367

    
368
fi # load new aliases
369
if self_being_included; then
370

    
371
exit() { self_builtin "${1:-$?}"; } # exit sometimes inxeplicably ignores $?
372

    
373
errexit() # usage: cmd || errexit status # works in functions *and* subshells
374
{ return "$1"; }
375
	# can't use `(exit "$1")` because a bug in bash prevents subshells from
376
	# triggering errexit (would need to append `|| return` for it to work)
377

    
378
# usage: cmd || { save_e; ...; rethrow; }
379

    
380
alias export_e='e=$?'
381

    
382
# **WARNING**: if using this after a command that might succeed (rather than
383
# only upon error), you must `unset e` before the command
384
# idempotent: also works if save_e already called
385
alias save_e='# idempotent: use $e if the caller already called save_e
386
declare e_=$?;
387
declare e="$(if test "$e_" = 0; then echo "${e:-0}"; else echo "$e_"; fi)"'
388

    
389
rethrow() { errexit "${e:-0}"; } # only does anything if $e != 0
390
rethrow!() { rethrow && false; } # always errexit, even if $e = 0
391
rethrow_exit() { rethrow || exit; } # exit even where errexit disabled
392

    
393
is_err() { ! rethrow; } # rethrow->*false* if error
394

    
395
fi # load new aliases
396
if self_being_included; then
397

    
398
# usage: try cmd...; ignore_e status; if catch status; then ...; fi; \
399
# finally...; end_try
400

    
401
alias prep_try='declare e=0 benign_error="$benign_error"'
402

    
403
# usage: ...; try cmd... # *MUST* be at beginning of statement
404
#     OR prep_try; var=... "try" cmd...
405
function try() { benign_error=1 "$@" || { export_e; true; }; }
406
alias try='prep_try; "try" ' # last space alias-expands next word
407

    
408
catch() { test "$e" = "${1:-0}" && e=0; } # also works w/ $1=''
409

    
410
ignore_e() { if catch "$@"; then benign_error=1; fi; } # also works w/ $1=''
411

    
412
alias end_try='rethrow'
413

    
414
ignore() { save_e; ignore_e "$@"; rethrow; } # usage: try cmd || ignore status
415

    
416
### signals
417

    
418
sig_e() { echo $(( 128+$(kill -l "$1") )); } # usage: sig_e SIGINT, etc.
419

    
420
func_override catch__exceptions
421
catch() # supports SIG* as exception type
422
{
423
	log_local; log++; echo_func
424
	if starts_with SIG "$1"; then set -- "$(sig_e "$1")"; fi
425
	catch__exceptions "$@"
426
}
427

    
428
# usage: piped_cmd cmd1...|cmd2... # cmd2 doesn't read all its input
429
function piped_cmd() { "$@" || ignore SIGPIPE; }
430
alias piped_cmd='"piped_cmd" ' # last space alias-expands next word
431

    
432
fi # load new aliases
433
if self_being_included; then
434

    
435

    
436
#### text
437

    
438
nl='
439
'
440

    
441
# usage: by itself:                            split_lines  str; use ${lines[@]}
442
#        with wrapper: declare lines; wrapper "split_lines" str; use ${lines[@]}
443
function split_lines() { split "$nl" "$1"; lines=("${parts[@]}"); }
444
	# no echo_func because used by log++
445
alias split_lines='declare lines; "split_lines"'
446

    
447

    
448
#### terminal
449

    
450
### formatting
451

    
452
has_bg()
453
{
454
	# inverse (black background)/set background (normal colors)/set background
455
	# (bright colors) (xfree86.org/current/ctlseqs.html#Character_Attributes)
456
	starts_with 7 "$1" || starts_with 4 "$1" || starts_with 10 "$1"
457
}
458

    
459
format() # usage: format format_expr msg
460
# format_expr: the #s in xfree86.org/current/ctlseqs.html#Character_Attributes
461
{
462
	local format="$1" msg="$2"
463
	if starts_with '[' "$msg"; then format=; fi #don't add padding if formatted
464
	if has_bg "$format"; then msg=" $msg "; fi # auto-add padding if has bg
465
	echo "${format:+[0;${format}m}$msg${format:+}"
466
}
467

    
468
plain() { echo "$1"; }
469

    
470
fade() { format 90 "$@"; } # medium gray fades on white *&* black backgrounds
471

    
472

    
473
#### paths
474

    
475
strip/() { echo "${1%/}"; } # strips trailing /s
476

    
477
wildcard/() # usage: array=($(log++; [cd ...;] wildcard/ unquoted_pattern...))
478
{ cmd=strip/ foreach_arg; esc "$@"; }
479

    
480
wildcard.() # usage: array=($(log++; [cd ...;] wildcard. unquoted_pattern...))
481
# currently only removes . .. at beginning of list
482
{
483
	set -- $(wildcard/ "$@") # first strip trailing /s
484
	local to_rm=(. ..)
485
	local item
486
	if contains "$1" "${to_rm[@]}"; then
487
		shift
488
		if contains "$1" "${to_rm[@]}"; then shift; fi
489
	fi
490
	esc "$@"
491
}
492

    
493
#### streams
494

    
495
pipe_delay() # usage: cmd1 | { pipe_delay; cmd2; }
496
{ sleep 0.1; } # s; display after leading output of cmd1
497

    
498

    
499
#### verbose output
500

    
501

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

    
504

    
505
### log++
506

    
507
log_fd=2 # initially stderr
508

    
509
if test "$explicit_errors_only"; then verbosity=0; fi # hide startup logging
510

    
511
# set verbosity
512
if isset verbose; then : "${verbosity:=$(bool2int "$verbose")}"; fi
513
if isset vb; then : "${verbosity:=$vb}"; fi
514
: "${verbosity=1}" # default
515
: "${verbosity:=0}" # ensure non-empty
516
export verbosity # propagate to invoked commands
517

    
518
is_outermost="$(! isset log_level; exit2bool)" # if util.sh env not yet set up
519

    
520
# set log_level
521
: "${log_level=$(( ${#PS4}-1 ))}" # defaults to # non-space symbols in PS4
522
export log_level # propagate to invoked commands
523
export PS4 # follows log_level, so also propagate this
524

    
525
verbosity_int() { round_down "$verbosity"; }
526

    
527
# verbosities (and `make` equivalents):
528
# 0: just print errors. useful for cron jobs.
529
#    vs. make: equivalent to --silent, but suppresses external command output
530
# 1: also external commands run. useful for running at the command line.
531
#    vs. make: not provided (but sorely needed to avoid excessive output)
532
# 2: full graphical call tree. useful for determining where error occurred.
533
#    vs. make: equivalent to default verbosity, but with much-needed indents
534
# 3: also values of kw params and variables. useful for low-level debugging.
535
#    vs. make: not provided; need to manually use $(error $(var))
536
# 4: also variables in util.sh commands. useful for debugging util.sh.
537
#    vs. make: somewhat similar to --print-data-base
538
# 5: also variables in logging commands themselves. useful for debugging echo_*.
539
#    vs. make: not provided; need to search Makefile for @ at beginning of cmd
540
# 6+: not currently used (i.e. same as 5)
541

    
542
# definition: the log_level is the minimum verbosity needed to display a message
543
# for messages that use can_log(), the log_level starts with *1*, not 0
544
# for unfiltered messages, the log_level is 0 (i.e. still output at verbosity=0)
545
# to view a message's log_level, count the # of + signs before it in the output
546

    
547
fi # load new aliases
548
if self_being_included; then
549

    
550
# usage: in func:      log_local; log++; ...
551
#        outside func: log_local; log++; ...; log--
552
#        before cmd:   log++ cmd  OR  log+ num cmd  OR  log++ log++... cmd
553
# with a cmd, assignments are applied just to it, so log_local is not needed
554
# without a cmd, assignments are applied to caller ("$@" expands to nothing)
555
# "${@:2}" expands to all of $@ after *1st* arg, not 2nd ($@ indexes start at 1)
556
log:() # sets explicit log_level
557
{
558
	if test $# -gt 1; then log_local; fi # if cmd, only apply assignments to it
559
	# no local vars because w/o cmd, assignments should be applied to caller
560
	log_level="$1"
561
	PS4="$(str="${PS4:0:1}" n=$((log_level-1)) repeat)${PS4: -2}"
562
	"${@:2}"
563
}
564
log+() { log: $((log_level+$1)) "${@:2}"; }
565
log-() { log+ "-$1" "${@:2}"; }
566
# no log:/+/- alias needed because next word is not an alias-expandable cmd
567
function log++() { log+ 1 "$@"; }
568
function log--() { log- 1 "$@"; }
569
function log!() { log: 0 "$@"; } # force-displays next log message
570
alias log++='"log++" ' # last space alias-expands next word
571
alias log--='"log--" ' # last space alias-expands next word
572
alias log!='"log!" ' # last space alias-expands next word
573

    
574
verbosity_min() # usage: verbosity_min {<min>|''}
575
# WARNING: '' is a special value that causes $verbosity to be overwritten to ''
576
{ if test ! "$1" -o "$(verbosity_int)" -lt "$1"; then verbosity="$1"; fi; }
577
alias verbosity_min='declare verbosity="$verbosity"; "verbosity_min"'
578

    
579
# usage: (verbosity_compat; cmd)
580
function verbosity_compat()
581
{ log_local; log++; echo_func; if ((verbosity == 1)); then unset verbosity; fi;}
582
alias verbosity_compat='declare verbosity="$verbosity"; "verbosity_compat"'
583

    
584

    
585
# indent for call tree. this is *not* the log_level (below).
586
: "${log_indent_step=| }" "${log_indent=}"
587
export log_indent_step log_indent # propagate to invoked commands
588

    
589
# see indent alias in stubs
590

    
591

    
592
fi # load new aliases
593
if self_being_included; then
594

    
595
can_log() { test "$log_level" -le "$(verbosity_int)"; }
596
	# verbosity=0 turns off all logging
597

    
598
can_highlight_log_msg() { test "$log_level" -le 1; }
599

    
600
highlight_log_msg() # usage: [format=...] highlight_log_msg msg
601
# format: the # in xfree86.org/current/ctlseqs.html#Character_Attributes
602
{
603
	log_local; log+ 2; echo_func; kw_params format; log- 2
604
	local format="${format-1}" # bold
605
	if ! can_highlight_log_msg; then format=0; fi #remove surrounding formatting
606
	format "$format" "$1"
607
}
608

    
609
log_line!() # highlights log_level 1 messages to stand out against other output
610
{ echo "$log_indent$PS4$(highlight_log_msg "$1")" >&"$log_fd"; }
611

    
612
log_msg!()
613
{
614
	declare lines; log+ 2 "split_lines" "$1"
615
	local l; for l in "${lines[@]}"; do log_line! "$l"; done
616
}
617

    
618
log() { if can_log; then log_msg! "$@"; fi; }
619

    
620
log_custom() # usage: symbol=... log_custom msg
621
{ log_indent="${log_indent//[^ ]/$symbol}" PS4="${PS4//[^ ]/$symbol}" log "$@";}
622

    
623
bg_r='101;97' # red background with white text
624

    
625
log_err() { symbol='#' format="$bg_r" log_fd="$err_fd" log! log_custom "$@";}
626

    
627
log_info() { symbol=: log_custom "$@"; }
628

    
629
mk_hint() { format=7 highlight_log_msg "$@";}
630

    
631
log_err_hint!() { log_err "$(mk_hint "$@")"; }
632

    
633
log_err_hint() # usage: cmd || [benign_error=1] log_err_hint msg [|| handle err]
634
# msg only displayed if not benign error
635
{
636
	log++ kw_params benign_error
637
	if test ! "$benign_error"; then log_err_hint! "$@"; fi
638
}
639

    
640
die() # usage: if msg uses $(...):    cmd || { save_e; [type=...] die msg; }
641
#              if msg uses only vars: cmd || [type=...] die msg
642
{ save_e; log++ kw_params type; "log_${type:-err}" "$1"; rethrow!; }
643

    
644
die_e() # usage: cmd || [benign_error=1] die_e [|| handle error]
645
{
646
	save_e; log++ kw_params benign_error
647
	if test "$e" = "$(sig_e SIGPIPE)"; then benign_error=1; fi
648
	if test "$benign_error"; then log_local; log++; fi
649
	type="${benign_error:+info}" die "command exited with \
650
$(if test "$benign_error"; then echo status; else echo error; fi) $e"
651
	rethrow
652
}
653

    
654
die_error_hidden() # usage: cmd || verbosity_min=# die_error_hidden [|| ...]
655
{
656
	save_e; log++ echo_func; log++ kw_params verbosity_min
657
	: "${verbosity_min:?}"; log++ echo_vars verbosity
658
	if test "$(verbosity_int)" -lt "$verbosity_min"; then
659
		log_err_hint 'to see error details, prepend `vb='"$verbosity_min"'` to the command'
660
	fi
661
	rethrow
662
}
663

    
664

    
665
#### paths
666

    
667
# cache realpath
668
: "${realpath_cache=}" # default off because slower than without
669
if test "$realpath_cache"; then
670
func_override realpath__no_cache
671
realpath() # caches the last result for efficiency
672
{
673
	local cache_key="$*"; load_cache
674
	if ! cached; then save_cache "$(realpath__no_cache "$@")" || return; fi
675
	echo_cached_value
676
}
677
fi
678

    
679
rel_path() # usage: base_dir=... path=... rel_path
680
{
681
	log_local; log++; kw_params base_dir path
682
	: "${base_dir:?}" "${path:?}"
683
	
684
	local path="$path/" # add *extra* / to match path when exactly = base_dir
685
	path="${path#$base_dir/}" # remove prefix shared with base_dir
686
	path="${path%/}" # remove any remaining extra trailing /
687
	
688
	if test ! "$path"; then path=.; fi # ensure non-empty
689
	
690
	echo_vars path
691
	echo "$path"
692
}
693

    
694
cd -P . # expand symlinks in $PWD so it matches the output of realpath
695
# do before setting $top_script_abs so realpath has less symlinks to resolve
696

    
697
canon_rel_path() # usage: [base_dir=...] canon_rel_path path
698
{
699
	kw_params base_dir; local base_dir="${base_dir-$PWD}"
700
	base_dir="$(realpath "$base_dir")" || return
701
	local path; path="$(realpath "$1")" || return
702
	rel_path
703
}
704

    
705
canon_dir_rel_path() # usage: [base_dir=...] canon_dir_rel_path path
706
# if the path is a symlink, just its parent dir will be canonicalized
707
{
708
	kw_params base_dir; local base_dir="${base_dir-$PWD}"
709
	base_dir="$(realpath "$base_dir")" || return
710
	local path; path="$(realpath "$(dirname "$1")")/$(basename "$1")" || return
711
	rel_path
712
}
713

    
714
# makes $1 a canon_rel_path if it's a filesystem path
715
alias cmd2rel_path="$(cat <<'EOF'
716
if is_extern "$1" && test -e "$1"; then # not relative to PATH
717
	declare _1="$1"; shift
718
	_1="$(log++ canon_rel_path "$_1")" || return
719
	set -- "$_1" "$@"
720
fi
721
EOF
722
)"
723

    
724
# usage: path_parents path; use ${dirs[@]} # includes the path itself
725
function path_parents()
726
{
727
	echo_func; local path="$1" prev_path=; dirs=()
728
	while test "$path" != "$prev_path"; do
729
		prev_path="$path"
730
		dirs+=("$path")
731
		path="${path%/*}"
732
	done
733
}
734
alias path_parents='declare dirs; "path_parents"'
735

    
736

    
737
#### verbose output
738

    
739

    
740
### command echoing
741

    
742
alias echo_params='log "$*"'
743

    
744
fi # load new aliases
745
if self_being_included; then
746

    
747
echo_cmd() { echo_params; }
748

    
749
function echo_run() { echo_params; "$@"; }
750
# see echo_run alias after stub
751

    
752
echo_builtin() { echo_run builtin "$@"; } # usage: echo_builtin builtin_cmd...
753

    
754
echo_eval() { echo_params; builtin eval "$@"; }
755

    
756
## vars
757

    
758
echo_vars() # usage: echo_vars var... # also prints unset vars
759
{
760
	log_local; log++ # same log_level as echo_func
761
	if can_log; then
762
		local var; for var in "${@%%=*}"; do
763
			if ! isset "$var"; then declare "$var"='<unset>'; fi
764
			log "$(declare -p "$var")"
765
		done
766
	fi
767
}
768

    
769
echo_export() { builtin export "$@"; echo_vars "$@"; }
770

    
771
alias export="echo_export" # automatically echo env vars when they are set
772

    
773
func_override kw_params__lang
774
kw_params() { kw_params__lang "$@"; echo_vars "$@"; } # echo all keyword params
775

    
776
## functions
777

    
778
# usage: local func=...; set_func_loc; use $file, $line
779
alias set_func_loc="$(cat <<'EOF'
780
: "${func:?}"
781
local func_info="$(shopt -s extdebug; declare -F "$func")" # 'func line file'
782
func_info="${func_info#$func }"
783
local line="${func_info%% *}"
784
local file="${func_info#$line }"
785
EOF
786
)"
787

    
788
fi # load new aliases
789
if self_being_included; then
790

    
791
func_loc() # gets where function declared in the format file:line
792
{
793
	local func="$1"; set_func_loc
794
	file="$(canon_rel_path "$file")" || return
795
	echo "$file:$line"
796
}
797

    
798
# usage: func() { echo_func; ... }
799
function echo_func()
800
# usage: "echo_func" "$FUNCNAME" "$@" && indent || true
801
# exit status: whether function call was echoed
802
{
803
	log_local; log++; can_log || return
804
	local func="$1"; shift
805
	local loc; loc="$(log++ func_loc "$func")" || return
806
	echo_cmd "$func" "$@" "   $(plain "@$loc")"
807
}
808
# see echo_func alias after stub
809

    
810
fi # load new aliases
811
if self_being_included; then
812

    
813

    
814
#### fds
815

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

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

    
821
set_fds() # usage: set_fds redirect...
822
# WARNING: does not currently support redirecting an fd to itself (due to bash
823
# bug that requires the dest fd to be closed before it can be reopened)
824
{
825
	echo_func
826
	
827
	# add #<>&- before every #<>&# reopen to fix strange bash bug
828
	local redirs=() i
829
	for i in "$@"; do
830
		# remove empty redirects resulting from using `redirs= cmd...` to clear
831
		# the redirs and then using $redirs as an array
832
		if test "$i"; then
833
			local redir_prefix="$(match_prefix '*[<>]' "$i")"
834
			local dest="$(        rm_prefix    '*[<>]' "$i")"
835
			if test "$dest" && ! starts_with '&' "$dest"; then # escape dest
836
				i="$redir_prefix$(printf %q "$dest")"
837
			fi
838
			if test "$redir_prefix"; then redirs+=("$redir_prefix&-"); fi
839
			redirs+=("$i")
840
		fi
841
	done
842
	set -- "${redirs[@]}"
843
	
844
	if (($# > 0)); then echo_eval exec "$@"; fi
845
}
846

    
847
fd_set_default() # usage: fd_set_default 'dest[<>]src'
848
{
849
	echo_func
850
	local dest="${1%%[<>]*}"
851
	require_fd_not_exists "$dest" || return 0
852
	set_fds "$1"
853
}
854

    
855
# convention: use fd 40/41/42 for command-specific alternate stdin/stdout/stderr
856
# mnemonic: 4 looks like A for Alternate
857
# do NOT use 1x, which are used by eval (which is used by set_fds())
858
# do NOT use 2x, which we use as global stdin/stdout/stderr
859

    
860
setup_log_fd() # view logging output at verbosity >= 5
861
{
862
	log_local; log+ 4; log-- echo_func 
863
	log_fd=3 # stdlog
864
	fd_set_default "$log_fd>&2" || true
865
}
866
setup_log_fd
867

    
868
set_global_fds()
869
# allows commands to access global stdin/stdout/stderr using fd 20/21/22
870
# this works even when /dev/tty isn't available
871
# view logging output at verbosity >= 3
872
{
873
	log_local; log+ 2; log-- echo_func
874
	# ignore errors if a source fd isn't open
875
	fd_set_default '20<&0' || true
876
	fd_set_default '21>&1' || true
877
	fd_set_default '22>&2' || true
878
	debug_fd=22 # debug to global stderr in case stderr filtered
879
}
880
set_global_fds
881

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

    
889

    
890
log++ echo_vars is_outermost
891

    
892

    
893
#### paths
894

    
895
log++
896

    
897
top_script="${BASH_SOURCE[${#BASH_SOURCE[@]}-1]}"; echo_vars top_script
898
	# outermost script; unlike $0, also defined for .-scripts
899

    
900
top_symlink_dir="$(dirname "$top_script")"; echo_vars top_symlink_dir
901
top_symlink_dir_abs="$(realpath "$top_symlink_dir")"
902
	echo_vars top_symlink_dir_abs
903

    
904
top_script_abs="$(realpath "$top_script")"; echo_vars top_script_abs
905
	# realpath this before doing any cd so this points to the right place
906
top_dir_abs="$(dirname "$top_script_abs")"; echo_vars top_dir_abs
907

    
908
log--
909

    
910
set_paths()
911
{
912
	log_local; log++
913
	top_script="$(log++ canon_rel_path "$top_script_abs")" || return
914
		echo_vars top_script
915
	top_dir="$(dirname "$top_script")" || return; echo_vars top_dir
916
}
917
set_paths
918

    
919
# usage: $(enter_top_dir; cmd...)
920
function enter_top_dir() { echo_func; cd "$top_dir"; }
921
alias enter_top_dir='log++; "enter_top_dir"'
922

    
923
# usage: in_top_dir cmd...
924
function in_top_dir() { echo_func; (enter_top_dir; "$@"); }
925
alias in_top_dir='"in_top_dir" ' # last space alias-expands next word
926

    
927
PATH_rm() # usage: PATH_rm path... # removes components from the PATH
928
{
929
	echo_func; echo_vars PATH; : "${PATH?}"
930
	log_local
931
	log+ 2
932
	split : "$PATH"
933
	local new_paths=()
934
	for path in "${parts[@]}"; do
935
		if ! contains "$path" "$@"; then new_paths+=("$path"); fi
936
	done
937
	PATH="$(delim=: join "${new_paths[@]}")" || return
938
	log- 2
939
	echo_vars PATH
940
}
941

    
942
no_PATH_recursion() # usage: (no_PATH_recursion; cmd...)
943
# allows running a system command of the same name as the script
944
{
945
	echo_func
946
	PATH_rm "$top_dir_abs" "$top_symlink_dir" "$top_symlink_dir_abs" "$top_dir"
947
}
948

    
949
# makes command in $1 nonrecursive
950
# allows running a system command of the same name as the script
951
alias cmd2abs_path="$(cat <<'EOF'
952
declare _1="$1"; shift
953
_1="$(indent; no_PATH_recursion; log++; which "$_1"|echo_stdout)" || return
954
set -- "$_1" "$@"
955
EOF
956
)"
957

    
958

    
959
#### verbose output
960

    
961

    
962
## internal commands
963

    
964
.()
965
{
966
	log_local; log++; log++ echo_func
967
	cmd2rel_path; set -- "$FUNCNAME" "$@"
968
	if (log++; echo_params; can_log); then indent; fi
969
	builtin "$@"
970
}
971

    
972
.rel() # usage: .rel file [args...] # file relative to ${BASH_SOURCE[0]} dir
973
{
974
	log++ log++ echo_func; local file="$1"; shift
975
	. "$(canon_rel_path "$(dirname "$(realpath "${BASH_SOURCE[1]}")")/$file")" \
976
"$@"
977
}
978

    
979
cd() # indent is permanent within subshell cd was used in
980
{
981
	log_local; log++ echo_func
982
	cmd2rel_path; echo_cmd "$FUNCNAME" "$@"
983
	if can_log; then caller_indent; fi
984
	# -P: expand symlinks so $PWD matches the output of realpath
985
	self_builtin -P "$@"
986
	
987
	func=realpath clear_cache
988
	set_paths
989
}
990

    
991
## external commands
992

    
993
disable_logging() { set_fds "$log_fd>/dev/null"; }
994

    
995
# usage: redirs=(...); [cmd_name_log_inc=#] echo_redirs_cmd
996
echo_redirs_cmd()
997
{
998
	local cmd_name_log_inc="${cmd_name_log_inc-0}"
999
	
1000
	log++ echo_vars PATH
1001
	log+ "$cmd_name_log_inc" echo_cmd "$@" $(
1002
		# create redirs string
1003
		set -- "${redirs[@]}" # operate on ${redirs[@]}
1004
		while test "$#" -gt 0 && starts_with '[<>][^&]' "$1"
1005
		# print <>file redirs before cmd, because they introduce it
1006
		do log "$1 \\"; shift; done # log() will run *before* echo_cmd itself
1007
		echo "$@"
1008
	)
1009
}
1010

    
1011
function redir() # usage: local redirs=(#<>...); redir cmd...; unset redirs
1012
# to view only explicitly-displayed errors: explicit_errors_only=1 script...
1013
{
1014
	echo_func; kw_params redirs
1015
	
1016
	case "$1" in redir|command) "$@"; return;; esac # redir will be run later
1017
	(
1018
		log++ set_fds "${redirs[@]}"
1019
		unset redirs # don't redirect again in invoked command
1020
		(case "$1" in command__exec) shift;; esac; echo_redirs_cmd "$@")
1021
		if can_log; then indent; fi
1022
		"$@"
1023
	) || return
1024
}
1025
alias redir='"redir" ' # last space alias-expands next word
1026

    
1027
alias_append save_e '; unset redirs' # don't redirect error handlers
1028

    
1029
fi # load new aliases
1030
if self_being_included; then
1031

    
1032
command() # usage: [cmd_log_fd=|1|2|#] [verbosity_min=] [nonrecursive=1] \
1033
# command extern_cmd...
1034
{
1035
	echo_func; kw_params log_fd cmd_log_fd redirs verbosity_min
1036
	# if no cmd_log_fd, limit log_fd in case command uses util.sh
1037
	local cmd_log_fd="${cmd_log_fd-$log_fd}"
1038
	local redirs=("${redirs[@]}")
1039
	
1040
	# determine redirections
1041
	if test "$cmd_log_fd"; then
1042
		if can_log; then
1043
			if test "$cmd_log_fd" != "$log_fd"; then
1044
				redirs+=("$cmd_log_fd>&$log_fd")
1045
			fi # else no redir needed
1046
		else redirs+=("$cmd_log_fd>/dev/null");
1047
		fi
1048
	fi
1049
	
1050
	if test "$nonrecursive"; then cmd2abs_path; else cmd2rel_path; fi
1051
	redir command__exec "$@"
1052
}
1053
command__exec()
1054
{
1055
	ensure_nested_func
1056
	if test "$verbosity_min"; then verbosity_min "$verbosity_min"; fi
1057
	verbosity_compat
1058
	builtin command "$@" || die_e
1059
}
1060

    
1061

    
1062
### external command input/output
1063

    
1064
echo_stdin() # usage: input|echo_stdin|cmd
1065
{
1066
	if can_log; then
1067
		pipe_delay
1068
		echo ----- >&"$log_fd"
1069
		tee -a /dev/fd/"$log_fd";
1070
		echo ----- >&"$log_fd"
1071
	else cat
1072
	fi
1073
}
1074

    
1075
echo_stdout() { echo_stdin; } # usage: cmd|echo_stdout
1076

    
1077
stdout2fd() # usage: fd=# stdout2fd cmd...
1078
{
1079
	echo_func; kw_params fd; : "${fd?}"
1080
	if test "$fd" != 1; then local redirs=(">&$fd" "${redirs[@]}"); fi
1081
	redir "$@"
1082
}
1083

    
1084
function filter_fd() # usage: (fd=# [redirs=] filter_fd filter_cmd...; \
1085
# with filter...) # be sure ${redirs[@]} is not set to an outer value
1086
# useful e.g. to filter logging output or highlight errors
1087
{
1088
	echo_func; kw_params fd; : "${fd?}"
1089
	set_fds "$fd>" >(pipe_delay; stdout2fd "$@")
1090
	pipe_delay; pipe_delay # wait for >()'s pipe_delay and initial logging
1091
}
1092
alias filter_fd='"filter_fd" ' # last space alias-expands next word
1093

    
1094
stderr2stdout() # usage: { stderr2stdout cmd...|use stderr...; } 41>&1
1095
# **IMPORTANT**: fd 41 must later be redirected back to fd 1
1096
# unlike `2>&1`, keeps stderr going to stderr
1097
# redirects the command stdout to fd 41 to avoid collision with stderr
1098
{
1099
	echo_func
1100
	# fd 2 *must* be redirected back to fd 2, not log-filtered, in case there
1101
	# are other errors in addition to the benign error
1102
	piped_cmd "$@" 2> >(log++ echo_run tee /dev/fd/2) >&41 # redirects 2->{1,2}
1103
}
1104

    
1105
stdout_contains()
1106
# usage: { stderr2stdout cmd|stdout_contains echo_run grep ...; } 41>&1
1107
{
1108
	log_local; log++; echo_func
1109
	pipe_delay; pipe_delay; pipe_delay; "$@"|echo_stdout >/dev/null
1110
}
1111

    
1112
stderr_matches() # usage: pattern=... [ignore_e=# [benign_error=1]] \
1113
# stderr_matches cmd...
1114
{
1115
	echo_func; kw_params pattern ignore_e; : "${pattern?}"
1116
	
1117
	# not necessary to allow callers to handle the error themselves (which would
1118
	# require *every* caller to wrap this function in prep_try/rethrow), because
1119
	# they would just handle it by errexiting anyways
1120
	prep_try
1121
	
1122
	set +o errexit # avoid errexiting since @PIPESTATUS will be used instead
1123
	{ benign_error=1 stderr2stdout "$@"\
1124
|stdout_contains echo_run grep -E "$pattern"; } 41>&1
1125
		# benign_error: handle exit status logging in this func instead
1126
	local PIPESTATUS_=("${PIPESTATUS[@]}") # save b/c it's reset after each cmd
1127
	echo_vars PIPESTATUS_
1128
	set -o errexit
1129
	
1130
	# handle any command error
1131
	e="${PIPESTATUS_[0]}"
1132
	local matches="$(errexit "${PIPESTATUS_[1]}"; exit2bool)"
1133
	if test "$matches"; then ignore_e "$ignore_e" #also works w/ ignore_e=''
1134
	elif is_err && test ! "$benign_error"; then die_e # incorrectly suppressed
1135
	fi
1136
	rethrow_exit #force-exit b/c caller's test of return status disables errexit
1137
	
1138
	# handle any filter error
1139
	e="${PIPESTATUS_[1]}"
1140
	ignore_e 1 # false is not an error
1141
	# all other unsuccessful exit statuses are errors
1142
	rethrow_exit #force-exit b/c caller's test of return status disables errexit
1143
	
1144
	return "${PIPESTATUS_[1]}" # 2nd command's exit status -> $?
1145
}
1146

    
1147
fi # load new aliases
1148
if self_being_included; then
1149

    
1150
function ignore_err_msg() # usage: pattern=... [ignore_e=#] ignore_err_msg cmd
1151
# unlike `|| true`, this suppresses only errors caused by a particular error
1152
# *message*, rather than all error exit statuses
1153
{
1154
	echo_func; kw_params pattern; : "${pattern?}"
1155
	stderr_matches "$@" || true # also ignore false exit status on no match
1156
}
1157
alias ignore_err_msg='"ignore_err_msg" ' # last space alias-expands next word
1158

    
1159

    
1160
#### commands
1161

    
1162
already_exists_msg() # usage: cond || what=... already_exists_msg || return 0
1163
{
1164
	save_e # needed because $(mk_hint) resets $?
1165
	type=info die "$what already exists, skipping
1166
$(mk_hint 'to force-remake, prepend `rm=1` to the command')"
1167
}
1168

    
1169
require_not_exists() # usage: require_not_exists file || return 0
1170
{ test ! -e "$1" || what="file \"$1\"" already_exists_msg; }
1171

    
1172
function to_file() # usage: stdout=... [if_not_exists=1] [del=] to_file cmd...
1173
# auto-removes a command's output file on error (like make's .DELETE_ON_ERROR)
1174
{
1175
	echo_func; kw_params stdout if_not_exists del
1176
	: "${stdout?}"; local del="${del-1}"
1177
	if test "$if_not_exists"; then require_not_exists "$stdout" || return 0; fi
1178
	
1179
	local redirs=("${redirs[@]}" ">$stdout")
1180
	redir "$@" || { save_e; test ! "$del" || rm "$stdout"; rethrow; }
1181
}
1182
alias to_file='"to_file" ' # last space alias-expands next word
1183

    
1184
log_bg() { symbol='&' log_custom "$@"; }
1185

    
1186
log_last_bg() { log_bg '$!='"$!"; }
1187

    
1188
function bg_cmd() # usage: bg_cmd cmd...
1189
{ echo_func; log_bg "$@"; "$@" & log_last_bg; }
1190
alias bg_cmd='"bg_cmd" ' # last space alias-expands next word
1191

    
1192

    
1193
#### filesystem
1194

    
1195
could_be_glob() { echo_func; contains_match '\*' "$1"; }
1196

    
1197
is_dir() { echo_func; test -d "$1"; }
1198

    
1199
could_be_dir() { echo_func; ends_with / "$1" || is_dir "$1"; }
1200

    
1201
is_file() { echo_func; test -f "$1"; }
1202

    
1203
could_be_file()
1204
{ echo_func; { ! could_be_dir "$1" && ! could_be_glob "$1";} || is_file "$1"; }
1205

    
1206
alias mkdir='mkdir -p'
1207
alias cp='cp -p'
1208

    
1209
alias file_size=\
1210
"stat `case "$(uname)" in Darwin) echo -f %z;; *) echo --format=%s;; esac`"
1211

    
1212
alias wildcard='shopt -s nullglob; echo' # usage: "$(wildcard glob...)"
1213
alias wildcard1='shopt -s nullglob; echo1' # usage: "$(wildcard1 glob...)"
1214

    
1215
fi # load new aliases
1216
if self_being_included; then
1217

    
1218
mv2dir() { echo_func; mkdir "${!#}"; mv "$@"; } # usage: mv2dir ... dir
1219

    
1220
# usage: (mv_glob ... dir)
1221
function mv_glob() { echo_func; if (($# > 1)); then mv2dir "$@"; fi; }
1222
alias mv_glob='shopt -s nullglob; "mv_glob"'
1223

    
1224
### permissions
1225

    
1226
has_perms() # usage: perms=... has_perms item # perms: use find's -perm format
1227
{
1228
	echo_func; kw_params perms; : "${perms:?}"
1229
	test "$(find "$1" -maxdepth 0 -perm "$perms")"
1230
}
1231

    
1232
is_world_executable() { echo_func; perms=-o=x has_perms "$1"; } # -: all bits
1233

    
1234

    
1235
#### URLs
1236

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

    
1239
fi
(10-10/11)