Project

General

Profile

1 3761 aaronmk
selfDir_uZPPqC := $(dir $(lastword $(MAKEFILE_LIST)))
2
root := $(selfDir_uZPPqC)..
3
include $(root)/lib/common.Makefile
4
5
6 783 aaronmk
##### Configuration
7
8 1921 aaronmk
# Command line
9 1190 aaronmk
log ?= $(if $(test),,1)
10 1257 aaronmk
profile ?=
11 1983 aaronmk
quiet ?=
12 1620 aaronmk
reverify ?= 1
13 5810 aaronmk
schema_only ?=
14 1990 aaronmk
use_staged ?= $(by_col)
15 1921 aaronmk
16
# Makefile
17 5427 aaronmk
exts ?= csv tsv txt dmp xml
18 783 aaronmk
test_n ?= 2
19
20
##### Vars/functions
21
22 1821 aaronmk
# Paths
23 5008 aaronmk
datasrc := $(patsubst .%,%,$(notdir $(realpath .)))
24 1821 aaronmk
bin := $(root)/bin
25
mappings := $(root)/mappings
26
27 368 aaronmk
# Make
28 640 aaronmk
SHELL := /bin/bash
29 1509 aaronmk
selfMake = $(MAKE) --makefile=../input.Makefile
30 1821 aaronmk
subMake = $(MAKE) $(@:$(root)/%=%) --directory=$(root)
31 404 aaronmk
+_ = $(+:_%=)
32 368 aaronmk
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
33
34 640 aaronmk
# Terminal
35 1184 aaronmk
termCols := $(shell tput cols)
36 640 aaronmk
esc := '['
37
reset := $(esc)'0m'
38
emph := $(esc)'7m '
39
endEmph := ' '$(reset)
40
41 5209 aaronmk
# User interaction
42
43
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
44
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
45
$(error Aborting))
46
47 368 aaronmk
# Commands
48 1245 aaronmk
MKDIR = mkdir -p
49
mkdir = $(MKDIR) $(@D)
50 395 aaronmk
CP = cp -p
51 1184 aaronmk
diff = diff --unified=2
52 3721 aaronmk
diffIgnoreSpace = $(diff) --ignore-space-change
53 1184 aaronmk
diffVerbose = $(if $(verbose),diff --side-by-side --left-column\
54
--width=$(termCols),$(diff))
55 368 aaronmk
56 1918 aaronmk
# BIEN commands
57 4137 aaronmk
sortFilenames = $(shell $(bin)/sort_filenames $(1))
58 1524 aaronmk
selfMap = $(bin)/cols 0 0
59 1081 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
60 1289 aaronmk
psqlAsBien := $(bin)/psql_vegbien $(psqlOpts)
61 6186 aaronmk
psqlNoSearchPath := env no_search_path=1 $(psqlAsBien)
62 4408 aaronmk
# Usage: ($(inDatasrc); cat $(file))|$(psqlCmd)
63 6186 aaronmk
inDatasrc := echo 'SET search_path TO "$(datasrc)";'
64 353 aaronmk
65 1594 aaronmk
# SVN
66
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
67 1771 aaronmk
setSvnIgnore = svn propset svn:ignore $(2) $(1)
68 1594 aaronmk
define addDirWithIgnore
69
$(addDir)
70 1771 aaronmk
$(setSvnIgnore)
71 1594 aaronmk
endef
72
73 4414 aaronmk
##### Environment
74
75
export PATH := $(bin):$(PATH)
76
77 783 aaronmk
##### General targets
78 250 aaronmk
79 418 aaronmk
all: _always maps ;
80 247 aaronmk
81 383 aaronmk
clean: _always
82 256 aaronmk
	$(RM) $(all)
83
84 1742 aaronmk
remake: _always clean
85
	+$(selfMake)
86
# re-run make so that cache of existing files is reset
87
88 5876 aaronmk
# Only remake if doesn't exist. This prevents unintentional remaking when the
89
# make script is newly checked out from svn (which sets the mod time to now) but
90
# the output is synced externally.
91
# Can't remove prereq to do this, because it determines when the rule applies.
92
make_script = $(if $(wildcard $@),,"time" ./$< >$@)
93 368 aaronmk
94 1604 aaronmk
%/: % _always ;
95
96 4379 aaronmk
%: %.make
97 5876 aaronmk
	$(make_script)
