Project

General

Profile

1 784 aaronmk
##### Vars/functions
2
3 244 aaronmk
# Make
4 247 aaronmk
SHELL := /bin/bash
5 625 aaronmk
pathParts = $(shell path="$(1)"; echo "$${path%%/*}" "$${path\#*/}")
6 739 aaronmk
topDir = $(word 1,$(pathParts))
7
subPath = $(word 2,$(pathParts))
8 625 aaronmk
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@)
9 244 aaronmk
10 245 aaronmk
# OS
11 247 aaronmk
os := $(shell uname)
12 245 aaronmk
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
13
14 2034 aaronmk
# System
15
date = $(shell date +"%Y-%m-%d-%H-%M-%S")
16
17 241 aaronmk
# Terminal
18 247 aaronmk
esc := '['
19
reset := $(esc)'0m'
20
emph := $(esc)'7m '
21
endEmph := ' '$(reset)
22 245 aaronmk
23
# User interaction
24
25 1745 aaronmk
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
26 245 aaronmk
27 247 aaronmk
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
28 245 aaronmk
29 1748 aaronmk
confirm = $(if $(shell read -p $(emph)"$(1) (y/n)"$(endEmph) REPLY; \
30
test "$$REPLY" = y && echo t),,$(error Aborting))
31 235 aaronmk
32 335 aaronmk
# File editing
33
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
34
35 784 aaronmk
##### Environment
36
37 225 aaronmk
export PGOPTIONS = --client-min-messages=WARNING
38
39 784 aaronmk
##### General targets
40 225 aaronmk
41 414 aaronmk
all:
42 228 aaronmk
43 1260 aaronmk
.SUFFIXES: # turn off built-in suffix rules
44
.SECONDARY: # don't automatically delete intermediate files
45 1354 aaronmk
.DELETE_ON_ERROR: # delete target if recipe fails
46 225 aaronmk
47 383 aaronmk
_always:
48
.PHONY: _always
49 202 aaronmk
50 1274 aaronmk
remake: _always clean
51
	$(MAKE)
52
# re-run make so that cache of existing files is reset
53
54 1288 aaronmk
%/remake: _always
55
	$(MAKE) $(@D)/clean
56
	$(MAKE) $(@D)/
57
# re-run make so that cache of existing files is reset
58
59 1813 aaronmk
%-remake: _always
60
	rm -f $*
61
	$(MAKE) $*
62
# re-run make so that cache of existing files is reset
63
64 784 aaronmk
##### Installation
65 241 aaronmk
66 411 aaronmk
install: _always core mysql inputs/install test
67 241 aaronmk
	@$(done)
68 202 aaronmk
69 418 aaronmk
uninstall: _always inputs/uninstall rm_mysql rm_core ;
70 241 aaronmk
71 418 aaronmk
reinstall: _always uninstall install ;
72 225 aaronmk
73 784 aaronmk
##### Core: VegBIEN DB and dependencies
74 202 aaronmk
75 1746 aaronmk
core: _always $(call forOs,python php postgres) db
76 241 aaronmk
	@$(done)
77 235 aaronmk
78 1746 aaronmk
rm_core: _always rm_db ;
79 241 aaronmk
80 418 aaronmk
reinstall_core: _always rm_core core ;
81 241 aaronmk
82 784 aaronmk
##### Python
83
84 383 aaronmk
python-Linux: _always
85 1844 aaronmk
	-sudo apt-get install python python-dev python-dateutil python-parallel \
86
python-profiler python-pip pymetrics
87 1845 aaronmk
	-sudo pip install pp
88 284 aaronmk
89 383 aaronmk
python-Darwin: _always
90 284 aaronmk
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
91
	@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
92
	@echo 'Extract the archive'
93
	@echo 'Change to the directory of the extracted files'
94
	@echo 'Run python setup.py build'
95
	@echo 'Run sudo python setup.py install'
96
	@echo "Run python -c 'import dateutil'"
97
	@$(wait)
98
99 1599 aaronmk
##### PHP
100
101
php-Linux: _always
102
	-sudo apt-get install php-http-request
103
104
php-Darwin: _always
105 1600 aaronmk
	@echo $(emph)'Installing PHP PEAR and HTTP_Request on Mac OS X:'$(endEmph)
106
	@echo 'Download http://pear.php.net/go-pear.phar'
