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