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 1519 aaronmk
SED = sed -$(if $(filter Darwin,$(os)),E,r)
15
16 241 aaronmk
# Terminal
17 247 aaronmk
esc := '['
18
reset := $(esc)'0m'
19
emph := $(esc)'7m '
20
endEmph := ' '$(reset)
21 245 aaronmk
22
# User interaction
23
24
confirm = $(shell read -p $(emph)"$(1) (y/n)"$(endEmph) REPLY; \
25
test "$REPLY" = y && echo t)
26
27
getPassword = $(shell read -s -p $(emph)"Enter your $(1) password:"$(endEmph) \
28
REPLY; echo >&2; echo -n "$REPLY")
29
30 247 aaronmk
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
31 245 aaronmk
32 249 aaronmk
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
33 235 aaronmk
34 335 aaronmk
# File editing
35
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
36
37 784 aaronmk
##### Environment
38
39 225 aaronmk
export PGOPTIONS = --client-min-messages=WARNING
40
41 784 aaronmk
##### General targets
42 225 aaronmk
43 414 aaronmk
all:
44 228 aaronmk
45 1260 aaronmk
.SUFFIXES: # turn off built-in suffix rules
46
.SECONDARY: # don't automatically delete intermediate files
47 1354 aaronmk
.DELETE_ON_ERROR: # delete target if recipe fails
48 225 aaronmk
49 383 aaronmk
_always:
50
.PHONY: _always
51 202 aaronmk
52 1274 aaronmk
remake: _always clean
53
	$(MAKE)
54
# re-run make so that cache of existing files is reset
55
56 1288 aaronmk
%/remake: _always
57
	$(MAKE) $(@D)/clean
58
	$(MAKE) $(@D)/
59
# re-run make so that cache of existing files is reset
60
61 402 aaronmk
define subdirTargets
62
$(subdir): _always
63
	+$$(subMake)
64 388 aaronmk
65 402 aaronmk
$(subdir)%: _always
66
	+$$(subMake)
67 1628 aaronmk
.PRECIOUS: $(subdir)% # let subdir's Makefile decide whether to delete on error
68 402 aaronmk
endef
69
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
70 388 aaronmk
71 416 aaronmk
Makefile: ;
72
73 414 aaronmk
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
74
75 784 aaronmk
##### Installation
76 241 aaronmk
77 411 aaronmk
install: _always core mysql inputs/install test
78 241 aaronmk
	@$(done)
79 202 aaronmk
80 418 aaronmk
uninstall: _always inputs/uninstall rm_mysql rm_core ;
81 241 aaronmk
82 418 aaronmk
reinstall: _always uninstall install ;
83 225 aaronmk
84 784 aaronmk
##### Core: VegBIEN DB and dependencies
85 202 aaronmk
86 1599 aaronmk
core: _always $(call forOs,python php postgres) postgres_user db
87 241 aaronmk
	@$(done)
88 235 aaronmk
89 418 aaronmk
rm_core: _always rm_db rm_postgres_user ;
90 241 aaronmk
91 418 aaronmk
reinstall_core: _always rm_core core ;
92 241 aaronmk
93 784 aaronmk
##### Python
94
95 383 aaronmk
python-Linux: _always
96 1255 aaronmk
	-sudo apt-get install python python-dev python-dateutil python-profiler\
97 1375 aaronmk
python-pip pymetrics
98 284 aaronmk
99 383 aaronmk
python-Darwin: _always
100 284 aaronmk
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
101
	@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
102
	@echo 'Extract the archive'
103
	@echo 'Change to the directory of the extracted files'
104
	@echo 'Run python setup.py build'
105
	@echo 'Run sudo python setup.py install'
106
	@echo "Run python -c 'import dateutil'"
107
	@$(wait)
108
109 1599 aaronmk
##### PHP
110
111
php-Linux: _always
112
	-sudo apt-get install php-http-request
113
114
php-Darwin: _always
115 1600 aaronmk
	@echo $(emph)'Installing PHP PEAR and HTTP_Request on Mac OS X:'$(endEmph)
116
	@echo 'Download http://pear.php.net/go-pear.phar'
117
	@echo 'Change to the directory of the downloaded file'
118
	@echo 'Run php -d detect_unicode=0 go-pear.phar'
119
	@echo 'Whenever prompted, press Enter to select default options'
120
	@echo 'Add $$HOME/pear/bin to your $$PATH'
121
	@echo 'Add $(HOME)/pear/share/pear to your php.ini include_path'
122
	@echo "Run pear install HTTP_Request"
123
	@echo 'To run a php command: php -c <php.ini-path> ...'
124 1599 aaronmk
	@$(wait)
125
126 784 aaronmk
##### PostgreSQL
127
128 337 aaronmk
editPhppgadminApacheConf = echo $$'1\n,s/\# \(allow from all\)/\1/\nwq'|\
129 336 aaronmk
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
130 334 aaronmk
131
apacheConf := /etc/apache2/apache2.conf
132
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
133
editApacheConfForPhppgadmin =\
134
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
135
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
136
137 335 aaronmk
nonApacheOnPort80 = $(shell sudo lsof -i :80|tail -n +2|grep -v -F apache2)
138 336 aaronmk
editApachePortsConf = echo $$'1\n,s/\\b80\\b/8080/g\nwq'|\
139
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf
140 334 aaronmk
141 383 aaronmk
postgres-Linux: _always
142 329 aaronmk
	-sudo apt-get install postgresql libpq-dev phppgadmin