98 4182 aaronmk
.PRECIOUS: % # save partial outputs of aborted src make scripts
99 1627 aaronmk
100 783 aaronmk
##### SVN
101 250 aaronmk
102 6156 aaronmk
noImportFile := _no_import
103
104
svnFilesGlob:= */{,$(noImportFile),{,.}{map,*terms,VegBIEN}.csv{,.*},*header.*,*.sql,test*.xml*}
105 6125 aaronmk
svnFilesGlob := {map.csv,*{schema,~}*.sql,{,*/}*.make,$(svnFilesGlob)}
106 6064 aaronmk
_svnFilesGlob := {_MySQL/{,*schema*.sql,*.make},_src/*.{url,pdf}}
107 5923 aaronmk
svnFiles = $(filter-out _% logs/%,$(call wildcard/,$(svnFilesGlob)))\
108
$(call wildcard/,$(_svnFilesGlob))
109 5878 aaronmk
110 4221 aaronmk
add: _always
111 4182 aaronmk
	$(call setSvnIgnore,.,'*')
112 4459 aaronmk
	$(call addDirWithIgnore,logs,$$'*.log.sql\n*.trace')
113 4124 aaronmk
	$(call addDirWithIgnore,verify,'*.out')
114 4223 aaronmk
	$(call addFile,import_order.txt)
115 6014 aaronmk
	$(if $(wildcard _MySQL/),$(call addDirWithIgnore,_MySQL,'*'))
116 6064 aaronmk
	$(if $(wildcard _src/),$(call addDirWithIgnore,_src,'*'))
117 5921 aaronmk
	$(call add*,$(svnFiles))
118 766 aaronmk
119 4217 aaronmk
# Adds a new table subdir
120
%/add: _always
121
	$(call addDirWithIgnore,$*,'*')
122
	$(call addDirWithIgnore,$*/logs,$$'*.log.sql\n*.trace')
123
124 1969 aaronmk
##### Existing maps discovery
125 1955 aaronmk
126 4182 aaronmk
sortFile := import_order.txt
127 4181 aaronmk
128 6156 aaronmk
dontImport = $(wildcard $(1)/$(noImportFile))
129
130 4253 aaronmk
tables := $(if $(wildcard $(sortFile)),$(shell cat $(sortFile)))
131
    # $(shell) replaces "\n" with " "
