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 1081 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
39
psqlAsBien := $(root)/bin/psql_vegbien $(psqlOpts)
40 353 aaronmk
41 783 aaronmk
##### General targets
42 250 aaronmk
43 418 aaronmk
all: _always maps ;
44 247 aaronmk
45
.SUFFIXES:
46
47 383 aaronmk
_always:
48
.PHONY: _always
49 250 aaronmk
50 383 aaronmk
clean: _always
51 256 aaronmk
	$(RM) $(all)
52
53 423 aaronmk
remake: _always clean all ;
54
55 515 aaronmk
%.out: %.make _always
56 368 aaronmk
	./$* >$@
57
.PRECIOUS: %.out
58
59 415 aaronmk
$(root)/%: _always
60
	+$(subMake)
61
62 783 aaronmk
##### SVN
63 250 aaronmk
64 766 aaronmk
svn_props: _always
65 1189 aaronmk
	svn propset svn:ignore $$'.~*\n*.log\n*.trace\n*.out\nsrc*' .
66 951 aaronmk
	$(if $(wildcard maps/),svn propset svn:ignore $$'.~*' maps)
67 766 aaronmk
	$(if $(wildcard test/),svn propset svn:ignore $$'*.out\n*.xml' test)
68
69 783 aaronmk
##### Installation
70 766 aaronmk
71 418 aaronmk
reinstall: _always uninstall install ;
72 264 aaronmk
73 783 aaronmk
##### Maps
74 264 aaronmk
75 1139 aaronmk
fullViaMap := maps/%.full.csv
76
allViaMaps := $(filter-out maps/VegBIEN.%.csv $(fullViaMap),\
77
$(wildcard maps/*.csv))
78 728 aaronmk
via := $(firstword $(sort $(basename $(basename $(notdir $(allViaMaps))))))
79 783 aaronmk
80 775 aaronmk
coreMap := $(mappings)/$(via)-VegBIEN.%.csv
81 1139 aaronmk
selfMap := $(mappings)/$(via).self.%.csv
82 783 aaronmk
83 749 aaronmk
viaMaps := $(wildcard $(tablesSort:%=maps/$(via).%.csv))
84 1139 aaronmk
viaMaps += $(filter-out $(viaMaps) $(fullViaMap),$(wildcard maps/$(via).*.csv))
85 783 aaronmk
86 728 aaronmk
autogenMaps := $(subst $(via).,VegBIEN.,$(viaMaps))
87
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
88
$(wildcard maps/VegBIEN.*.csv))
89 772 aaronmk
tables := $(directMaps:maps/VegBIEN.%.csv=%)
90 728 aaronmk
91
.PRECIOUS: $(allViaMaps) $(directMaps)
92 368 aaronmk
93 1139 aaronmk
maps :=
94 728 aaronmk
95 775 aaronmk
maps/VegBIEN.%.csv: maps/$(via).%.csv $(coreMap)
96 1126 aaronmk
	$(root)/bin/join_union_sort <$+ >$@
97 775 aaronmk
.PRECIOUS: maps/VegBIEN.%.csv $(coreMap)
98 264 aaronmk
99 1139 aaronmk
maps += $(autogenMaps)
100
101
maps/$(via).%.full.csv: maps/$(via).%.csv $(selfMap)
102
	env ignore=1 $(root)/bin/union <$+|$(root)/bin/sort_map >$@
103
maps/$(via).%.full.csv: maps/$(via).%.csv # fallback if no self map
104 1194 aaronmk
	$(CP) $< $@
105 1139 aaronmk
.PRECIOUS: maps/$(via).%.full.csv maps/$(via).%.csv $(selfMap)
106
107
maps += $(patsubst maps/%.csv,maps/%.full.csv,$(viaMaps))
108
109
maps: $(maps) _always ;
110
111
all += $(maps)
112
113 783 aaronmk
##### Mapping
114 368 aaronmk
115 728 aaronmk
dbFile := $(firstword $(wildcard src/db.*.sql))
116 772 aaronmk
inputFiles := $(wildcard src/*.csv src/*.xml)
117 728 aaronmk
118 775 aaronmk
+maps = $(filter maps/% $(mappings)/%,$(+_))
119
<in = $(firstword $(filter-out $(+maps),$(+_)) $(wildcard $(exts:%=src/*.$*.%)))
120 958 aaronmk
map = $(if $(<in),<$(<in) ,$(if $(mapEnv),env $(mapEnv) ,$(error\
121 1139 aaronmk
No input file src/*.$*.{$(exts)} )))$(root)/map $(+maps)
122 772 aaronmk
map2db = env out_database=vegbien $(map)
123 368 aaronmk
124 783 aaronmk
##### Import to VegBIEN
125 772 aaronmk
126
ifneq ($(dbFile)$(inputFiles),)
127
128 1190 aaronmk
log_ = $(@:-all=)$(if $(n),.n=$(n),).$(date).log
129
trace = $(log_:.log=.trace)
130 1188 aaronmk
import = -(set -x; "time" env commit=1 verbose=1\
131 1190 aaronmk
$(if $(profile),profile_to=$(trace)) $(map2db)) $(if $(log),\
132
$(if $(n),,>>$(log_))) 2>&1$(if $(log),$(if $(n),|tee -a $(log_)))
133 1088 aaronmk
# don't abort on import errors, which often relate to invalid input data
134 624 aaronmk
135 1193 aaronmk
import: $(addprefix import-,$(tables)) _always ;
136 718 aaronmk
137
import-%: maps/VegBIEN.%.csv _always
138
	$(import)
139 772 aaronmk
# default:
140
import-%: _always ;
141 718 aaronmk
142 772 aaronmk
else
143
import: _always ;
144
endif
145
146 790 aaronmk
##### Log files from import
147
148 1188 aaronmk
logs := $(wildcard *.log *.trace)
149 339 aaronmk
150 383 aaronmk
rm_logs: _always
151 339 aaronmk
	$(RM) $(logs)
152
153 783 aaronmk
##### Verification of import
154 264 aaronmk
155 1194 aaronmk
verify: $(addprefix verify-,$(tables)) _always ;
156
157
verify-%: verify.%.ref verify.%.out _always
158 1184 aaronmk
	-$(diffVerbose) $(+_)
159 1088 aaronmk
# don't abort on verification errors, which are expected during development
160 1194 aaronmk
# default:
161
verify-%: verify.%.out _always
162
	$(if $(wildcard $<),cat $<)
163
# don't run if verify.%.out's default do-nothing action was used
164 368 aaronmk
165 1192 aaronmk
verify = $(psqlAsBien) --set=datasource="'$(db)'" --no-align\
166
--field-separator='	' --pset=footer=off --pset=null=NULL <$< >$@
167 514 aaronmk
168 1194 aaronmk
verify.%.out: $(mappings)/verify.%.sql _always
169 1192 aaronmk
	$(verify)
170 1194 aaronmk
.PRECIOUS: verify.%.out
171
# default:
172
verify.%.out: _always ;
173 369 aaronmk
174 1194 aaronmk
all += $(wildcard verify.*.out)
175 1192 aaronmk
176 1082 aaronmk
ifneq ($(dbFile),)
177
%.ref: %.ref.sql
178
	$(dbAsBien) $(db) <$< >$@
179
.PRECIOUS: %.ref
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