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() { set_var "$1"_esc "$(esc_name "${!1}")"; }
17

    
18
alias mk_schema_esc='declare schema_esc; mk_esc_name schema'
19
alias mk_table_esc='declare table_esc; mk_esc_name table'
20

    
21
alias mk_select='mk_table_esc
22
declare query="$(rtrim "${query:-SELECT ${cols:-*} ${cols:+
23
}FROM $table_esc
24
${filter:+WHERE $filter
25
}}${limit:+LIMIT $limit
26
}")"
27
'
28

    
29
fi # load new aliases
30
if self_being_included; then
31

    
32
log_sql() { test "$verbosity" -ge 2; }
33

    
34

    
35
### MySQL
36

    
37
alias set_database=\
38
'if test "$schema"; then declare database="${database-$schema}"; fi'
39

    
40
fi # load new aliases
41
if self_being_included; then
42

    
43
# usage: mysql*() { ...; mysql_cmd "$@"; } (with alias)
44
function mysql_cmd() # usage: mysql*() { ...; mysql_cmd cmd "$@"; }
45
# auto-adds connection/login opts when specified
46
{
47
	echo_func
48
	local cmd="$1"; shift
49
	local ssh_server="$(localize_url "$ssh_server")"
50
	local server="$(localize_url "$server")"
51
	if test "$ssh_server"; then
52
		local ssh_dest="${ssh_dest-${ssh_user:+$ssh_user@}$ssh_server}"
53
	fi
54
	
55
	local var=ssh_dest; local_inv
56
	command ${ssh_dest:+ssh "$ssh_dest" }"$cmd" \
57
${server:+ --host="$server" }${user:+--user="$user" } --password\
58
${password+="$password"} "$@"
59
}
60
alias mysql_cmd='mysql_cmd "$FUNCNAME"'
61

    
62
fi # load new aliases
63
if self_being_included; then
64

    
65
mysql() # usage: [output_data=1] mysql ...
66
{
67
	echo_func; kw_params output_data
68
	set_database
69
	
70
	set -- ${database:+--database="$database" }--column-names "$@"
71
	if test "$output_data"; then echo_stdin|mysql_cmd --batch "$@"
72
	else cmd_log_fd=1 mysql_cmd --verbose "$@"
73
	fi
74
}
75

    
76
mysql_ANSI()
77
{
78
	echo_func
79
	(echo "SET sql_mode = 'ANSI';"; cat)|mysql "$@"
80
}
81

    
82
mysql_export() # does not support CSV
83
{
84
	echo_func
85
	mk_select
86
	
87
	output_data=1 mysql_ANSI "$@" <<<"$query"
88
}
89

    
90
mysql_export_outfile() # supports CSV, but requires the FILE privilege
91
{
92
	echo_func
93
	: "${file:?}"
94
	mk_select
95
	local mysql_load_data_format="${mysql_load_data_format-\
96
FIELDS TERMINATED BY ','
97
OPTIONALLY ENCLOSED BY '\"'
98
}"
99
	
100
	local head="${query%%FROM*}" # includes trailing newline
101
	head="${head%
102
}"
103
	local tail="${query#$head}"
104
	mysql_load_data_format="${mysql_load_data_format%
105
}"
106
	mysql_ANSI "$@" <<EOF
107
$head
108
INTO OUTFILE '$file'
109
$mysql_load_data_format
110
$tail
111
EOF
112
}
113

    
114
mysqldump() # usage: [schema=1 | data=1] mysqldump db [table...]
115
{
116
	echo_func; kw_params schema data
117
	
118
	mysql_cmd ${database:+--databases "$database" --tables } \
119
--quick --lock-tables=false --set-charset \
120
${postgres_compat:+--compatible=postgresql --add-locks=false }\
121
${schema:+--no-data }${data:+--no-create-info }"$@"
122
}
123

    
124
mysqldump_diffable()
125
{
126
	echo_func
127
	mysqldump "$@"|{ pipe_delay; sed 's/^(-- Dump completed).*$/\1/'; }
128
}
129

    
130

    
131
### PostgreSQL
132

    
133
pg_export()
134
{
135
	echo_func
136
	mk_select
137
	local pg_copy_format="${pg_copy_format-CSV HEADER}"
138
	
139
	psql "$@" <<<"COPY ($query) TO STDOUT $pg_copy_format;"
140
}
141

    
142
pg_header()
143
{
144
	echo_func
145
	local pg_copy_format="CSV HEADER" limit=0
146
	pg_export "$@"|echo_stdout
147
}
148

    
149
pg_export_table_no_header()
150
{
151
	echo_func
152
	local pg_copy_format="CSV"
153
	pg_export "$@"
154
}
155

    
156
pg_export_table_to_dir_no_header()
157
{
158
	echo_func
159
	local table="$1"; shift; mk_table_esc
160
	local cols="$(pg_header)"
161
	stdout="$exports_dir/$table.no_header.cols=$cols.csv" to_file \
162
pg_export_table_no_header "$@"
163
}
164

    
165
fi
(2-2/5)