143 336 aaronmk
	$(editPhppgadminApacheConf)
144 334 aaronmk
	$(editApacheConfForPhppgadmin)
145 336 aaronmk
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
146 334 aaronmk
	-sudo apache2ctl restart
147 284 aaronmk
	-sudo pip install psycopg2
148 334 aaronmk
# ignore errors if conf files already edited
149 235 aaronmk
150 383 aaronmk
postgres-Darwin: _always
151 254 aaronmk
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
152
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
153
	@echo 'Open the disk image'
154
	@echo 'Run the installer in it'
155
	@$(wait)
156 235 aaronmk
157 418 aaronmk
postgres-: _always ; # other OSes
158 241 aaronmk
159 247 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
160 249 aaronmk
psqlAsAdmin := sudo -u postgres psql $(psqlOpts)
161 1519 aaronmk
psqlAsBien := bin/psql_vegbien $(psqlOpts)
162 272 aaronmk
bienPassword := $(shell cat config/bien_password)
163 241 aaronmk
164 383 aaronmk
postgres_user: _always
165 249 aaronmk
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
166 364 aaronmk
# ignore errors if user exists
167 241 aaronmk
168 383 aaronmk
rm_postgres_user: _always
169 241 aaronmk
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
170
171 784 aaronmk
##### VegBIEN DB
172 241 aaronmk
173 389 aaronmk
db: _always schemas/vegbien.sql
174 383 aaronmk
	-$($@_create_cmd)
175 389 aaronmk
	$(psqlAsBien) <schemas/vegbien.sql
176 364 aaronmk
# ignore errors if database exists
177 383 aaronmk
db_create_cmd = echo "CREATE DATABASE vegbien OWNER bien ENCODING 'UTF8' \
178 381 aaronmk
TEMPLATE template1;"|$(psqlAsAdmin)
179 241 aaronmk
180 383 aaronmk
rm_db: _always
181 241 aaronmk
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
182
183 418 aaronmk
reinstall_db: _always rm_db db ;
184 241 aaronmk
185 389 aaronmk
empty_db: _always schemas/vegbien_empty.sql
186
	$(psqlAsBien) <schemas/vegbien_empty.sql
187 241 aaronmk
188 784 aaronmk
##### MySQL
189 241 aaronmk
190 383 aaronmk
mysql: _always $(call forOs,mysql) mysql_user
191 241 aaronmk
	@$(done)
192
193 418 aaronmk
rm_mysql: _always rm_mysql_user ;
194 241 aaronmk
195 383 aaronmk
mysql-Linux: _always
196 244 aaronmk
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
197 238 aaronmk
	@$(wait)
198 237 aaronmk
	-sudo apt-get install mysql-server mysql-client python-mysqldb
199 235 aaronmk
200 383 aaronmk
mysql-Darwin: _always
201 244 aaronmk
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
202 235 aaronmk
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
203
	@echo 'Extract the archive'
204
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
205 284 aaronmk
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
206
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
207 235 aaronmk
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
208
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
209
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
210
	@echo 'Change to the directory of the extracted files'
211 284 aaronmk
	@echo 'Run python setup.py clean'
212
	@echo 'Run python setup.py build'
213 235 aaronmk
	@echo 'Run sudo python setup.py install'
214
	@echo "Run python -c 'import MySQLdb'"
215 238 aaronmk
	@$(wait)
216 235 aaronmk
217 383 aaronmk
mysql-: _always # other OSes
218 235 aaronmk
219 247 aaronmk
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
220 235 aaronmk
221 383 aaronmk
mysql_user: _always
222 241 aaronmk
	-$($@_cmd)
223 364 aaronmk
# ignore errors if user exists
224 244 aaronmk
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
225 245 aaronmk
'$(bienPassword)';"|$(mysqlAsRoot)
226 202 aaronmk
227 383 aaronmk
rm_mysql_user: _always
228 245 aaronmk
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
229 364 aaronmk
# ignore errors if user exists
230 202 aaronmk
231 784 aaronmk
##### Datasources
232 202 aaronmk
233 418 aaronmk
inputs: _always inputs/all ;
234 245 aaronmk
235 1542 aaronmk
import: _always import-msg inputs/import ;
236
import-msg: _always
237 1550 aaronmk
	@echo $(emph)"To import all inputs at once:"$(endEmph) . bin/import_all
238 1542 aaronmk
	@echo
239
	@$(wait)
240 250 aaronmk
241 1458 aaronmk
verify: _always inputs/verify
242 1241 aaronmk
	@$(done)
243 386 aaronmk
244 1458 aaronmk
test: _always inputs/test
245 397 aaronmk
	@$(done)
246 1458 aaronmk
247 1519 aaronmk
#### Maps validation
248
249
filter_join_warnings =\
250
$(SED) -n 's/^.*No join mapping for ([0-9A-Za-z_-]+).*$$/\1/p'\
251
|bin/ucase_first 0|sort|uniq
252
253
missing_joins:
254
	$(MAKE) inputs/remake 2>&1|$(filter_join_warnings)
255
256 1458 aaronmk
##### Testing
257
258
test-all: _always remake test
259
	@$(done)