Project

General

Profile

1 783 aaronmk
##### Configuration
2
3 1190 aaronmk
log ?= $(if $(test),,1)
4
profile ?= $(log)
5 783 aaronmk
exts ?= csv xml
6
test_n ?= 2
7
tablesSort ?= plots organisms stems
8
9
##### Vars/functions
10
11 640 aaronmk
selfDir_uZPPqC := $(dir $(lastword $(MAKEFILE_LIST)))
12 250 aaronmk
13 368 aaronmk
# Make
14 640 aaronmk
SHELL := /bin/bash
15 415 aaronmk
subMake = $(MAKE) $(@F) --directory=$(@D)
16 404 aaronmk
+_ = $(+:_%=)
17 368 aaronmk
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
18
19 790 aaronmk
# System
20
date = $(shell date +"%Y-%m-%d-%H-%M-%S")
21
22 640 aaronmk
# Terminal
23 1184 aaronmk
termCols := $(shell tput cols)
24 640 aaronmk
esc := '['
25
reset := $(esc)'0m'
26
emph := $(esc)'7m '
27
endEmph := ' '$(reset)
28
29 368 aaronmk
# Commands
30 395 aaronmk
CP = cp -p
31 1184 aaronmk
diff = diff --unified=2
32
diffVerbose = $(if $(verbose),diff --side-by-side --left-column\
33
--width=$(termCols),$(diff))
34 368 aaronmk
35 783 aaronmk
# Paths
36 640 aaronmk
root := $(selfDir_uZPPqC)..
37 775 aaronmk
mappings := $(root)/mappings
38 1185 aaronmk
schemas := $(root)/schemas
39 1081 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
40
psqlAsBien := $(root)/bin/psql_vegbien $(psqlOpts)
41 353 aaronmk
42 783 aaronmk
##### General targets
43 250 aaronmk
44 418 aaronmk
all: _always maps ;
45 247 aaronmk
46
.SUFFIXES:
47
48 383 aaronmk
_always:
49
.PHONY: _always
50 250 aaronmk
51 383 aaronmk
clean: _always
52 256 aaronmk
	$(RM) $(all)
53
54 423 aaronmk
remake: _always clean all ;
55
56 515 aaronmk
%.out: %.make _always
57 368 aaronmk
	./$* >$@
58
.PRECIOUS: %.out
59
60 415 aaronmk
$(root)/%: _always
61
	+$(subMake)
62
63 783 aaronmk
##### SVN
64 250 aaronmk
65 766 aaronmk
svn_props: _always
66 1189 aaronmk
	svn propset svn:ignore $$'.~*\n*.log\n*.trace\n*.out\nsrc*' .
67 951 aaronmk
	$(if $(wildcard maps/),svn propset svn:ignore $$'.~*' maps)
68 766 aaronmk
	$(if $(wildcard test/),svn propset svn:ignore $$'*.out\n*.xml' test)
