Project

General

Profile

1
include lib/common.Makefile
2

    
3

    
4
##### Vars/functions
5

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

    
10
# OS
11
os := $(shell uname)
12
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
13

    
14
# System
15
date = $(shell date +"%Y-%m-%d-%H-%M-%S")
16

    
17
# Terminal
18
esc := '['
19
reset := $(esc)'0m'
20
emph := $(esc)'7m '
21
endEmph := ' '$(reset)
22

    
23
# User interaction
24

    
25
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
26

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

    
29
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
30
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
31
$(error Aborting))
32

    
33
# File editing
34
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
35

    
36
# DB
37
mkSchemaCmd = 'CREATE SCHEMA $(1);'
38
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
39

    
40
##### Environment
41

    
42
export PGOPTIONS = --client-min-messages=WARNING
43

    
44
##### General targets
45

    
46
remake: _always clean
47
	$(MAKE)
48
# re-run make so that cache of existing files is reset
49

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

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

    
60
%/reinstall: _always %/uninstall %/install ;
61

    
62
##### Installation
63

    
64
install: _always core mysql inputs/download inputs/install test
65
	@$(done)
66

    
67
uninstall: _always inputs/uninstall rm_mysql rm_core ;
68

    
69
reinstall: _always uninstall install ;
70

    
71
##### Core: VegBIEN DB and dependencies
72

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

    
76
rm_core: _always rm_db ;
77

    
78
reinstall_core: _always rm_core core ;
79

    
80
##### Python
81

    
82
python-Linux: _always
83
	-sudo apt-get install python
84
	-sudo apt-get install python-dev
85
	-sudo apt-get install python-dateutil
86
	-sudo apt-get install python-parallel
87
	-sudo apt-get install python-profiler
88
	-sudo apt-get install python-pip
89
	-sudo apt-get install pymetrics
90
	-sudo pip install ordereddict
91
	-sudo pip install pp
92

    
93
python-Darwin: _always
94
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
95
	@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
96
	@echo 'Extract the archive'
97
	@echo 'Change to the directory of the extracted files'
98
	@echo 'Run python setup.py build'
99
	@echo 'Run sudo python setup.py install'
100
	@echo "Run python -c 'import dateutil'"
101
	@$(wait)
102
	@echo $(emph)'Installing pip on Mac OS X:'$(endEmph)
103
	@echo 'Follow the instructions at http://www.pip-installer.org/en/latest/installing.html'
104
	@$(wait)
105

    
106
##### PHP
107

    
108
php-Linux: _always
109
	-sudo apt-get install php-http-request
110

    
111
php-Darwin: _always
112
	@echo $(emph)'Installing PHP PEAR and HTTP_Request on Mac OS X:'$(endEmph)
113
	@echo 'Download http://pear.php.net/go-pear.phar'
114
	@echo 'Change to the directory of the downloaded file'
115
	@echo 'Run php -d detect_unicode=0 go-pear.phar'
116
	@echo 'Whenever prompted, press Enter to select default options'
117
	@echo 'Add $$HOME/pear/bin to your $$PATH'
118
	@echo 'Add $(HOME)/pear/share/pear to your php.ini include_path'
119
	@echo 'If needed, set $$PHPRC to your php.ini'
120
	@echo "Run pear install HTTP_Request"
121
	@echo 'To run a php command: php -c <php.ini-path> ...'
122
	@$(wait)
123

    
124
##### PostgreSQL
125

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

    
129
apacheConf := /etc/apache2/apache2.conf
130
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
131
editApacheConfForPhppgadmin =\
132
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
133
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
134

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

    
139
postgres-Linux: _always
140
	-sudo apt-get install postgresql
141
	-sudo apt-get install postgresql-plpython-"$$(env minor=1 bin/pg_version)"
142
	-sudo apt-get install libpq-dev
143
	-sudo apt-get install phppgadmin
144
	$(editPhppgadminApacheConf)
145
	$(editApacheConfForPhppgadmin)
146
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
147
	-sudo apache2ctl restart
148
	-sudo pip install psycopg2
149
# run pg_version inline because it needs postgresql to be installed first
150
# ignore errors if conf files already edited
151

    
152
postgres-Darwin: _always
153
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
154
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
155
	@echo 'Open the disk image'
156
	@echo 'Run the installer in it'
157
	@$(wait)
158

    
159
postgres-: _always ; # other OSes
160

    
161
psqlOpts := --set ON_ERROR_STOP=1 --quiet
162
psqlAsAdmin := sudo -E -u postgres psql $(psqlOpts)
163
    # -E preserves env vars so PGOPTIONS is passed to psql
