Project

General

Profile

1
root := .
2
include lib/common.Makefile
3

    
4

    
5
##### Vars/functions
6

    
7
# Make
8
SHELL := /bin/bash
9
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@)
10

    
11
# Paths
12
bin := bin
13

    
14
# Terminal
15
esc := '['
16
reset := $(esc)'0m'
17
emph := $(esc)'7m '
18
endEmph := ' '$(reset)
19

    
20
# User interaction
21

    
22
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
23

    
24
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
25

    
26
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

    
30
# File editing
31
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
32

    
33
# DB
34
mkSchemaCmd = 'CREATE SCHEMA $(1);'
35
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
36

    
37
##### Environment
38

    
39
export PGOPTIONS = --client-min-messages=WARNING
40

    
41
##### General targets
42

    
43
remake: _always clean
44
	$(MAKE)
45
# re-run make so that cache of existing files is reset
46

    
47
%/remake: _always
48
	$(MAKE) $(@D)/clean
49
	$(MAKE) $(@D)/
50
# re-run make so that cache of existing files is reset
51

    
52
%-remake: _always
53
	rm -f $*
54
	$(MAKE) $*
55
# re-run make so that cache of existing files is reset
56

    
57
%/reinstall: _always %/uninstall %/install ;
58

    
59
##### Installation
60

    
61
# 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
	@$(done)
64

    
65
uninstall: _always rm_mysql rm_core ;
66

    
67
reinstall: _always uninstall install ;
68

    
69
##### Core: VegBIEN DB and dependencies
70

    
71
core: _always $(call forOs,python php postgres) db
72
	@$(done)
73

    
74
rm_core: _always rm_db ;
75

    
76
reinstall_core: _always rm_core core ;
77

    
78
##### Python
79

    
80
python-Linux: _always
81
	-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
	-sudo pip install ordereddict
90
	-sudo pip install pp
91

    
92
python-Darwin: _always
93
	@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
	@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
	@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

    
110
##### PHP
111

    
112
php-Linux: _always
113
	-sudo apt-get --yes install php-http-request
114

    
115
php-Darwin: _always
116
	@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
	@echo 'If needed, set $$PHPRC to your php.ini'
124
	@echo "Run pear install HTTP_Request"
125
	@echo 'To run a php command: php -c <php.ini-path> ...'
126
	@$(wait)
