Project

General

Profile

1 8291 aaronmk
#!/bin/bash -e
2 8917 aaronmk
function extern () { (unset -f "$1"; "$@") || exit; }
3
4 8716 aaronmk
realpath () { readlink -f -- "$1"; }
5 8703 aaronmk
6 8917 aaronmk
include_guard_var () { realpath "$1"|"extern" sed 's/[^a-zA-Z0-9_]/_/g'; }
7 8716 aaronmk
8 8703 aaronmk
self_not_included () # usage: if self_not_included; then ... fi
9
{
10
	test "$#" -ge 1 || set -- "${BASH_SOURCE[1]}"
11
	local include_guard="$(include_guard_var "$1")"
12 8793 aaronmk
	alias self_being_included=false
13
	test -z "${!include_guard+t}" && \
14
	{ eval "$include_guard"=1; alias self_being_included=true; }
15 8703 aaronmk
}
16
17 8793 aaronmk
# to load newly-defined aliases for use in functions in the same file:
18
## fi # load new aliases
19
## if self_being_included; then
20
# this is needed because aliases defined inside an if statement are not
21
# available inside that if statement
22
23 8704 aaronmk
if self_not_included "${BASH_SOURCE[0]}"; then
24
25 8709 aaronmk
shopt -s expand_aliases
26
27 8889 aaronmk
unalias () { builtin unalias "$@" 2>&- || true; } # no error if undefined
28
29 8886 aaronmk
#### exceptions
30
31
# usage: try cmd...; ignore status; if catch status; then ...; fi; end_try
32
33
try_ () { { "$@"; e="$?";} || true; }
34 8888 aaronmk
alias try='declare e; try_ ' # trailing space alias-expands next word
35 8886 aaronmk
36
catch () { test "$e" -eq "$1"; e=0; }
37
38
ignore () { catch "$@" || true; }
39
40
alias end_try='return "$e"'
41 8903 aaronmk
alias end_try_subshell='exit "$e"'
42 8886 aaronmk
43 8899 aaronmk
#### integers
44
45
let () { builtin let "$@" || true; }
46
	# "If the last ARG evaluates to 0, let returns 1" (`help let`)
