Project

General

Profile

1 6912 aaronmk
selfDir_AkFFYJ := $(dir $(lastword $(MAKEFILE_LIST)))
2
root := $(selfDir_AkFFYJ)..
3
include $(root)/lib/common.Makefile
4
5
6 785 aaronmk
##### General targets
7 387 aaronmk
8 2978 aaronmk
all = vegbien.sql vegbien.my.sql functions.sql py_functions.sql
9 387 aaronmk
10 418 aaronmk
all: _always $(all) ;
11 387 aaronmk
12
clean: _always
13
	$(RM) $(all)
14
15 6916 aaronmk
%/reinstall: _always %/uninstall %/install ;
16
17
##### Installation
18
19
schemas := temp functions py_functions public
20
install: $(schemas:%=%/install) ;
21
22
schemasReversed := public py_functions functions temp
23
uninstall: $(schemasReversed:%=%/uninstall) ;
24
25
psqlOpts := --set ON_ERROR_STOP=1 --quiet
26
asAdmin := sudo -E -u postgres
27
psqlAsAdmin := $(asAdmin) psql $(psqlOpts)
28
    # -E preserves env vars so PGOPTIONS is passed to psql
29
psqlAsAdminVegbien := $(psqlAsAdmin) vegbien
30
psqlNoSearchPath := env no_search_path=1 ../bin/psql_script_vegbien
31
32
#### public
33
34
confirmRmPublicSchema = $(call confirm,WARNING: This will delete the current\
35
public schema of your VegBIEN DB!,To save it: make schemas/rotate)
36
37
rmPublicSchema := $(call rmSchemaCmd,public)
38
39
public/install: vegbien.sql _always
40
	-echo $(call mkSchemaCmd,public)|$(psqlNoSearchPath)
41
	<$< $(psqlNoSearchPath)
42
# ignore errors if schema exists
43
# public schema will be owned by bien
44
# don't include public in the search_path
45
46 6919 aaronmk
# Installs a version of the public schema
47
public%/install: vegbien.sql _always
48 6920 aaronmk
	echo $(call mkSchemaCmd,$(@D))\
49 6926 aaronmk
"COMMENT ON SCHEMA $(@D) IS 'Version: $(@D) ($(date))';"|$(psqlNoSearchPath)
50 6919 aaronmk
	<$< $(sed) 's/( )public([,; ])/\1$(@D)\2/g'|$(psqlNoSearchPath)
51
52 6921 aaronmk
public/uninstall public%/uninstall: _always
53 6916 aaronmk
	@$(confirmRmPublicSchema)
54
	echo $(rmPublicSchema)|$(psqlNoSearchPath)
55
56 6922 aaronmk
# Replaces the current public schema with the given version
57
public%/publish: _always
58
	@$(confirmRmPublicSchema)
59
	echo $(rmPublicSchema)\
60
'ALTER SCHEMA $(@D) RENAME TO public;'|$(psqlNoSearchPath) --single-transaction
61
62 6916 aaronmk
rename/%: _always
63
	echo 'ALTER SCHEMA public RENAME TO "$*";'|$(psqlNoSearchPath)
64
	$(MAKE) public/install
65
66
rotate: _always rename/public.$(version) ;
67
68
#### py_functions
69
70
py_functions/install: py_functions.sql _always
71
	-<$< env public= $(psqlAsAdminVegbien)
72
# ignore errors if schema exists
73
74
#### Others
75
76
%/install: %.sql _always
77
	-<$< $(psqlNoSearchPath)
78
# ignore errors if schema exists
79
80
%/uninstall: _always
81
	echo $(call rmSchemaCmd,$*)|$(psqlNoSearchPath)
82
83
# Needed on Ubuntu 12.04 (also other Linuxes?) because %/reinstall is ignored.
84
temp/reinstall: _always temp/uninstall temp/install ;
85
86 785 aaronmk
##### MySQL schema for ERD
87 533 aaronmk
88 809 aaronmk
repl = ../bin/repl
89 541 aaronmk
90 809 aaronmk
%.my.sql: %.sql ../lib/PostgreSQL-MySQL.csv filter_ERD.csv
91
	$(repl) <$(wordlist 1,2,$+)|$(repl) $(word 3,$+) >$@
92 2979 aaronmk
93 6916 aaronmk
##### DDL generation
94 2979 aaronmk
95 6029 aaronmk
pg_dump = env schema= ../bin/pg_dump_vegbien $(1) >$@
96 2979 aaronmk
97
vegbien.sql:
98
	$(call pg_dump,public)
99
100
py_functions.sql:
101
	env owners=1 $(call pg_dump,py_functions)
102
103
# Must come after %.my.sql so that gets matched first
104
%.sql:
105
	$(call pg_dump,$*)