forked from mozilla/dxr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deploy.py
288 lines (235 loc) · 10.8 KB
/
deploy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
"""Continuous deployment script for DXR
Glossary
========
build directory - A folder, typically in the ``builds`` folder, containing
these folders...
dxr - A checkout of the DXR source code
target - A symlink to the instance to serve
virtualenv - A virtualenv with DXR and its dependencies installed
Builds are named after an excerpt of their git hashes and are symlinked
into the base directory.
base directory - The folder containing these folders...
builds - A folder of builds, including the current production and staging
ones
dxr-prod - A symlink to the current production build
dxr-staging - A symlink to the current staging build
instances - A folder of DXR instances organized according to format version
"""
# When we need to make this work across multiple nodes:
# I really have no reason to use Commander over Fabric: I don't need Chief, and
# nearly all the features and conveniences Commander had over Fabric have been
# since implemented in Fabric. Fabric has more features and more support and
# was released more recently. OTOH, Fabric's argument conventions are crazy.
# TODO: Update the deployment script first, and use the new version to deploy.
# That way, each version is deployed by the deployment script that ships with
# it.
from contextlib import contextmanager
from optparse import OptionParser
import os
from os import chdir, O_CREAT, O_EXCL, remove, getcwd
from os.path import join
from pipes import quote
from subprocess import check_output
from tempfile import mkdtemp, gettempdir
import requests
def main():
"""Handle command-line munging, and pass off control to the interesting
stuff."""
parser = OptionParser(
usage='usage: %prog [options] <staging | prod>',
description='Deploy a new version of DXR.')
parser.add_option('-b', '--base', dest='base_path',
help='Path to the dir containing the builds, instances, '
'and deployment links')
parser.add_option('-p', '--python', dest='python_path',
help='Path to the Python executable on which to base the'
' virtualenvs')
parser.add_option('-e', '--repo', dest='repo',
help='URL of the git repo from which to download DXR. '
'Use HTTPS if possible to ward off spoofing.')
parser.add_option('-r', '--rev', dest='manual_rev',
help='A hash of the revision to deploy. Defaults to the '
'last successful Jenkins build on master.')
options, args = parser.parse_args()
if len(args) == 1:
non_none_options = dict((k, getattr(options, k)) for k in
(o.dest for o in parser.option_list if o.dest)
if getattr(options, k))
Deployment(args[0], **non_none_options).deploy_if_appropriate()
else:
parser.print_usage()
class Deployment(object):
"""A little inversion-of-control framework for deployments
Maybe someday we'll plug in methods to handle a different project.
"""
def __init__(self,
kind,
base_path='/data',
python_path='/usr/bin/python2.7',
repo='https://github.com/mozilla/dxr.git',
manual_rev=None):
"""Construct.
:arg kind: The type of deployment this is, either "staging" or "prod".
Affects only some folder names.
:arg base_path: Path to the dir containing the builds, instances, and
deployment links
:arg python_path: Path to the Python executable on which to base the
virtualenvs
:arg repo: URL of the git repo from which to download DXR. Use HTTPS if
possible to ward off spoofing.
:arg manual_rev: A hash of the revision to deploy. Defaults to the last
successful Jenkins build on master.
"""
self.kind = kind
self.base_path = base_path
self.python_path = python_path
self.repo = repo
self.manual_rev = manual_rev
def rev_to_deploy(self):
"""Return the VCS revision identifier of the version we should
deploy.
If we shouldn't deploy for some reason (like if we're already at the
newest revision or nobody has pressed the Deploy button since the last
deploy), raise ShouldNotDeploy.
"""
with cd(join(self._deployment_path(), 'dxr')):
old_hash = run('git rev-parse --verify HEAD').strip()
new_hash = self._latest_successful_build()
if old_hash == new_hash:
raise ShouldNotDeploy('The latest test-passing revision is already'
' deployed.')
return new_hash
def _latest_successful_build(self):
"""Return the SHA of the latest test-passing commit on master."""
response = requests.get('https://ci.mozilla.org/job/dxr/'
'lastSuccessfulBuild/git/api/json',
verify=True)
return (response.json()['buildsByBranchName']
['origin/master']
['revision']
['SHA1'])
def build(self, rev):
"""Create and return the path of a new directory containing a new
deployment of the given revision of the source.
If it turns out we shouldn't deploy this build after all (perhaps
because some additional data yielded by an asynchronous build process
isn't yet available in the new format) but there hasn't been a
programming error that would warrant a more serious exception, raise
ShouldNotDeploy.
"""
VENV_NAME = 'virtualenv'
new_build_path = mkdtemp(prefix='%s-' % rev[:6],
dir=join(self.base_path, 'builds'))
with cd(new_build_path):
# Make a fresh, blank virtualenv:
run('virtualenv -p {python} --no-site-packages {venv_name}',
python=self.python_path,
venv_name=VENV_NAME)
# Check out the source, and install DXR and dependencies:
run('git clone {repo}', repo=self.repo)
with cd('dxr'):
run('git checkout -q {rev}', rev=rev)
run('git submodule update -q --init --recursive')
# Make sure a malicious server didn't slip us a mickey. TODO:
# Does this recurse into submodules?
# TODO: reinstate once we have a new enough git on the server
# to support --no-dangling.
# run('git fsck --no-dangling')
# Install stuff:
venv_bin_path = join(new_build_path, VENV_NAME, 'bin')
run('{pip} install -r requirements.txt',
pip=join(venv_bin_path, 'pip'))
# Quiet the complaint about there being no matches for *.so:
run('{python} setup.py install 2>/dev/null',
python=join(venv_bin_path, 'python'))
# After installing, you always have to re-run this, even if we
# were reusing a venv:
run('virtualenv --relocatable {venv}',
venv=join(new_build_path, VENV_NAME))
# Link to the built, version-0 DXR instance. TODO: Figure out which
# instance to use based on the format version embedded in DXR. If
# there isn't an instance that new yet, raise ShouldNotDeploy.
run('ln -s {points_to} target',
points_to=join(self.base_path, 'instances/0/target'))
run('chmod 755 .') # mkdtemp uses a very conservative mask.
return new_build_path
def install(self, new_build_path):
"""Install a build at ``self.deployment_path``.
Avoid race conditions as much as possible. If it turns out we should
not deploy for some anticipated reason, raise ShouldNotDeploy.
"""
with cd(new_build_path):
run('ln -s {points_to} {sits_at}',
points_to=new_build_path,
sits_at='new-link')
# Big, fat atomic (nay, nuclear) mv:
run('mv -T new-link {dest}', dest=self._deployment_path())
# TODO: Delete the old build or maybe all the builds that aren't this
# one or the previous one (which we can get by reading the old symlink).
# TODO: Does just frobbing the symlink count as touching the wsgi file?
def deploy_if_appropriate(self):
"""Deploy a new build if we should."""
with nonblocking_lock('dxr-deploy-%s' % self.kind) as got_lock:
if got_lock:
try:
rev = self.manual_rev or self.rev_to_deploy()
new_build_path = self.build(rev)
self.install(new_build_path)
except ShouldNotDeploy:
pass
else:
# if not self.passes_smoke_test():
# self.rollback()
pass
def _deployment_path(self):
"""Return the path of the symlink to the deployed build of DXR."""
return join(self.base_path, 'dxr-%s' % self.kind)
def run(command, **kwargs):
"""Return the output of a command.
Pass in any kind of shell-executable line you like, with one or more
commands, pipes, etc. Any kwargs will be shell-escaped and then subbed into
the command using ``format()``::
>>> run('echo hi')
"hi"
>>> run('echo {name}', name='Fred')
"Fred"
This is optimized for callsite readability. Internalizing ``format()``
keeps noise off the call. If you use named substitution tokens, individual
commands are almost as readable as in a raw shell script. The command
doesn't need to be read out of order, as with anonymous tokens.
"""
output = check_output(
command.format(**dict((k, quote(v)) for k, v in kwargs.iteritems())),
shell=True)
return output
@contextmanager
def cd(path):
"""Change the working dir on enter, and change it back on exit."""
old_dir = getcwd()
chdir(path)
yield
chdir(old_dir)
@contextmanager
def nonblocking_lock(lock_name):
"""Context manager that acquires and releases a file-based lock.
If it cannot immediately acquire it, it falls through and returns False.
Otherwise, it returns True.
"""
lock_path = join(gettempdir(), lock_name + '.lock')
try:
fd = os.open(lock_path, O_CREAT | O_EXCL, 0644)
except OSError:
got = False
else:
got = True
try:
yield got
finally:
if got:
os.close(fd)
remove(lock_path)
class ShouldNotDeploy(Exception):
"""We should not deploy this build at the moment, though there was no
programming error."""
if __name__ == '__main__':
main()