Project

General

Profile

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

    
5
if self_not_included; then
6

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

    
16
quote='"'
17

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

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

    
24
mk_esc_name_alias schema_esc
25
mk_esc_name_alias table_esc
26

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

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

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

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

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

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

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

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

    
69
fi # load new aliases
70
if self_being_included; then
71

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

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

    
84

    
85
### MySQL
86

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

    
90
fi # load new aliases
91
if self_being_included; then
92

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

    
113
fi # load new aliases
114
if self_being_included; then
115

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

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

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

    
141
fi # load new aliases
142
if self_being_included; then
143

    
144
mysql_root() { echo_func; use_root; mysql "$@"; }
145

    
146
mysql_truncate() { echo_func; mk_truncate|mysql; }
147

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

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

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

    
205
## backups
206

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

    
219
mysqldump_diffable()
220
{
221
	echo_func
222
	mysqldump "$@"|{ pipe_delay; echo_run sed 's/^(-- Dump completed).*$/\1/'; }
223
}
224

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

    
232
## permissions
233

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

    
243
## server admin
244

    
245
mysql_ctl() # usage: mysql_ctl {start|stop|restart|...}
246
{
247
	echo_func
248
	pattern='^stop: Unknown instance:' ignore_e=1 ignore_err_msg \
249
sudo service mysql "$@" # ignore errors if not running
250
}
251

    
252
mysql_snapshot() # usage: live=1 [from=...] [to=...] mysql_snapshot
253
{
254
	echo_func; kw_params from to
255
	local from="${from:-/var/lib/mysql}"; local to="${to:-$from.bak}"
256
	sudo mkdir "$to"
257
	
258
	mysql_ctl stop
259
	prep_try; local_dir="$from" remote_url="$to" "try" sudo upload
260
	mysql_ctl start
261
	rethrow
262
}
263

    
264

    
265
### PostgreSQL
266

    
267
alias use_pg='declare prefix=pg_; import_vars; unset prefix'
268

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

    
272
# usage: pg_*() { ...; pg_cmd "$@"; } (uses alias)
273
function pg_cmd() # usage for fn: pg_*() { ...; pg_cmd cmd "$@"; }
274
# auto-adds connection/login opts when specified
275
{
276
	echo_func; kw_params as_root
277
	
278
	use_pg
279
	log_local
280
	log- 2
281
	if test "$server";   then local PGHOST="$server";       export PGHOST; fi
282
	if test "$user";     then local PGUSER="$user";         export PGUSER; fi
283
	if test "$password"; then local PGPASSWORD="$password"; log++ export PGPASSWORD;fi
284
	if test "$database"; then local PGDATABASE="$database"; export PGDATABASE;fi
285
	log+ 2
286
	
287
	time if test "$as_root"; then sudo -u postgres "$@"; else command "$@"; fi
288
}
289
alias pg_cmd='"pg_cmd" "${FUNCNAME%%__*}"'
290

    
291
fi # load new aliases
292
if self_being_included; then
293

    
294
psql() # usage: [stdin=copy_pstdin_file] [output_data=1] psql \
295
# <<<"cmds (eg. \copy from pstdin)"
296
# SUDO_USER: when set, avoids outputting to /dev/fd/#, because this causes a
297
# "Permission denied" error when running as sudo on Linux
298
{
299
	echo_func; kw_params stdin output_data
300
	local bypass_ok="$(! isset SUDO_USER; exit2bool)"; echo_vars bypass_ok
301
	local verbose_="$(test "$bypass_ok" && can_log; exit2bool)"
302
		echo_vars verbose_
303
	local data_bypasses_filter="$(test "$output_data" -a "$bypass_ok";
304
		exit2bool)"; echo_vars data_bypasses_filter
305
	
306
	if test "$verbose_"; then set -- --echo-all --echo-hidden "$@"; fi
307
	local redirs=("${redirs[@]}" '40<&0' "0<${stdin:-&20}" '41>&1')