47
48 8854 aaronmk
#### arrays
49 8694 aaronmk
50 8833 aaronmk
join () { local IFS="$delim"; echo "$*"; } # usage: delim=... join elems...
51 8816 aaronmk
52 8691 aaronmk
reverse () # usage: array=($(reverse args...))
53
{
54
	local i
55
	for (( i=$#; i >= 1; i-- )); do printf '%q ' "${!i}"; done
56
}
57
58 8854 aaronmk
#### verbose output
59
60 8914 aaronmk
# usage: (stdout2stderr; cmd...) || exit
61
# `|| exit` needed on Mac because of bug where -e doesn't apply to ()
62
stdout2stderr () { exec >&2; }
63
64 8713 aaronmk
: "${verbosity:=$verbose}" "${verbosity:=0}"
65 8710 aaronmk
66 8898 aaronmk
can_log () { test "$verbosity" -gt 0; } # verbosity=0 turns off all logging
67 8895 aaronmk
68 8919 aaronmk
: "${log_indent='  '}"
69
70 8900 aaronmk
# usage: in func:      inc_log_level; ...
71
#        outside func: inc_log_level; ...; dec_log_level
72 8919 aaronmk
alias inc_log_level='declare verbosity="$verbosity" PS4="$log_indent$PS4"
73
let verbosity--'
74
alias dec_log_level='declare verbosity="$verbosity" PS4="${PS4#$log_indent}"
75
let verbosity++'
76 8900 aaronmk
77 8904 aaronmk
# usage: (log_stderr; cmd...) || exit
78
# `|| exit` needed on Mac because of bug where -e doesn't apply to ()
79
log_stderr () { if ! can_log; then exec 2>/dev/null; fi; }
80
81 8915 aaronmk
log_stderr_cmd () # usage: [stdout2stderr=1] log_stderr_cmd cmd...
82
{
83
	(log_stderr
84
		if test -n "$stdout2stderr"; then stdout2stderr; fi
85
		"$@"
86
	) || exit
87
}
88 8911 aaronmk
89 8897 aaronmk
echo_cmd () { if can_log; then echo "$PS4$*" >&2; fi; }
90 8272 aaronmk
91 8278 aaronmk
echo_run () { echo_cmd "$@"; "$@"; }
92
93 8913 aaronmk
alias echo_run_extern='echo_run log_stderr_cmd "extern"'
94 8906 aaronmk
95 8907 aaronmk
alias extern="echo_run_extern" # automatically echo external commands
96
97 8908 aaronmk
# commands that are always external
98
for cmd in env; do alias "$cmd=extern $cmd"; done; unset cmd
99 8872 aaronmk
100 8646 aaronmk
canon_rel_path ()
101
{
102
	local path="$1"
103 8716 aaronmk
	path="$(realpath "$path")" # canonicalize
104 8773 aaronmk
	path="${path#$(pwd -P)/}" # remove any shared prefix with the current dir
105 8646 aaronmk
	echo "$path"
106
}
107
108 8909 aaronmk
fi # load new aliases
109 8884 aaronmk
if self_being_included; then
110
111 8909 aaronmk
function echo_func ()
112 8463 aaronmk
{
113 8901 aaronmk
	inc_log_level
114 8647 aaronmk
	local script="$(canon_rel_path "${BASH_SOURCE[1]}")"
115
	echo_cmd "$script:${BASH_LINENO[0]}" "${FUNCNAME[1]}" "$@"
116 8463 aaronmk
}
117 8885 aaronmk
118 8702 aaronmk
echo_stdin () # usage: input|echo_stdin|cmd
119
{
120 8901 aaronmk
	inc_log_level
121 8897 aaronmk
	if can_log; then
122
		echo ----- >&2
123
		tee -a /dev/stderr;
124
		echo ----- >&2
125
	else cat
126
	fi
127 8702 aaronmk
}
128 8275 aaronmk
129 8856 aaronmk
echo_vars () # usage: echo_vars var...
130 8901 aaronmk
{
131
	inc_log_level
132
	if can_log; then { echo -n "$PS4"; declare -p "${@%%=*}";} >&2; fi
133
}
134 8641 aaronmk
135
echo_export ()
136
{
137 8700 aaronmk
	builtin export "$@"
138 8641 aaronmk
	echo_vars "$@"
139
}
140
141 8713 aaronmk
if test "$verbosity" -ge 2; then
142 8711 aaronmk
	alias export="echo_export" # automatically echo env vars when they are set
143
fi
144 8642 aaronmk
145 8272 aaronmk
usage () { echo "Usage: $1" >&2; (exit 2); }
146
147 8873 aaronmk
fi # load new aliases
148
if self_being_included; then
149
150 8871 aaronmk
#### strings
151
152
sed_ere_flag="$(test "$(uname)" = Darwin && echo E || echo r)"
153
154 8910 aaronmk
sed () { extern sed -"$sed_ere_flag" "$@";}
155 8871 aaronmk
156 8854 aaronmk
#### vars
157
158
set_var () { eval "$1"'="$2"'; }
159
160 8857 aaronmk
set_inv () { set_var no_"$1" "$(test -n "${!1}" || echo 1)"; }
161
162 8859 aaronmk
# usage: local var=...; local_inv
163 8888 aaronmk
alias local_inv='declare "no_$var=$(test -n "${!var}" || echo 1)"'
164 8859 aaronmk
165 8863 aaronmk
# usage: local prefix=..._; import_vars
166
alias import_vars="$(cat <<'EOF'
167
: "${prefix:?}"
168
local src_var dest_var
169
for src_var in $(eval echo '${!'$prefix'*}'); do
170
	dest_var="${src_var#$prefix}"
171
	local "$dest_var=${!src_var}"; echo_vars "$dest_var"
172
done
173
EOF
174
)"
175
176 8854 aaronmk
#### commands
177
178 8272 aaronmk
top_dir="$(dirname "$0")" # outermost script
179
180 8465 aaronmk
run_args_cmd () # runs the command line args command
181 8272 aaronmk
{
182 8292 aaronmk
	test "$?" -eq 0 || return
183 8693 aaronmk
	eval set -- "$(reverse "${BASH_ARGV[@]}")"
184 8290 aaronmk
	test "$#" -ge 1 || set -- all
185 8648 aaronmk
	echo_cmd "$(canon_rel_path "$0")" "$@"; "$@"
186 8272 aaronmk
}
187
188 8284 aaronmk
fwd () # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
189 8272 aaronmk
{
190 8881 aaronmk
	echo_func
191 8284 aaronmk
	: "${subdirs?}"
192
193 8272 aaronmk
	for subdir in "${subdirs[@]}"; do
194 8280 aaronmk
		"$(dirname "${BASH_SOURCE[1]}")"/"$subdir"/run "$@"
195 8272 aaronmk
	done
196
}
197
198 8854 aaronmk
#### make
199
200 8881 aaronmk
# usage: target_filename/command () { echo_func; set_make_vars; ...; }
201 8880 aaronmk
alias set_make_vars="$(cat <<'EOF'
202
local command="${FUNCNAME##*/}"; echo_vars command
203
local target_filename="${FUNCNAME%/*}"; echo_vars target_filename
204
local target="$top_dir/$target_filename"; echo_vars target
205
EOF
206
)"
207
208 8280 aaronmk
make ()
209
{
210 8881 aaronmk
	echo_func
211 8918 aaronmk
	stdout2stderr=1 extern make --directory="$top_dir" "$@"
212 8280 aaronmk
}
213 8272 aaronmk
214 8276 aaronmk
if false; then ## usage:
215 8652 aaronmk
inline_make 3<<'EOF'
216 8276 aaronmk
target:
217
	$(self_dir)/cmd >$@
