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
function extern () { (exec "$@") || return; }
8

    
9
isset () { test "${!1+isset}"; }
10

    
11
realpath () { readlink -f -- "$1"; }
12

    
13
include_guard_var () { realpath "$1"|"extern" sed 's/[^a-zA-Z0-9_]/_/g'; }
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

    
40

    
41
#### aliases
42

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

    
45

    
46
#### exceptions
47

    
48
# usage: cmd || { save_e; ...; rethrow; }
49
alias export_e='e=$?'
50
alias save_e='declare e=$?'
51
alias rethrow='return "$e"'
52
alias rethrow_subshell='exit "$e"'
53

    
54
fi # load new aliases
55
if self_being_included; then
56

    
57
# usage: cmd || die msg
58
die () { save_e; echo "$1" >&2; rethrow; }
59

    
60
# usage: cmd || { save_e; log_e; ...; rethrow; }
61
log_e () { echo "! command exited with error $e" >&2; }
62

    
63
# usage: try cmd...; ignore status; if catch status; then ...; fi; end_try
64

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

    
68
catch () { test "$e" -eq "$1"; e=0; }
69

    
70
ignore () { catch "$@" || true; }
71

    
72
alias end_try='rethrow'
73
alias end_try_subshell='rethrow_subshell'
74

    
75
fi # load new aliases
76
if self_being_included; then
77

    
78

    
79
#### functions
80

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

    
83
copy_func () # usage: from=... to=... copy_func
84
# $to must not exist. to get around the no-clobber restriction, use `unset -f`.
85
{
86
	: "${from:?}" "${to:?}"
87
	func_exists "$from" || die "function does not exist: $from"
88
	! func_exists "$to" || die "function already exists: $to"
89
	local from_def="$(declare -f "$from")"
90
	eval "$to${from_def#$from}"
91
}
92

    
93
func_override () # usage: func_override old_name__suffix
94
{ from="${1%%__*}" to="$1" copy_func; }
95

    
96

    
97
#### integers
98

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

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

    
104

    
105
#### arrays
106

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

    
109
reverse () # usage: array=($(reverse args...))
110
{
111
	local i
112
	for (( i=$#; i >= 1; i-- )); do printf '%q ' "${!i}"; done
113
}
114

    
115

    
116
#### paths
117

    
118
canon_rel_path ()
119
{
120
	local path="$1"
121
	path="$(realpath "$path")" # canonicalize
122
	path="${path#$(pwd -P)/}" # remove any shared prefix with the current dir
123
	echo "$path"
124
}
125

    
126
# makes $1 a canon_rel_path if it's a filesystem path
127
alias cmd2rel_path="$(cat <<'EOF'
128
if test "$(type -t "$1")" = file && test -e "$1"; then # not relative to PATH
129
	declare _1="$1"; shift
130
	set -- "$(canon_rel_path "$_1")" "$@"
131
fi
132
EOF
133
)"
134

    
135

    
136
#### verbose output
137

    
138
# usage: (stdout2stderr; cmd...) || return
139
# `|| return` needed on Mac because of bug where -e doesn't apply to ()
140
stdout2stderr () { exec >&2; }
141

    
142
# set verbosity
143
if isset verbose; then : "${verbosity:=$(bool2int "$verbose")}"; fi
144
: "${verbosity=3}" # default
145
: "${verbosity:=0}" # ensure non-empty
146
declare -i verbosity # ensure integer
147
export verbosity # propagate the verbosity to invoked commands
148

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

    
151
: "${log_indent=  }"
152

    
153
# usage: in func:      inc_log_level; ...
154
#        outside func: inc_log_level; ...; dec_log_level
155
alias inc_log_level='declare verbosity="$verbosity" PS4="$log_indent$PS4"
156
let! verbosity--'
157
alias dec_log_level='declare verbosity="$verbosity" PS4="${PS4#$log_indent}"
158
let! verbosity++'
159

    
160
fi # load new aliases
161
if self_being_included; then
162

    
163
echo_cmd ()
164
{
165
	if can_log; then
166
		case "$1" in extern) shift;; esac # extern implied by the log_level
167
		echo "$PS4$*" >&2
168
	fi
169
}
170

    
171
echo_run () { cmd2rel_path; echo_cmd "$@"; "$@"; }
172

    
173
# usage: (limit_stderr; cmd...) || return
174
# `|| return` needed on Mac because of bug where -e doesn't apply to ()
175
limit_stderr () { inc_log_level; if ! can_log; then exec 2>/dev/null; fi; }
176

    
177
limit_stderr_cmd () # usage: [stdout2stderr=1] limit_stderr_cmd cmd...
178
{
179
	case "$1" in echo_run) shift; echo_cmd "$@";; esac