69
70 783 aaronmk
##### Installation
71 766 aaronmk
72 418 aaronmk
reinstall: _always uninstall install ;
73 264 aaronmk
74 783 aaronmk
##### Maps
75 264 aaronmk
76 1139 aaronmk
fullViaMap := maps/%.full.csv
77
allViaMaps := $(filter-out maps/VegBIEN.%.csv $(fullViaMap),\
78
$(wildcard maps/*.csv))
79 728 aaronmk
via := $(firstword $(sort $(basename $(basename $(notdir $(allViaMaps))))))
80 783 aaronmk
81 775 aaronmk
coreMap := $(mappings)/$(via)-VegBIEN.%.csv
82 1139 aaronmk
selfMap := $(mappings)/$(via).self.%.csv
83 783 aaronmk
84 749 aaronmk
viaMaps := $(wildcard $(tablesSort:%=maps/$(via).%.csv))
85 1139 aaronmk
viaMaps += $(filter-out $(viaMaps) $(fullViaMap),$(wildcard maps/$(via).*.csv))
86 783 aaronmk
87 728 aaronmk
autogenMaps := $(subst $(via).,VegBIEN.,$(viaMaps))
88
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
89
$(wildcard maps/VegBIEN.*.csv))
90 772 aaronmk
tables := $(directMaps:maps/VegBIEN.%.csv=%)
91 728 aaronmk
92
.PRECIOUS: $(allViaMaps) $(directMaps)
93 368 aaronmk
94 1139 aaronmk
maps :=
95 728 aaronmk
96 775 aaronmk
maps/VegBIEN.%.csv: maps/$(via).%.csv $(coreMap)
97 1126 aaronmk
	$(root)/bin/join_union_sort <$+ >$@
98 775 aaronmk
.PRECIOUS: maps/VegBIEN.%.csv $(coreMap)
99 264 aaronmk
100 1139 aaronmk
maps += $(autogenMaps)
101
102
maps/$(via).%.full.csv: maps/$(via).%.csv $(selfMap)
103
	env ignore=1 $(root)/bin/union <$+|$(root)/bin/sort_map >$@
104
maps/$(via).%.full.csv: maps/$(via).%.csv # fallback if no self map
105
	cp -p $< $@
106
.PRECIOUS: maps/$(via).%.full.csv maps/$(via).%.csv $(selfMap)
107
108
maps += $(patsubst maps/%.csv,maps/%.full.csv,$(viaMaps))
109
110
maps: $(maps) _always ;
111
112
all += $(maps)
113
114 783 aaronmk
##### Mapping
115 368 aaronmk
116 728 aaronmk
dbFile := $(firstword $(wildcard src/db.*.sql))
117 772 aaronmk
inputFiles := $(wildcard src/*.csv src/*.xml)
118 728 aaronmk
119 775 aaronmk
+maps = $(filter maps/% $(mappings)/%,$(+_))
120
<in = $(firstword $(filter-out $(+maps),$(+_)) $(wildcard $(exts:%=src/*.$*.%)))
121 958 aaronmk
map = $(if $(<in),<$(<in) ,$(if $(mapEnv),env $(mapEnv) ,$(error\
122 1139 aaronmk
No input file src/*.$*.{$(exts)} )))$(root)/map $(+maps)
123 772 aaronmk
map2db = env out_database=vegbien $(map)
124 368 aaronmk
125 783 aaronmk
##### Import to VegBIEN
126 772 aaronmk
127
ifneq ($(dbFile)$(inputFiles),)
128
129 1089 aaronmk
import: _always import-all ;
130 368 aaronmk
131 1190 aaronmk
log_ = $(@:-all=)$(if $(n),.n=$(n),).$(date).log
132
trace = $(log_:.log=.trace)
133 1188 aaronmk
import = -(set -x; "time" env commit=1 verbose=1\
134 1190 aaronmk
$(if $(profile),profile_to=$(trace)) $(map2db)) $(if $(log),\
135
$(if $(n),,>>$(log_))) 2>&1$(if $(log),$(if $(n),|tee -a $(log_)))
136 1088 aaronmk
# don't abort on import errors, which often relate to invalid input data
137 624 aaronmk
138 772 aaronmk
import-all: $(addprefix import-,$(tables)) _always ;
139 718 aaronmk
140
import-%: maps/VegBIEN.%.csv _always
141
	$(import)
142 772 aaronmk
# default:
143
import-%: _always ;
144 718 aaronmk
145 772 aaronmk
else
146
import: _always ;
147
endif
148
149 790 aaronmk
##### Log files from import
150
151 1188 aaronmk
logs := $(wildcard *.log *.trace)
152 339 aaronmk
153 383 aaronmk
rm_logs: _always
154 339 aaronmk
	$(RM) $(logs)
155
156 783 aaronmk
##### Verification of import
157 264 aaronmk
158 624 aaronmk
ifneq ($(wildcard verify.ref*),)
159
160 514 aaronmk
verify: verify.ref verify.out _always
161 1184 aaronmk
	-$(diffVerbose) $(+_)
162 1088 aaronmk
# don't abort on verification errors, which are expected during development
163 368 aaronmk
164 514 aaronmk
all += verify.out
165
166 1185 aaronmk
verify.out: $(schemas)/verify.sql _always
167 429 aaronmk
	$(out_cmd)
168 370 aaronmk
.PRECIOUS: %.out
169 1181 aaronmk
out_cmd = $(psqlAsBien) --set=datasource="'$(db)'" --no-align\
170
--field-separator='	' --pset=footer=off --pset=null=NULL <$< >$@
171 369 aaronmk
172 1082 aaronmk
ifneq ($(dbFile),)
173
%.ref: %.ref.sql
174
	$(dbAsBien) $(db) <$< >$@
175
.PRECIOUS: %.ref
176
endif
177
178 624 aaronmk
else
179
verify: _always ;
180
endif
181
182 783 aaronmk
##### Testing
183 368 aaronmk
184 624 aaronmk
ifneq ($(wildcard test/),)
185
186 723 aaronmk
hasOwnRef = $(filter-out %.2-step.xml,$@)
187 630 aaronmk
testRef = $(1:.2-step.xml=.xml).ref
188
189 897 aaronmk
define runTest
190 776 aaronmk
@echo "Testing $(abspath $@)..."
191 991 aaronmk
>$@ env test=1 n=$(test_n) $(1)
192 1184 aaronmk
@(set -x; $(diff) $(call testRef,$@) $@) 2>&1 || { e=$$?;\
193 780 aaronmk
$(if $(wildcard $(call testRef,$@)),,cat $@;)\
194 777 aaronmk
$(if $(hasOwnRef),\
195
echo $(emph)"To accept new test output:"$(endEmph);\
196
echo "$(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile";\
197
,\
198
echo $(emph)"Note: The preceding failed test is compared to another test's\
199
output"$(endEmph);\
200
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
201
)\
202 652 aaronmk
exit $$e;}
203 628 aaronmk
endef
204
205 897 aaronmk
test2File = $(call runTest,$(map))
206 775 aaronmk
207 876 aaronmk
tests :=
208
209 1139 aaronmk
test/$(via).%.xml: maps/$(via).%.full.csv _always
210 775 aaronmk
	$(test2File)
211 876 aaronmk
tests += test/$(via).%.xml
212 629 aaronmk
213 876 aaronmk
test/VegBIEN.%.xml: maps/VegBIEN.%.csv _always
214 775 aaronmk
	$(test2File)
215 876 aaronmk
tests += test/VegBIEN.%.xml
216 628 aaronmk
217 884 aaronmk
test/VegBIEN.%.2-step.xml: test/$(via).%.xml $(coreMap) _always
218 775 aaronmk
	-$(test2File)
219 722 aaronmk
# Don't abort tester if only 2-step test fails, as it's often finicky
220 876 aaronmk
tests += test/VegBIEN.%.2-step.xml
221 630 aaronmk
222 876 aaronmk
test/import.%.out: maps/VegBIEN.%.csv _always
223 897 aaronmk
	$(call runTest,$(map2db))
224 876 aaronmk
tests += test/import.%.out
225 627 aaronmk
226 724 aaronmk
.PRECIOUS: $(tests)
227
228 876 aaronmk
testOutputs := $(foreach test,$(tests),$(tables:%=$(test)))
229 724 aaronmk
230 876 aaronmk
test: _always $(testOutputs) ;
231
232
all += $(testOutputs)
233
234 634 aaronmk
# Accepts a test output: make <test_output_path>-ok
235 626 aaronmk
%-ok: _always
236 630 aaronmk
	$(CP) $* $(call testRef,$*)
237 502 aaronmk
238 624 aaronmk
else
239
test: _always ;
240
endif
241
242 783 aaronmk
##### Input-type-specific
243 368 aaronmk
244 624 aaronmk
# Each input type needs var $(mapEnv) and targets install, uninstall
245
246 622 aaronmk
ifneq ($(dbFile),)
247 256 aaronmk
248 635 aaronmk
dbEngineExt := $(subst .,,$(suffix $(basename $(notdir $(dbFile)))))
249
db := $(notdir $(realpath .))
250 622 aaronmk
251 783 aaronmk
#### Installation
252 256 aaronmk
253 621 aaronmk
install: _always db ;
254 339 aaronmk
255 621 aaronmk
uninstall: _always rm_db ;
256 368 aaronmk
257 783 aaronmk
#### DB-engine-specific
258 621 aaronmk
259 624 aaronmk
# Each DB engine needs vars $(dbEngine), $(dbAsBien) and targets db, rm_db
260 256 aaronmk
261 622 aaronmk
ifeq ($(dbEngineExt),my)
262 621 aaronmk
263 622 aaronmk
dbEngine := MySQL
264
265 621 aaronmk
bienPassword := $(shell cat $(root)/config/bien_password)
266
mysqlAs = mysql --user=$(1) --password='$(bienPassword)'
267
mysqlAsRoot := $(call mysqlAs,root)
268
dbAsBien := $(call mysqlAs,bien)
269
270 1097 aaronmk
dbExists = $(shell echo "SHOW DATABASES LIKE '$(db)';"|$(mysqlAsRoot))
271
272
define createDb
273 1098 aaronmk
echo "CREATE DATABASE $(db) DEFAULT CHARACTER SET latin1;"|$(mysqlAsRoot)
274 1097 aaronmk
-$(mysqlAsRoot) --database=$(db) <$<
275
endef
276
# ignore errors in db import so that GRANT will still be run
277
278 622 aaronmk
db: $(dbFile) _always
279 1097 aaronmk
	$(if $(dbExists),,$(createDb))
280 368 aaronmk
	echo "GRANT SELECT ON $(db).* TO 'bien'@'localhost';"|$(mysqlAsRoot)
281 250 aaronmk
282 383 aaronmk
rm_db: _always
283 368 aaronmk
	-echo "REVOKE ALL ON $(db).* FROM 'bien'@'localhost';"|$(mysqlAsRoot)
284
	echo "DROP DATABASE IF EXISTS $(db);"|$(mysqlAsRoot)
285 365 aaronmk
# ignore errors if grant not defined
286 250 aaronmk
287 783 aaronmk
### Unrecognized DB engine
288 368 aaronmk
289
else
290 993 aaronmk
$(error The DB filename $(dbFile) must be db.my.sql)
291 368 aaronmk
endif
292
293 622 aaronmk
# Must come after dbEngine is set
294
mapEnv := in_engine=$(dbEngine) in_database=$(db)
295
296 783 aaronmk
#### Unrecognized input type
297 624 aaronmk
298 256 aaronmk
else
299 624 aaronmk
install: _always ;
300
uninstall: _always ;
301 256 aaronmk
endif