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
mk_select() # usage: {query=... | table=... [cols=...] [filter=...]} mk_select
46
{
47
	echo_func; kw_params query table cols filter; mk_table_esc
48
	echo "$(rtrim "${query:-SELECT ${cols:-*} ${cols:+
49
}FROM $table_esc
50
${filter:+WHERE $filter
51
}}")\
52
$(limit)"
53
}
54

    
55
# export func usage: export_func() { ...; mk_select_var; ... }
56
# caller usage: {query=... | table=... [cols=...] [filter=...]} export_func
57
# cmd line usage: [limit=...] caller
58
alias mk_select_var='declare query="$(mk_select)"'
59

    
60
fi # load new aliases
61
if self_being_included; then
62

    
63
mk_drop() # usage: table=... mk_drop|*sql_ANSI
64
{
65
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
66
	echo "DROP TABLE IF EXISTS $table_esc"
67
}
68

    
69
mk_truncate() # usage: table=... mk_truncate|*sql_ANSI
70
{
71
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
72
	echo "TRUNCATE $table_esc"
73
}
74

    
75

    
76
### MySQL
77

    
78
alias set_database=\
79
'if test "$schema"; then declare database="${database-$schema}"; fi'
80

    
81
fi # load new aliases
82
if self_being_included; then
83

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

    
103
fi # load new aliases
104
if self_being_included; then
105

    
106
function mysql() # usage: [output_data=1] [data_only=1] [log_queries=] mysql ...
107
{
108
	echo_func; kw_params output_data data_only query_verbosity
109
	if test "$data_only"; then local output_data="${output_data-1}"; fi
110
	local log_queries="${log_queries-1}"
111
	set_database
112
	
113
	set -- ${database:+--database="$database" }--local-infile=1 \
114
--${data_only:+skip-}column-names "$@"
115
	if test "$output_data"; then echo_stdin|mysql_cmd --batch "$@"
116
	else cmd_log_fd=1 mysql_cmd ${log_queries:+--verbose --verbose --verbose }\
117
"$@" # --verbose*3: echo runtimes
118
	fi
119
}
120

    
121
mysql_ANSI()
122
{
123
	echo_func
124
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
125
}
126

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

    
131
fi # load new aliases
132
if self_being_included; then
133

    
134
mysql_root() { echo_func; use_root; mysql "$@"; }
135

    
136
mysql_truncate() { echo_func; mk_truncate|mysql; }
137

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

    
160
mysql_export() # does not support CSV
161
# caller usage: {query=... | table=... [cols=...] [filter=...]} mysql_export
162
# cmd line usage: [limit=...] caller
163
{
164
	echo_func
165
	mk_select_var
166
	
167
	output_data=1 mysql "$@" <<<"$query"
168
}
169

    
170
mysql_export_outfile() # supports CSV, but requires the FILE privilege
171
{
172
	echo_func
173
	: "${file:?}"
174
	mk_select_var
175
	local mysql_load_data_format="${mysql_load_data_format-\
176
FIELDS TERMINATED BY ','
177
OPTIONALLY ENCLOSED BY '\"'
178
}"
179
	
180
	local head="${query%%FROM*}" # includes trailing newline
181
	head="${head%
182
}"
183
	local tail="${query#$head}"
184
	mysql_load_data_format="${mysql_load_data_format%
185
}"
186
	mysql "$@" <<EOF
187
$head
188
INTO OUTFILE '$file'
189
$mysql_load_data_format
190
$tail
191
EOF
192
}
193

    
194
mysqldump() # usage: [schema=1 | data=1] mysqldump db [table...]
195
{
196
	echo_func; kw_params schema data
197
	
198
	mysql_cmd ${database:+--databases "$database" --tables } \
199
--lock-tables=false --set-charset \
200
${postgres_compat:+--compatible=postgresql --add-locks=false }\
201
${schema:+--no-data }${data:+--no-create-info }"$@"
202
}
203

    
204
mysqldump_diffable()
205
{
206
	echo_func
207
	mysqldump "$@"|{ pipe_delay; echo_run sed 's/^(-- Dump completed).*$/\1/'; }
208
}
209

    
210
mysql_rm_privileged_statements()
211
{
212
	echo_func
213
	grep -vE -e '^/\*!40000 ALTER TABLE `.*` (DIS|EN)ABLE KEYS \*/;$' \
214
-e '^(UN)?LOCK TABLES( `.*` WRITE)?;$'
215
}
216

    
217
## permissions
218

    
219
mysql_seal_table() # usage: table=... user=... mysql_seal_table
220
# prevents further modifications to a table by a user
221
{
222
	echo_func; kw_params table user; : "${table:?}" "${user:?}"; mk_table_esc
223
	
224
	benign_error=1 mysql_root <<<"REVOKE ALL PRIVILEGES ON $table FROM '$user'@'%'" || true
225
	benign_error=1 mysql_root <<<"REVOKE GRANT OPTION   ON $table FROM '$user'@'%'" || true
226
}
227

    
228

    
229
### PostgreSQL
230

    
231
alias use_pg='declare prefix=pg_; import_vars; unset prefix'
232

    
233
fi # load new aliases
234
if self_being_included; then
235

    
236
psql() # usage: [stdin=copy_pstdin_file] psql <<<"cmds, e.g. \copy from pstdin"
237
{
238
	echo_func; kw_params stdin
239
	
240
	use_pg
241
	log- 2
242
	local PGHOST="$server";       export PGHOST
243
	local PGUSER="$user";         export PGUSER
244
	local PGPASSWORD="$password"; export PGPASSWORD
245
	local PGDATABASE="$database"; export PGDATABASE
246
	log+ 2
247
	
248
	if can_log; then set -- --echo-all --echo-hidden "$@"; fi
249
	local redirs=("${redirs[@]}" '40<&0' "0<${stdin:-&20}" '41>&1')
250
	(
251
		# hide stack traces/DETAIL sections of error messages at verbosity <2
252
		if ! clog++ can_log; then echo '\set VERBOSITY terse'; fi
253
		if can_log; then cat <<'EOF'
254
\timing on
255
SET client_min_messages = NOTICE;
256
EOF
257
		fi
258
		cat
259
	)|cmd_log_fd=1 command psql --file /dev/fd/40 --output /dev/fd/41 \
260
--set ON_ERROR_STOP=1 --quiet "$@"
261
		# --output is for query *results*, not echoed statements
262
}
263

    
264
pg_export()
265
{
266
	echo_func
267
	mk_select_var
268
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
269
	
270
	psql "$@" <<<"COPY ($query) TO STDOUT $pg_copy_format;"
271
}
272

    
273
pg_header()
274
{
275
	echo_func
276
	local pg_copy_format="CSV HEADER" limit=0
277
	pg_export "$@"|echo_stdout
278
}
279

    
280
pg_export_table_no_header()
281
{
282
	echo_func
283
	local pg_copy_format="CSV"
284
	pg_export "$@"
285
}
286

    
287
pg_export_table_to_dir_no_header()
288
{
289
	echo_func
290
	local table="$1"; shift; mk_table_esc
291
	stdout="$exports_dir/$table.no_header.cols=$(pg_header).csv" to_file \
292
pg_export_table_no_header "$@"
293
}
294

    
295
fi
(4-4/11)