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=...] mysql_import <file
93
{
94
	echo_func
95
	mk_table_esc
96
	local mysql_load_data_format="${mysql_load_data_format-\
97
FIELDS TERMINATED BY ','
98
OPTIONALLY ENCLOSED BY '\"'
99
}"
100
	
101
	mysql_load_data_format="${mysql_load_data_format%
102
}"
103
	mysql_ANSI "$@" 10<&0 <<EOF
104
LOAD DATA LOCAL INFILE '/dev/fd/10'
105
INTO TABLE $table_esc
106
$mysql_load_data_format
107
IGNORE 1 LINES
108
EOF
109
}
110

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

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

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

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

    
161

    
162
### PostgreSQL
163

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

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

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

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

    
196
fi
(2-2/5)