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
endef
68
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
69 388 aaronmk
70 416 aaronmk
Makefile: ;
71
72 414 aaronmk
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
73
74 784 aaronmk
##### Installation
75 241 aaronmk
76 411 aaronmk
install: _always core mysql inputs/install test
77 241 aaronmk
	@$(done)
78 202 aaronmk
79 418 aaronmk
uninstall: _always inputs/uninstall rm_mysql rm_core ;
80 241 aaronmk
81 418 aaronmk
reinstall: _always uninstall install ;
82 225 aaronmk
83 784 aaronmk
##### Core: VegBIEN DB and dependencies
84 202 aaronmk
85 383 aaronmk
core: _always $(call forOs,python postgres) postgres_user db
86 241 aaronmk
	@$(done)
87 235 aaronmk
88 418 aaronmk
rm_core: _always rm_db rm_postgres_user ;
89 241 aaronmk
90 418 aaronmk
reinstall_core: _always rm_core core ;
91 241 aaronmk
92 784 aaronmk
##### Python
93
94 383 aaronmk
python-Linux: _always
95 1255 aaronmk
	-sudo apt-get install python python-dev python-dateutil python-profiler\
96 1375 aaronmk
python-pip pymetrics
97 284 aaronmk
98 383 aaronmk
python-Darwin: _always
99 284 aaronmk
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
100
	@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
101
	@echo 'Extract the archive'
102
	@echo 'Change to the directory of the extracted files'
103
	@echo 'Run python setup.py build'
104
	@echo 'Run sudo python setup.py install'
105
	@echo "Run python -c 'import dateutil'"
106
	@$(wait)
107
108 784 aaronmk
##### PostgreSQL
109
110 337 aaronmk
editPhppgadminApacheConf = echo $$'1\n,s/\# \(allow from all\)/\1/\nwq'|\
111 336 aaronmk
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
112 334 aaronmk
113
apacheConf := /etc/apache2/apache2.conf
114
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
115
editApacheConfForPhppgadmin =\
116
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
117
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
118
119 335 aaronmk
nonApacheOnPort80 = $(shell sudo lsof -i :80|tail -n +2|grep -v -F apache2)
120 336 aaronmk
editApachePortsConf = echo $$'1\n,s/\\b80\\b/8080/g\nwq'|\
121
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf
122 334 aaronmk
123 383 aaronmk
postgres-Linux: _always
124 329 aaronmk
	-sudo apt-get install postgresql libpq-dev phppgadmin
125 336 aaronmk
	$(editPhppgadminApacheConf)
126 334 aaronmk
	$(editApacheConfForPhppgadmin)
127 336 aaronmk
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
128 334 aaronmk
	-sudo apache2ctl restart
129 284 aaronmk
	-sudo pip install psycopg2
130 334 aaronmk
# ignore errors if conf files already edited
131 235 aaronmk
132 383 aaronmk
postgres-Darwin: _always
133 254 aaronmk
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
134
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
135
	@echo 'Open the disk image'
136
	@echo 'Run the installer in it'
137
	@$(wait)
138 235 aaronmk
139 418 aaronmk
postgres-: _always ; # other OSes
140 241 aaronmk
141 247 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
142 249 aaronmk
psqlAsAdmin := sudo -u postgres psql $(psqlOpts)
143 1519 aaronmk
psqlAsBien := bin/psql_vegbien $(psqlOpts)
144 272 aaronmk
bienPassword := $(shell cat config/bien_password)
145 241 aaronmk
146 383 aaronmk
postgres_user: _always
147 249 aaronmk
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
148 364 aaronmk
# ignore errors if user exists
149 241 aaronmk
150 383 aaronmk
rm_postgres_user: _always
151 241 aaronmk
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
152
153 784 aaronmk
##### VegBIEN DB
154 241 aaronmk
155 389 aaronmk
db: _always schemas/vegbien.sql
156 383 aaronmk
	-$($@_create_cmd)
157 389 aaronmk
	$(psqlAsBien) <schemas/vegbien.sql
158 364 aaronmk
# ignore errors if database exists
159 383 aaronmk
db_create_cmd = echo "CREATE DATABASE vegbien OWNER bien ENCODING 'UTF8' \
160 381 aaronmk
TEMPLATE template1;"|$(psqlAsAdmin)
161 241 aaronmk
162 383 aaronmk
rm_db: _always
163 241 aaronmk
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
164
165 418 aaronmk
reinstall_db: _always rm_db db ;
166 241 aaronmk
167 389 aaronmk
empty_db: _always schemas/vegbien_empty.sql
168
	$(psqlAsBien) <schemas/vegbien_empty.sql
169 241 aaronmk
170 784 aaronmk
##### MySQL
171 241 aaronmk
172 383 aaronmk
mysql: _always $(call forOs,mysql) mysql_user
173 241 aaronmk
	@$(done)
174
175 418 aaronmk
rm_mysql: _always rm_mysql_user ;
176 241 aaronmk
177 383 aaronmk
mysql-Linux: _always
178 244 aaronmk
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
179 238 aaronmk
	@$(wait)
180 237 aaronmk
	-sudo apt-get install mysql-server mysql-client python-mysqldb
181 235 aaronmk
182 383 aaronmk
mysql-Darwin: _always
183 244 aaronmk
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
184 235 aaronmk
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
185
	@echo 'Extract the archive'
186
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
187 284 aaronmk
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
188
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
189 235 aaronmk
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
190
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
191
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
192
	@echo 'Change to the directory of the extracted files'
193 284 aaronmk
	@echo 'Run python setup.py clean'
194
	@echo 'Run python setup.py build'
195 235 aaronmk
	@echo 'Run sudo python setup.py install'
196
	@echo "Run python -c 'import MySQLdb'"
197 238 aaronmk
	@$(wait)
198 235 aaronmk
199 383 aaronmk
mysql-: _always # other OSes
200 235 aaronmk
201 247 aaronmk
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
202 235 aaronmk
203 383 aaronmk
mysql_user: _always
204 241 aaronmk
	-$($@_cmd)
205 364 aaronmk
# ignore errors if user exists
206 244 aaronmk
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
207 245 aaronmk
'$(bienPassword)';"|$(mysqlAsRoot)
208 202 aaronmk
209 383 aaronmk
rm_mysql_user: _always
210 245 aaronmk
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
211 364 aaronmk
# ignore errors if user exists
212 202 aaronmk
213 784 aaronmk
##### Datasources
214 202 aaronmk
215 418 aaronmk
inputs: _always inputs/all ;
216 245 aaronmk
217 418 aaronmk
import: _always inputs/import ;
218 250 aaronmk
219 1458 aaronmk
verify: _always inputs/verify
220 1241 aaronmk
	@$(done)
221 386 aaronmk
222 1458 aaronmk
test: _always inputs/test
223 397 aaronmk
	@$(done)
224 1458 aaronmk
225 1519 aaronmk
#### Maps validation
226
227
filter_join_warnings =\
228
$(SED) -n 's/^.*No join mapping for ([0-9A-Za-z_-]+).*$$/\1/p'\
229
|bin/ucase_first 0|sort|uniq
230
231
missing_joins:
232
	$(MAKE) inputs/remake 2>&1|$(filter_join_warnings)
233
234 1458 aaronmk
##### Testing
235
236
test-all: _always remake test
237
	@$(done)