Project

General

Profile

1
#!/bin/bash -e
2
# links to locally-available resources
3
. "$(dirname "${BASH_SOURCE[0]}")"/util.sh
4
. "$(dirname "${BASH_SOURCE[0]}")"/db.sh
5

    
6
if self_not_included; then
7

    
8
root_dir="$(canon_rel_path "$(dirname "${BASH_SOURCE[0]}")"/../..)" || return
9
bin_dir="$root_dir"/bin
10
bin_dir_abs="$(realpath "$bin_dir")" || return
11

    
12
export PATH="$bin_dir_abs:$PATH"
13

    
14
#### make
15

    
16
root_make() { echo_func; make --directory="$root_dir" "$@"; }
17

    
18
#### connection vars
19

    
20
: "${remote_server=vegbiendev.nceas.ucsb.edu}"
21
: "${local_server=localhost}"
22
: "${local_user=bien}"
23
: "${local_password="$(cat "$root_dir"/config/bien_password)"}"
24

    
25
#### databases
26

    
27
### MySQL
28

    
29
: "${postgres_compat=1}"
30

    
31
mysql_export_local() { echo_func; use_local_remote; mysql_export "$@"; }
32

    
33
mysqldump_local() { echo_func; use_local_remote; mysqldump_diffable "$@"; }
34

    
35
### PostgreSQL
36

    
37
psql() # usage: [file=...] [dir=...] self
38
{
39
	echo_func; kw_params file dir
40
	if test "$file"; then
41
		set -- --file "$file" "$@"
42
		local dir="${dir:-$(dirname "$file")}"
43
	fi
44
	local dir="${dir:-$top_dir}"
45
	mk_schema_esc
46
	mk_table_esc
47
	
48
	local psql_cmd="psql_$(if can_log; then echo verbose; else echo script; fi)_vegbien"
49
	local redirs=("${redirs[@]}" '13>&1') # not 11 because it gives a
50
		# "/dev/fd/11: Bad file descriptor" error when 11 is set with exec
51
		# right before the command instead of on the subshell it's executed in
52
	(cat <<EOF
53
\cd $dir
54
\set schema $schema_esc
55
\set table $table_esc
56
\set table_str '''$table_esc'''
57
SET search_path TO $schema_esc, util;
58
EOF
59
	cat)|cmd_log_fd=1 \
60
	env no_search_path=1 "$psql_cmd" --output /dev/fd/13 "$@"
61
		# --output is for query *results*, not echoed statements
62
}
63

    
64
public_schema_exists() { psql_script_vegbien </dev/null 2>/dev/null; }
65

    
66
fi
(3-3/5)