218
EOF
219
# target will be run automatically because it's first in the makefile
220
fi ##
221
inline_make ()
222
{
223 8881 aaronmk
	echo_func
224 8640 aaronmk
	local self="$(readlink -f "${BASH_SOURCE[1]}")"
225
	local self_dir="$(dirname "$self")"
226 8645 aaronmk
	export self self_dir
227 8640 aaronmk
228 8651 aaronmk
	make --makefile=<((
229 8652 aaronmk
		cat /dev/fd/3
230 8651 aaronmk
		echo -n "
231 8276 aaronmk
.SUFFIXES: # turn off built-in suffix rules
232
.SECONDARY: # don't automatically delete intermediate files
233
.DELETE_ON_ERROR: # delete target if recipe fails
234 8651 aaronmk
"
235
	)|echo_stdin) "$@"
236 8276 aaronmk
}
237 8658 aaronmk
238 8854 aaronmk
#### compression
239
240
### zip
241
242 8887 aaronmk
zip ()
243
{
244 8916 aaronmk
	stdout2stderr=1 try extern zip "$@"
245 8887 aaronmk
	ignore 12 # "zip has nothing to do" (`man zip`)
246
	end_try
247
}
248
249 8916 aaronmk
unzip () { stdout2stderr=1 extern unzip "$@"; }
250 8902 aaronmk
251 8858 aaronmk
set_inv force
252
alias zip_newer="zip${no_force:+ -u}"
253
alias unzip_newer="unzip${no_force:+ -u} -o"
254
	# -o is safe because -u only extracts newer files
