Project

General

Profile

1 8291 aaronmk
#!/bin/bash -e
2 8273 aaronmk
3
if false; then #### run script template:
4 8291 aaronmk
#!/bin/bash -e
5 8273 aaronmk
. "$(dirname "${BASH_SOURCE[0]}")"/path/to/table.run
6 8161 aaronmk
7 9039 aaronmk
func_override import__table_run
8 9074 aaronmk
import()
9 8273 aaronmk
{
10 8881 aaronmk
	echo_func
11 8273 aaronmk
	before_import_cmds
12 9039 aaronmk
	import__table_run "$@"
13 8273 aaronmk
	after_import_cmds
14
}
15
fi ####
16 8213 aaronmk
17 8296 aaronmk
. "$(dirname "${BASH_SOURCE[0]}")"/import.run
18 9013 aaronmk
. "$(dirname "${BASH_SOURCE[0]}")"/../sh/local.sh
19 8273 aaronmk
20 8705 aaronmk
if self_not_included; then
21
22 8273 aaronmk
: "${schema="$(cd "$top_dir"/..; basename "$PWD")"}"
23 8696 aaronmk
mk_esc_name schema
24 8273 aaronmk
: "${table="$( cd "$top_dir"   ; basename "$PWD")"}"
25 8696 aaronmk
mk_esc_name table
26 8195 aaronmk
export schema table
27 8161 aaronmk
28 9352 aaronmk
input_make() # requires Makefile in datasrc dir with `include ../input.Makefile`
29
{ echo_func; make --directory="$top_dir"/.. "${@/#/$table/}"; }
30 9351 aaronmk
	# "${@/#/$table/}": replaces empty str at beginning of str (/#) with $table/
31 8242 aaronmk
32 9074 aaronmk
map_table()
33 8161 aaronmk
{
34 8881 aaronmk
	echo_func
35 8273 aaronmk
	input_make map.csv
36 8214 aaronmk
	psql <<EOF
37 8191 aaronmk
SELECT util.reset_map_table('pg_temp.map');
38 8161 aaronmk
\copy pg_temp.map FROM 'map.csv' CSV HEADER;
39 8191 aaronmk
SELECT util.set_col_names('"$table"', 'pg_temp.map'::regclass);
40 8161 aaronmk
EOF
41
}
42 8198 aaronmk
43 9350 aaronmk
mk_derived() { echo_func; "$root_dir"/schemas/VegCore/mk_derived; }
44 8245 aaronmk
45 9074 aaronmk
remake_VegBIEN_mappings()
46 8245 aaronmk
{
47 8881 aaronmk
	echo_func
48 9047 aaronmk
	public_schema_exists || return 0
49 9169 aaronmk
	rm header.csv map.csv # remake them
50 8273 aaronmk
	yes|input_make test
51 8245 aaronmk
}
52 8273 aaronmk
53 9074 aaronmk
postprocess() # overridable
54 8273 aaronmk
{
55 8881 aaronmk
	echo_func
56 8273 aaronmk
	local file="$top_dir"/postprocess.sql
57
	if test -e "$file"; then psql "$@"; fi
58
}
59
60 9074 aaronmk
import()
61 8273 aaronmk
{
62 8881 aaronmk
	echo_func
63 8282 aaronmk
	map_table
64
	postprocess
65
	mk_derived
66 8273 aaronmk
}
67 8705 aaronmk
68
fi