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
	(cat <<EOF
50
\cd $dir
51
\set schema $schema_esc
52
\set table $table_esc
53
\set table_str '''$table_esc'''
54
SET search_path TO $schema_esc, util;
55
EOF
56
	cat)|cmd_log_fd=1 \
57
	env no_search_path=1 "$psql_cmd" --output /dev/fd/11 "$@" 11>&1
58
}
59

    
60
public_schema_exists() { psql_script_vegbien </dev/null 2>/dev/null; }
61

    
62
fi
(3-3/5)