308
	(
309
		# hide stack traces/DETAIL sections of error messages at verbosity <2
310
		if ! log++ can_log; then echo '\set VERBOSITY terse'; fi
311
		if test "$verbose_"; then echo '\timing on'; fi
312
		echo "SET client_min_messages = \
313
$(if test "$verbose_"; then echo NOTICE; else echo WARNING; fi);"
314
		cat
315
	)|cmd_log_fd=${bypass_ok:+1} pg_cmd --file /dev/fd/40 \
316
${data_bypasses_filter:+--output /dev/fd/41 }--set ON_ERROR_STOP=1 --quiet "$@"\
317
|| verbosity_min=2 die_error_hidden
318
		# --output is for query *results*, not echoed statements
319
}
320

    
321
pg_export() # usage: mk_select_opts... [pg_copy_format=CSV...] pg_export >out
322
{
323
	echo_func
324
	mk_select_var
325
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
326
	
327
	output_data=1 psql "$@" <<<"COPY ($query) TO STDOUT $pg_copy_format;"
328
}
329

    
330
pg_header()
331
{
332
	echo_func
333
	local pg_copy_format="CSV HEADER" limit=0
334
	pg_export "$@"|echo_stdout
335
}
336

    
337
pg_export_table_no_header()
338
{
339
	echo_func
340
	local pg_copy_format="CSV"
341
	pg_export "$@"
342
}
343

    
344
pg_export_table_to_dir()
345
{
346
	echo_func
347
	local table="$1"; shift; mk_table_esc
348
	stdout="$exports_dir/$table.csv" to_file pg_export "$@"
349
}
350

    
351
pg_export_table_to_dir_no_header()
352
{
353
	echo_func
354
	local table="$1"; shift; mk_table_esc
355
	stdout="$exports_dir/$table.no_header.cols=$(pg_header).csv" to_file \
356
pg_export_table_no_header "$@"
357
}
358

    
359
pg_dump() # usage: database={...|} [schema=...] [struct=1 | data=1] [owners=1] \
360
# [compress=1] [create_schema=] [users=1] pg_dump [opts...] >out
361
# database='': entire cluster
362
{
363
	echo_func;kw_params database struct data owners compress create_schema users
364
	: "${database?}"
365
	local create_schema="${create_schema-1}"
366
	
367
	# subset
368
	if test "$schema"; then set -- --schema="\"$schema\"" "$@"; fi
369
	if test "$struct"; then set -- "$@" --schema-only; fi
370
	if test "$data"  ; then set -- "$@" --data-only  ; fi
371
	
372
	if test "$database"; then # just one DB
373
		# format
374
		if test ! "$owners"; then set -- "$@" --no-owner   ; fi
375
		if test "$compress"; then set -- "$@" --format=custom --compress=9
376
							 else set -- "$@" --format=plain --inserts
377
		fi
378
		
379
		(
380
			# filter output
381
			if test ! "$create_schema"; then
382
				fd=1 redirs= filter_fd sed 's/^CREATE SCHEMA/--&/'
383
			fi
384
			
385
			pattern='^pg_dump: No matching tables were found$' ignore_err_msg \
386
pg_cmd "$@"
387
		)
388
	else # entire cluster
389
		# subset
390
		if test "$users"; then set -- "$@" --globals-only; fi
391
		
392
		(cd /; as_root=1 "pg_cmd" pg_dumpall "$@")
393
	fi
394
}
395

    
396
pg_schema_exists() # usage: schema=... pg_schema_exists
397
{
398
	echo_func; : "${schema:?}"; mk_schema_esc
399
	pattern='cannot create temporary relation in non-temporary schema' \
400
ignore_e=3 log++ stderr_matches psql <<<"CREATE TEMP TABLE $schema_esc.t ()"
401
}
402

    
403
pg_require_schema() # usage: schema=... pg_require_schema
404
{
405
	echo_func; : "${schema:?}"
406
	pg_schema_exists || die "schema $schema does not exist"
407
}
408

    
409
pg_table_exists() # usage: [schema=...] table=... pg_table_exists
410
{
411
	echo_func; : "${table:?}"; mk_table_esc
412
	! pattern='relation .* does not exist' \
413
ignore_e=3 log++ stderr_matches psql <<<"SELECT NULL FROM $table_esc LIMIT 0"
414
}
415

    
416
fi
(4-4/11)