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