Project

General

Profile

1
##### Configuration
2

    
3
# Command line
4
log ?= $(if $(test),,1)
5
profile ?=
6
quiet ?=
7
reverify ?= 1
8
use_staged ?= $(by_col)
9

    
10
# Makefile
11
tablesSort ?= plots organisms stems specimens
12
exts ?= csv tsv txt xml
13
test_n ?= 2
14

    
15
##### Vars/functions
16

    
17
selfDir_uZPPqC := $(dir $(lastword $(MAKEFILE_LIST)))
18

    
19
# Paths
20
datasrc := $(notdir $(realpath .))
21
root := $(selfDir_uZPPqC)..
22
bin := $(root)/bin
23
mappings := $(root)/mappings
24

    
25
# Make
26
SHELL := /bin/bash
27
selfMake = $(MAKE) --makefile=../input.Makefile
28
subMake = $(MAKE) $(@:$(root)/%=%) --directory=$(root)
29
+_ = $(+:_%=)
30
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
31

    
32
# OS
33
os := $(shell uname)
34
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
35

    
36
# Formatting
37
SED = sed -$(if $(filter Darwin,$(os)),E,r)
38

    
39
# System
40
date = $(shell date +"%Y-%m-%d-%H-%M-%S")
41

    
42
# Terminal
43
termCols := $(shell tput cols)
44
esc := '['
45
reset := $(esc)'0m'
46
emph := $(esc)'7m '
47
endEmph := ' '$(reset)
48

    
49
# Commands
50
MKDIR = mkdir -p
51
mkdir = $(MKDIR) $(@D)
52
CP = cp -p
53
diff = diff --unified=2
54
diffVerbose = $(if $(verbose),diff --side-by-side --left-column\
55
--width=$(termCols),$(diff))
56

    
57
# BIEN commands
58
selfMap = $(bin)/cols 0 0
59
psqlOpts := --set ON_ERROR_STOP=1 --quiet
60
psqlAsBien := $(bin)/psql_vegbien $(psqlOpts)
61

    
62
# SVN
63
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
64
setSvnIgnore = svn propset svn:ignore $(2) $(1)
65
define addDirWithIgnore
66
$(addDir)
67
$(setSvnIgnore)
68
endef
69

    
70
##### General targets
71

    
72
all: _always maps ;
73

    
74
.SUFFIXES: # turn off built-in suffix rules
75
.SECONDARY: # don't automatically delete intermediate files
76
.DELETE_ON_ERROR: # delete target if recipe fails
77

    
78
_always:
79
.PHONY: _always
80

    
81
clean: _always
82
	$(RM) $(all)
83

    
84
remake: _always clean
85
	+$(selfMake)
86
# re-run make so that cache of existing files is reset
87

    
88
make_script = ./$< >$@
89

    
90
%/: % _always ;
91

    
92
# Must come before `%: %.make` to override it
93
src/%: src/%.make _always
94
	(set -x; $(make_script)) 2>>$<.log.sql
95
.PRECIOUS: src/% # save partial outputs of aborted src make scripts
96

    
97
%: %.make _always
98
	$(make_script)
99

    
100
##### SVN
101

    
102
add: _always
103
	$(call setSvnIgnore,.,$$'')
104
	$(call addDirWithIgnore,src,$$'*')
105
	$(call addDirWithIgnore,maps,$$'.~*')
106
	$(call addDirWithIgnore,import,$$'*')
107
	$(call addDirWithIgnore,test,$$'*.out\n*.xml')
108
	$(call addDirWithIgnore,verify,$$'*.out')
