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 use_local='declare prefix=local_; import_vars; unset prefix'
8
alias use_remote='declare prefix=remote_; import_vars; unset prefix'
9
alias use_local_remote='{ use_local; use_remote; }'
10
	# *must* be run inside a function
11
alias use_root='declare prefix=root_; import_vars; unset prefix'
12

    
13
quote='"'
14

    
15
esc_name() { echo "$quote${1//$quote/$quote$quote}$quote"; }
16

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

    
21
mk_esc_name_alias schema_esc
22
mk_esc_name_alias table_esc
23

    
24
fi # load new aliases
25
if self_being_included; then
26

    
27
limit() # usage: query... $([prefix=$'| |\n'] limit)
28
{
29
	echo_func; kw_params prefix; local prefix="${prefix-
30
}"
31
	echo -n "${limit:+${prefix}LIMIT $limit}"
32
}
33

    
34
mk_select() # usage: {query=... | table=... [cols=...] [filter=...]} mk_select
35
{
36
	echo_func; kw_params query table cols filter; mk_table_esc
37
	echo "$(rtrim "${query:-SELECT ${cols:-*} ${cols:+
38
}FROM $table_esc
39
${filter:+WHERE $filter
40
}}")\
41
$(limit)"
42
}
43

    
44
# export func usage: export_func() { ...; mk_select_var; ... }
45
# caller usage: {query=... | table=... [cols=...] [filter=...]} export_func
46
# cmd line usage: [limit=...] caller
47
alias mk_select_var='declare query="$(mk_select)"'
48

    
49
fi # load new aliases
50
if self_being_included; then
51

    
52
mk_drop() # usage: table=... mk_drop|*sql_ANSI
53
{
54
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
55
	echo "DROP TABLE IF EXISTS $table_esc"
56
}
57

    
58
mk_truncate() # usage: table=... mk_truncate|*sql_ANSI
59
{
60
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
61
	echo "TRUNCATE $table_esc"
62
}
63

    
64

    
65
### MySQL
66

    
67
alias set_database=\
68
'if test "$schema"; then declare database="${database-$schema}"; fi'
69

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

    
73
# usage: mysql*() { ...; mysql_cmd "$@"; } (with alias)
74
function mysql_cmd() # usage: mysql*() { ...; mysql_cmd cmd "$@"; }
75
# auto-adds connection/login opts when specified
76
{
77
	echo_func
78
	local cmd="$1"; shift
79
	local ssh_server="$(localize_url "$ssh_server")"
80
	local server="$(localize_url "$server")"
81
	if test "$ssh_server"; then
82
		local ssh_dest="${ssh_dest-${ssh_user:+$ssh_user@}$ssh_server}"
83
	fi
84
	
85
	local var=ssh_dest; local_inv
86
	command ${ssh_dest:+ssh "$ssh_dest" }"$cmd" \
87
${server:+ --host="$server" }${user:+--user="$user" } --password\
88
${password+="$password"} "$@"
89
}
90
alias mysql_cmd='mysql_cmd "$FUNCNAME"'
91

    
92
fi # load new aliases
93
if self_being_included; then
94

    
95
mysql() # usage: [output_data=1] [data_only=1] mysql ...
96
{
97
	echo_func; kw_params output_data data_only
98
	if test "$data_only"; then local output_data="${output_data-1}"; fi
99
	set_database
100
	
101
	set -- ${database:+--database="$database" }--local-infile=1 \
102
--${data_only:+skip-}column-names "$@"
103
	if test "$output_data"; then echo_stdin|mysql_cmd --batch "$@"
104
	else cmd_log_fd=1 mysql_cmd --verbose "$@"
105
	fi
106
}
107

    
108
mysql_ANSI()
109
{
110
	echo_func
111
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
112
}
113

    
114
mysql_truncate() { echo_func; mk_truncate|mysql_ANSI; }
115

    
116
mysql_import() # usage: table=... [cols=...] [append=1] mysql_import <file
117
# without append=1, first ensures the table is empty
118
{
119
	echo_func
120
	mk_table_esc
121
	local mysql_load_data_format="${mysql_load_data_format-\
122
FIELDS TERMINATED BY ','
123
OPTIONALLY ENCLOSED BY '\"'
124
}"
125
	
126
	if test ! "$append"; then mysql_truncate; fi
127
	mysql_load_data_format="${mysql_load_data_format%
128
}"
129
	mysql_ANSI "$@" 10<&0 <<EOF
130
LOAD DATA LOCAL INFILE '/dev/fd/10'
131
INTO TABLE $table_esc
132
$mysql_load_data_format
133
IGNORE 1 LINES
134
EOF
135
}
136

    
137
mysql_export() # does not support CSV
138
# caller usage: {query=... | table=... [cols=...] [filter=...]} mysql_export
139
# cmd line usage: [limit=...] caller
140
{
141
	echo_func
142
	mk_select_var
143
	
144
	output_data=1 mysql_ANSI "$@" <<<"$query"
145
}
146

    
147
mysql_export_outfile() # supports CSV, but requires the FILE privilege
148
{
149
	echo_func
150
	: "${file:?}"
151
	mk_select_var
152
	local mysql_load_data_format="${mysql_load_data_format-\
153
FIELDS TERMINATED BY ','
154
OPTIONALLY ENCLOSED BY '\"'
155
}"
156
	
157
	local head="${query%%FROM*}" # includes trailing newline
158
	head="${head%
159
}"
160
	local tail="${query#$head}"
161
	mysql_load_data_format="${mysql_load_data_format%
162
}"
163
	mysql_ANSI "$@" <<EOF
164
$head
165
INTO OUTFILE '$file'
166
$mysql_load_data_format
167
$tail
168
EOF
169
}
170

    
171
mysqldump() # usage: [schema=1 | data=1] mysqldump db [table...]
172
{
173
	echo_func; kw_params schema data
174
	
175
	mysql_cmd ${database:+--databases "$database" --tables } \
176
--quick --lock-tables=false --set-charset \
177
${postgres_compat:+--compatible=postgresql --add-locks=false }\
178
${schema:+--no-data }${data:+--no-create-info }"$@"
179
}
180

    
181
mysqldump_diffable()
182
{
183
	echo_func
184
	mysqldump "$@"|{ pipe_delay; echo_run sed 's/^(-- Dump completed).*$/\1/'; }
185
}
186

    
187

    
188
### PostgreSQL
189

    
190
pg_export()
191
{
192
	echo_func
193
	mk_select_var
194
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
195
	
196
	psql "$@" <<<"COPY ($query) 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_export "$@"|echo_stdout
204
}
205

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

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

    
221
fi
(3-3/7)