Project

General

Profile

1 5459 aaronmk
root := .
2 3762 aaronmk
include lib/common.Makefile
3
4
5 784 aaronmk
##### Vars/functions
6
7 244 aaronmk
# Make
8 247 aaronmk
SHELL := /bin/bash
9 625 aaronmk
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@)
10 244 aaronmk
11 4607 aaronmk
# Paths
12
bin := bin
13
14 241 aaronmk
# Terminal
15 247 aaronmk
esc := '['
16
reset := $(esc)'0m'
17
emph := $(esc)'7m '
18
endEmph := ' '$(reset)
19 245 aaronmk
20
# User interaction
21
22 1745 aaronmk
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
23 245 aaronmk
24 247 aaronmk
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
25 245 aaronmk
26 2090 aaronmk
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
27
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
28
$(error Aborting))
29 235 aaronmk
30 335 aaronmk
# File editing
31
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
32
33 2091 aaronmk
# DB
34
mkSchemaCmd = 'CREATE SCHEMA $(1);'
35 3380 aaronmk
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
36 2091 aaronmk
37 784 aaronmk
##### Environment
38
39 225 aaronmk
export PGOPTIONS = --client-min-messages=WARNING
40
41 784 aaronmk
##### General targets
42 225 aaronmk
43 1274 aaronmk
remake: _always clean
44
	$(MAKE)
45
# re-run make so that cache of existing files is reset
46
47 1288 aaronmk
%/remake: _always
48
	$(MAKE) $(@D)/clean
49
	$(MAKE) $(@D)/
50
# re-run make so that cache of existing files is reset
51
52 1813 aaronmk
%-remake: _always
53
	rm -f $*
54
	$(MAKE) $*
55
# re-run make so that cache of existing files is reset
56
57 2981 aaronmk
%/reinstall: _always %/uninstall %/install ;
58
59 784 aaronmk
##### Installation
60 241 aaronmk
61 6102 aaronmk
# public must be installed *after* inputs because some views depend on inputs
62
install: _always core mysql inputs/download inputs/install schemas/install test
63 241 aaronmk
	@$(done)
64 202 aaronmk
65 6200 aaronmk
uninstall: _always rm_mysql rm_core ;
66 241 aaronmk
67 418 aaronmk
reinstall: _always uninstall install ;
68 225 aaronmk
69 784 aaronmk
##### Core: VegBIEN DB and dependencies
70 202 aaronmk
71 1746 aaronmk
core: _always $(call forOs,python php postgres) db
72 241 aaronmk
	@$(done)
73 235 aaronmk
74 1746 aaronmk
rm_core: _always rm_db ;
75 241 aaronmk
76 418 aaronmk
reinstall_core: _always rm_core core ;
77 241 aaronmk
78 784 aaronmk
##### Python
79
80 383 aaronmk
python-Linux: _always
81 6544 aaronmk
	-sudo apt-get --yes install python
82
	-sudo apt-get --yes install python3
83
	-sudo apt-get --yes install python-dev
84
	-sudo apt-get --yes install python-dateutil
85
	-sudo apt-get --yes install python-parallel
86
	-sudo apt-get --yes install python-profiler
87
	-sudo apt-get --yes install python-pip
88
	-sudo apt-get --yes install pymetrics
89 3156 aaronmk
	-sudo pip install ordereddict
90 1845 aaronmk
	-sudo pip install pp
91 284 aaronmk
92 383 aaronmk
python-Darwin: _always
93 6190 aaronmk
	@echo $(emph)'Installing Python 3.2 on Mac OS X:'$(endEmph)
94
	@echo 'Download it: http://www.python.org/ftp/python/3.2.3/python-3.2.3-macosx10.6.dmg'
95
	@echo 'Open the disk image'
96
	@echo 'Run the installer in it'
97
	@$(wait)
98 284 aaronmk
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
99
	@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
100
	@echo 'Extract the archive'
101
	@echo 'Change to the directory of the extracted files'
102
	@echo 'Run python setup.py build'
103
	@echo 'Run sudo python setup.py install'
104
	@echo "Run python -c 'import dateutil'"
105
	@$(wait)
106 3156 aaronmk
	@echo $(emph)'Installing pip on Mac OS X:'$(endEmph)
