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
|
continue ?=
|
10
|
debug ?=
|
11
|
full_import ?=
|
12
|
import_source ?= 1
|
13
|
is_view ?=
|
14
|
log ?= $(if $(test),,1)
|
15
|
noclobber ?=
|
16
|
profile ?=
|
17
|
quiet ?=
|
18
|
reverify ?= 1
|
19
|
schema_only ?=
|
20
|
use_staged ?= $(by_col)
|
21
|
|
22
|
# Makefile
|
23
|
exts ?= csv tsv tab txt dat dmp xml
|
24
|
test_n ?= 2
|
25
|
|
26
|
##### Vars/functions
|
27
|
|
28
|
# Paths
|
29
|
datasrc := $(patsubst .%,%,$(notdir $(realpath .)))
|
30
|
bin := $(root)/bin
|
31
|
mappings := $(root)/mappings
|
32
|
|
33
|
# Make
|
34
|
SHELL := /bin/bash
|
35
|
selfMake = $(MAKE) --makefile=../input.Makefile
|
36
|
subMake = $(MAKE) "$(@:$(root)/%=%)" --directory=$(root)
|
37
|
+_ = $(+:_%=)
|
38
|
# used to filter the output of embedded $(shell make ...) invocations
|
39
|
filter_make := grep -vF -e lib -e ".Makefile'."
|
40
|
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
|
41
|
|
42
|
# Terminal
|
43
|
termCols := $(shell tput cols)
|
44
|
|
45
|
# Commands
|
46
|
MKDIR = mkdir -p
|
47
|
mkdir = $(MKDIR) $(@D)
|
48
|
diff = diff --unified=2
|
49
|
diffIgnoreSpace = $(diff) --ignore-space-change
|
50
|
diffVerbose = $(if $(verbose),diff --side-by-side --left-column\
|
51
|
--width=$(termCols),$(diff))
|
52
|
|
53
|
# BIEN commands
|
54
|
sortFilenames = $(shell $(bin)/sort_filenames $(1))
|
55
|
selfMap = $(bin)/cols 0 0
|
56
|
psqlAsBien := $(bin)/psql_verbose_vegbien
|
57
|
psqlNoSearchPath := env no_search_path=1 $(psqlAsBien)
|
58
|
# Usage: ($(inDatasrc); cat $(file))|$(psqlCmd)
|
59
|
inDatasrc := echo 'SET search_path TO "$(datasrc)";'
|
60
|
|
61
|
# SVN
|
62
|
setSvnIgnore = svn propset svn:ignore $(2) $(1)
|
63
|
define addDirWithIgnore
|
64
|
$(addDir)
|
65
|
$(setSvnIgnore)
|
66
|
endef
|
67
|
|
68
|
##### Environment
|
69
|
|
70
|
export PATH := $(bin):$(PATH)
|
71
|
|
72
|
##### General targets
|
73
|
|
74
|
all: _always maps ;
|
75
|
|
76
|
clean: _always
|
77
|
$(RM) $(all)
|
78
|
|
79
|
remake: _always clean
|
80
|
+$(selfMake)
|
81
|
# re-run make so that cache of existing files is reset
|
82
|
|
83
|
# Only remake if doesn't exist. This prevents unintentional remaking when the
|
84
|
# make script is newly checked out from svn (which sets the mod time to now) but
|
85
|
# the output is synced externally.
|
86
|
# Can't remove prereq to do this, because it determines when the rule applies.
|
87
|
make_script = $(if $(wildcard $@),,"time" ./$< >$@)
|
88
|
|
89
|
%/: %/map.csv _always ;
|
90
|
|
91
|
%/: % _always ;
|
92
|
|
93
|
%: %.make
|
94
|
$(make_script)
|
95
|
.PRECIOUS: % # save partial outputs of aborted src make scripts
|
96
|
|
97
|
##### Tables discovery
|
98
|
|
99
|
sortFile := import_order.txt
|
100
|
noImportFile := _no_import
|
101
|
|
102
|
dontImport = $(wildcard $(noImportFile))$(wildcard $(1)/$(noImportFile))$(if\
|
103
|
$(import_source),,$(filter Source,$(1)))
|
104
|
|
105
|
ifeq ($(sort_file_updated),)# keep $(sortFile) up-to-date
|
106
|
$(shell sort_file_updated=1 $(selfMake) $(sortFile)|$(filter_make) >&2)
|
107
|
export sort_file_updated=1
|
108
|
endif
|
109
|
|
110
|
sort_file_tables := $(if $(wildcard $(sortFile)),$(shell cat $(sortFile)))
|
111
|
# $(shell) replaces "\n" with " "
|
112
|
tables := $(sort_file_tables)
|
113
|
allSubdirs := $(call wildcard/,*/)
|
114
|
allTables := $(call sortFilenames,$(filter-out _% verify logs,$(allSubdirs:%/=%)))
|
115
|
joinedTables := $(filter-out $(tables),$(allTables))
|
116
|
allTables := $(strip $(joinedTables) $(tables))# move joined tables to beginning
|
117
|
has_visible_files = $(call wildcard/,$(1)/*)
|
118
|
allTables := $(foreach table,$(allTables),$(if\
|
119
|
$(call has_visible_files,$(table)),$(table)))
|
120
|
ifeq ($(tables),)# none specified in sort file
|
121
|
tables := $(allTables)
|
122
|
endif
|
123
|
importTables := $(foreach table,$(tables),$(if\
|
124
|
$(call dontImport,$(table)),,$(table)))
|
125
|
|
126
|
list_tables: _always # use `make -s` to avoid echoing commands
|
127
|
@for table in $(tables); do echo "$$table"; done
|
128
|
|
129
|
$(sortFile): _always
|
130
|
# add any missing tables to $(sortFile)
|
131
|
$(if $(filter-out $(sort_file_tables),$(tables)),$(selfMake) -s list_tables >$@)
|
132
|
|
133
|
##### SVN
|
134
|
|
135
|
svnFilesGlob:= */{,{,.}{data,map,VegBIEN}.csv{,.*},*header.*,*.sql,test.xml.ref}
|
136
|
svnFilesGlob := {map.csv,*{grants,validations,~}*.sql,{,*/}{*.make,*terms.csv},$(svnFilesGlob)}
|
137
|
_svnFilesGlob := {_MySQL/{,*.make},{,*/}{$(noImportFile),*{run,Makefile},*.{md5,url},*README.TXT}}
|
138
|
svnFiles = $(filter-out _% logs/% %.data.sql,$(call wildcard/,$(svnFilesGlob)))\
|
139
|
$(call wildcard/,$(_svnFilesGlob))
|
140
|
|
141
|
add: _always $(if $(call dontImport,.),,add!) ;
|
142
|
|
143
|
# To update all inputs with these settings: make inputs/add
|
144
|
add!: _always Source/add $(allTables:%=%/add)
|
145
|
$(call setSvnIgnore,.,'*')
|
146
|
$(call addDirWithIgnore,logs,$$'*.gz\n*.log.sql\n*.trace')
|
147
|
$(call addDirWithIgnore,verify,$$'*.csv\n*.out\n*.tsv\n*.txt\n*.xls\n*.xlsx')
|
148
|
$(call addFile,import_order.txt)
|
149
|
$(if $(wildcard _MySQL/),$(call addDirWithIgnore,_MySQL,'*'))
|
150
|
$(if $(wildcard _src/),$(call addDirWithIgnore,_src,'*'))
|
151
|
$(if $(wildcard _archive/),$(call addDirWithIgnore,_archive,'*'))
|
152
|
$(call add*,$(svnFiles))
|
153
|
|
154
|
# Adds a new table subdir
|
155
|
%/add: _always
|
156
|
$(call addDirWithIgnore,$*,'*')
|
157
|
$(call addDirWithIgnore,$*/logs,$$'*.gz\n*.log.sql\n*.trace')
|
158
|
|
159
|
##### Existing maps discovery
|
160
|
|
161
|
anyMap := %/map.csv %/VegBIEN.csv %/unmapped_terms.csv %/new_terms.csv
|
162
|
|
163
|
exts := $(call ci,$(exts))
|
164
|
extsFilter := $(addprefix %.,$(exts))
|
165
|
dataOnly = $(filter $(extsFilter),$(1))
|
166
|
|
167
|
anyTest = $*/test.%
|
168
|
srcsOnly = $(filter-out $(anyMap) $(anyTest) %/logs,$(call dataOnly,$(1)))
|
169
|
|
170
|
srcDict := map.csv
|
171
|
|
172
|
vocab := $(mappings)/VegCore.vocab.csv
|
173
|
thesaurus := $(mappings)/VegCore.thesaurus.csv
|
174
|
coreMap := $(mappings)/VegCore-VegBIEN.csv
|
175
|
|
176
|
viaMaps := $(tables:%=%/map.csv)
|
177
|
|
178
|
autogenMaps := $(subst map.,VegBIEN.,$(viaMaps))
|
179
|
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
|
180
|
$(wildcard */VegBIEN.csv))
|
181
|
|
182
|
##### Sources
|
183
|
|
184
|
srcs = $(call sortFilenames,$(call srcsOnly,$(wildcard $*/*)))
|
185
|
nonHeaderSrcs = $(filter-out %/header.csv,$(srcs))
|
186
|
isRef = $(if $(nonHeaderSrcs),,1)
|
187
|
# empty subdir, so references an already-installed staging table
|
188
|
isXml = $(filter %.xml,$(nonHeaderSrcs))
|
189
|
nonXml = $(if $(isXml),,1)
|
190
|
isCsv = $(if $(nonHeaderSrcs),$(if $(isXml),,1))
|
191
|
# true if $(srcs) non-empty and contains no *.xml
|
192
|
catSrcs = $(bin)/cat$(if $(nonXml),_csv) $(nonHeaderSrcs)
|
193
|
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) --
|
194
|
|
195
|
# Run with `make -s` to avoid echoing make commands
|
196
|
cat: $(importTables:%=%/cat) _always ;
|
197
|
|
198
|
%/cat: _always
|
199
|
$(catSrcs)
|
200
|
|
201
|
##### Input data retrieval
|
202
|
|
203
|
# Must come before `%.sql: _MySQL/%.sql` to override it
|
204
|
%.sql: %.sql.make
|
205
|
$(make_script)
|
206
|
|
207
|
# The export must be created with:
|
208
|
# `--compatible=postgresql --add-locks=false --set-charset --no-create-info`
|
209
|
# Must come before `%.sql: _MySQL/%.sql` to override it
|
210
|
%.data.sql: _MySQL/%.data.sql
|
211
|
$(if $(wildcard $@),,$(bin)/my2pg.data <$< >$@)
|
212
|
|
213
|
# The export must be created with:
|
214
|
# `--compatible=postgresql --add-locks=false --set-charset`
|
215
|
# Add `--no-data` to create a schema-only export.
|
216
|
%.sql: _MySQL/%.sql
|
217
|
$(if $(wildcard $@),,$(bin)/my2pg <$< >$@)
|
218
|
|
219
|
##### Staging tables installation
|
220
|
|
221
|
srcTable := %.src
|
222
|
|
223
|
dbExportsWildcard = $(sort $(patsubst _MySQL/%.make,%,$(wildcard\
|
224
|
$(1) _MySQL/$(1).make)))
|
225
|
|
226
|
dbExports := $(call dbExportsWildcard,*schema*.sql)# schemas first
|
227
|
ifeq ($(schema_only),) # add rest of .sql files
|
228
|
dbExports += $(filter-out $(dbExports),$(call dbExportsWildcard,*.sql))
|
229
|
endif
|
230
|
dbExports := $(filter-out grants.sql,$(dbExports))
|
231
|
dbExports := $(strip $(dbExports))# += adds extra whitespace
|
232
|
allInstalls := $(if $(dbExports),sql) $(allTables)
|
233
|
|
234
|
install: _always
|
235
|
$(if $(wildcard ./run),./run,+$(selfMake) install_oldstyle)
|
236
|
|
237
|
install_oldstyle: _always schema $(allInstalls:%=%/install) ;
|
238
|
|
239
|
uninstall: _always confirm_rm_schema rm_schema ;
|
240
|
# rm_schema will also drop all staging tables
|
241
|
|
242
|
reinstall: _always uninstall install ;
|
243
|
|
244
|
confirm_rm_schema: _always
|
245
|
$(if $(filter TNRS,$(datasrc)),$(call confirm,WARNING: This will delete the\
|
246
|
TNRS cache!,To save it: make backups/TNRS.backup-remake))
|
247
|
|
248
|
schema: _always
|
249
|
-echo 'CREATE SCHEMA "$(datasrc)";'|$(psqlNoSearchPath)
|
250
|
# ignore errors if schema exists
|
251
|
|
252
|
rm_schema: _always
|
253
|
echo 'DROP SCHEMA IF EXISTS "$(datasrc)" CASCADE;'|$(psqlNoSearchPath)
|
254
|
|
255
|
installLog := logs/install.log.sql
|
256
|
|
257
|
log_dir = $(1)logs
|
258
|
has_log_dir = $(call and,$(wildcard $(log_dir)),$(call not,$(noclobber)))
|
259
|
logInstall = $(if $(has_log_dir),$(if $(quiet),$(2)$(1)$(installLog)\
|
260
|
2>&1,2>&1|tee $(3) $(1)$(installLog)))
|
261
|
logInstallRoot = $(call logInstall,,>)
|
262
|
logInstall* = $(call logInstall,$*/,>)
|
263
|
logInstall*Add = $(call logInstall,$*/,>>,-a)# append to log
|
264
|
|
265
|
# Must come before %/install to override it
|
266
|
sql/install: $(dbExports)
|
267
|
set -o pipefail; ($(inDatasrc); cat $+|pg_dump_limit; $(if $(wildcard\
|
268
|
grants.sql),cat grants.sql))|"time" env no_search_path=1 \
|
269
|
$(bin)/psql_$(if $(debug),verbose,script)_vegbien --set=schema='"$(datasrc)"' \
|
270
|
$(logInstallRoot)
|
271
|
|
272
|
# $debug option runs the *.sql import verbosely, to display which statements are
|
273
|
# being run. this should only be used for SQL files that use COPY FROM to import
|
274
|
# data, to avoid echoing pages of insert statements.
|
275
|
cleanup = $(if $(wildcard $*/cleanup.sql),($(inDatasrc); cat $*/cleanup.sql)\
|
276
|
|"time" $(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add),\
|
277
|
(export schema=$(datasrc) table=$*; . $(bin)/vegbien_dest; unset schemas; \
|
278
|
$(bin)/csv2db) $(logInstall*Add))
|
279
|
|
280
|
%/header.csv:
|
281
|
set -o pipefail; \
|
282
|
echo 'COPY (SELECT * FROM "$(datasrc)"."$*" LIMIT 0) TO STDOUT CSV HEADER;'|\
|
283
|
env no_search_path=1 $(bin)/psql_script_vegbien >$*/header.csv
|
284
|
|
285
|
exportHeader = $(selfMake) "$*/header.csv"
|
286
|
|
287
|
# Don't try to edit a view. Must come before %/install to override it.
|
288
|
%_view/install: _always ;
|
289
|
|
290
|
%.sql/run: _always
|
291
|
$(if $(wildcard $(@D)),($(inDatasrc); cat $(@D))|(cd '$(*D)';\
|
292
|
"time" env no_search_path=1 ../$(bin)/psql_verbose_vegbien \
|
293
|
--set=table='"$(*D)"' --set=table_str=\''"$(*D)"'\'))
|
294
|
|
295
|
%/postprocess.sql: $(thesaurus) _always
|
296
|
$(if $(wildcard $*/run),$(bin)/in_place $@ env text=1 $(bin)/repl $<)
|
297
|
|
298
|
%/postprocess: _always
|
299
|
$(if $(wildcard $*/run),,$(selfMake) "$*/postprocess.sql/run")
|
300
|
|
301
|
%/map_table: _always
|
302
|
$(if $(wildcard $*/run),$*/run map_table)
|
303
|
|
304
|
# For staging tables which are derived by joining together other staging tables.
|
305
|
%/install: %/create.sql _always
|
306
|
set -o pipefail; \
|
307
|
($(inDatasrc); echo 'CREATE TABLE "$*" AS'; cat $<; echo ';')|"time" \
|
308
|
$(psqlNoSearchPath) --echo-all --set=schema='"$(datasrc)"' --set=table='"$*"' \
|
309
|
$(logInstall*)
|
310
|
$(selfMake) "$*/postprocess"
|
311
|
$(exportHeader)
|
312
|
$(cleanup)
|
313
|
|
314
|
%/install: _always
|
315
|
$(if $(isCsv),$(import_install_))
|
316
|
$(selfMake) "$*/postprocess"
|
317
|
-$(exportHeader)
|
318
|
-$(if $(isCsv),,$(cleanup))
|
319
|
# ignore errors if table does not exist (non-data dir)
|
320
|
define import_install_
|
321
|
(. $(bin)/vegbien_dest; unset schemas; "time" nice -n +5\
|
322
|
env schema=$(datasrc) table=$* $(bin)/csv2db $(catSrcs) $(logInstall*))
|
323
|
$(if $(filter $(srcTable),$*),($(inDatasrc);\
|
324
|
echo 'ALTER TABLE "$(datasrc)"."$*" RENAME row_num TO "$*.row_num";')|"time"\
|
325
|
$(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add))
|
326
|
endef
|
327
|
# table-scope src table's row_num col to allow joining it with other tables
|
328
|
|
329
|
%/uninstall: _always
|
330
|
echo 'DROP $(if\
|
331
|
$(is_view),VIEW,TABLE) IF EXISTS "$(datasrc)"."$*" CASCADE;'|$(psqlNoSearchPath)
|
332
|
|
333
|
%/reinstall: _always %/uninstall %/install ;
|
334
|
|
335
|
postprocess: _always $(allTables:%=%/postprocess) ;
|
336
|
|
337
|
cleanup: _always $(tables:%=%/cleanup) ;
|
338
|
|
339
|
# WARNING: This removes any index comments, due to a PostgreSQL bug.
|
340
|
# This occurs because ALTER TABLE recreates the index but not its comment.
|
341
|
%/cleanup: _always
|
342
|
$(cleanup)
|
343
|
|
344
|
##### Maps building
|
345
|
|
346
|
# Maps to (try to) build are added to this
|
347
|
maps :=
|
348
|
|
349
|
srcRoot = $(mappings)/root.sh
|
350
|
mkSrcMap = (. $(srcRoot); env datasrc=$(datasrc) $(bin)/src_map <$*/header.csv\
|
351
|
>$@)
|
352
|
|
353
|
translate = $(if $(wildcard $(1)),$(bin)/in_place $< $(bin)/translate_ci 1 $(1))
|
354
|
|
355
|
$(srcDict):# empty target in case it doesn't exist
|
356
|
|
357
|
# Via maps cleanup
|
358
|
ifneq ($(filter %/.map.csv.last_cleanup,$(MAKECMDGOALS)),)
|
359
|
%/.map.csv.last_cleanup: %/map.csv $(vocab) $(thesaurus) $(coreMap) $(srcDict)
|
360
|
$(call translate,$(srcDict))
|
361
|
$(bin)/in_place $< $(bin)/canon 1 $(vocab)
|
362
|
$(call translate,$(thesaurus))
|
363
|
$(bin)/in_place $< $(bin)/fix_line_endings
|
364
|
touch $@
|
365
|
+$(selfMake) $(<:%/map.csv=%/unmapped_terms.csv)
|
366
|
+$(selfMake) $(<:%/map.csv=%/new_terms.csv)
|
367
|
.PRECIOUS: %/.map.csv.last_cleanup
|
368
|
else
|
369
|
%/map.csv: _always
|
370
|
$(if $(wildcard $@),,$(mk_map_csv))
|
371
|
+$(selfMake) $(@:%/map.csv=%/.map.csv.last_cleanup)
|
372
|
define mk_map_csv
|
373
|
+$(selfMake) "$*/header.csv"
|
374
|
$(if $(nonXml),$(mkSrcMap))
|
375
|
endef
|
376
|
endif
|
377
|
|
378
|
%/VegBIEN.csv: %/map.csv $(coreMap)
|
379
|
$(if $(wildcard $*/run),-ln -s "../$(coreMap)" "$@"\
|
380
|
,<$< $(bin)/cat_cols 1 2|$(bin)/join $(coreMap)|$(bin)/sort_map >$@)
|
381
|
# ignore errors if symlink exists
|
382
|
maps += $(autogenMaps)
|
383
|
|
384
|
maps: $(maps) _always ;
|
385
|
|
386
|
all += $(maps)
|
387
|
|
388
|
##### Maps validation
|
389
|
|
390
|
# `tail -n +2`: Remove header before running filter_out_ci because filter_out_ci
|
391
|
# only removes the header if it matches the vocabulary's header.
|
392
|
|
393
|
%/unmapped_terms.csv: %/map.csv $(coreMap)
|
394
|
tail -n +2 $<|$(bin)/cols 1|$(bin)/filter_out_ci 0 $(coreMap) >$@
|
395
|
$(bin)/autoremove $@
|
396
|
|
397
|
%/new_terms.csv: %/map.csv $(vocab) $(thesaurus) %/unmapped_terms.csv
|
398
|
$(newTerms)
|
399
|
$(bin)/autoremove $@
|
400
|
newTerms = tail -n +2 $<|$(bin)/filter_out_ci 0 $(vocab)|$(bin)/filter_out_ci 0\
|
401
|
$(thesaurus) $(if $(wildcard $(word 4,$+)),|$(bin)/filter_out_ci 0 $(word 4,$+))\
|
402
|
|grep -vE -e '^"?:' -e 'UNUSED' >$@; exit 0 # grep exits nonzero if no match
|
403
|
|
404
|
termsSubdirs := $(tables)
|
405
|
|
406
|
include $(root)/lib/mappings.Makefile
|
407
|
|
408
|
##### External dependencies
|
409
|
|
410
|
$(root)/%: _always
|
411
|
+$(subMake)
|
412
|
.PRECIOUS: $(root)/% # let ext. dir's Makefile decide whether to delete on error
|
413
|
|
414
|
##### Mapping
|
415
|
|
416
|
+maps = $(filter %/map.csv %/VegBIEN.csv $(mappings)/%,$(+_))
|
417
|
map2db = env in_database=vegbien in_schema=$(datasrc) in_table=$*\
|
418
|
out_database=vegbien source=$(datasrc).new $(root)/map $(+maps)
|
419
|
|
420
|
##### Import to VegBIEN
|
421
|
|
422
|
import_temp: $(importTables:%=%/import) _always ;
|
423
|
|
424
|
import: _always import_temp publish ; # removes temp suffix when done
|
425
|
|
426
|
rm: _always
|
427
|
echo "SELECT datasource_rm('$(datasrc)');"|"time" $(psqlAsBien)
|
428
|
|
429
|
reimport: _always import ; # import replaces the previous import
|
430
|
|
431
|
profileTest = $(if $(profile),$(if $(test),1))
|
432
|
profileOnly = -env profile_to=/dev/fd/3 $(map2db) 3>&1 1>&2|\
|
433
|
$(bin)/profile_stats /dev/fd/0
|
434
|
|
435
|
log_ = $*/logs/$(if $(n),n=$(n).,)$(version).log.sql
|
436
|
|
437
|
# Displays the import log file path
|
438
|
# Run with `make -s` to avoid echoing make commands
|
439
|
%/log_file: _always
|
440
|
echo $$(pwd)/$(log_)
|
441
|
|
442
|
trace = $(log_:.log.sql=.trace)
|
443
|
restart_row = $(shell set -x; grep -F Partition: $(log_)|tail -1|$(sed)\
|
444
|
's/^.* rows ([[:digit:]]+)-.*$$/\1/')
|
445
|
import = $(if $(profileTest),$(profileOnly),(set -x; date; "time" env commit=1\
|
446
|
$(if $(profile),profile_to=$(trace)) $(if $(continue),start=$(restart_row))\
|
447
|
$(map2db))$(if $(log), >>$(log_) 2>&1))
|
448
|
|
449
|
import? = $(if $(call and,$(full_import),$(call dontImport,.)),,$(import))
|
450
|
|
451
|
%/import_temp: %/VegBIEN.csv _always
|
452
|
$(if $(full_import),-)$(import?)
|
453
|
# don't abort on import errors, which often relate to invalid input data
|
454
|
# default:
|
455
|
%/import_temp: _always ;
|
456
|
|
457
|
%/import: %/import_temp _always ;
|
458
|
|
459
|
#### Taxonomic scrubbing
|
460
|
|
461
|
scrub: _always
|
462
|
$(selfMake) $(root)/scrub & echo $$!
|
463
|
# using & (background process) also ignores TNRS errors, so that TNRS bugs do
|
464
|
# not prevent the remaining tables from being imported even if TNRS can't be run
|
465
|
|
466
|
# Removes TNRS taxondeterminations
|
467
|
unscrub: _always
|
468
|
echo "SELECT delete_scrubbed_taxondeterminations('$(datasrc)');"|\
|
469
|
"time" env no_query_results=1 $(psqlAsBien)
|
470
|
|
471
|
rescrub: _always unscrub scrub ;
|
472
|
|
473
|
import_scrub: _always import scrub ;
|
474
|
|
475
|
reimport_scrub: _always reimport scrub ;
|
476
|
|
477
|
%/import_scrub: _always %/import scrub ;
|
478
|
|
479
|
##### Log files from import
|
480
|
|
481
|
logs := $(wildcard */logs/*.log.sql */logs/*.trace)
|
482
|
|
483
|
rm_logs: _always
|
484
|
$(RM) $(logs)
|
485
|
|
486
|
##### Verification of import
|
487
|
|
488
|
verifyTables := $(patsubst verify/%.ref,%,$(wildcard verify/*.ref))
|
489
|
|
490
|
verify: $(verifyTables:%=%/verify) _always ;
|
491
|
|
492
|
%/verify: verify/%.ref verify/%.out _always
|
493
|
-$(diffVerbose) $(+_)
|
494
|
# don't abort on verification errors, which are expected during development
|
495
|
# default:
|
496
|
%/verify: verify/%.out _always
|
497
|
$(if $(shell test -e $< && echo t),cat $<)
|
498
|
# don't run if verify/%.out's default do-nothing action was used
|
499
|
# can't use $(wildcard) because it won't recheck file after verify/%.out is run
|
500
|
|
501
|
psqlExport := "time" $(psqlNoSearchPath) --no-align --field-separator=$$'\t'\
|
502
|
--pset=footer=off --pset=null=NULL
|
503
|
# Note that using $(inDatasrc) will not work with datasources whose tables are
|
504
|
# the same name as VegBIEN tables (likely only VegBank), because the datasource
|
505
|
# is first in the search_path.
|
506
|
verify = $(if $(reverify),($(inDatasrc); cat $<)|$(psqlExport)\
|
507
|
--set=datasource="'$(datasrc)'" >$@)
|
508
|
|
509
|
verify/%.out: verify/%.out.sql _always
|
510
|
$(verify)
|
511
|
.PRECIOUS: verify/%.out # save partial output in case of error to help debugging
|
512
|
# default:
|
513
|
verify/%.out: _always ;
|
514
|
|
515
|
all += $(wildcard verify/*.out)
|
516
|
|
517
|
%.ref: %.ref.sql
|
518
|
($(inDatasrc); cat $<)|$(psqlExport) >$@
|
519
|
.PRECIOUS: %.ref # there must always be a .ref for the make rules to work
|
520
|
|
521
|
##### Editing import
|
522
|
|
523
|
rename/%: _always
|
524
|
echo "UPDATE source SET shortname = '$*' WHERE shortname = '$(datasrc)';"\
|
525
|
|$(psqlAsBien)
|
526
|
|
527
|
%/publish: _always # usage: make inputs/src/src.version/publish
|
528
|
echo "SELECT datasource_publish('$*');"|$(psqlAsBien)
|
529
|
|
530
|
publish: _always $(datasrc).new/publish ; # usage: make inputs/src/publish
|
531
|
|
532
|
##### Testing
|
533
|
|
534
|
testRefOutput = $(subst .by_col,,$(1))
|
535
|
testRef = $(testRefOutput).ref
|
536
|
hasOwnRef = $(filter $@,$(call testRefOutput,$@))
|
537
|
# filter returns non-empty if they are equal
|
538
|
|
539
|
# `rm $@`: Remove outputs of successful tests to reduce clutter
|
540
|
# `$(foreach use_staged...)`: Run with use_staged=1
|
541
|
define runTest
|
542
|
@echo "Testing $(abspath $@)..."
|
543
|
>$@ env test=1 n=$(test_n) $(1) $(foreach use_staged,1,$(map2db))
|
544
|
$(if $(hasOwnRef),,-)@(set -x; $(diffIgnoreSpace) $(call testRef,$@) $@) 2>&1\
|
545
|
&& rm $@ || { e=$$?; $(if $(wildcard $(call testRef,$@)),,cat $@;)\
|
546
|
$(if $(hasOwnRef),\
|
547
|
{\
|
548
|
read -p $(emph)'Accept new test output? (y/n)'$(endEmph) REPLY;\
|
549
|
if test "$$REPLY" = y; then\
|
550
|
(set -x; $(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile);\
|
551
|
exit 0;\
|
552
|
fi;\
|
553
|
};,\
|
554
|
echo $(emph)"Note: The preceding failed test is compared to another test's\
|
555
|
output"$(endEmph);\
|
556
|
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
|
557
|
)\
|
558
|
exit $$e;}
|
559
|
endef
|
560
|
|
561
|
tests :=
|
562
|
|
563
|
%/test: %/test.xml $(if $(by_col),%/test.by_col.xml) _always ;
|
564
|
|
565
|
# Requires staging tables. To create them, run `make inputs/<datasrc>/install`.
|
566
|
# Non-flat-file inputs fall back to mimicking a successful test
|
567
|
%/test.xml: %/VegBIEN.csv _always
|
568
|
$(if $(nonXml),$(call runTest,by_col=))
|
569
|
tests += %/test.xml
|
570
|
|
571
|
%/test.by_col.xml: %/VegBIEN.csv _always
|
572
|
$(if $(nonXml),$(call runTest,by_col=1))
|
573
|
|
574
|
# Only run column-based tests if column-based mode enabled, because these tests
|
575
|
# are much slower than the row-based tests for small numbers of rows
|
576
|
ifneq ($(by_col),)
|
577
|
tests += %/test.by_col.xml
|
578
|
endif
|
579
|
|
580
|
testOutputs := $(foreach test,$(tests),$(tables:%=$(test)))
|
581
|
|
582
|
.PRECIOUS: $(testOutputs) # save outputs of failed tests so they can be accepted
|
583
|
|
584
|
test: _always $(testOutputs) ;
|
585
|
|
586
|
all += $(wildcard %/test*.xml)
|
587
|
|
588
|
# Accepts a test output: make <test_output_path>-ok
|
589
|
%-ok: _always
|
590
|
mv $* $(call testRef,$*)
|
591
|
|
592
|
accept-all: _always
|
593
|
+yes|$(selfMake) test
|
594
|
|
595
|
##### Documentation
|
596
|
|
597
|
steps = $(selfMake) -s $*/import test=1 by_col=1 verbosity=2 n=100\
|
598
|
2>&1|$(bin)/debug2redmine >$@
|
599
|
|
600
|
%/logs/steps.by_col.log.sql: _always
|
601
|
+$(steps)
|