164
psqlAsAdminVegbien := $(psqlAsAdmin) vegbien
165
psqlAsBien := bin/psql_vegbien $(psqlOpts)
166
bienPassword := $(shell cat config/bien_password)
167

    
168
##### VegBIEN DB
169

    
170
#### DB and bien user
171

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

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

    
178
rmPublicSchema := $(call rmSchemaCmd,public)
179

    
180
db: mk_db rm_initial_public schemas/install _always ;
181

    
182
mk_db: _always
183
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
184
	-echo "CREATE DATABASE vegbien WITH OWNER bien TEMPLATE template1 \
185
ENCODING 'UTF8' LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8';"|$(psqlAsAdmin)
186
	-bin/postgres_vegbien createlang plpythonu
187
# ignore errors if user/database/etc. exists
188

    
189
rm_initial_public: _always
190
	@$(confirmRmPublicSchema)
191
	echo $(rmPublicSchema)|$(psqlAsAdminVegbien)
192
# drop public schema *as admin* because it starts out owned by postgres
193

    
194
rm_db: _always
195
	@$(confirmRmDb)
196
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
197
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
198

    
199
reinstall_db: _always rm_db db ;
200

    
201
#### Schemas
202

    
203
schemas := temp functions py_functions public
204
schemas/install: $(schemas:%=schemas/%/install) ;
205

    
206
schemasReversed := public py_functions functions temp
207
schemas/uninstall: $(schemasReversed:%=schemas/%/uninstall) ;
208

    
209
### public
210

    
211
schemas/public/install: schemas/vegbien.sql _always
212
	-echo $(call mkSchemaCmd,public)|$(psqlAsBien)
213
	<$< $(psqlAsBien)
214
# ignore errors if schema exists
215
# public schema will be owned by bien
216

    
217
schemas/public/uninstall: _always
218
	@$(confirmRmPublicSchema)
219
	echo $(rmPublicSchema)|$(psqlAsBien)
220

    
221
schemas/rotate: _always schemas/rotate-only schemas/public/install ;
222
schemas/rotate-only: _always
223
	echo 'ALTER SCHEMA public RENAME TO "public.$(date)";'|$(psqlAsBien)
224

    
225
### py_functions
226

    
227
schemas/py_functions/install: schemas/py_functions.sql _always
228
	-<$< $(psqlAsAdminVegbien)
229
# ignore errors if schema exists
230

    
231
### Others
232

    
233
schemas/%/install: schemas/%.sql _always
234
	-<$< $(psqlAsBien)
235
# ignore errors if schema exists
236

    
237
schemas/%/uninstall: _always
238
	echo $(call rmSchemaCmd,$*)|$(psqlAsBien)
239

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

    
243
##### MySQL
244

    
245
mysql: _always $(call forOs,mysql) mysql_user
246
	@$(done)
247

    
248
rm_mysql: _always rm_mysql_user ;
249

    
250
mysql-Linux: _always
251
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
252
	@$(wait)
253
	-sudo apt-get install mysql-server mysql-client python-mysqldb
254

    
255
mysql-Darwin: _always
256
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
257
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
258
	@echo 'Extract the archive'
259
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
260
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
261
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
262
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
263
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
264
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
265
	@echo 'Change to the directory of the extracted files'
266
	@echo 'Run python setup.py clean'
267
	@echo 'Run python setup.py build'
268
	@echo 'Run sudo python setup.py install'
269
	@echo "Run python -c 'import MySQLdb'"
270
	@$(wait)
271

    
272
mysql-: _always # other OSes
273

    
274
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
275

    
276
mysql_user: _always
277
	-$($@_cmd)
278
# ignore errors if user exists
279
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
280
'$(bienPassword)';"|$(mysqlAsRoot)
281

    
282
rm_mysql_user: _always
283
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
284
# ignore errors if user exists
285

    
286
##### Datasources
287

    
288
inputs: _always inputs/all ;
289

    
290
import: _always import-msg inputs/import ;
291
import-msg: _always
292
	@echo $(emph)"To import all inputs at once:"$(endEmph) . bin/import_all
293
	@echo
294

    
295
verify: _always inputs/verify
296
	@$(done)
297

    
298
test: _always inputs/test
299
	@$(done)
300

    
301
##### Testing
302

    
303
test-all: _always remake test missing_mappings
304
	@$(done)
305

    
306
##### Subdir forwarding
307

    
308
# Must come last so overridden targets are not forwarded
309

    
310
define subdirTargets
311
$(subdir): _always
312
	+$$(subMake)
313

    
314
$(subdir)%: _always
315
	+$$(subMake)
316
.PRECIOUS: $(subdir)% # let subdir's Makefile decide whether to delete on error
317

    
318
$(subdir)reinstall: _always $(subdir)uninstall $(subdir)install ;
319
endef
320
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
321

    
322
Makefile: ;
323

    
324
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
325

    
326
#### Maps validation
327

    
328
# Must come after Subdir forwarding to avoid infinite recursion, for some reason
329

    
330
missingMappingsCmd = +$(MAKE) inputs/$@|grep -vEe '(common|mappings).Makefile'\
331
-e ' Missing ' $(if $(filter non-empty_join,$*), -e '^make '|sort|uniq)
332

    
333
include lib/mappings.Makefile
(1-1/3)