Project

General

Profile

1
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/util.sh
3

    
4
if self_not_included; then
5

    
6
# using prefixed connection vars
7
alias ssh2local='declare prefix=ssh_; import_vars; unset prefix
8
declare $(prefix=ssh_ get_prefix_vars); unset $(prefix=ssh_ get_prefix_vars)'
9
alias use_local='declare prefix=local_; import_vars; unset prefix'
10
alias use_remote='declare prefix=remote_; import_vars; unset prefix'
11
alias use_local_remote='{ use_local; use_remote; }'
12
	# *must* be run inside a function
13
alias use_root='declare prefix=root_; import_vars; unset prefix'
14

    
15
quote='"'
16

    
17
esc_name() { echo "$quote${1//$quote/$quote$quote}$quote"; }
18

    
19
mk_esc_name_alias() # usage: mk_esc_name_alias schema_esc
20
{ alias mk_"$1"='declare '"$1"'="${'"$1"':-$(esc_name "$'"${1%_esc}"'")}"; '\
21
'echo_vars '"$1"; }
22

    
23
mk_esc_name_alias schema_esc
24
mk_esc_name_alias table_esc
25

    
26
fi # load new aliases
27
if self_being_included; then
28

    
29
skip_table() # usage: create_table || table=... skip_table || return 0
30
{ what="table $table" already_exists_msg; }
31

    
32
: "${test=$(isset limit; exit2bool)}" # test mode when using limited # rows
33

    
34
# usage: (set_large_table; to_file db_cmd...) || return
35
alias set_large_table='declare del="${del-$(test "$limit"; exit2bool)}"
36
echo_vars del'
37

    
38
limit() # usage: "query... $([prefix=$'| |\n'] limit)"
39
{
40
	echo_func; kw_params prefix; local prefix="${prefix-
41
}"
42
	echo -n "${limit:+${prefix}LIMIT $limit}"
43
}
44

    
45
cols2list() # usage: cols2list col...
46
{ echo_func; cmd=esc_name foreach_arg; delim=', ' join "$@"; }
47

    
48
mk_select() # usage: {query=... | table=... [cols=...] [filter=...] \
49
# [order_by=...]} mk_select
50
{
51
	echo_func; kw_params query table cols filter; mk_table_esc
52
	if is_array cols    ; then cols="$(    cols2list "${cols[@]}"    )"; fi
53
	if is_array order_by; then order_by="$(cols2list "${order_by[@]}")"; fi
54
	echo "$(rtrim "${query:-SELECT ${cols:-*} ${cols:+
55
}FROM $table_esc
56
${filter:+WHERE $filter
57
}${order_by:+ORDER BY $order_by
58
}}")\
59
$(limit)"
60
}
61

    
62
# export func usage: export_func() { ...; mk_select_var; ... }
63
# caller usage: {query=... | table=... [cols=...] [filter=...]} export_func
64
# cmd line usage: [limit=...] caller
65
alias mk_select_var='declare query="$(mk_select)"'
66

    
67
fi # load new aliases
68
if self_being_included; then
69

    
70
mk_drop() # usage: table=... mk_drop|*sql_ANSI
71
{
72
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
73
	echo "DROP TABLE IF EXISTS $table_esc"
74
}
75

    
76
mk_truncate() # usage: table=... mk_truncate|*sql_ANSI
77
{
78
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
79
	echo "TRUNCATE $table_esc"
80
}
81

    
82

    
83
### MySQL
84

    
85
alias set_database=\
86
'if test "$schema"; then declare database="${database-$schema}"; fi'
87

    
88
fi # load new aliases
89
if self_being_included; then
90

    
91
# usage: mysql*() { ...; mysql_cmd "$@"; } (with alias)
92
# caller usage: [ssh_server=...] [server=...] [user=...] [password=...] mysql*()
93
function mysql_cmd() # usage: mysql*() { ...; mysql_cmd cmd "$@"; }
94
# auto-adds connection/login opts when specified
95
{
96
	echo_func
97
	local cmd="$1"; shift
98
	local ssh_server="$(localize_url "$ssh_server")"
99
	local server="$(localize_url "$server")"
100
	if test "$ssh_server"; then
101
		local ssh_dest="${ssh_dest-${ssh_user:+$ssh_user@}$ssh_server}"
102
	fi
103
	
104
	local var=ssh_dest; local_inv
105
	command "time" ${ssh_dest:+ssh "$ssh_dest" }"$cmd" \
106
${server:+ --host="$server" }${user:+--user="$user" } --password\
107
${password+="$password"} --quick "$@" # --quick: don't buffer entire result
108
}
109
alias mysql_cmd='mysql_cmd "$FUNCNAME"'
110

    
111
fi # load new aliases
112
if self_being_included; then
113

    
114
function mysql() # usage: [database=...] [data_only=1] [log_queries=] mysql ...
115
{
116
	echo_func; kw_params output_data data_only query_verbosity
117
	if test "$data_only"; then local output_data="${output_data-1}"; fi
118
	local log_queries="${log_queries-1}"
119
	set_database
120
	
121
	set -- ${database:+--database="$database" }--local-infile=1 \
122
--${data_only:+skip-}column-names "$@"
123
	if test "$output_data"; then echo_stdin|mysql_cmd --batch "$@"
124
	else cmd_log_fd=1 mysql_cmd ${log_queries:+--verbose --verbose --verbose }\
125
"$@" # --verbose*3: echo runtimes
126
	fi
127
}
128

    
129
mysql_ANSI()
130
{
131
	echo_func
132
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
133
}
134

    
135
# always use ANSI mode, to support "" identifiers. `` are *still* supported in
136
# this mode, so it also works with SHOW CREATE TABLE output and dumpfiles.
137
alias mysql='mysql_ANSI'
138

    
139
fi # load new aliases
140
if self_being_included; then
141

    
142
mysql_root() { echo_func; use_root; mysql "$@"; }
143

    
144
mysql_truncate() { echo_func; mk_truncate|mysql; }
145

    
146
mysql_import() # usage: table=... [cols=...] [append=1] mysql_import <file
147
# without append=1, first ensures the table is empty
148
{
149
	echo_func
150
	mk_table_esc
151
	local mysql_load_data_format="${mysql_load_data_format-\
152
FIELDS TERMINATED BY ','
153
OPTIONALLY ENCLOSED BY '\"'
154
}"
155
	
