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

    
12
quote='"'
13

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

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

    
20
mk_esc_name_alias schema_esc
21
mk_esc_name_alias table_esc
22

    
23
# export func usage: export_func() { ...; mk_select; ... }
24
# caller usage: {query=... | table=... [cols=...] [filter=...]} export_func
25
# cmd line usage: [limit=...] caller
26
alias mk_select='mk_table_esc
27
declare query="$(rtrim "${query:-SELECT ${cols:-*} ${cols:+
28
}FROM $table_esc
29
${filter:+WHERE $filter
30
}}${limit:+LIMIT $limit
31
}")"
32
'
33

    
34
fi # load new aliases
35
if self_being_included; then
36

    
37
truncate() # usage: table=... truncate|*sql_ANSI
38
{
39
	log++; echo_func; kw_params table; : "${table?}"; mk_table_esc
40
	echo "TRUNCATE $table_esc"
41
}
42

    
43

    
44
### MySQL
45

    
46
alias set_database=\
47
'if test "$schema"; then declare database="${database-$schema}"; fi'
48

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

    
52
# usage: mysql*() { ...; mysql_cmd "$@"; } (with alias)
53
function mysql_cmd() # usage: mysql*() { ...; mysql_cmd cmd "$@"; }
54
# auto-adds connection/login opts when specified
55
{
56
	echo_func
57
	local cmd="$1"; shift
58
	local ssh_server="$(localize_url "$ssh_server")"
59
	local server="$(localize_url "$server")"
60
	if test "$ssh_server"; then
61
		local ssh_dest="${ssh_dest-${ssh_user:+$ssh_user@}$ssh_server}"
62
	fi
63
	
64
	local var=ssh_dest; local_inv
65
	command ${ssh_dest:+ssh "$ssh_dest" }"$cmd" \
66
${server:+ --host="$server" }${user:+--user="$user" } --password\
67
${password+="$password"} "$@"
68
}
69
alias mysql_cmd='mysql_cmd "$FUNCNAME"'
70

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

    
74
mysql() # usage: [output_data=1] mysql ...
75
{
76
	echo_func; kw_params output_data
77
	set_database
78
	
79
	set -- ${database:+--database="$database" }--local-infile=1 --column-names \
80
"$@"
81
	if test "$output_data"; then echo_stdin|mysql_cmd --batch "$@"
82
	else cmd_log_fd=1 mysql_cmd --verbose "$@"
83
	fi
84
}
85

    
86
mysql_ANSI()
87
{
88
	echo_func
89
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
90
}
91

    
92
mysql_import() # usage: table=... [cols=...] [append=1] mysql_import <file
93
# without append=1, first ensures the table is empty
94
{
95
	echo_func
96
	mk_table_esc
97
	local mysql_load_data_format="${mysql_load_data_format-\
98
FIELDS TERMINATED BY ','
99
OPTIONALLY ENCLOSED BY '\"'
100
}"
101
	
102
	if test ! "$append"; then truncate|mysql_ANSI; fi
103
	mysql_load_data_format="${mysql_load_data_format%
104
}"
105
	mysql_ANSI "$@" 10<&0 <<EOF
106
LOAD DATA LOCAL INFILE '/dev/fd/10'
107
INTO TABLE $table_esc
108
$mysql_load_data_format
109
IGNORE 1 LINES
110
EOF
111
}
112

    
113
mysql_export() # does not support CSV
114
# caller usage: {query=... | table=... [cols=...] [filter=...]} mysql_export
115
# cmd line usage: [limit=...] caller
116
{
117
	echo_func
118
	mk_select
119
	
120
	output_data=1 mysql_ANSI "$@" <<<"$query"
121
}
122

    
123
mysql_export_outfile() # supports CSV, but requires the FILE privilege
124
{
125
	echo_func
126
	: "${file:?}"
127
	mk_select
128
	local mysql_load_data_format="${mysql_load_data_format-\
129
FIELDS TERMINATED BY ','
130
OPTIONALLY ENCLOSED BY '\"'
131
}"
132
	
133
	local head="${query%%FROM*}" # includes trailing newline
134
	head="${head%
135
}"
136
	local tail="${query#$head}"
137
	mysql_load_data_format="${mysql_load_data_format%
138
}"
139
	mysql_ANSI "$@" <<EOF
140
$head
141
INTO OUTFILE '$file'
142
$mysql_load_data_format
143
$tail
144
EOF
145
}
146

    
147
mysqldump() # usage: [schema=1 | data=1] mysqldump db [table...]
148
{
149
	echo_func; kw_params schema data
150
	
151
	mysql_cmd ${database:+--databases "$database" --tables } \
152
--quick --lock-tables=false --set-charset \
153
${postgres_compat:+--compatible=postgresql --add-locks=false }\
154
${schema:+--no-data }${data:+--no-create-info }"$@"
155
}
156

    
157
mysqldump_diffable()
158
{
159
	echo_func
160
	mysqldump "$@"|{ pipe_delay; sed 's/^(-- Dump completed).*$/\1/'; }
161
}
162

    
163

    
164
### PostgreSQL
165

    
166
pg_export()
167
{
168
	echo_func
169
	mk_select
170
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
171
	
172
	psql "$@" <<<"COPY ($query) TO STDOUT $pg_copy_format;"
173
}
174

    
175
pg_header()
176
{
177
	echo_func
178
	local pg_copy_format="CSV HEADER" limit=0
179
	pg_export "$@"|echo_stdout
180
}
181

    
182
pg_export_table_no_header()
183
{
184
	echo_func
185
	local pg_copy_format="CSV"
186
	pg_export "$@"
187
}
188

    
189
pg_export_table_to_dir_no_header()
190
{
191
	echo_func
192
	local table="$1"; shift; mk_table_esc
193
	local cols="$(pg_header)"
194
	stdout="$exports_dir/$table.no_header.cols=$cols.csv" to_file \
195
pg_export_table_no_header "$@"
196
}
197

    
198
fi
(2-2/5)