132 4182 aaronmk
allSubdirs := $(call wildcard/,*/)
133 4464 aaronmk
allTables := $(call sortFilenames,$(filter-out _% verify logs,$(allSubdirs:%/=%)))
134 4256 aaronmk
joinedTables := $(filter-out $(tables),$(allTables))
135 6170 aaronmk
allTables := $(strip $(joinedTables) $(tables))# move joined tables to beginning
136 4253 aaronmk
ifeq ($(tables),)# none specified in sort file
137
tables := $(allTables)
138 4181 aaronmk
endif
139 6156 aaronmk
importTables := $(foreach table,$(tables),$(if\
140
$(call dontImport,$(table)),,$(table)))
141 4137 aaronmk
142 5035 aaronmk
anyMap := %/map.csv %/VegBIEN.csv %/unmapped_terms.csv %/new_terms.csv
143 3574 aaronmk
144 4214 aaronmk
extsFilter := $(addprefix %.,$(exts))
145
dataOnly = $(filter $(extsFilter),$(1))
146
147 4182 aaronmk
anyTest = $*/test.%
148 4214 aaronmk
srcsOnly = $(filter-out $(anyMap) $(anyTest) %/logs,$(call dataOnly,$(1)))
149 4120 aaronmk
150 6071 aaronmk
srcDict := map.csv
151
152 4844 aaronmk
vocab := $(mappings)/VegCore.csv
153 4658 aaronmk
coreMap := $(mappings)/VegCore-VegBIEN.csv
154 4687 aaronmk
dict := $(mappings)/Veg+-VegCore.csv
155 783 aaronmk
156 6157 aaronmk
viaMaps := $(importTables:%=%/map.csv)
157 783 aaronmk
158 4117 aaronmk
autogenMaps := $(subst map.,VegBIEN.,$(viaMaps))
159 728 aaronmk
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
160 4182 aaronmk
$(wildcard */VegBIEN.csv))
161 728 aaronmk
162 1969 aaronmk
##### Sources
163
164 4182 aaronmk
srcs = $(call sortFilenames,$(call srcsOnly,$(wildcard $*/*)))
165 4450 aaronmk
nonHeaderSrcs = $(filter-out %/header.csv,$(srcs))
166
isRef = $(if $(nonHeaderSrcs),,1)
167
    # empty subdir, so references an already-installed staging table
168 4452 aaronmk
isXml = $(filter %.xml,$(nonHeaderSrcs))
169
nonXml = $(if $(isXml),,1)
170
isCsv = $(if $(nonHeaderSrcs),$(if $(isXml),,1))
171 1969 aaronmk
    # true if $(srcs) non-empty and contains no *.xml
172 4465 aaronmk
catSrcs = $(bin)/cat$(if $(nonXml),_csv) $(srcs)
173 1969 aaronmk
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) --
174
175 1986 aaronmk
# Usage: `make {--silent|-s} inputs/<datasrc>/cat` (don't echo make commands)
176 6157 aaronmk
cat: $(importTables:%=%/cat) _always ;
177 1969 aaronmk
178 4252 aaronmk
%/cat: _always
179 1969 aaronmk
	$(catSrcs)
180
181 4121 aaronmk
##### Staging tables installation
182 1921 aaronmk
183 5693 aaronmk
srcTable := %.src
184
185 5898 aaronmk
dbExports := $(sort $(wildcard *schema*.sql))# schemas first
186 5810 aaronmk
ifeq ($(schema_only),)
187 4534 aaronmk
dbExports += $(sort $(filter-out $(dbExports),$(wildcard *.sql)))# all others
188 5810 aaronmk
endif
189 4438 aaronmk
dbExports := $(strip $(dbExports))# += adds extra whitespace
190 4425 aaronmk
allInstalls := $(if $(dbExports),sql) $(allTables)
191 1921 aaronmk
192 4413 aaronmk
install: _always schema $(allInstalls:%=%/install) ;
193
194 5209 aaronmk
uninstall: _always confirm_rm_schema rm_schema ;
195 4121 aaronmk
# rm_schema will also drop all staging tables
196 1921 aaronmk
197
reinstall: _always uninstall install ;
198
199 5209 aaronmk
confirm_rm_schema: _always
200
	$(if $(filter TNRS,$(datasrc)),$(call confirm,WARNING: This will delete the\
201
TNRS cache!,To save it: make backups/TNRS.backup-remake))
202
203 4121 aaronmk
schema: _always
204 6186 aaronmk
	-echo 'CREATE SCHEMA "$(datasrc)";'|$(psqlNoSearchPath)
205 1921 aaronmk
# ignore errors if schema exists
206
207 4121 aaronmk
rm_schema: _always
208 6186 aaronmk
	echo 'DROP SCHEMA IF EXISTS "$(datasrc)" CASCADE;'|$(psqlNoSearchPath)
209 1921 aaronmk
210 5162 aaronmk
installLog := logs/install.log.sql
211 4453 aaronmk
212 5162 aaronmk
logInstall = $(if $(log),$(if $(quiet),$(2)$(1)$(installLog) 2>&1,2>&1|tee $(3)\
213
$(1)$(installLog)))
214 5692 aaronmk
logInstallRoot = $(call logInstall,,>)
215 5162 aaronmk
logInstall* = $(call logInstall,$*/,>)
216
logInstall*Add = $(call logInstall,$*/,>>,-a)# append to log
217
218 4413 aaronmk
# Must come before %/install to override it
219 4434 aaronmk
sql/install: $(dbExports)
220 6186 aaronmk
	($(inDatasrc); cat $+|pg_dump_limit)|"time" $(psqlNoSearchPath) \
221 5796 aaronmk
--set=schema='"$(datasrc)"' $(logInstallRoot)
222 4413 aaronmk
223 5877 aaronmk
# Must come before `%.sql: _MySQL/%.sql` to override it
224
%.sql: %.sql.make
225
	$(make_script)
226
227 4423 aaronmk
# The export must be created with:
228 4429 aaronmk
# `--compatible=postgresql --add-locks=false --set-charset --no-create-info`
229 4431 aaronmk
# Must come before `%.sql: _MySQL/%.sql` to override it
230 4429 aaronmk
%.data.sql: _MySQL/%.data.sql
231 5942 aaronmk
	$(if $(wildcard $@),,$(bin)/my2pg.data <$< >$@)
232 4429 aaronmk
233 4431 aaronmk
# The export must be created with:
234
# `--compatible=postgresql --add-locks=false --set-charset`
235
# Add `--no-data` to create a schema-only export.
236
%.sql: _MySQL/%.sql
237 5942 aaronmk
	$(if $(wildcard $@),,$(bin)/my2pg <$< >$@)
238 4431 aaronmk
239 5795 aaronmk
cleanup = $(if $(wildcard $*/cleanup.sql),($(inDatasrc); cat $*/cleanup.sql)\
240 6186 aaronmk
|"time" $(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add),\
241
(prefix=; . $(bin)/vegbien_dest; unset schemas; env schema=$(datasrc) table=$*\
242
$(bin)/csv2db) $(logInstall*Add))
243 4449 aaronmk
244
define exportHeader
245
$(cleanup)
246 6186 aaronmk
echo 'SELECT * FROM "$(datasrc)"."$*" LIMIT 0;'|$(psqlNoSearchPath) \
247 4449 aaronmk
--no-align --field-separator=, --pset=footer=off >$*/header.csv
248
endef
249
250 4260 aaronmk
# For staging tables which are derived by joining together other staging tables.
251 4263 aaronmk
%/install %/header.csv: %/create.sql _always
252 4527 aaronmk
	($(inDatasrc); echo 'CREATE TABLE "$*" AS'; cat $<; echo ';')|"time" \
253 6186 aaronmk
$(psqlNoSearchPath) --echo-all --set=schema='"$(datasrc)"' --set=table='"$*"' \
254 5912 aaronmk
$(logInstall*)
255 4449 aaronmk
	$(exportHeader)
256 5441 aaronmk
.PRECIOUS: %/header.csv
257 4260 aaronmk
258 4252 aaronmk
%/install: _always
259 4456 aaronmk
	$(if $(isRef),$(exportHeader),$(if $(nonXml),$(import_install_)))
260 6078 aaronmk
	$(if $(wildcard $*/postprocess.sql),($(inDatasrc); cat $*/postprocess.sql;)\
261 6186 aaronmk
|"time" $(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add))
262 5693 aaronmk
define import_install_
263 6186 aaronmk
(prefix=; . $(bin)/vegbien_dest; unset schemas; "time" nice -n +5\
264 5028 aaronmk
env schema=$(datasrc) table=$* $(bin)/csv2db $(catSrcs) $(logInstall*))
265 5693 aaronmk
$(if $(filter $(srcTable),$*),($(inDatasrc);\
266
echo 'ALTER TABLE "$(datasrc)"."$*" RENAME row_num TO "$*.row_num";')|"time"\
267 6186 aaronmk
$(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add))
268 5693 aaronmk
endef
269 5697 aaronmk
# table-scope src table's row_num col to allow joining it with other tables
270 1921 aaronmk
271 5819 aaronmk
%/uninstall: _always
272 6186 aaronmk
	echo 'DROP TABLE IF EXISTS "$(datasrc)"."$*" CASCADE;'|$(psqlNoSearchPath)
273 5819 aaronmk
274
%/reinstall: _always %/uninstall %/install ;
275
276 5155 aaronmk
cleanup: _always $(tables:%=%/cleanup) ;
277
278 5184 aaronmk
# WARNING: This removes any index comments, due to a PostgreSQL bug.
279
# This occurs because ALTER TABLE recreates the index but not its comment.
280 5155 aaronmk
%/cleanup: _always
281
	$(cleanup)
282
283 1777 aaronmk
##### Maps building
284
285 4345 aaronmk
# WARNING: You CANNOT make a subdir using `make inputs/<datasrc>/<subdir>/`.
286
# You must instead make the entire datasource dir: `make inputs/<datasrc>/`
287
288 4646 aaronmk
# Maps to (try to) build are added to this
289 1779 aaronmk
maps :=
290
291 4208 aaronmk
srcRoot = $(mappings)/root.sh
292 3569 aaronmk
mkSrcMap = $(catSrcs)|(. $(srcRoot); env datasrc=$(datasrc) $(bin)/src_map >$@)
293 1779 aaronmk
294 6074 aaronmk
define translate
295
$(bin)/in_place $< $(bin)/canon 1 $(1)
296
$(bin)/in_place $< $(bin)/translate 1 $(1)
297
endef
298
translate? = $(if $(wildcard $(1)),$(translate))
299
300 6076 aaronmk
$(srcDict):# empty target in case it doesn't exist
301
302 3572 aaronmk
# Via maps cleanup
303 4182 aaronmk
ifneq ($(filter %/.map.csv.last_cleanup,$(MAKECMDGOALS)),)
304 6076 aaronmk
%/.map.csv.last_cleanup: %/map.csv $(vocab) $(dict) $(coreMap) $(srcDict)
305 6074 aaronmk
	$(call translate?,$(srcDict))
306 4844 aaronmk
	$(bin)/in_place $< $(bin)/canon 1 $(vocab)
307 6077 aaronmk
	$(call translate?,$(dict))
308 3572 aaronmk
	touch $@
309 4601 aaronmk
	+$(selfMake) $(<:%/map.csv=%/unmapped_terms.csv)
310
	+$(selfMake) $(<:%/map.csv=%/new_terms.csv)
311 5253 aaronmk
.PRECIOUS: %/.map.csv.last_cleanup
312 3572 aaronmk
else
313 4644 aaronmk
%/map.csv: _always
314
	$(if $(wildcard $@),,$(if $(nonXml),$(mkSrcMap)))
315 4182 aaronmk
	+$(selfMake) $(@:%/map.csv=%/.map.csv.last_cleanup)
316 5254 aaronmk
.PRECIOUS: %/map.csv
317 3572 aaronmk
endif
318
319 4641 aaronmk
%/VegBIEN.csv: %/map.csv $(coreMap)
320 4656 aaronmk
	<$< $(bin)/cat_cols 1 2|$(bin)/join $(coreMap)|$(bin)/sort_map >$@
321 1530 aaronmk
maps += $(autogenMaps)
322
323 4646 aaronmk
maps: $(maps) _always ;
324 1139 aaronmk
325
all += $(maps)
326
327 1742 aaronmk
##### Maps validation
328
329 4663 aaronmk
# `tail -n +2`: Remove header before running filter_out_ci because filter_out_ci
330
# only removes the header if it matches the vocabulary's header.
331 4601 aaronmk
332 4664 aaronmk
%/unmapped_terms.csv: %/map.csv $(coreMap)
333 4858 aaronmk
	tail -n +2 $<|$(bin)/cols 1|$(bin)/filter_out_ci 0 $(coreMap) >$@
334
	$(bin)/autoremove $@
335 4601 aaronmk
336 4844 aaronmk
%/new_terms.csv: %/map.csv $(vocab) $(dict) %/unmapped_terms.csv
337 4857 aaronmk
	$(newTerms)
338
	$(bin)/autoremove $@
339
newTerms = tail -n +2 $<|$(bin)/filter_out_ci 0 $(vocab)|$(bin)/filter_out_ci 0\
340 5926 aaronmk
$(dict) $(if $(wildcard $(word 4,$+)),|$(bin)/filter_out_ci 0 $(word 4,$+))\
341 5932 aaronmk
|grep -vE '^"?:' >$@; exit 0# because grep exits nonzero if no match
342 4601 aaronmk
343 6157 aaronmk
termsSubdirs := $(importTables)
344 4600 aaronmk
345 3764 aaronmk
include $(root)/lib/mappings.Makefile
346 1742 aaronmk
347 1509 aaronmk
##### External dependencies
348
349
$(root)/%: _always
350
	+$(subMake)
351 1628 aaronmk
.PRECIOUS: $(root)/% # let ext. dir's Makefile decide whether to delete on error
352 1509 aaronmk
353 783 aaronmk
##### Mapping
354 368 aaronmk
355 4182 aaronmk
+maps = $(filter %/map.csv %/VegBIEN.csv $(mappings)/%,$(+_))
356 4746 aaronmk
map2db = env in_database=vegbien in_schema=$(datasrc) in_table=$*\
357 4748 aaronmk
out_database=vegbien $(root)/map $(+maps)
358 368 aaronmk
359 783 aaronmk
##### Import to VegBIEN
360 772 aaronmk
361 1853 aaronmk
profileTest = $(if $(profile),$(if $(test),1))
362
profileOnly = -env profile_to=/dev/fd/3 $(map2db) 3>&1 1>&2|\
363
$(bin)/profile_stats /dev/fd/0
364
365 5457 aaronmk
log_ = $*/logs/$(if $(n),n=$(n).,)$(version).log.sql
366 3317 aaronmk
trace = $(log_:.log.sql=.trace)
367 1853 aaronmk
import = -$(if $(profileTest),$(profileOnly),(set -x; "time" env commit=1\
368 1190 aaronmk
$(if $(profile),profile_to=$(trace)) $(map2db)) $(if $(log),\
369 3616 aaronmk
$(if $(n),,&>$(log_)))$(if $(log),$(if $(n), 2>&1|tee -a $(log_))))
370 1088 aaronmk
# don't abort on import errors, which often relate to invalid input data
371 624 aaronmk
372 6156 aaronmk
import: $(importTables:%=%/import) _always ;
373 718 aaronmk
374 4252 aaronmk
%/import: %/VegBIEN.csv _always
375 718 aaronmk
	$(import)
376 772 aaronmk
# default:
377 4252 aaronmk
%/import: _always ;
378 718 aaronmk
379 790 aaronmk
##### Log files from import
380
381 4182 aaronmk
logs := $(wildcard */logs/*.log.sql */logs/*.trace)
382 339 aaronmk
383 383 aaronmk
rm_logs: _always
384 339 aaronmk
	$(RM) $(logs)
385
386 783 aaronmk
##### Verification of import
387 264 aaronmk
388 5782 aaronmk
verifyTables := $(patsubst verify/%.ref,%,$(wildcard verify/*.ref))
389 1194 aaronmk
390 5782 aaronmk
verify: $(verifyTables:%=%/verify) _always ;
391
392 4252 aaronmk
%/verify: verify/%.ref verify/%.out _always
393 1184 aaronmk
	-$(diffVerbose) $(+_)
394 1088 aaronmk
# don't abort on verification errors, which are expected during development
395 1194 aaronmk
# default:
396 4252 aaronmk
%/verify: verify/%.out _always
397 1200 aaronmk
	$(if $(shell test -e $< && echo t),cat $<)
398 1199 aaronmk
# don't run if verify/%.out's default do-nothing action was used
399 1200 aaronmk
# can't use $(wildcard) because it won't recheck file after verify/%.out is run
400 368 aaronmk
401 6186 aaronmk
psqlExport := "time" $(psqlNoSearchPath) --no-align --field-separator=$$'\t'\
402 4401 aaronmk
--pset=footer=off --pset=null=NULL
403 5976 aaronmk
# Note that using $(inDatasrc) will not work with datasources whose tables are
404
# the same name as VegBIEN tables (likely only VegBank), because the datasource
405
# is first in the search_path.
406
verify = $(if $(reverify),($(inDatasrc); cat $<)|$(psqlExport)\
407
--set=datasource="'$(datasrc)'" >$@)
408 514 aaronmk
409 1199 aaronmk
verify/%.out: $(mappings)/verify.%.sql _always
410 1192 aaronmk
	$(verify)
411 5973 aaronmk
.PRECIOUS: verify/%.out # save partial output in case of error to help debugging
412 1194 aaronmk
# default:
413 1199 aaronmk
verify/%.out: _always ;
414 369 aaronmk
415 1199 aaronmk
all += $(wildcard verify/*.out)
416 1192 aaronmk
417 4402 aaronmk
%.ref: %.ref.sql
418 4409 aaronmk
	($(inDatasrc); cat $<)|$(psqlExport) >$@
419 5981 aaronmk
.PRECIOUS: %.ref # there must always be a .ref for the make rules to work
420 4402 aaronmk
421 1667 aaronmk
##### Editing import
422
423 4121 aaronmk
rotate: _always
424 5457 aaronmk
	echo "UPDATE party SET organizationname = organizationname||'.$(version)'\
425 1854 aaronmk
WHERE organizationname = '$(datasrc)';"|$(psqlAsBien)
426 1667 aaronmk
427 4121 aaronmk
rm: _always
428 1854 aaronmk
	echo "DELETE FROM party WHERE organizationname = '$(datasrc)';"|\
429
$(psqlAsBien)
430 1667 aaronmk
431 783 aaronmk
##### Testing
432 368 aaronmk
433 4274 aaronmk
testRefOutput = $(subst .by_col,,$(1))
434 1986 aaronmk
testRef = $(testRefOutput).ref
435
hasOwnRef = $(filter $@,$(call testRefOutput,$@))
436
# filter returns non-empty if they are equal
437 630 aaronmk
438 4246 aaronmk
# `rm $@`: Remove outputs of successful tests to reduce clutter
439 4272 aaronmk
# `$(foreach use_staged...)`: Run with use_staged=1
440 897 aaronmk
define runTest
441 776 aaronmk
@echo "Testing $(abspath $@)..."
442 4272 aaronmk
>$@ env test=1 n=$(test_n) $(1) $(foreach use_staged,1,$(map2db))
443 4246 aaronmk
@(set -x; $(diffIgnoreSpace) $(call testRef,$@) $@) 2>&1 && rm $@ || { e=$$?;\
444 780 aaronmk
$(if $(wildcard $(call testRef,$@)),,cat $@;)\
445 777 aaronmk
$(if $(hasOwnRef),\
446 3179 aaronmk
{\
447
read -p $(emph)'Accept new test output? (y/n)'$(endEmph) REPLY;\
448
if test "$$REPLY" = y; then\
449
(set -x; $(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile);\
450
exit 0;\
451
fi;\
452
};,\
453 777 aaronmk
echo $(emph)"Note: The preceding failed test is compared to another test's\
454
output"$(endEmph);\
455
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
456
)\
457 652 aaronmk
exit $$e;}
458 628 aaronmk
endef
459
460 876 aaronmk
tests :=
461
462 4269 aaronmk
# Requires staging tables. To create them, run `make inputs/<datasrc>/install`.
463
# Non-flat-file inputs fall back to mimicking a successful test
464 4182 aaronmk
%/test.xml: %/VegBIEN.csv _always
465 4452 aaronmk
	$(if $(nonXml),$(call runTest,by_col=))
466 4182 aaronmk
tests += %/test.xml
467 627 aaronmk
468 4274 aaronmk
%/test.by_col.xml: %/VegBIEN.csv _always
469 4831 aaronmk
	$(if $(nonXml),$(call runTest,by_col=1))
470 4275 aaronmk
471
# Only run column-based tests if column-based mode enabled, because these tests
472
# are much slower than the row-based tests for small numbers of rows
473
ifneq ($(by_col),)
474 4274 aaronmk
tests += %/test.by_col.xml
475 4275 aaronmk
endif
476 4274 aaronmk
477 6157 aaronmk
testOutputs := $(foreach test,$(tests),$(importTables:%=$(test)))
478 724 aaronmk
479 1361 aaronmk
.PRECIOUS: $(testOutputs) # save outputs of failed tests so they can be accepted
480
481 876 aaronmk
test: _always $(testOutputs) ;
482
483 4182 aaronmk
all += $(wildcard %/test*.xml)
484 876 aaronmk
485 634 aaronmk
# Accepts a test output: make <test_output_path>-ok
486 626 aaronmk
%-ok: _always
487 4383 aaronmk
	mv $* $(call testRef,$*)
488 502 aaronmk
489 4120 aaronmk
accept-all: _always
490 3579 aaronmk
	+yes|$(selfMake) test
491
492 3133 aaronmk
##### Documentation
493
494 4494 aaronmk
steps = $(selfMake) -s $*/import test=1 by_col=1 verbosity=2 n=100\
495 3385 aaronmk
2>&1|$(bin)/debug2redmine >$@
496 3188 aaronmk
497 4182 aaronmk
%/logs/steps.by_col.log.sql: _always
498 3188 aaronmk
	+$(steps)