Project

General

Profile

1
selfDir_uZPPqC := $(dir $(lastword $(MAKEFILE_LIST)))
2
root := $(selfDir_uZPPqC)..
3
include $(root)/lib/common.Makefile
4

    
5

    
6
##### Configuration
7

    
8
# Command line
9
log ?= $(if $(test),,1)
10
profile ?=
11
quiet ?=
12
reverify ?= 1
13
use_staged ?= $(by_col)
14

    
15
# Makefile
16
exts ?= csv tsv txt xml
17
test_n ?= 2
18

    
19
##### Vars/functions
20

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

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

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

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

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

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

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

    
59
# BIEN commands
60
sortFilenames = $(shell $(bin)/sort_filenames $(1))
61
selfMap = $(bin)/cols 0 0
62
psqlOpts := --set ON_ERROR_STOP=1 --quiet
63
psqlAsBien := $(bin)/psql_vegbien $(psqlOpts)
64
# Usage: ($(inDatasrc); cat $(file))|$(psqlCmd)
65
inDatasrc = echo 'SET search_path TO "$(datasrc)";'
66

    
67
# SVN
68
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
69
setSvnIgnore = svn propset svn:ignore $(2) $(1)
70
define addDirWithIgnore
71
$(addDir)
72
$(setSvnIgnore)
73
endef
74

    
75
##### Environment
76

    
77
export PATH := $(bin):$(PATH)
78

    
79
##### General targets
80

    
81
all: _always maps ;
82

    
83
clean: _always
84
	$(RM) $(all)
85

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

    
90
make_script = ./$< >$@
91

    
92
%/: % _always ;
93

    
94
%: %.make
95
	$(if $(wildcard $@),,"time" $(make_script))
96
# Only remake if doesn't exist. This prevents unintentional remaking when the
97
# make script is newly checked out from svn (which sets the mod time to now) but
98
# the output is synced externally.
99
# Can't remove prereq to do this, because it determines when the rule applies.
100
.PRECIOUS: % # save partial outputs of aborted src make scripts
101

    
102
##### SVN
103

    
104
add: _always
105
	$(call setSvnIgnore,.,'*')
106
	$(call addDirWithIgnore,logs,$$'*.log.sql\n*.trace')
107
	$(call addDirWithIgnore,verify,'*.out')
108
	$(call addFile,import_order.txt)
109

    
110
# Adds a new table subdir
111
%/add: _always
112
	$(call addDirWithIgnore,$*,'*')
113
	$(call addDirWithIgnore,$*/logs,$$'*.log.sql\n*.trace')
114

    
115
##### Existing maps discovery
116

    
117
sortFile := import_order.txt
118

    
119
tables := $(if $(wildcard $(sortFile)),$(shell cat $(sortFile)))
120
    # $(shell) replaces "\n" with " "