109

    
110
##### Existing maps discovery
111

    
112
inputFiles := $(wildcard $(exts:%=src/*.%))
113
ifeq ($(inputFiles),)
114
dbExport := $(firstword $(wildcard src/db.*.sql))
115
endif
116

    
117
srcMap := maps/src.%.csv
118
fullViaMap := maps/%.full.csv
119
directMap := maps/VegBIEN.%.csv
120
allViaMaps := $(filter-out $(srcMap) $(fullViaMap) $(directMap),\
121
$(wildcard maps/*.csv))
122
via := $(firstword $(sort $(basename $(basename $(notdir $(allViaMaps))))))
123

    
124
coreMap := $(mappings)/$(via)-VegBIEN.%.csv
125
coreSelfMap := $(mappings)/$(via).self.%.csv
126

    
127
viaMaps := $(wildcard $(tablesSort:%=maps/$(via).%.csv))
128
viaMaps += $(filter-out $(viaMaps) $(fullViaMap),$(wildcard maps/$(via).*.csv))
129

    
130
autogenMaps := $(subst $(via).,VegBIEN.,$(viaMaps))
131
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
132
$(wildcard maps/VegBIEN.*.csv))
133
tables := $(directMaps:maps/VegBIEN.%.csv=%)
134

    
135
##### Sources
136

    
137
srcs = $(shell $(bin)/sort_filenames $(wildcard $(exts:%=src/*.$*.%)))
138
isCsv = $(if $(srcs),$(if $(filter %.xml,$(srcs)),,1))
139
    # true if $(srcs) non-empty and contains no *.xml
140
catSrcs = $(bin)/cat$(if $(isCsv),_csv) $(srcs)
141
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) --
142

    
143
# Usage: `make {--silent|-s} inputs/<datasrc>/cat` (don't echo make commands)
144
cat: $(addprefix cat-,$(tables)) _always ;
145

    
146
cat-%: _always
147
	$(catSrcs)
148

    
149
##### Installation
150

    
151
install: _always src/install import/install ;
152

    
153
uninstall: _always import/uninstall src/uninstall ;
154

    
155
reinstall: _always uninstall install ;
156

    
157
##### Staging tables
158

    
159
import/install: _always import/schema $(addprefix import/install-,$(tables)) ;
160

    
161
import/uninstall: _always import/rm_schema ;
162
# rm_schema will also drop all staging tables
163

    
164
import/schema: _always
165
	-echo 'CREATE SCHEMA "$(datasrc)";'|$(psqlAsBien)
166
# ignore errors if schema exists
167

    
168
import/rm_schema: _always
169
	echo 'DROP SCHEMA IF EXISTS "$(datasrc)" CASCADE;'|$(psqlAsBien)
170

    
171
import/install-%: _always
172
	$(if $(isCsv),$(import_install_))
173
import_install_ = (prefix=; . $(bin)/vegbien_dest; "time" nice -n +5\
174
env schema=$(datasrc) table=$* $(bin)/csv2db $(catSrcs)\
175
$(if $(log),$(if $(quiet),&>,2>&1|tee )import/install-$*.log.sql))
176

    
177
##### Maps building
178

    
179
# Maps to (try to) build are added to one of these
180
maps :=
181
createOnlyMaps :=
182

    
183
srcMaps := $(wildcard maps/src.*.csv)
184

    
185
srcRoot = $(mappings)/roots/$*.sh
186
mkSrcMap = $(catSrcs)|(. $(srcRoot); env datasrc=$(datasrc) $(bin)/src_map >$@)
187

    
188
# Src maps cleanup
189
ifneq ($(filter maps/.%.last_cleanup,$(MAKECMDGOALS)),)
190
maps/.src.%.csv.last_cleanup: maps/src.%.csv
191
	$(bin)/in_place $< $(bin)/cols '*'
192
	touch $@
193
else
194
# Autogen src maps with known table names
195
maps/src.%.csv: _always
196
	$(if $(wildcard $@),,$(if $(isCsv),$(mkSrcMap)))
197
	+$(if $(isCsv),$(selfMake) $(@:maps/%=maps/.%.last_cleanup))
198
# only build if doesn't exist
199
# only build if CSV srcs exist for that table name
200
endif
201

    
202
# Try all table names
203
createOnlyMaps += $(tablesSort:%=maps/src.%.csv)
204

    
205
# Must come before $(root)/% to override it
206
$(coreSelfMap): _always
207
	-+$(subMake)
208
# ignore errors if $(coreSelfMap) does not exist
209

    
210
# Via maps cleanup
211
ifneq ($(filter maps/.%.last_cleanup,$(MAKECMDGOALS)),)
212
maps/.$(via).%.csv.last_cleanup: maps/$(via).%.csv $(coreMap)
213
	$(bin)/in_place $< env ignore=1 $(bin)/subtract $(word 2,$+) 0 1 2
214
	touch $@
215
# Include comment column so commented mappings are never removed
216
else
217
$(viaMaps): _always
218
	$(selfMake) $(@:maps/%=maps/.%.last_cleanup)
219
endif
220

    
221
joinSrcMap = $(if $(hasSrc),$(bin)/in_place $@ $(bin)/intersect $(word 3,$+) 0)
222
hasSrc = $(shell test -s $(word 3,$+) && echo t)
223

    
224
makeFullCsv = $(if $(shell test -e $(word 2,$+) && echo t),\
225
env ignore=1 $(bin)/union <$(wordlist 1,2,$+)|,<$< )$(bin)/sort_map >$@
226
# can't use $(wildcard) because it won't recheck file after $(coreSelfMap) runs
227

    
228
maps/$(via).%.full.csv: maps/$(via).%.csv $(coreSelfMap) $(srcMap)
229
	$(makeFullCsv)
230
	$(joinSrcMap)
231
maps += $(patsubst maps/%.csv,maps/%.full.csv,$(viaMaps))
232

    
233
maps/VegBIEN.%.csv: maps/$(via).%.full.csv $(coreMap)
234
	$(bin)/join <$+|$(bin)/sort_map >$@
235
maps += $(autogenMaps)
236

    
237
maps: $(createOnlyMaps) $(maps) _always ;
238

    
239
all += $(maps)
240

    
241
##### Maps validation
242

    
243
missing_mappings: _always missing_join_mappings missing_input_mappings ;
244

    
245
missing_%_mappings: _always # stem is one of join|input
246
	@echo $(emph)"Missing $* mappings:"$(endEmph)
247
	@+$(selfMake) remake 2>&1\
248
|$(SED) -n 's/^.*No.* $* mapping for ([0-9A-Za-z_-]+).*$$/\1/p'\
249
$(if $(filter join,$*),|$(bin)/ucase_first 0)|sort|uniq
250

    
251
##### External dependencies
252

    
253
$(root)/%: _always
254
	+$(subMake)
255
.PRECIOUS: $(root)/% # let ext. dir's Makefile decide whether to delete on error
256

    
257
##### Mapping
258

    
259
+maps = $(filter maps/% $(mappings)/%,$(+_))
260
<in = $(firstword $(filter-out $(+maps),$(+_)))
261
map = $(if $(<in),<$(<in),\
262
$(if $(srcs),$(withCatSrcs),\
263
$(if $(mapEnv),env $(mapEnv),\
264
$(error No input file src/*.$*.{$(exts)}))))\
265
$(root)/map $(+maps)
266
map2db = $(if $(use_staged),env in_database=vegbien in_schema=$(datasrc)\
267
in_table=$*) env out_database=vegbien $(map)
268

    
269
##### Import to VegBIEN
270

    
271
ifneq ($(dbExport)$(inputFiles),)
272

    
273
profileTest = $(if $(profile),$(if $(test),1))
274
profileOnly = -env profile_to=/dev/fd/3 $(map2db) 3>&1 1>&2|\
275
$(bin)/profile_stats /dev/fd/0
276

    
277
log_ = import/$*$(if $(n),.n=$(n),).$(date).log.sql
278
trace = $(log_:.log.sql=.trace)
279
import = -$(if $(profileTest),$(profileOnly),(set -x; "time" env commit=1\
280
$(if $(profile),profile_to=$(trace)) $(map2db)) $(if $(log),\
281
$(if $(n),,&>>$(log_)))$(if $(log),$(if $(n), 2>&1|tee -a $(log_))))
282
# don't abort on import errors, which often relate to invalid input data
283

    
284
import: $(addprefix import-,$(tables)) _always ;
285

    
286
import-%: maps/VegBIEN.%.csv _always
287
	$(import)
288
# default:
289
import-%: _always ;
290

    
291
else
292
import: _always ;
293
endif
294

    
295
##### Log files from import
296

    
297
logs := $(wildcard import/*.log.sql import/*.trace)
298

    
299
rm_logs: _always
300
	$(RM) $(logs)
301

    
302
##### Verification of import
303

    
304
verify: $(addprefix verify-,$(tables)) _always ;
305

    
306
verify-%: verify/%.ref verify/%.out _always
307
	-$(diffVerbose) $(+_)
308
# don't abort on verification errors, which are expected during development
309
# default:
310
verify-%: verify/%.out _always
311
	$(if $(shell test -e $< && echo t),cat $<)
312
# don't run if verify/%.out's default do-nothing action was used
313
# can't use $(wildcard) because it won't recheck file after verify/%.out is run
314

    
315
verify = $(if $(reverify),"time" $(psqlAsBien) --set=datasource="'$(datasrc)'"\
316
--no-align --field-separator=$$'\t' --pset=footer=off --pset=null=NULL <$< >$@)
317

    
318
verify/%.out: $(mappings)/verify.%.sql _always
319
	$(verify)
320
# default:
321
verify/%.out: _always ;
322

    
323
all += $(wildcard verify/*.out)
324

    
325
ifneq ($(dbExport),)
326
%.ref: %.ref.sql
327
	$(dbAsBien) $(db) <$< >$@
328
endif
329

    
330
##### Editing import
331

    
332
import/rotate: _always
333
	echo "UPDATE party SET organizationname = organizationname||'.$(date)'\
334
WHERE organizationname = '$(datasrc)';"|$(psqlAsBien)
335

    
336
import/rm: _always
337
	echo "DELETE FROM party WHERE organizationname = '$(datasrc)';"|\
338
$(psqlAsBien)
339

    
340
##### Testing
341

    
342
testRefOutput = $(subst .2-step,,$(subst .staging,,$(1)))
343
testRef = $(testRefOutput).ref
344
hasOwnRef = $(filter $@,$(call testRefOutput,$@))
345
# filter returns non-empty if they are equal
346

    
347
define runTest
348
@echo "Testing $(abspath $@)..."
349
>$@ env test=1 n=$(test_n) $(1)
350
@(set -x; $(diff) $(call testRef,$@) $@) 2>&1 || { e=$$?;\
351
$(if $(wildcard $(call testRef,$@)),,cat $@;)\
352
$(if $(hasOwnRef),\
353
{\
354
read -p $(emph)'Accept new test output? (y/n)'$(endEmph) REPLY;\
355
if test "$$REPLY" = y; then\
356
(set -x; $(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile);\
357
exit 0;\
358
fi;\
359
};,\
360
echo $(emph)"Note: The preceding failed test is compared to another test's\
361
output"$(endEmph);\
362
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
363
)\
364
exit $$e;}
365
endef
366

    
367
test2File = $(call runTest,$(map))
368
test2Db = $(call runTest,$(map2db))
369

    
370
tests :=
371

    
372
test/$(via).%.xml: maps/$(via).%.full.csv _always
373
	$(test2File)
374
tests += test/$(via).%.xml
375

    
376
test/VegBIEN.%.xml: maps/VegBIEN.%.csv _always
377
	$(test2File)
378
tests += test/VegBIEN.%.xml
379

    
380
test/VegBIEN.%.2-step.xml: test/$(via).%.xml $(coreMap) _always
381
	-$(test2File)
382
# Don't abort tester if only 2-step test fails, as it's often finicky
383
tests += test/VegBIEN.%.2-step.xml
384

    
385
test/import.%.out: maps/VegBIEN.%.csv _always
386
	$(test2Db)
387
tests += test/import.%.out
388

    
389
testStaged2Db = $(foreach use_staged,1,$(test2Db))
390
    # run with use_staged=1
391

    
392
# Requires staging tables. To create them, run `make inputs/<datasrc>/install`.
393
test/import.%.staging.out: maps/VegBIEN.%.csv _always
394
	-$(if $(isCsv),$(testStaged2Db),cp -p $(@:.staging.out=.out) $@)
395
# Don't abort tester if only staging test fails, in case staging table missing
396
# Non-flat-file inputs fall back to mimicking a successful test
397
tests += test/import.%.staging.out
398

    
399
testOutputs := $(foreach test,$(tests),$(tables:%=$(test)))
400

    
401
.PRECIOUS: $(testOutputs) # save outputs of failed tests so they can be accepted
402

    
403
test: _always $(testOutputs) ;
404

    
405
all += $(filter-out %.ref,$(wildcard test/*))
406

    
407
# Accepts a test output: make <test_output_path>-ok
408
%-ok: _always
409
	$(CP) $* $(call testRef,$*)
410

    
411
##### Documentation
412

    
413
steps = $(selfMake) import test=1 by_col=1 verbosity=2 n=100\
414
2>&1|$(bin)/debug2redmine >$@
415

    
416
import/steps.by_col.sql: _always
417
	+$(steps)
418

    
419
##### Input-type-specific
420

    
421
# Each input type needs var $(mapEnv) and targets src/install, src/uninstall
422

    
423
#### DB export
424

    
425
ifneq ($(dbExport),)
426

    
427
dbEngineExt := $(subst .,,$(suffix $(basename $(notdir $(dbExport)))))
428
db := $(datasrc)
429

    
430
### Installation
431

    
432
src/install: _always db ;
433

    
434
src/uninstall: _always rm_db ;
435

    
436
### DB-engine-specific
437

    
438
# Each DB engine needs vars $(dbEngine), $(dbAsBien) and targets db, rm_db
439

    
440
ifeq ($(dbEngineExt),my)
441

    
442
dbEngine := MySQL
443

    
444
bienPassword := $(shell cat $(root)/config/bien_password)
445
mysqlAs = mysql --user=$(1) --password='$(bienPassword)'
446
mysqlAsRoot := $(call mysqlAs,root)
447
dbAsBien := $(call mysqlAs,bien)
448

    
449
dbExists = $(shell echo "SHOW DATABASES LIKE '$(db)';"|$(mysqlAsRoot))
450

    
451
define createDb
452
echo "CREATE DATABASE $(db) DEFAULT CHARACTER SET latin1;"|$(mysqlAsRoot)
453
-$(mysqlAsRoot) --database=$(db) <$<
454
endef
455
# ignore errors in db import so that GRANT will still be run
456

    
457
db: $(dbExport) _always
458
	$(if $(dbExists),,$(createDb))
459
	echo "GRANT SELECT ON $(db).* TO 'bien'@'localhost';"|$(mysqlAsRoot)
460

    
461
rm_db: _always
462
	-echo "REVOKE ALL ON $(db).* FROM 'bien'@'localhost';"|$(mysqlAsRoot)
463
	echo "DROP DATABASE IF EXISTS $(db);"|$(mysqlAsRoot)
464
# ignore errors if grant not defined
465

    
466
## Unrecognized DB engine
467

    
468
else
469
$(error The DB filename $(dbExport) must be db.my.sql)
470
endif
471

    
472
### Other input types
473

    
474
else
475

    
476
src/install: _always ;
477
src/uninstall: _always ;
478

    
479
endif
480

    
481
#### DB connection info
482

    
483
ifneq ($(dbEngine),)
484
# Must come after dbEngine is set
485
mapEnv := in_engine=$(dbEngine) in_database=$(db)
486
endif
(3-3/3)