Project

General

Profile

1 256 aaronmk
selfDir_3d1bc249 := $(dir $(lastword $(MAKEFILE_LIST)))
2 250 aaronmk
3 368 aaronmk
# Make
4
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
5
6
# Commands
7 371 aaronmk
DIFF = diff --unified=2 $(+:_%=)
8 368 aaronmk
9
table = $(shell s="$(*F)"; echo "$${s\#\#*.}")# remove sort order prefix
10
11 264 aaronmk
vegxMaps := $(wildcard map.VegX.*.csv)
12
vegbienMaps := $(subst .VegX.,.VegBIEN.,$(vegxMaps))
13 368 aaronmk
tables := $(vegbienMaps:map.VegBIEN.%.csv=%)
14 247 aaronmk
15 368 aaronmk
root := $(selfDir_3d1bc249)..
16
psqlAsBien := $(root)/bin/psql_vegbien
17 353 aaronmk
18 250 aaronmk
#####
19
20 368 aaronmk
all: _not_file maps import verify
21 247 aaronmk
22
.SUFFIXES:
23
24
_not_file:
25
.PHONY: _not_file
26 250 aaronmk
27 256 aaronmk
clean: _not_file
28
	$(RM) $(all)
29
30 368 aaronmk
rm-%: _not_file
31
	$(RM) $*
32
33
%.out: % _not_file
34
	./$* >$@
35
.PRECIOUS: %.out
36
37 250 aaronmk
#####
38
39 264 aaronmk
reinstall: _not_file uninstall install
40
41
#####
42
43 368 aaronmk
maps: $(vegbienMaps) _not_file
44
45
all += $(vegbienMaps)
46
47 264 aaronmk
map.VegBIEN.%.csv: map.VegX.%.csv
48 353 aaronmk
	$(root)/bin/join_sort <$< $(root)/mappings/VegX-VegBIEN.$(table).csv >$@
49 264 aaronmk
.PRECIOUS: map.VegBIEN.%.csv
50
51 368 aaronmk
#####
52
53
import: _not_file $(addprefix import-,$(tables))
54
55
log = $*$(if $(n),.n=$(n),).log
56
57 339 aaronmk
logs := $(wildcard *.log)
58
59
rm_logs: _not_file
60
	$(RM) $(logs)
61
62 264 aaronmk
#####
63
64 368 aaronmk
verify: _not_file $(addprefix verify-,$(tables))
65
66 369 aaronmk
verify-%: verify.%.ref verify.%.out _not_file
67 368 aaronmk
	$(DIFF)
68
69 370 aaronmk
%.out: %.sql _not_file
70 371 aaronmk
	$(psqlAsBien) --no-align --field-separator='	' --pset=footer=off <$< >$@
71 370 aaronmk
.PRECIOUS: %.out
72 369 aaronmk
73 370 aaronmk
all += $(wildcard *.out)
74 368 aaronmk
75
#####
76
77
test: _not_file $(addprefix test-,$(tables))
78
79 369 aaronmk
test-%: test.%.ref test.%.out _not_file
80 368 aaronmk
	$(DIFF)
81
82 369 aaronmk
all += $(filter-out %.ref,$(wildcard test.*.out))
83 368 aaronmk
84
#####
85
86 256 aaronmk
ifdef db
87
88 264 aaronmk
mapEnv := in_engine=$(dbEngine) in_database=$(db)
89 256 aaronmk
90 368 aaronmk
####
91 256 aaronmk
92 368 aaronmk
ifeq ($(dbEngine),MySQL)
93 339 aaronmk
94 368 aaronmk
bienPassword := $(shell cat $(root)/config/bien_password)
95
mysqlAs = mysql --user=$(1) --password='$(bienPassword)'
96
mysqlAsRoot := $(call mysqlAs,root)
97
mysqlAsBien := $(call mysqlAs,bien)
98
99 283 aaronmk
import-%: map.VegBIEN.%.csv _not_file
100 365 aaronmk
	$(importCmd)
101 368 aaronmk
importCmd = (set -x; "time" env commit=1 $(map) $<) \
102
$(if $(n),,>>$(log)) 2>&1$(if $(n),|tee -a $(log))
103 256 aaronmk
104 369 aaronmk
%.ref: %.ref.sql
105 371 aaronmk
	$(mysqlAsBien) $(db) <$< >$@
106 369 aaronmk
.PRECIOUS: %.ref
107 368 aaronmk
108
###
109
110 268 aaronmk
install: _not_file db
111 256 aaronmk
112 268 aaronmk
uninstall: _not_file rm_db
113 256 aaronmk
114 369 aaronmk
db: src.$(db).sql _not_file
115 368 aaronmk
	-$(mysqlAsRoot) <$<
116
	echo "GRANT SELECT ON $(db).* TO 'bien'@'localhost';"|$(mysqlAsRoot)
117 255 aaronmk
# ignore errors in db import so that GRANT will still be run
118 250 aaronmk
119 256 aaronmk
rm_db: _not_file
120 368 aaronmk
	-echo "REVOKE ALL ON $(db).* FROM 'bien'@'localhost';"|$(mysqlAsRoot)
121
	echo "DROP DATABASE IF EXISTS $(db);"|$(mysqlAsRoot)
122 365 aaronmk
# ignore errors if grant not defined
123 250 aaronmk
124 368 aaronmk
###
125
126
else
127
$(error dbEngine variable must be one of the following: MySQL, PostgreSQL)
128
endif
129
130
####
131
132
test.%.out: map.VegBIEN.%.csv _not_file
133
	env n=2 $(map) $< >$@ 2>&1
134
.PRECIOUS: test.%.out
135
136 256 aaronmk
#####
137
138
else
139
$(error db variable must be set)
140
endif
141 368 aaronmk
142
#####
143
144
# Must come after mapEnv is set
145
map := env $(mapEnv) out_database=vegbien $(root)/map