forked from mongodb/mongo-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup_multiversion_mongodb.py
executable file
·291 lines (235 loc) · 10.3 KB
/
setup_multiversion_mongodb.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
289
290
#!/usr/bin/python
import re
import sys
import os
import tempfile
import urllib2
import subprocess
import tarfile
import zipfile
import shutil
import errno
# To ensure it exists on the system
import gzip
import argparse
#
# Useful script for installing multiple versions of MongoDB on a machine
# Only really tested/works on Linux.
#
def version_tuple(version):
"""Returns a version tuple that can be used for numeric sorting
of version strings such as '2.6.0-rc1' and '2.4.0'"""
RC_OFFSET = -100
version_parts = re.split(r'\.|-', version[0])
if version_parts[-1].startswith("rc"):
rc_part = version_parts.pop()
rc_part = rc_part.split('rc')[1]
# RC versions are weighted down to allow future RCs and general
# releases to be sorted in ascending order (e.g., 2.6.0-rc1,
# 2.6.0-rc2, 2.6.0).
version_parts.append(int(rc_part) + RC_OFFSET)
else:
# Non-RC releases have an extra 0 appended so version tuples like
# (2, 6, 0, -100) and (2, 6, 0, 0) sort in ascending order.
version_parts.append(0)
return tuple(map(int, version_parts))
class MultiVersionDownloaderBase :
def download_version(self, version):
try:
os.makedirs(self.install_dir)
except OSError as exc:
if exc.errno == errno.EEXIST and os.path.isdir(self.install_dir):
pass
else: raise
url, full_version = self.gen_url(version)
# this extracts the filename portion of the URL, without the extension.
# for example: ttp://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.12.tgz
# extract_dir will become mongodb-osx-x86_64-2.4.12
extract_dir = url.split("/")[-1][:-4]
# only download if we don't already have the directory
already_downloaded = os.path.isdir(os.path.join( self.install_dir, extract_dir))
if already_downloaded:
print "Skipping download for version %s (%s) since the dest already exists '%s'" \
% (version, full_version, extract_dir)
else:
temp_dir = tempfile.mkdtemp()
temp_file = tempfile.mktemp(suffix=".tgz")
data = urllib2.urlopen(url)
print "Downloading data for version %s (%s) from %s..." % (version, full_version, url)
with open(temp_file, 'wb') as f:
f.write(data.read())
print "Uncompressing data for version %s (%s)..." % (version, full_version)
try:
tf = tarfile.open(temp_file, 'r:gz')
tf.extractall(path=temp_dir)
tf.close()
except:
# support for windows
zfile = zipfile.ZipFile(temp_file)
try:
if not os.path.exists(temp_dir):
os.makedirs(temp_dir)
for name in zfile.namelist():
_, filename = os.path.split(name)
print "Decompressing " + filename + " on " + temp_dir
zfile.extract(name, temp_dir)
except:
zfile.close()
raise
zfile.close()
temp_install_dir = os.path.join(temp_dir, extract_dir)
try:
os.stat(temp_install_dir)
except:
dir = os.listdir(temp_dir)
# TODO confirm that there is one and only one directory entry
os.rename(os.path.join(temp_dir,dir[0]),temp_install_dir)
shutil.move(temp_install_dir, self.install_dir)
shutil.rmtree(temp_dir)
try:
os.remove(temp_file)
except Exception as e:
print e
pass
self.symlink_version(version, os.path.abspath(os.path.join(self.install_dir, extract_dir)))
def symlink_version(self, version, installed_dir):
try:
os.makedirs(self.link_dir)
except OSError as exc:
if exc.errno == errno.EEXIST and os.path.isdir(self.link_dir):
pass
else: raise
for executable in os.listdir(os.path.join(installed_dir, "bin")):
link_name = "%s-%s" % (executable, version)
# support for windows
if executable.endswith(".exe") or executable.endswith(".pdb"):
link_name = "%s-%s.%s" % (executable[:-4], version, executable[len(executable)-3:])
try:
os.symlink(os.path.join(installed_dir, "bin", executable),\
os.path.join(self.link_dir, link_name))
except Exception as exc:
try:
# support for windows
shutil.copy2(os.path.join(installed_dir, "bin", executable),\
os.path.join(self.link_dir, link_name))
except:
if exc.errno == errno.EEXIST:
pass
else:
raise
class MultiVersionDownloader(MultiVersionDownloaderBase) :
def __init__(self, install_dir, link_dir, platform):
self.install_dir = install_dir
self.link_dir = link_dir
match = re.compile("(.*)\/(.*)").match(platform)
self.platform = match.group(1)
self.arch = match.group(2)
self._links = None
@property
def links(self):
if self._links is None:
self._links = self.download_links()
return self._links
def gen_url(self, version):
urls = []
for link_version, link_url in self.links.iteritems():
if link_version.startswith(version):
# If we have a "-" in our version, exact match only
if version.find("-") >= 0:
if link_version != version: continue
elif link_version.find("-") >= 0:
continue
urls.append((link_version, link_url))
if len(urls) == 0:
raise Exception("Cannot find a link for version %s, versions %s found." \
% (version, self.links))
urls.sort(key=version_tuple)
full_version = urls[-1][0]
url = urls[-1][1]
return url, full_version
def download_links(self):
href = "http://dl.mongodb.org/dl/%s/%s" \
% (self.platform, self.arch)
html = urllib2.urlopen(href).read()
links = {}
for line in html.split():
match = None
for ext in ["tgz", "zip"]:
match = re.compile("http:\/\/downloads\.mongodb\.org\/%s/mongodb-%s-%s-([^\"]*)\.%s" \
% (self.platform, self.platform, self.arch, ext)).search(line)
if match != None:
break
if match == None:
continue
link = match.group(0)
version = match.group(1)
links[version] = link
return links
class LatestMultiVersionDownloader(MultiVersionDownloaderBase) :
def __init__(self, install_dir, link_dir, platform, use_ssl, os):
self.install_dir = install_dir
self.link_dir = link_dir
match = re.compile("(.*)\/(.*)").match(platform)
self.platform = match.group(1)
self.arch = match.group(2)
self._links = None
self.use_ssl = use_ssl
self.os = os
def gen_url(self, version):
ext = "tgz"
if "win" in self.platform:
ext = "zip"
if self.use_ssl:
if version == "2.4":
enterprise_string = "subscription"
else:
enterprise_string = "enterprise"
full_version = self.os + "-v" + version + "-latest"
url = "http://downloads.10gen.com/%s/mongodb-%s-%s-%s-%s.%s" % ( self.platform, self.platform, self.arch, enterprise_string, full_version, ext )
else:
full_version = "v" + version + "-latest"
url = "http://downloads.mongodb.org/%s/mongodb-%s-%s-%s.%s" % ( self.platform, self.platform, self.arch, full_version, ext )
return url, full_version
CL_HELP_MESSAGE = \
"""
Downloads and installs particular mongodb versions (each binary is renamed to include its version)
into an install directory and symlinks the binaries with versions to another directory.
Usage: setup_multiversion_mongodb.py INSTALL_DIR LINK_DIR PLATFORM_AND_ARCH VERSION1 [VERSION2 VERSION3 ...]
Ex: setup_multiversion_mongodb.py ./install ./link "Linux/x86_64" "2.0.6" "2.0.3-rc0" "2.0" "2.2" "2.3"
Ex: setup_multiversion_mongodb.py ./install ./link "OSX/x86_64" "2.4" "2.2"
After running the script you will have a directory structure like this:
./install/[mongodb-osx-x86_64-2.4.9, mongodb-osx-x86_64-2.2.7]
./link/[mongod-2.4.9, mongod-2.2.7, mongo-2.4.9...]
You should then add ./link/ to your path so multi-version tests will work.
Note: If "rc" is included in the version name, we'll use the exact rc, otherwise we'll pull the highest non-rc
version compatible with the version specified.
"""
def parse_cl_args(args):
parser = argparse.ArgumentParser(description=CL_HELP_MESSAGE)
def raise_exception(msg):
print CL_HELP_MESSAGE
raise Exception(msg)
parser.add_argument('install_dir', action="store" )
parser.add_argument('link_dir', action="store" )
parser.add_argument('platform_and_arch', action="store" )
parser.add_argument('--latest', action="store_true" )
parser.add_argument('--use-ssl', action="store_true" )
parser.add_argument('--os', action="store" )
parser.add_argument('version', action="store", nargs="+" )
args = parser.parse_args()
if re.compile(".*\/.*").match(args.platform_and_arch) == None:
raise_exception("PLATFORM_AND_ARCH isn't of the correct format")
if args.latest:
if not args.os:
raise_exception("using --use-ssl requires an --os parameter")
return (LatestMultiVersionDownloader(args.install_dir, args.link_dir, args.platform_and_arch, args.use_ssl, args.os), args.version)
else:
if args.use_ssl:
raise_exception("you can only use --use-ssl when using --latest")
return (MultiVersionDownloader(args.install_dir, args.link_dir, args.platform_and_arch), args.version)
def main():
downloader, versions = parse_cl_args(sys.argv[1:])
for version in versions:
downloader.download_version(version)
if __name__ == '__main__':
main()