156
	if test ! "$append"; then mysql_truncate; fi
157
	mysql_load_data_format="${mysql_load_data_format%
158
}"
159
	ssh2local # ssh does not tunnel nonstandard fds
160
	mysql "$@" 40<&0 <<EOF
161
LOAD DATA LOCAL INFILE '/dev/fd/40'
162
${append:+IGNORE }INTO TABLE $table_esc
163
$mysql_load_data_format
164
IGNORE 1 LINES
165
EOF
166
}
167

    
168
mysql_export() # does not support CSV
169
# caller usage: [database=...] {query=... | table=... [cols=...] [filter=...]} \
170
# mysql_export
171
# cmd line usage: [limit=...] caller
172
{
173
	echo_func
174
	mk_select_var
175
	
176
	output_data=1 mysql "$@" <<<"$query"
177
}
178

    
179
mysql_export_outfile() # supports CSV, but requires the FILE privilege
180
{
181
	echo_func
182
	: "${file:?}"
183
	mk_select_var
184
	local mysql_load_data_format="${mysql_load_data_format-\
185
FIELDS TERMINATED BY ','
186
OPTIONALLY ENCLOSED BY '\"'
187
}"
188
	
189
	local head="${query%%FROM*}" # includes trailing newline
190
	head="${head%
191
}"
192
	local tail="${query#$head}"
193
	mysql_load_data_format="${mysql_load_data_format%
194
}"
195
	mysql "$@" <<EOF