180
	(limit_stderr
181
		if test "$stdout2stderr"; then stdout2stderr; fi
182
		"$@"
183
	) || return
184
}
185
alias limit_stderr_cmd='limit_stderr_cmd ' # last space alias-expands next word
186

    
187
# auto-echo common external commands
188
for cmd in rm; do alias "$cmd=echo_run $cmd"; done; unset cmd
189

    
190
# echo all external commands
191
alias extern="echo_run extern " # last space alias-expands next word
192

    
193
alias self='extern "$FUNCNAME"' # usage: wrapper () { self ...; }
194

    
195
# commands that are always external
196
for cmd in env; do alias "$cmd=extern $cmd"; done; unset cmd
197

    
198
function echo_func ()
199
{
200
	inc_log_level
201
	local script="$(canon_rel_path "${BASH_SOURCE[1]}")"
202
	echo_cmd "$script:${BASH_LINENO[0]}" "${FUNCNAME[1]}" "$@"
203
}
204

    
205
# usage: cmd1 | { pipe_delay; cmd2; }
206
alias pipe_delay='sleep 0.1' # s; display after leading output of cmd1
207

    
208
fi # load new aliases
209
if self_being_included; then
210

    
211
echo_stdin () # usage: input|echo_stdin|cmd
212
{
213
	inc_log_level
214
	if can_log; then
215
		pipe_delay
216
		echo ----- >&2
217
		tee -a /dev/stderr;
218
		echo ----- >&2
219
	else cat
220
	fi
221
}
222

    
223
alias echo_stdout='echo_stdin' # usage: cmd|echo_stdout
224

    
225
echo_vars () # usage: echo_vars var...
226
{
227
	inc_log_level; inc_log_level
228
	if can_log; then
229
		local var
230
		for var in "${@%%=*}"; do { echo -n "$PS4"; declare -p "$var";} >&2;done
231
	fi
232
}
233

    
234
echo_export () { builtin export "$@"; echo_vars "$@"; }
235

    
236
if test "$verbosity" -ge 2; then
237
	alias export="echo_export" # automatically echo env vars when they are set
238
fi
239

    
240
usage () { echo "Usage: $1" >&2; (exit 2); }
241

    
242
fi # load new aliases
243
if self_being_included; then
244

    
245

    
246
#### strings
247

    
248
sed_ere_flag="$(test "$(uname)" = Darwin && echo E || echo r)"
249

    
250
sed () { self -"$sed_ere_flag" "$@";}
251

    
252

    
253
#### vars
254

    
255
set_var () { eval "$1"'="$2"'; }
256

    
257
set_inv () { set_var no_"$1" "$(test "${!1}" || echo 1)"; }
258

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

    
262
# usage: local prefix=..._; import_vars
263
alias import_vars="$(cat <<'EOF'
264
: "${prefix:?}"
265
local src_var dest_var
266
for src_var in $(eval echo '${!'$prefix'*}'); do
267
	dest_var="${src_var#$prefix}"
268
	local "$dest_var=${!src_var}"; echo_vars "$dest_var"
269
done
270
EOF
271
)"
272

    
273

    
274
#### commands
275

    
276
top_script="$0" # outermost script
277
top_dir="$(dirname "$top_script")"
278

    
279
# auto-removes a command's output file on error (like make's .DELETE_ON_ERROR)
280
function to_file () # usage: stdout=... to_file cmd...
281
{
282
	echo_func
283
	: "${stdout?}"; echo_vars stdout
284
	"$@" >"$stdout" || { save_e; log_e; rm "$stdout"; rethrow; }
285
}
286
alias to_file='to_file ' # last space alias-expands next word
287

    
288
run_args_cmd () # runs the command line args command
289
{
290
	test $? -eq 0 || return
291
	eval set -- "$(reverse "${BASH_ARGV[@]}")"
292
	test $# -ge 1 || set -- all
293
	echo_cmd "$(canon_rel_path "$0")" "$@"; "$@"
294
}
295

    
296
fwd () # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
297
{
298
	echo_func
299
	: "${subdirs?}"
300
	
301
	for subdir in "${subdirs[@]}"; do
302
		"$(dirname "${BASH_SOURCE[1]}")"/"$subdir"/run "$@"
303
	done
304
}
305

    
306

    
307
#### URLs
308

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

    
311
fi
(5-5/5)