107
	@echo 'Change to the directory of the downloaded file'
108
	@echo 'Run php -d detect_unicode=0 go-pear.phar'
109
	@echo 'Whenever prompted, press Enter to select default options'
110
	@echo 'Add $$HOME/pear/bin to your $$PATH'
111
	@echo 'Add $(HOME)/pear/share/pear to your php.ini include_path'
112 1665 aaronmk
	@echo 'If needed, set $$PHPRC to your php.ini'
113 1600 aaronmk
	@echo "Run pear install HTTP_Request"
114
	@echo 'To run a php command: php -c <php.ini-path> ...'
115 1599 aaronmk
	@$(wait)
116
117 784 aaronmk
##### PostgreSQL
118
119 1970 aaronmk
editPhppgadminApacheConf = echo $$'1\n,s/deny from all/allow from all/\nwq'|\
120 336 aaronmk
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
121 334 aaronmk
122
apacheConf := /etc/apache2/apache2.conf
123
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
124
editApacheConfForPhppgadmin =\
125
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
126
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
127
128 335 aaronmk
nonApacheOnPort80 = $(shell sudo lsof -i :80|tail -n +2|grep -v -F apache2)
129 336 aaronmk
editApachePortsConf = echo $$'1\n,s/\\b80\\b/8080/g\nwq'|\
130
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf
131 334 aaronmk
132 383 aaronmk
postgres-Linux: _always
133 329 aaronmk
	-sudo apt-get install postgresql libpq-dev phppgadmin
134 336 aaronmk
	$(editPhppgadminApacheConf)
135 334 aaronmk
	$(editApacheConfForPhppgadmin)
136 336 aaronmk
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
137 334 aaronmk
	-sudo apache2ctl restart
138 284 aaronmk
	-sudo pip install psycopg2
139 334 aaronmk
# ignore errors if conf files already edited
140 235 aaronmk
141 383 aaronmk
postgres-Darwin: _always
142 254 aaronmk
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
143
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
144
	@echo 'Open the disk image'
145
	@echo 'Run the installer in it'
146
	@$(wait)
147 235 aaronmk
148 418 aaronmk
postgres-: _always ; # other OSes
149 241 aaronmk
150 247 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
151 1980 aaronmk
psqlAsAdmin := sudo -E -u postgres psql $(psqlOpts)
152
    # -E preserves env vars so PGOPTIONS is passed to psql
153 1519 aaronmk
psqlAsBien := bin/psql_vegbien $(psqlOpts)
154 272 aaronmk
bienPassword := $(shell cat config/bien_password)
155 241 aaronmk
156 784 aaronmk
##### VegBIEN DB
157 241 aaronmk
158 1967 aaronmk
#### DB and bien user
159
160
confirmRmDb = $(call confirm,WARNING:\
161
This will delete your VegBIEN DB if it exists! Continue?)
162
rmPublicSchema := 'DROP SCHEMA IF EXISTS public CASCADE;'
163
164
db: mk_db schemas/install _always ;
165
166
mk_db: _always
167
	@$(confirmRmDb)
168 1745 aaronmk
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
169 1940 aaronmk
	-echo "CREATE DATABASE vegbien WITH OWNER bien TEMPLATE template0 \
170
ENCODING 'UTF8' LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8';"|$(psqlAsAdmin)
171 1980 aaronmk
	echo $(rmPublicSchema)|$(psqlAsAdmin) vegbien
172 2036 aaronmk
	$(createPlpgsql)
173 1745 aaronmk
# ignore errors if user or database exists
174 1967 aaronmk
# drop public schema *as admin* because it starts out owned by postgres
175 2036 aaronmk
createPlpgsql := echo 'CREATE PROCEDURAL LANGUAGE plpgsql;'\
176
|bin/db_dump_localize|$(psqlAsBien)
177 241 aaronmk
178 383 aaronmk
rm_db: _always
179 1748 aaronmk
	@$(confirmRmDb)
180
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
181
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
182 241 aaronmk
183 418 aaronmk
reinstall_db: _always rm_db db ;
184 241 aaronmk
185 1967 aaronmk
#### public schema
186
187
schemas/install: schemas/vegbien.sql _always
188
	-echo "CREATE SCHEMA public;"|$(psqlAsBien)
189 2036 aaronmk
	<$< $(psqlAsBien)
