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_ssh_server=vegbiendev.nceas.ucsb.edu}"
21
: "${remote_server=}"
22
: "${local_server=localhost}"
23
: "${local_user=bien}"
24
: "${local_password="$(cat "$root_dir"/config/bien_password)"}"
25
: "${root_user=root}"
26
: "${root_password=$local_password}"
27

    
28
#### databases
29

    
30
### MySQL
31

    
32
: "${postgres_compat=1}"
33

    
34
mysql_local() { echo_func; use_local_remote; mysql "$@"; }
35

    
36
mysql_export_local() { echo_func; use_local_remote; mysql_export "$@"; }
37

    
38
mysqldump_local() { echo_func; use_local_remote; mysqldump_diffable "$@"; }
39

    
40
mysql_root() { echo_func; use_local_remote; use_root; mysql "$@"; }
41

    
42
### PostgreSQL
43

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

    
71
public_schema_exists() { psql_script_vegbien </dev/null 2>/dev/null; }
72

    
73
fi
(5-5/8)