Project

General

Profile

1
#!/bin/bash -e
2
realpath () { readlink -f -- "$1"; }
3

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

    
6
self_not_included () # usage: if self_not_included; then ... fi
7
{
8
	test "$#" -ge 1 || set -- "${BASH_SOURCE[1]}"
9
	local include_guard="$(include_guard_var "$1")"
10
	alias self_being_included=false
11
	test -z "${!include_guard+t}" && \
12
	{ eval "$include_guard"=1; alias self_being_included=true; }
13
}
14

    
15
# to load newly-defined aliases for use in functions in the same file:
16
## fi # load new aliases
17
## if self_being_included; then
18
# this is needed because aliases defined inside an if statement are not
19
# available inside that if statement
20

    
21
if self_not_included "${BASH_SOURCE[0]}"; then
22

    
23
shopt -s expand_aliases
24

    
25
#### arrays
26

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

    
29
reverse () # usage: array=($(reverse args...))
30
{
31
	local i
32
	for (( i=$#; i >= 1; i-- )); do printf '%q ' "${!i}"; done
33
}
34

    
35
#### strings
36

    
37
sed_ere_flag="$(test "$(uname)" = Darwin && echo E || echo r)"
38

    
39
sed () { echo_run env sed -"$sed_ere_flag" "$@";}
40

    
41
#### verbose output
42

    
43
: "${verbosity:=$verbose}" "${verbosity:=0}"
44

    
45
echo_cmd () { echo "$PS4$*" >&2; }
46

    
47
echo_run () { echo_cmd "$@"; "$@"; }
48

    
49
canon_rel_path ()
50
{
51
	local path="$1"
52
	path="$(realpath "$path")" # canonicalize
53
	path="${path#$(pwd -P)/}" # remove any shared prefix with the current dir
54
	echo "$path"
55
}
56

    
57
# usage: echo_func "$@"
58
echo_func ()
59
{
60
	local script="$(canon_rel_path "${BASH_SOURCE[1]}")"
61
	echo_cmd "$script:${BASH_LINENO[0]}" "${FUNCNAME[1]}" "$@"
62
}
63

    
64
echo_stdin () # usage: input|echo_stdin|cmd
65
{
66
	echo ----- >&2
67
	tee -a /dev/stderr;
68
	echo ----- >&2
69
}
70

    
71
echo_vars () # usage: echo_vars var...
72
{ { echo -n "$PS4"; declare -p "${@%%=*}";} >&2; }
73

    
74
echo_export ()
75
{
76
	builtin export "$@"
77
	echo_vars "$@"
78
}
79

    
80
if test "$verbosity" -ge 2; then
81
	alias export="echo_export" # automatically echo env vars when they are set
82
fi
83

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

    
86
#### vars
87

    
88
set_var () { eval "$1"'="$2"'; }
89

    
90
#### commands
91

    
92
top_dir="$(dirname "$0")" # outermost script
93

    
94
run_args_cmd () # runs the command line args command
95
{
96
	test "$?" -eq 0 || return
97
	eval set -- "$(reverse "${BASH_ARGV[@]}")"
98
	test "$#" -ge 1 || set -- all
99
	echo_cmd "$(canon_rel_path "$0")" "$@"; "$@"
100
}
101

    
102
fwd () # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
103
{
104
	echo_func "$@"
105
	: "${subdirs?}"
106
	
107
	for subdir in "${subdirs[@]}"; do
108
		"$(dirname "${BASH_SOURCE[1]}")"/"$subdir"/run "$@"
109
	done
110
}
111

    
112
#### make
113

    
114
make ()
115
{
116
	echo_func "$@"
117
	echo_run env make --directory="$top_dir" "$@"
118
}
119

    
120
if false; then ## usage:
121
inline_make 3<<'EOF'
122
target:
123
	$(self_dir)/cmd >$@
124
EOF
125
# target will be run automatically because it's first in the makefile
126
fi ##
127
inline_make ()
128
{
129
	echo_func "$@"
130
	local self="$(readlink -f "${BASH_SOURCE[1]}")"
131
	local self_dir="$(dirname "$self")"
132
	export self self_dir
133
	
134
	make --makefile=<((
135
		cat /dev/fd/3
136
		echo -n "
137
.SUFFIXES: # turn off built-in suffix rules
138
.SECONDARY: # don't automatically delete intermediate files
139
.DELETE_ON_ERROR: # delete target if recipe fails
140
"
141
	)|echo_stdin) "$@"
142
}
143

    
144
#### compression
145

    
146
### zip
147

    
148
alias zip="echo_run zip"
149
alias unzip="echo_run unzip"
150
alias zip_newer="zip -u"
151
alias unzip_newer="unzip -u -o" # -o is safe b/c -u only extracts newer files
152

    
153
#### databases
154

    
155
quote='"'
156

    
157
esc_name () { echo "$quote${1//$quote/$quote$quote}$quote"; }
158

    
159
mk_esc_name () { set_var "$1"_esc "$(esc_name "${!1}")"; }
160

    
161
alias mk_schema_esc="local schema_esc; mk_esc_name schema"
162
alias mk_table_esc="local table_esc; mk_esc_name table"
163

    
164
fi # load new aliases
165
if self_being_included; then
166

    
167
log_sql () { test "$verbosity" -ge 2; }
168

    
169
### MySQL
170

    
171
mysql ()
172
{
173
	echo_func "$@"
174
	echo_run env mysql --verbose "$@"
175
}
176

    
177
mysql_ANSI ()
178
{
179
	echo_func "$@"
180
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
181
}
182

    
183
### PostgreSQL
184

    
185
pg_copy_to ()
186
{
187
	echo_func "$@"
188
	if test -z "$source"; then
189
		: "${table:?}"; mk_table_esc
190
		if test -z "$limit"; then local source="$table_esc"
191
		else local source="(SELECT * FROM $table_esc LIMIT $limit)"
192
		fi
193
	fi
194
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
195
	
196
	psql "$@" <<<"COPY $source TO STDOUT $pg_copy_format;"
197
}
198

    
199
pg_header ()
200
{
201
	echo_func "$@"
202
	local pg_copy_format="CSV HEADER" limit=0
203
	pg_copy_to "$@"|echo_stdin
204
}
205

    
206
pg_export_table_no_header ()
207
{
208
	echo_func "$@"
209
	local pg_copy_format="CSV"
210
	pg_copy_to "$@"
211
}
212

    
213
pg_export_table_to_dir_no_header ()
214
{
215
	echo_func "$@"
216
	local table="$1"; shift; mk_table_esc
217
	local cols="$(pg_header)"
218
	pg_export_table_no_header "$@" >"$exports_dir/$table.no_header.cols=$cols.csv"
219
}
220

    
221
fi
(45-45/50)