107
	@echo 'Follow the instructions at http://www.pip-installer.org/en/latest/installing.html'
108
	@$(wait)
109 284 aaronmk
110 1599 aaronmk
##### PHP
111
112
php-Linux: _always
113 6544 aaronmk
	-sudo apt-get --yes install php-http-request
114 1599 aaronmk
115
php-Darwin: _always
116 1600 aaronmk
	@echo $(emph)'Installing PHP PEAR and HTTP_Request on Mac OS X:'$(endEmph)
117
	@echo 'Download http://pear.php.net/go-pear.phar'
118
	@echo 'Change to the directory of the downloaded file'
119
	@echo 'Run php -d detect_unicode=0 go-pear.phar'
120
	@echo 'Whenever prompted, press Enter to select default options'
121
	@echo 'Add $$HOME/pear/bin to your $$PATH'
122
	@echo 'Add $(HOME)/pear/share/pear to your php.ini include_path'
123 1665 aaronmk
	@echo 'If needed, set $$PHPRC to your php.ini'
124 1600 aaronmk
	@echo "Run pear install HTTP_Request"
125
	@echo 'To run a php command: php -c <php.ini-path> ...'
126 1599 aaronmk
	@$(wait)
127
128 784 aaronmk
##### PostgreSQL
129
130 6824 aaronmk
define editPhppgadmin
131 6853 aaronmk
-sudo patch /etc/phppgadmin/config.inc.php lib/phpPgAdmin.config.inc.php.diff
132 6824 aaronmk
sudo cp -n /usr/share/phppgadmin/login.php /usr/share/phppgadmin/login.php.old
133 6853 aaronmk
-sudo patch /usr/share/phppgadmin/login.php lib/phpPgAdmin.login.php.diff
134 6824 aaronmk
endef
135 6853 aaronmk
# ignore errors if patch has already been applied
136 6824 aaronmk
137 1970 aaronmk
editPhppgadminApacheConf = echo $$'1\n,s/deny from all/allow from all/\nwq'|\
138 336 aaronmk
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
139 334 aaronmk
140
apacheConf := /etc/apache2/apache2.conf
141
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
142
editApacheConfForPhppgadmin =\
143
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
144
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
145
146 335 aaronmk
nonApacheOnPort80 = $(shell sudo lsof -i :80|tail -n +2|grep -v -F apache2)
147 336 aaronmk
editApachePortsConf = echo $$'1\n,s/\\b80\\b/8080/g\nwq'|\
148
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf
149 334 aaronmk
150 6197 aaronmk
asAdmin := sudo -E -u postgres
151 6337 aaronmk
asBien := sudo -E -u bien
152 4752 aaronmk
pgVersion = "$$(env minor=1 bin/pg_version)"
153
154 6198 aaronmk
linuxPostgresDir := /etc/postgresql/9.1/main
155 6201 aaronmk
define pg_ctl-Linux
156
$(asAdmin) /etc/init.d/postgresql $(1)
157
sleep 2
158
endef
159 6198 aaronmk
160 6196 aaronmk
macPostgresDir := /Library/PostgreSQL/9.1
161 6187 aaronmk
define macUsePostgresLib
162
sudo mv $(libDest) $(libDest).old||sudo rm -f $(libDest)
163 6196 aaronmk
sudo ln -s $(macPostgresDir)/lib/$(1) $(libDest)
164 6187 aaronmk
165
endef
166
libDest = /usr/lib/$(1)
167
168
macPostgresLibs := libcrypto libssl
169
macPostgresLibs := $(macPostgresLibs) $(macPostgresLibs:%=%.1.0.0)
170
macPostgresLibs := $(macPostgresLibs:%=%.dylib)
171
172 6201 aaronmk
define pg_ctl-Darwin
173
$(asAdmin) pg_ctl -D $(macPostgresDir)/data -l $(macPostgresDir)/postgres.log $(1)
174
sleep 2
175
endef
176 6197 aaronmk
177 6503 aaronmk
confirmPostgresReload = $(call confirm,Modifying postgresql.conf and pg_hba.conf)
178
179 6333 aaronmk
define postgresReload-Linux
180 6503 aaronmk
@$(confirmPostgresReload)
181
@echo $(emph)'kernel.shmmax must be set to at least 4GB minus 1 byte:'$(endEmph)
182
@echo 'Append the following to /etc/sysctl.conf:'
183
@echo 'kernel.shmmax=4294967295'
184
@$(wait)
185 6447 aaronmk
chmod a+r schemas/*.conf || $(asBien) chmod a+r schemas/*.conf
186 6823 aaronmk
-$(asAdmin) mv -n $(linuxPostgresDir)/postgresql.conf $(linuxPostgresDir)/postgresql.conf.old
187 6333 aaronmk
$(asAdmin) cp --preserve=timestamps schemas/postgresql.conf $(linuxPostgresDir)/postgresql.conf
188 6823 aaronmk
-$(asAdmin) mv -n $(linuxPostgresDir)/pg_hba.conf $(linuxPostgresDir)/pg_hba.conf.old
189 6335 aaronmk
$(asAdmin) cp --preserve=timestamps schemas/pg_hba.conf $(linuxPostgresDir)/pg_hba.conf
190 6333 aaronmk
$(call pg_ctl-Linux,restart)
191
192
endef
193
194
define postgresReload-Darwin
195 6503 aaronmk
@$(confirmPostgresReload)
196 6336 aaronmk
chmod a+r schemas/*.conf
197 6823 aaronmk
-$(asAdmin) mv -n $(macPostgresDir)/data/postgresql.conf $(macPostgresDir)/data/postgresql.conf.old
198 6333 aaronmk
$(asAdmin) cp schemas/postgresql.Mac.conf $(macPostgresDir)/data/postgresql.conf
199 6823 aaronmk
-$(asAdmin) mv -n $(macPostgresDir)/data/pg_hba.conf $(macPostgresDir)/data/pg_hba.conf.old
200 6335 aaronmk
$(asAdmin) cp schemas/pg_hba.Mac.conf $(macPostgresDir)/data/pg_hba.conf
201 6333 aaronmk
$(call pg_ctl-Darwin,restart)
202
203
endef
204
205 6334 aaronmk
postgres_reload: _always
206
	$($(call forOs,postgresReload))
207
208 6333 aaronmk
postgres-Linux: _always
209 6544 aaronmk
	-sudo apt-get --yes install postgresql
210
	-sudo apt-get --yes install postgresql-contrib
211
	-sudo apt-get --yes install postgresql-plpython3-$(pgVersion)
212
	-sudo apt-get --yes install libpq-dev
213
	-sudo apt-get --yes install postgresql-$(pgVersion)-postgis
214
	-sudo apt-get --yes install phppgadmin
215 6824 aaronmk
	$(editPhppgadmin)
216 6333 aaronmk
	$(editPhppgadminApacheConf)
217
	$(editApacheConfForPhppgadmin)
218
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
219
	-sudo apache2ctl restart
220
	-sudo pip install psycopg2
221 6503 aaronmk
	-$(MAKE) $(postgresReload-Linux)
222 6333 aaronmk
# run pg_version inline because it needs postgresql to be installed first
223
# ignore errors if conf files already edited
224
225 383 aaronmk
postgres-Darwin: _always
226 254 aaronmk
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
227
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
228
	@echo 'Open the disk image'
229
	@echo 'Run the installer in it'
230
	@$(wait)
231 6187 aaronmk
	$(foreach lib,$(macPostgresLibs),$(call macUsePostgresLib,$(lib)))
232 6503 aaronmk
	-$(MAKE) $(postgresReload-Darwin)
233 235 aaronmk
234 418 aaronmk
postgres-: _always ; # other OSes
235 241 aaronmk
236 247 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
237 6193 aaronmk
psqlAsAdmin := $(asAdmin) psql $(psqlOpts)
238 1980 aaronmk
    # -E preserves env vars so PGOPTIONS is passed to psql
239 2624 aaronmk
psqlAsAdminVegbien := $(psqlAsAdmin) vegbien
240 1519 aaronmk
psqlAsBien := bin/psql_vegbien $(psqlOpts)
241 272 aaronmk
bienPassword := $(shell cat config/bien_password)
242 6331 aaronmk
bienReadPassword := $(shell cat config/bien_read_password)
243 241 aaronmk
244 784 aaronmk
##### VegBIEN DB
245 241 aaronmk
246 6331 aaronmk
#### DB and users
247 1967 aaronmk
248 2090 aaronmk
confirmRmDb = $(call confirm,WARNING: This will delete your entire VegBIEN\
249 3374 aaronmk
DB!,This includes all archived imports and staging tables.)
250 2089 aaronmk
251 2633 aaronmk
confirmRmPublicSchema = $(call confirm,WARNING: This will delete the current\
252
public schema of your VegBIEN DB!,To save it: make schemas/rotate)
253 2089 aaronmk
254 2091 aaronmk
rmPublicSchema := $(call rmSchemaCmd,public)
255 1967 aaronmk
256 6102 aaronmk
db: mk_db rm_initial_public _always ;
257 1967 aaronmk
258
mk_db: _always
259 6822 aaronmk
	-echo "CREATE USER public_;"|$(psqlAsAdmin)
260 1745 aaronmk
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
261 6331 aaronmk
	-echo "CREATE USER bien_read PASSWORD '$(bienReadPassword)' IN ROLE bien \
262
NOINHERIT;"|$(psqlAsAdmin)
263 2037 aaronmk
	-echo "CREATE DATABASE vegbien WITH OWNER bien TEMPLATE template1 \
264 1940 aaronmk
ENCODING 'UTF8' LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8';"|$(psqlAsAdmin)
265 6221 aaronmk
	-echo "CREATE EXTENSION hstore SCHEMA pg_catalog;"|$(psqlAsAdminVegbien)
266 6189 aaronmk
	-$(asAdmin) createlang plpython3u vegbien
267 2627 aaronmk
# ignore errors if user/database/etc. exists
268 2091 aaronmk
269
rm_initial_public: _always
270 2089 aaronmk
	@$(confirmRmPublicSchema)
271 2624 aaronmk
	echo $(rmPublicSchema)|$(psqlAsAdminVegbien)
272 1967 aaronmk
# drop public schema *as admin* because it starts out owned by postgres
273 241 aaronmk
274 383 aaronmk
rm_db: _always
275 1748 aaronmk
	@$(confirmRmDb)
276
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
277 6331 aaronmk
	echo "DROP USER IF EXISTS bien_read;"|$(psqlAsAdmin)
278 1748 aaronmk
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
279 6822 aaronmk
	echo "DROP USER IF EXISTS public_;"|$(psqlAsAdmin)
280 241 aaronmk
281 418 aaronmk
reinstall_db: _always rm_db db ;
282 241 aaronmk
283 2631 aaronmk
#### Schemas
284 1967 aaronmk
285 2980 aaronmk
schemas := temp functions py_functions public
286 2631 aaronmk
schemas/install: $(schemas:%=schemas/%/install) ;
287
288 2980 aaronmk
schemasReversed := public py_functions functions temp
289 2631 aaronmk
schemas/uninstall: $(schemasReversed:%=schemas/%/uninstall) ;
290
291 6098 aaronmk
psqlNoSearchPath := env no_search_path=1 $(psqlAsBien)
292
293 2631 aaronmk
### public
294
295
schemas/public/install: schemas/vegbien.sql _always
296 6098 aaronmk
	-echo $(call mkSchemaCmd,public)|$(psqlNoSearchPath)
297 6192 aaronmk
	<$< $(psqlNoSearchPath)
298 1967 aaronmk
# ignore errors if schema exists
299
# public schema will be owned by bien
300 6088 aaronmk
# don't include public in the search_path
301 1967 aaronmk
302 2631 aaronmk
schemas/public/uninstall: _always
303 2089 aaronmk
	@$(confirmRmPublicSchema)
304 6098 aaronmk
	echo $(rmPublicSchema)|$(psqlNoSearchPath)
305 1967 aaronmk
306 5678 aaronmk
schemas/rename/%: _always
307 6098 aaronmk
	echo 'ALTER SCHEMA public RENAME TO "$*";'|$(psqlNoSearchPath)
308 5678 aaronmk
	$(MAKE) schemas/public/install
309
310 5679 aaronmk
schemas/rotate: _always schemas/rename/public.$(version) ;
311 2034 aaronmk
312 2631 aaronmk
### py_functions
313 2091 aaronmk
314 2631 aaronmk
schemas/py_functions/install: schemas/py_functions.sql _always
315 6098 aaronmk
	-<$< env public= $(psqlAsAdminVegbien)
316 3376 aaronmk
# ignore errors if schema exists
317 2631 aaronmk
318
### Others
319
320
schemas/%/install: schemas/%.sql _always
321 6098 aaronmk
	-<$< $(psqlNoSearchPath)
322 3376 aaronmk
# ignore errors if schema exists
323 2091 aaronmk
324 3393 aaronmk
schemas/%/uninstall: _always
325 6098 aaronmk
	echo $(call rmSchemaCmd,$*)|$(psqlNoSearchPath)
326 2624 aaronmk
327 2983 aaronmk
# Needed on Ubuntu 12.04 (also other Linuxes?) because %/reinstall is ignored.
328
schemas/temp/reinstall: _always schemas/temp/uninstall schemas/temp/install ;
329
330 784 aaronmk
##### MySQL
331 241 aaronmk
332 383 aaronmk
mysql: _always $(call forOs,mysql) mysql_user
333 241 aaronmk
	@$(done)
334
335 418 aaronmk
rm_mysql: _always rm_mysql_user ;
336 241 aaronmk
337 383 aaronmk
mysql-Linux: _always
338 244 aaronmk
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
339 238 aaronmk
	@$(wait)
340 6544 aaronmk
	-sudo apt-get --yes install mysql-server mysql-client python-mysqldb
341 235 aaronmk
342 383 aaronmk
mysql-Darwin: _always
343 244 aaronmk
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
344 235 aaronmk
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
345
	@echo 'Extract the archive'
346
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
347 284 aaronmk
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
348
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
349 235 aaronmk
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
350
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
351
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
352
	@echo 'Change to the directory of the extracted files'
353 284 aaronmk
	@echo 'Run python setup.py clean'
354
	@echo 'Run python setup.py build'
355 235 aaronmk
	@echo 'Run sudo python setup.py install'
356
	@echo "Run python -c 'import MySQLdb'"
357 238 aaronmk
	@$(wait)
358 235 aaronmk
359 383 aaronmk
mysql-: _always # other OSes
360 235 aaronmk
361 247 aaronmk
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
362 235 aaronmk
363 383 aaronmk
mysql_user: _always
364 241 aaronmk
	-$($@_cmd)
365 364 aaronmk
# ignore errors if user exists
366 244 aaronmk
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
367 245 aaronmk
'$(bienPassword)';"|$(mysqlAsRoot)
368 202 aaronmk
369 383 aaronmk
rm_mysql_user: _always
370 245 aaronmk
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
371 364 aaronmk
# ignore errors if user exists
372 202 aaronmk
373 784 aaronmk
##### Datasources
374 202 aaronmk
375 418 aaronmk
inputs: _always inputs/all ;
376 245 aaronmk
377 6191 aaronmk
inputs/install: _always
378 6194 aaronmk
	echo '. bin/reinstall_all; wait'|bash -s
379 6191 aaronmk
380 1542 aaronmk
import: _always import-msg inputs/import ;
381
import-msg: _always
382 1550 aaronmk
	@echo $(emph)"To import all inputs at once:"$(endEmph) . bin/import_all
383 1542 aaronmk
	@echo
384 250 aaronmk
385 1458 aaronmk
verify: _always inputs/verify
386 1241 aaronmk
	@$(done)
387 386 aaronmk
388 1458 aaronmk
test: _always inputs/test
389 397 aaronmk
	@$(done)
390 1458 aaronmk
391
##### Testing
392
393 1743 aaronmk
test-all: _always remake test missing_mappings
394 1458 aaronmk
	@$(done)
395 1967 aaronmk
396
##### Subdir forwarding
397
398
# Must come last so overridden targets are not forwarded
399
400
define subdirTargets
401
$(subdir): _always
402
	+$$(subMake)
403
404
$(subdir)%: _always
405
	+$$(subMake)
406
.PRECIOUS: $(subdir)% # let subdir's Makefile decide whether to delete on error
407
408
$(subdir)reinstall: _always $(subdir)uninstall $(subdir)install ;
409
endef
410
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
411
412
Makefile: ;
413
414
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
415 1999 aaronmk
416
#### Maps validation
417
418 4607 aaronmk
termsSubdirs := $(call no/,$(call wildcard/,inputs/*/))
419
420 3764 aaronmk
include lib/mappings.Makefile