121
allSubdirs := $(call wildcard/,*/)
122
allTables := $(call sortFilenames,$(filter-out _% verify logs,$(allSubdirs:%/=%)))
123
joinedTables := $(filter-out $(tables),$(allTables))
124
allTables := $(joinedTables) $(tables)# move joined tables to beginning
125
ifeq ($(tables),)# none specified in sort file
126
tables := $(allTables)
127
endif
128

    
129
viaMap := %/map.csv
130
directMap := %/VegBIEN.csv
131
anyMap := $(viaMap) $(directMap) %/unmapped_terms.csv\
132
%/new_terms.csv
133

    
134
extsFilter := $(addprefix %.,$(exts))
135
dataOnly = $(filter $(extsFilter),$(1))
136

    
137
anyTest = $*/test.%
138
srcsOnly = $(filter-out $(anyMap) $(anyTest) %/logs,$(call dataOnly,$(1)))
139

    
140
coreMap := $(mappings)/VegCore-VegBIEN.csv
141
dict := $(mappings)/Veg+-VegCore.csv
142

    
143
viaMaps := $(tables:%=%/map.csv)
144

    
145
autogenMaps := $(subst map.,VegBIEN.,$(viaMaps))
146
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
147
$(wildcard */VegBIEN.csv))
148

    
149
##### Sources
150

    
151
srcs = $(call sortFilenames,$(call srcsOnly,$(wildcard $*/*)))
152
nonHeaderSrcs = $(filter-out %/header.csv,$(srcs))
153
isRef = $(if $(nonHeaderSrcs),,1)
154
    # empty subdir, so references an already-installed staging table
155
isXml = $(filter %.xml,$(nonHeaderSrcs))
156
nonXml = $(if $(isXml),,1)
157
isCsv = $(if $(nonHeaderSrcs),$(if $(isXml),,1))
158
    # true if $(srcs) non-empty and contains no *.xml
159
catSrcs = $(bin)/cat$(if $(nonXml),_csv) $(srcs)
160
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) --
161

    
162
# Usage: `make {--silent|-s} inputs/<datasrc>/cat` (don't echo make commands)
163
cat: $(tables:%=%/cat) _always ;
164

    
165
%/cat: _always
166
	$(catSrcs)
167

    
168
##### Staging tables installation
169

    
170
dbExports := $(sort $(wildcard *.schema.sql))# schemas first
171
dbExports += $(sort $(filter-out $(dbExports),$(wildcard *.sql)))# all others
172
dbExports := $(strip $(dbExports))# += adds extra whitespace
173
allInstalls := $(if $(dbExports),sql) $(allTables)
174

    
175
install: _always schema $(allInstalls:%=%/install) ;
176

    
177
uninstall: _always rm_schema ;
178
# rm_schema will also drop all staging tables
179

    
180
reinstall: _always uninstall install ;
181

    
182
schema: _always
183
	-echo 'CREATE SCHEMA "$(datasrc)";'|$(psqlAsBien)
184
# ignore errors if schema exists
185

    
186
rm_schema: _always
187
	echo 'DROP SCHEMA IF EXISTS "$(datasrc)" CASCADE;'|$(psqlAsBien)
188

    
189
logInstall = $(if $(log),$(if $(quiet),&>,2>&1|tee $(2)\
190
)$(1)logs/install.log.sql)
191
logInstall* = $(call logInstall,$*/)
192
logInstall*Add = $(call logInstall,$*/,-a)# append to log
193

    
194
# Must come before %/install to override it
195
sql/install: $(dbExports)
196
	($(inDatasrc); cat $+|grep -vF 'SET search_path')|"time" $(psqlAsBien) \
197
$(logInstall)
198

    
199
# The export must be created with:
200
# `--compatible=postgresql --add-locks=false --set-charset --no-create-info`
201
# Must come before `%.sql: _MySQL/%.sql` to override it
202
%.data.sql: _MySQL/%.data.sql
203
	$(bin)/my2pg.data <$< >$@
204

    
205
# The export must be created with:
206
# `--compatible=postgresql --add-locks=false --set-charset`
207
# Add `--no-data` to create a schema-only export.
208
%.sql: _MySQL/%.sql
209
	$(bin)/my2pg <$< >$@
210

    
211
cleanup = (prefix=; . $(bin)/vegbien_dest; env schema=$(datasrc) table=$*\
212
$(bin)/csv2db) $(logInstall*Add)
213

    
214
define exportHeader
215
$(cleanup)
216
echo 'SELECT * FROM "$(datasrc)"."$*" LIMIT 0;'|$(psqlAsBien) \
217
--no-align --field-separator=, --pset=footer=off >$*/header.csv
218
endef
219

    
220
# For staging tables which are derived by joining together other staging tables.
221
%/install %/header.csv: %/create.sql _always
222
	($(inDatasrc); echo 'CREATE TABLE "$*" AS'; cat $<; echo ';')|"time" \
223
$(psqlAsBien) --echo-all --set=table='"$*"' $(logInstall*)
224
	-$(addRowNum)
225
	$(exportHeader)
226
# ignore errors if create.sql already added a primary key
227
addRowNum = echo 'ALTER TABLE "$(datasrc)"."$*"\
228
ADD COLUMN row_num serial NOT NULL PRIMARY KEY;'|$(psqlAsBien) $(logInstall*Add)
229

    
230
# The joined tables must be suffixed with ".src" to prevent the creation of a
231
# row_num column, which collides during joins.
232
isJoinedTable = $(filter %.src,$*)
233
hasRowNum = $(if $(isJoinedTable),,1)
234

    
235
%/install: _always
236
	$(if $(isRef),$(exportHeader),$(if $(nonXml),$(import_install_)))
237
import_install_ = (prefix=; . $(bin)/vegbien_dest; "time" nice -n +5\
238
env schema=$(datasrc) table=$* has_row_num=$(hasRowNum) $(bin)/csv2db\
239
$(catSrcs) $(logInstall*))
240

    
241
##### Maps building
242

    
243
# WARNING: You CANNOT make a subdir using `make inputs/<datasrc>/<subdir>/`.
244
# You must instead make the entire datasource dir: `make inputs/<datasrc>/`
245

    
246
# Maps to (try to) build are added to this
247
maps :=
248

    
249
srcRoot = $(mappings)/root.sh
250
mkSrcMap = $(catSrcs)|(. $(srcRoot); env datasrc=$(datasrc) $(bin)/src_map >$@)
251

    
252
# Via maps cleanup
253
ifneq ($(filter %/.map.csv.last_cleanup,$(MAKECMDGOALS)),)
254
%/.map.csv.last_cleanup: %/map.csv $(coreMap) $(dict)
255
	$(bin)/in_place $< $(bin)/canon 1 $(coreMap)
256
	$(bin)/in_place $< $(bin)/canon 1 $(dict)
257
	$(bin)/in_place $< $(bin)/translate 1 $(dict)
258
	touch $@
259
	+$(selfMake) $(<:%/map.csv=%/unmapped_terms.csv)
260
	+$(selfMake) $(<:%/map.csv=%/new_terms.csv)
261
# Include comment column so commented mappings are never removed
262
else
263
%/map.csv: _always
264
	$(if $(wildcard $@),,$(if $(nonXml),$(mkSrcMap)))
265
	+$(selfMake) $(@:%/map.csv=%/.map.csv.last_cleanup)
266
endif
267

    
268
%/VegBIEN.csv: %/map.csv $(coreMap)
269
	<$< $(bin)/cat_cols 1 2|$(bin)/join $(coreMap)|$(bin)/sort_map >$@
270
maps += $(autogenMaps)
271

    
272
maps: $(maps) _always ;
273

    
274
all += $(maps)
275

    
276
##### Maps validation
277

    
278
# `tail -n +2`: Remove header before running filter_out_ci because filter_out_ci
279
# only removes the header if it matches the vocabulary's header.
280
define newTerms
281
tail -n +2 $<|$(bin)/cols $(1)$(2) >$@
282
$(bin)/autoremove $@
283
endef
284

    
285
%/unmapped_terms.csv: %/map.csv $(coreMap)
286
	$(call newTerms,1,|$(bin)/filter_out_ci 0 $(coreMap))
287

    
288
%/new_terms.csv: %/map.csv $(coreMap) $(dict) %/unmapped_terms.csv
289
	$(call newTerms,0,$(rmNewTerms))
290
rmNewTerms = |$(bin)/filter_out_ci 0 $(coreMap)|$(bin)/filter_out_ci 0 $(dict)\
291
$(if $(wildcard $(word 4,$+)),|$(bin)/filter_out_ci 0 $(word 4,$+))
292

    
293
termsSubdirs := $(tables)
294

    
295
include $(root)/lib/mappings.Makefile
296

    
297
##### External dependencies
298

    
299
$(root)/%: _always
300
	+$(subMake)
301
.PRECIOUS: $(root)/% # let ext. dir's Makefile decide whether to delete on error
302

    
303
##### Mapping
304

    
305
+maps = $(filter %/map.csv %/VegBIEN.csv $(mappings)/%,$(+_))
306
map2db = env in_database=vegbien in_schema=$(datasrc) in_table=$*\
307
out_database=vegbien $(root)/map $(+maps)
308

    
309
##### Import to VegBIEN
310

    
311
profileTest = $(if $(profile),$(if $(test),1))
312
profileOnly = -env profile_to=/dev/fd/3 $(map2db) 3>&1 1>&2|\
313
$(bin)/profile_stats /dev/fd/0
314

    
315
log_ = $*/logs/$(if $(n),n=$(n).,)$(date).log.sql
316
trace = $(log_:.log.sql=.trace)
317
import = -$(if $(profileTest),$(profileOnly),(set -x; "time" env commit=1\
318
$(if $(profile),profile_to=$(trace)) $(map2db)) $(if $(log),\
319
$(if $(n),,&>$(log_)))$(if $(log),$(if $(n), 2>&1|tee -a $(log_))))
320
# don't abort on import errors, which often relate to invalid input data
321

    
322
import: $(tables:%=%/import) _always ;
323

    
324
%/import: %/VegBIEN.csv _always
325
	$(import)
326
# default:
327
%/import: _always ;
328

    
329
##### Log files from import
330

    
331
logs := $(wildcard */logs/*.log.sql */logs/*.trace)
332

    
333
rm_logs: _always
334
	$(RM) $(logs)
335

    
336
##### Verification of import
337

    
338
verify: $(tables:%=%/verify) _always ;
339

    
340
%/verify: verify/%.ref verify/%.out _always
341
	-$(diffVerbose) $(+_)
342
# don't abort on verification errors, which are expected during development
343
# default:
344
%/verify: verify/%.out _always
345
	$(if $(shell test -e $< && echo t),cat $<)
346
# don't run if verify/%.out's default do-nothing action was used
347
# can't use $(wildcard) because it won't recheck file after verify/%.out is run
348

    
349
psqlExport := "time" $(psqlAsBien) --no-align --field-separator=$$'\t'\
350
--pset=footer=off --pset=null=NULL
351
verify = $(if $(reverify),$(psqlExport) --set=datasource="'$(datasrc)'" <$< >$@)
352

    
353
verify/%.out: $(mappings)/verify.%.sql _always
354
	$(verify)
355
# default:
356
verify/%.out: _always ;
357

    
358
all += $(wildcard verify/*.out)
359

    
360
%.ref: %.ref.sql
361
	($(inDatasrc); cat $<)|$(psqlExport) >$@
362

    
363
##### Editing import
364

    
365
rotate: _always
366
	echo "UPDATE party SET organizationname = organizationname||'.$(date)'\
367
WHERE organizationname = '$(datasrc)';"|$(psqlAsBien)
368

    
369
rm: _always
370
	echo "DELETE FROM party WHERE organizationname = '$(datasrc)';"|\
371
$(psqlAsBien)
372

    
373
##### Testing
374

    
375
testRefOutput = $(subst .by_col,,$(1))
376
testRef = $(testRefOutput).ref
377
hasOwnRef = $(filter $@,$(call testRefOutput,$@))
378
# filter returns non-empty if they are equal
379

    
380
# `rm $@`: Remove outputs of successful tests to reduce clutter
381
# `$(foreach use_staged...)`: Run with use_staged=1
382
define runTest
383
@echo "Testing $(abspath $@)..."
384
>$@ env test=1 n=$(test_n) $(1) $(foreach use_staged,1,$(map2db))
385
@(set -x; $(diffIgnoreSpace) $(call testRef,$@) $@) 2>&1 && rm $@ || { e=$$?;\
386
$(if $(wildcard $(call testRef,$@)),,cat $@;)\
387
$(if $(hasOwnRef),\
388
{\
389
read -p $(emph)'Accept new test output? (y/n)'$(endEmph) REPLY;\
390
if test "$$REPLY" = y; then\
391
(set -x; $(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile);\
392
exit 0;\
393
fi;\
394
};,\
395
echo $(emph)"Note: The preceding failed test is compared to another test's\
396
output"$(endEmph);\
397
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
398
)\
399
exit $$e;}
400
endef
401

    
402
tests :=
403

    
404
# Requires staging tables. To create them, run `make inputs/<datasrc>/install`.
405
# Non-flat-file inputs fall back to mimicking a successful test
406
%/test.xml: %/VegBIEN.csv _always
407
	$(if $(nonXml),$(call runTest,by_col=))
408
tests += %/test.xml
409

    
410
%/test.by_col.xml: %/VegBIEN.csv _always
411
	$(if $(nonXml),$(call runTest,by_col=1))
412

    
413
# Only run column-based tests if column-based mode enabled, because these tests
414
# are much slower than the row-based tests for small numbers of rows
415
ifneq ($(by_col),)
416
tests += %/test.by_col.xml
417
endif
418

    
419
testOutputs := $(foreach test,$(tests),$(tables:%=$(test)))
420

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

    
423
test: _always $(testOutputs) ;
424

    
425
all += $(wildcard %/test*.xml)
426

    
427
# Accepts a test output: make <test_output_path>-ok
428
%-ok: _always
429
	mv $* $(call testRef,$*)
430

    
431
accept-all: _always
432
	+yes|$(selfMake) test
433

    
434
##### Documentation
435

    
436
steps = $(selfMake) -s $*/import test=1 by_col=1 verbosity=2 n=100\
437
2>&1|$(bin)/debug2redmine >$@
438

    
439
%/logs/steps.by_col.log.sql: _always
440
	+$(steps)
(4-4/4)