255 8704 aaronmk
256 8775 aaronmk
#### databases
257
258 8868 aaronmk
# using prefixed connection vars
259 8888 aaronmk
alias use_local="declare prefix=local_; import_vars"
260
alias use_remote="declare prefix=remote_; import_vars"
261 8868 aaronmk
alias use_local_remote="use_local; use_remote"
262 8864 aaronmk
263 8775 aaronmk
quote='"'
264
265
esc_name () { echo "$quote${1//$quote/$quote$quote}$quote"; }
266
267
mk_esc_name () { set_var "$1"_esc "$(esc_name "${!1}")"; }
268
269 8888 aaronmk
alias mk_schema_esc="declare schema_esc; mk_esc_name schema"
270
alias mk_table_esc="declare table_esc; mk_esc_name table"
271 8796 aaronmk
272
fi # load new aliases
273
if self_being_included; then
274
275
log_sql () { test "$verbosity" -ge 2; }
276
277
### MySQL
278
279 8862 aaronmk
# auto-adds connection/login opts when specified
280 8865 aaronmk
mysql_cmd () # usage: mysql* () { ...; mysql_cmd "$@"; }
281 8860 aaronmk
{
282 8881 aaronmk
	echo_func
283 8870 aaronmk
	if test _"$ssh_server" = _"$(hostname -f)"; then local ssh_server=; fi
284 8869 aaronmk
	if test -n "$ssh_server"; then
285
		local ssh_dest="${ssh_dest-${ssh_user:+$ssh_user@}$ssh_server}"
286
	fi
287 8875 aaronmk
	if test -n "$schema"; then local database="${database-$schema}"; fi
288 8869 aaronmk
289 8860 aaronmk
	local var=ssh_dest; local_inv
290 8910 aaronmk
	extern ${ssh_dest:+ssh "$ssh_dest" }"${FUNCNAME[1]}" \
291 8879 aaronmk
${server:+ --host="$server" }${user:+--user="$user" } --password\
292
${password+="$password"} ${database:+--databases "$database" --tables } "$@"
293 8860 aaronmk
}
294
295 8775 aaronmk
mysql ()
296
{
297 8881 aaronmk
	echo_func
298 8865 aaronmk
	mysql_cmd --verbose "$@"
299 8775 aaronmk
}
300
301
mysql_ANSI ()
302
{
303 8881 aaronmk
	echo_func
304 8775 aaronmk
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
305
}
306
307 8866 aaronmk
mysqldump () # usage: [schema=1 | data=1] mysqldump db [table...]
308
{
309 8881 aaronmk
	echo_func
310 8866 aaronmk
	mysql_cmd --quick --lock-tables=false --set-charset \
311
${postgres_compat:+--compatible=postgresql --add-locks=false }\
312
${schema:+--no-data }${data:+--no-create-info }"$@"
313
}
314
315 8867 aaronmk
mysqldump_diffable ()
316
{
317 8881 aaronmk
	echo_func
318 8867 aaronmk
	mysqldump "$@"|sed 's/^(-- Dump completed).*$/\1/'
319
}
320
321 8796 aaronmk
### PostgreSQL
322
323
pg_copy_to ()
324
{
325 8881 aaronmk
	echo_func
326 8805 aaronmk
	if test -z "$source"; then
327
		: "${table:?}"; mk_table_esc
328 8834 aaronmk
		if test -z "$limit"; then local source="$table_esc"
329
		else local source="(SELECT * FROM $table_esc LIMIT $limit)"
330 8805 aaronmk
		fi
331
	fi
332 8834 aaronmk
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
333 8805 aaronmk
334 8807 aaronmk
	psql "$@" <<<"COPY $source TO STDOUT $pg_copy_format;"
335 8796 aaronmk
}
336
337
pg_header ()
338
{
339 8881 aaronmk
	echo_func
340 8806 aaronmk
	local pg_copy_format="CSV HEADER" limit=0
341 8807 aaronmk
	pg_copy_to "$@"|echo_stdin
342 8796 aaronmk
}
343
344
pg_export_table_no_header ()
345
{
346 8881 aaronmk
	echo_func
347 8796 aaronmk
	local pg_copy_format="CSV"
348 8807 aaronmk
	pg_copy_to "$@"
349 8796 aaronmk
}
350
351
pg_export_table_to_dir_no_header ()
352
{
353 8881 aaronmk
	echo_func
354 8796 aaronmk
	local table="$1"; shift; mk_table_esc
355 8807 aaronmk
	local cols="$(pg_header)"
356 8796 aaronmk
	pg_export_table_no_header "$@" >"$exports_dir/$table.no_header.cols=$cols.csv"
357
}
358
359 8704 aaronmk
fi