127

    
128
##### PostgreSQL
129

    
130
define editPhppgadmin
131
sudo patch /etc/phppgadmin/config.inc.php lib/phpPgAdmin.config.inc.php.diff
132
sudo cp -n /usr/share/phppgadmin/login.php /usr/share/phppgadmin/login.php.old
133
sudo patch /usr/share/phppgadmin/login.php lib/phpPgAdmin.login.php.diff
134
endef
135

    
136
editPhppgadminApacheConf = echo $$'1\n,s/deny from all/allow from all/\nwq'|\
137
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
138

    
139
apacheConf := /etc/apache2/apache2.conf
140
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
141
editApacheConfForPhppgadmin =\
142
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
143
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
144

    
145
nonApacheOnPort80 = $(shell sudo lsof -i :80|tail -n +2|grep -v -F apache2)
146
editApachePortsConf = echo $$'1\n,s/\\b80\\b/8080/g\nwq'|\
147
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf
148

    
149
asAdmin := sudo -E -u postgres
150
asBien := sudo -E -u bien
151
pgVersion = "$$(env minor=1 bin/pg_version)"
152

    
153
linuxPostgresDir := /etc/postgresql/9.1/main
154
define pg_ctl-Linux
155
$(asAdmin) /etc/init.d/postgresql $(1)
156
sleep 2
157
endef
158

    
159
macPostgresDir := /Library/PostgreSQL/9.1
160
define macUsePostgresLib
161
sudo mv $(libDest) $(libDest).old||sudo rm -f $(libDest)
162
sudo ln -s $(macPostgresDir)/lib/$(1) $(libDest)
163

    
164
endef
165
libDest = /usr/lib/$(1)
166

    
167
macPostgresLibs := libcrypto libssl
168
macPostgresLibs := $(macPostgresLibs) $(macPostgresLibs:%=%.1.0.0)
169
macPostgresLibs := $(macPostgresLibs:%=%.dylib)
170

    
171
define pg_ctl-Darwin
172
$(asAdmin) pg_ctl -D $(macPostgresDir)/data -l $(macPostgresDir)/postgres.log $(1)
173
sleep 2
174
endef
175

    
176
confirmPostgresReload = $(call confirm,Modifying postgresql.conf and pg_hba.conf)
177

    
178
define postgresReload-Linux
179
@$(confirmPostgresReload)
180
@echo $(emph)'kernel.shmmax must be set to at least 4GB minus 1 byte:'$(endEmph)
181
@echo 'Append the following to /etc/sysctl.conf:'
182
@echo 'kernel.shmmax=4294967295'
183
@$(wait)
184
chmod a+r schemas/*.conf || $(asBien) chmod a+r schemas/*.conf
185
-$(asAdmin) mv -n $(linuxPostgresDir)/postgresql.conf $(linuxPostgresDir)/postgresql.conf.old
186
$(asAdmin) cp --preserve=timestamps schemas/postgresql.conf $(linuxPostgresDir)/postgresql.conf
187
-$(asAdmin) mv -n $(linuxPostgresDir)/pg_hba.conf $(linuxPostgresDir)/pg_hba.conf.old
188
$(asAdmin) cp --preserve=timestamps schemas/pg_hba.conf $(linuxPostgresDir)/pg_hba.conf
189
$(call pg_ctl-Linux,restart)
190

    
191
endef
192

    
193
define postgresReload-Darwin
194
@$(confirmPostgresReload)
195
chmod a+r schemas/*.conf
196
-$(asAdmin) mv -n $(macPostgresDir)/data/postgresql.conf $(macPostgresDir)/data/postgresql.conf.old
197
$(asAdmin) cp schemas/postgresql.Mac.conf $(macPostgresDir)/data/postgresql.conf
198
-$(asAdmin) mv -n $(macPostgresDir)/data/pg_hba.conf $(macPostgresDir)/data/pg_hba.conf.old
199
$(asAdmin) cp schemas/pg_hba.Mac.conf $(macPostgresDir)/data/pg_hba.conf
200
$(call pg_ctl-Darwin,restart)
201

    
202
endef
203

    
204
postgres_reload: _always
205
	$($(call forOs,postgresReload))
206

    
207
postgres-Linux: _always
208
	-sudo apt-get --yes install postgresql
209
	-sudo apt-get --yes install postgresql-contrib
210
	-sudo apt-get --yes install postgresql-plpython3-$(pgVersion)
211
	-sudo apt-get --yes install libpq-dev
212
	-sudo apt-get --yes install postgresql-$(pgVersion)-postgis
213
	-sudo apt-get --yes install phppgadmin
214
	$(editPhppgadmin)
215
	$(editPhppgadminApacheConf)
216
	$(editApacheConfForPhppgadmin)
217
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
218
	-sudo apache2ctl restart
219
	-sudo pip install psycopg2
220
	-$(MAKE) $(postgresReload-Linux)
221
# run pg_version inline because it needs postgresql to be installed first
222
# ignore errors if conf files already edited
223

    
224
postgres-Darwin: _always
225
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
226
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
227
	@echo 'Open the disk image'
228
	@echo 'Run the installer in it'
229
	@$(wait)
230
	$(foreach lib,$(macPostgresLibs),$(call macUsePostgresLib,$(lib)))
231
	-$(MAKE) $(postgresReload-Darwin)
232

    
233
postgres-: _always ; # other OSes
234

    
235
psqlOpts := --set ON_ERROR_STOP=1 --quiet
236
psqlAsAdmin := $(asAdmin) psql $(psqlOpts)
237
    # -E preserves env vars so PGOPTIONS is passed to psql
238
psqlAsAdminVegbien := $(psqlAsAdmin) vegbien
239
psqlAsBien := bin/psql_vegbien $(psqlOpts)
240
bienPassword := $(shell cat config/bien_password)
241
bienReadPassword := $(shell cat config/bien_read_password)
242

    
243
##### VegBIEN DB
244

    
245
#### DB and users
246

    
247
confirmRmDb = $(call confirm,WARNING: This will delete your entire VegBIEN\
248
DB!,This includes all archived imports and staging tables.)
249

    
250
confirmRmPublicSchema = $(call confirm,WARNING: This will delete the current\
251
public schema of your VegBIEN DB!,To save it: make schemas/rotate)
252

    
253
rmPublicSchema := $(call rmSchemaCmd,public)
254

    
255
db: mk_db rm_initial_public _always ;
256

    
257
mk_db: _always
258
	-echo "CREATE USER public_;"|$(psqlAsAdmin)
259
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
260
	-echo "CREATE USER bien_read PASSWORD '$(bienReadPassword)' IN ROLE bien \
261
NOINHERIT;"|$(psqlAsAdmin)
262
	-echo "CREATE DATABASE vegbien WITH OWNER bien TEMPLATE template1 \
263
ENCODING 'UTF8' LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8';"|$(psqlAsAdmin)
264
	-echo "CREATE EXTENSION hstore SCHEMA pg_catalog;"|$(psqlAsAdminVegbien)
265
	-$(asAdmin) createlang plpython3u vegbien
266
# ignore errors if user/database/etc. exists
267

    
268
rm_initial_public: _always
269
	@$(confirmRmPublicSchema)
270
	echo $(rmPublicSchema)|$(psqlAsAdminVegbien)
271
# drop public schema *as admin* because it starts out owned by postgres
272

    
273
rm_db: _always
274
	@$(confirmRmDb)
275
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
276
	echo "DROP USER IF EXISTS bien_read;"|$(psqlAsAdmin)
277
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
278
	echo "DROP USER IF EXISTS public_;"|$(psqlAsAdmin)
279

    
280
reinstall_db: _always rm_db db ;
281

    
282
#### Schemas
283

    
284
schemas := temp functions py_functions public
285
schemas/install: $(schemas:%=schemas/%/install) ;
286

    
287
schemasReversed := public py_functions functions temp
288
schemas/uninstall: $(schemasReversed:%=schemas/%/uninstall) ;
289

    
290
psqlNoSearchPath := env no_search_path=1 $(psqlAsBien)
291

    
292
### public
293

    
294
schemas/public/install: schemas/vegbien.sql _always
295
	-echo $(call mkSchemaCmd,public)|$(psqlNoSearchPath)
296
	<$< $(psqlNoSearchPath)
297
# ignore errors if schema exists
298
# public schema will be owned by bien
299
# don't include public in the search_path
300

    
301
schemas/public/uninstall: _always
302
	@$(confirmRmPublicSchema)
303
	echo $(rmPublicSchema)|$(psqlNoSearchPath)
304

    
305
schemas/rename/%: _always
306
	echo 'ALTER SCHEMA public RENAME TO "$*";'|$(psqlNoSearchPath)
307
	$(MAKE) schemas/public/install
308

    
309
schemas/rotate: _always schemas/rename/public.$(version) ;
310

    
311
### py_functions
312

    
313
schemas/py_functions/install: schemas/py_functions.sql _always
314
	-<$< env public= $(psqlAsAdminVegbien)
315
# ignore errors if schema exists
316

    
317
### Others
318

    
319
schemas/%/install: schemas/%.sql _always
320
	-<$< $(psqlNoSearchPath)
321
# ignore errors if schema exists
322

    
323
schemas/%/uninstall: _always
324
	echo $(call rmSchemaCmd,$*)|$(psqlNoSearchPath)
325

    
326
# Needed on Ubuntu 12.04 (also other Linuxes?) because %/reinstall is ignored.
327
schemas/temp/reinstall: _always schemas/temp/uninstall schemas/temp/install ;
328

    
329
##### MySQL
330

    
331
mysql: _always $(call forOs,mysql) mysql_user
332
	@$(done)
333

    
334
rm_mysql: _always rm_mysql_user ;
335

    
336
mysql-Linux: _always
337
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
338
	@$(wait)
339
	-sudo apt-get --yes install mysql-server mysql-client python-mysqldb
340

    
341
mysql-Darwin: _always
342
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
343
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
344
	@echo 'Extract the archive'
345
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
346
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
347
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
348
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
349
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
350
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
351
	@echo 'Change to the directory of the extracted files'
352
	@echo 'Run python setup.py clean'
353
	@echo 'Run python setup.py build'
354
	@echo 'Run sudo python setup.py install'
355
	@echo "Run python -c 'import MySQLdb'"
356
	@$(wait)
357

    
358
mysql-: _always # other OSes
359

    
360
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
361

    
362
mysql_user: _always
363
	-$($@_cmd)
364
# ignore errors if user exists
365
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
366
'$(bienPassword)';"|$(mysqlAsRoot)
367

    
368
rm_mysql_user: _always
369
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
370
# ignore errors if user exists
371

    
372
##### Datasources
373

    
374
inputs: _always inputs/all ;
375

    
376
inputs/install: _always
377
	echo '. bin/reinstall_all; wait'|bash -s
378

    
379
import: _always import-msg inputs/import ;
380
import-msg: _always
381
	@echo $(emph)"To import all inputs at once:"$(endEmph) . bin/import_all
382
	@echo
383

    
384
verify: _always inputs/verify
385
	@$(done)
386

    
387
test: _always inputs/test
388
	@$(done)
389

    
390
##### Testing
391

    
392
test-all: _always remake test missing_mappings
393
	@$(done)
394

    
395
##### Subdir forwarding
396

    
397
# Must come last so overridden targets are not forwarded
398

    
399
define subdirTargets
400
$(subdir): _always
401
	+$$(subMake)
402

    
403
$(subdir)%: _always
404
	+$$(subMake)
405
.PRECIOUS: $(subdir)% # let subdir's Makefile decide whether to delete on error
406

    
407
$(subdir)reinstall: _always $(subdir)uninstall $(subdir)install ;
408
endef
409
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
410

    
411
Makefile: ;
412

    
413
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
414

    
415
#### Maps validation
416

    
417
termsSubdirs := $(call no/,$(call wildcard/,inputs/*/))
418

    
419
include lib/mappings.Makefile
(1-1/5)