190 1967 aaronmk
# ignore errors if schema exists
191
# public schema will be owned by bien
192
193
schemas/uninstall: _always
194
	@$(confirmRmDb)
195
	echo $(rmPublicSchema)|$(psqlAsBien)
196
197 2034 aaronmk
schemas/rotate: _always schemas/rotate-only schemas/install ;
198
schemas/rotate-only: _always
199
	echo 'ALTER SCHEMA public RENAME TO "public.$(date)";'|$(psqlAsBien)
200
201 389 aaronmk
empty_db: _always schemas/vegbien_empty.sql
202 1748 aaronmk
	@$(confirmRmDb)
203 389 aaronmk
	$(psqlAsBien) <schemas/vegbien_empty.sql
204 241 aaronmk
205 784 aaronmk
##### MySQL
206 241 aaronmk
207 383 aaronmk
mysql: _always $(call forOs,mysql) mysql_user
208 241 aaronmk
	@$(done)
209
210 418 aaronmk
rm_mysql: _always rm_mysql_user ;
211 241 aaronmk
212 383 aaronmk
mysql-Linux: _always
213 244 aaronmk
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
214 238 aaronmk
	@$(wait)
215 237 aaronmk
	-sudo apt-get install mysql-server mysql-client python-mysqldb
216 235 aaronmk
217 383 aaronmk
mysql-Darwin: _always
218 244 aaronmk
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
219 235 aaronmk
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
220
	@echo 'Extract the archive'
221
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
222 284 aaronmk
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
223
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
224 235 aaronmk
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
225
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
226
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
227
	@echo 'Change to the directory of the extracted files'
228 284 aaronmk
	@echo 'Run python setup.py clean'
229
	@echo 'Run python setup.py build'
230 235 aaronmk
	@echo 'Run sudo python setup.py install'
231
	@echo "Run python -c 'import MySQLdb'"
232 238 aaronmk
	@$(wait)
233 235 aaronmk
234 383 aaronmk
mysql-: _always # other OSes
235 235 aaronmk
236 247 aaronmk
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
237 235 aaronmk
238 383 aaronmk
mysql_user: _always
239 241 aaronmk
	-$($@_cmd)
240 364 aaronmk
# ignore errors if user exists
241 244 aaronmk
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
242 245 aaronmk
'$(bienPassword)';"|$(mysqlAsRoot)
243 202 aaronmk
244 383 aaronmk
rm_mysql_user: _always
245 245 aaronmk
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
246 364 aaronmk
# ignore errors if user exists
247 202 aaronmk
248 784 aaronmk
##### Datasources
249 202 aaronmk
250 418 aaronmk
inputs: _always inputs/all ;
251 245 aaronmk
252 1542 aaronmk
import: _always import-msg inputs/import ;
253
import-msg: _always
254 1550 aaronmk
	@echo $(emph)"To import all inputs at once:"$(endEmph) . bin/import_all
255 1542 aaronmk
	@echo
256
	@$(wait)
257 250 aaronmk
258 1458 aaronmk
verify: _always inputs/verify
259 1241 aaronmk
	@$(done)
260 386 aaronmk
261 1458 aaronmk
test: _always inputs/test
262 397 aaronmk
	@$(done)
263 1458 aaronmk
264
##### Testing
265
266 1743 aaronmk
test-all: _always remake test missing_mappings
267 1458 aaronmk
	@$(done)
268 1967 aaronmk
269
##### Subdir forwarding
270
271
# Must come last so overridden targets are not forwarded
272
273
define subdirTargets
274
$(subdir): _always
275
	+$$(subMake)
276
277
$(subdir)%: _always
278
	+$$(subMake)
279
.PRECIOUS: $(subdir)% # let subdir's Makefile decide whether to delete on error
280
281
$(subdir)reinstall: _always $(subdir)uninstall $(subdir)install ;
282
endef
283
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
284
285
Makefile: ;
286
287
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
288 1999 aaronmk
289
#### Maps validation
290
291
# Must come after Subdir forwarding to avoid infinite recursion, for some reason
292
293
missing_mappings: _always missing_join_mappings missing_input_mappings ;
294
295
missing_%_mappings: _always # stem is one of join|input
296
	@echo $(emph)"Missing $* mappings:"$(endEmph)
297
	@+$(MAKE) inputs/$@|grep -v -e ' Missing '\
298
$(if $(filter join,$*), -e '^make '|sort|uniq)