196
$head
197
INTO OUTFILE '$file'
198
$mysql_load_data_format
199
$tail
200
EOF
201
}
202

    
203
mysqldump() # usage: [schema=1 | data=1] [create_db=1] mysqldump db [table...]
204
{
205
	echo_func
206
	echo_vars schema data create_db
207
	
208
	local var=create_db; local_inv
209
	mysql_cmd ${database:+--databases "$database" ${no_create_db:+--tables }} \
210
--lock-tables=false --set-charset \
211
${postgres_compat:+${data:+--compatible=postgresql }--add-locks=false }\
212
${schema:+--no-data }${data:+--no-create-info }"$@"
213
}
214

    
215
mysqldump_diffable()
216
{
217
	echo_func
218
	mysqldump "$@"|{ pipe_delay; echo_run sed 's/^(-- Dump completed).*$/\1/'; }
219
}
220

    
221
mysql_rm_privileged_statements()
222
{
223
	echo_func
224
	grep -vE -e '^/\*!40000 ALTER TABLE `.*` (DIS|EN)ABLE KEYS \*/;$' \
225
-e '^(UN)?LOCK TABLES( `.*` WRITE)?;$'
226
}
227

    
228
## permissions
229

    
230
mysql_seal_table() # usage: table=... user=... mysql_seal_table
231
# prevents further modifications to a table by a user
232
{
233
	echo_func; kw_params table user; : "${table:?}" "${user:?}"; mk_table_esc
234
	
235
	benign_error=1 mysql_root <<<"REVOKE ALL PRIVILEGES ON $table FROM '$user'@'%'" || true
236
	benign_error=1 mysql_root <<<"REVOKE GRANT OPTION   ON $table FROM '$user'@'%'" || true
237
}
238

    
239

    
240
### PostgreSQL
241

    
242
alias use_pg='declare prefix=pg_; import_vars; unset prefix'
243

    
244
fi # load new aliases
245
if self_being_included; then
246

    
247
# usage: pg_*() { ...; pg_cmd "$@"; } (uses alias)
248
function pg_cmd() # usage for fn: pg_*() { ...; pg_cmd cmd "$@"; }
249
# auto-adds connection/login opts when specified
250
{
251
	echo_func
252
	
253
	use_pg
254
	log- 2
255
	local PGHOST="$server";       export PGHOST
256
	local PGUSER="$user";         export PGUSER
257
	local PGPASSWORD="$password"; export PGPASSWORD
258
	local PGDATABASE="$database"; export PGDATABASE
259
	log+ 2
260
	
261
	command "time" "$@"
262
}
263
alias pg_cmd='"pg_cmd" "${FUNCNAME%%__*}"'
264

    
265
pg_as_root() # usage: pg_as_root {psql|pg_*} ... # only works inside runscript
266
{ echo_func; : "${wrap_fn?}"; sudo -E -u postgres "$wrap_fn" "$@"; }
267

    
268
fi # load new aliases
269
if self_being_included; then
270

    
271
psql() # usage: [stdin=copy_pstdin_file] psql <<<"cmds, e.g. \copy from pstdin"
272
{
273
	echo_func; kw_params stdin
274
	
275
	if can_log; then set -- --echo-all --echo-hidden "$@"; fi
276
	local redirs=("${redirs[@]}" '40<&0' "0<${stdin:-&20}" '41>&1')
277
	(
278
		# hide stack traces/DETAIL sections of error messages at verbosity <2
279
		if ! clog++ can_log; then echo '\set VERBOSITY terse'; fi
280
		if can_log; then cat <<'EOF'
281
\timing on
282
SET client_min_messages = NOTICE;
283
EOF
284
		fi
285
		cat
286
	)|cmd_log_fd=1 pg_cmd --file /dev/fd/40 --output /dev/fd/41 \
287
--set ON_ERROR_STOP=1 --quiet "$@"
288
		# --output is for query *results*, not echoed statements
289
}
290

    
291
pg_export() # usage: mk_select_opts... [pg_copy_format=CSV...] pg_export >out
292
{
293
	echo_func
294
	mk_select_var
295
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
296
	
297
	psql "$@" <<<"COPY ($query) TO STDOUT $pg_copy_format;"
298
}
299

    
300
pg_header()
301
{
302
	echo_func
303
	local pg_copy_format="CSV HEADER" limit=0
304
	pg_export "$@"|echo_stdout
305
}
306

    
307
pg_export_table_no_header()
308
{
309
	echo_func
310
	local pg_copy_format="CSV"
311
	pg_export "$@"
312
}
313

    
314
pg_export_table_to_dir()
315
{
316
	echo_func
317
	local table="$1"; shift; mk_table_esc
318
	stdout="$exports_dir/$table.csv" to_file pg_export "$@"
319
}
320

    
321
pg_export_table_to_dir_no_header()
322
{
323
	echo_func
324
	local table="$1"; shift; mk_table_esc
325
	stdout="$exports_dir/$table.no_header.cols=$(pg_header).csv" to_file \
326
pg_export_table_no_header "$@"
327
}
328

    
329
pg_dump() # usage: [schema=...] [struct=1 | data=1] [compress=1] [owners=1] \
330
# [create_schema=] pg_dump [opts...] >out
331
{
332
	echo_func; kw_params struct data plain owners create_schema
333
	local create_schema="${create_schema-1}"
334
	
335
	# subset
336
	if test "$schema"; then set -- --schema="\"$schema\"" "$@"; fi
337
	
338
	# format
339
	if test "$compress"; then set -- "$@" --format=c --compress=9
340
	                     else set -- "$@" --format=p --inserts # plain
341
	fi
342
	if test "$struct"  ; then set -- "$@" --schema-only; fi
343
	if test "$data"    ; then set -- "$@" --data-only  ; fi
344
	if test ! "$owners"; then set -- "$@" --no-owner   ; fi
345
	
346
	(
347
		# filter output
348
		if test ! "$create_schema"; then
349
			fd=1 redirs= filter_fd sed 's/^CREATE SCHEMA/--&/'
350
		fi
351
		
352
		pg_cmd "$@"
353
	)
354
}
355

    
356
fi
(4-4/11)