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