OLD | NEW |
---|---|
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # This file contains a set of utilities functions used by other Python-based | 5 # This file contains a set of utilities functions used by other Python-based |
6 # scripts. | 6 # scripts. |
7 | 7 |
8 import commands | 8 import commands |
9 import os | 9 import os |
10 import platform | 10 import platform |
11 import re | 11 import re |
12 import shutil | 12 import shutil |
13 import subprocess | 13 import subprocess |
14 import sys | 14 import sys |
15 import tempfile | 15 import tempfile |
16 | 16 |
17 class Version(object): | |
18 def __init__(self, channel, major, minor, patch, prerelease, | |
19 prerelease_patch): | |
20 self.channel = channel | |
21 self.major = major | |
22 self.minor = minor | |
23 self.patch = patch | |
24 self.prerelease = prerelease | |
25 self.prerelease_patch = prerelease_patch | |
17 | 26 |
18 # Try to guess the host operating system. | 27 # Try to guess the host operating system. |
19 def GuessOS(): | 28 def GuessOS(): |
20 id = platform.system() | 29 id = platform.system() |
21 if id == "Linux": | 30 if id == "Linux": |
22 return "linux" | 31 return "linux" |
23 elif id == "Darwin": | 32 elif id == "Darwin": |
24 return "macos" | 33 return "macos" |
25 elif id == "Windows" or id == "Microsoft": | 34 elif id == "Windows" or id == "Microsoft": |
26 # On Windows Vista platform.system() can return "Microsoft" with some | 35 # On Windows Vista platform.system() can return "Microsoft" with some |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
224 | 233 |
225 def GetBuildRoot(host_os, mode=None, arch=None, target_os=None): | 234 def GetBuildRoot(host_os, mode=None, arch=None, target_os=None): |
226 build_root = GetBuildDir(host_os, target_os) | 235 build_root = GetBuildDir(host_os, target_os) |
227 if mode: | 236 if mode: |
228 build_root = os.path.join(build_root, GetBuildConf(mode, arch)) | 237 build_root = os.path.join(build_root, GetBuildConf(mode, arch)) |
229 return build_root | 238 return build_root |
230 | 239 |
231 def GetBaseDir(): | 240 def GetBaseDir(): |
232 return BASE_DIR | 241 return BASE_DIR |
233 | 242 |
234 # Return the base part of the version, Major.Minor.Build.Patch, | 243 # Return the base part of the version, Major.Minor.Build.Patch, |
Bob Nystrom
2013/12/04 22:28:20
Update this comment.
kustermann
2013/12/05 09:27:27
Removed comment, it's obvious what it returns.
| |
235 # without the _revision addition | 244 # without the _revision addition |
236 def GetShortVersion(): | 245 def GetShortVersion(): |
237 (channel, major, minor, build, patch) = ReadVersionFile() | 246 version = ReadVersionFile() |
238 # TODO(kustermann/ricow): Add the channel to the version string. | 247 return ('%s.%s.%s.%s.%s' % ( |
239 return '%s.%s.%s.%s' % (major, minor, build, patch) | 248 version.major, version.minor, version.patch, version.prerelease, |
249 version.prerelease_patch)) | |
240 | 250 |
251 def GetSemanticSDKVersion(): | |
252 version = ReadVersionFile() | |
253 if not version: | |
254 return None | |
255 | |
256 if version.channel == 'be': | |
257 postfix = '-edge.%s' % GetSVNRevision() | |
kasperl
2013/12/05 08:29:58
Why did you choose edge over be in the postfix str
kustermann
2013/12/05 09:27:27
It depends a bit on how we will do releases, but t
kasperl
2013/12/05 09:44:47
That makes sense to me. Let's stick to edge. Maybe
| |
258 elif version.channel == 'dev': | |
259 postfix = '-dev.%s.%s' % (version.prerelease, version.prerelease_patch) | |
260 else: | |
261 assert version.channel == 'stable' | |
262 postfix = '' | |
263 | |
264 return '%s.%s.%s%s' % (version.major, version.minor, version.patch, postfix) | |
265 | |
266 def GetEclipseVersionQualifier(): | |
267 def pad(number, num_digits): | |
268 number_str = str(number) | |
269 return '0' * max(0, num_digits - len(number_str)) + number_str | |
270 | |
271 version = ReadVersionFile() | |
272 if version.channel == 'be': | |
273 return 'edge_%s' % pad(GetSVNRevision(), 6) | |
274 elif version.channel == 'dev': | |
275 return 'dev_%s_%s' % (pad(version.prerelease, 2), | |
276 pad(version.prerelease_patch, 2)) | |
277 else: | |
278 return 'release' | |
241 | 279 |
242 def GetVersion(): | 280 def GetVersion(): |
243 version_tuple = ReadVersionFile() | 281 return GetSemanticSDKVersion() |
244 if not version_tuple: | |
245 return None | |
246 | |
247 (channel, major, minor, build, patch) = version_tuple | |
248 revision = GetSVNRevision() | |
249 user = GetUserName() | |
250 # We don't add username to release builds (or any builds on the bots) | |
251 if user == 'chrome-bot': | |
252 user = '' | |
253 | |
254 user_string = '' | |
255 revision_string = '' | |
256 if user: | |
257 user_string = '_%s' % user | |
258 if revision: | |
259 revision_string = '_r%s' % revision | |
260 | |
261 # TODO(kustermann/ricow): Add the channel to the version string. | |
262 return ("%s.%s.%s.%s%s%s" % | |
263 (major, minor, build, patch, revision_string, user_string)) | |
264 | 282 |
265 def GetChannel(): | 283 def GetChannel(): |
266 (channel, _, _, _, _) = ReadVersionFile() | 284 version = ReadVersionFile() |
267 return channel | 285 return version.channel |
268 | 286 |
269 def GetUserName(): | 287 def GetUserName(): |
270 key = 'USER' | 288 key = 'USER' |
271 if sys.platform == 'win32': | 289 if sys.platform == 'win32': |
272 key = 'USERNAME' | 290 key = 'USERNAME' |
273 return os.environ.get(key, '') | 291 return os.environ.get(key, '') |
274 | 292 |
275 def ReadVersionFile(): | 293 def ReadVersionFile(): |
294 def match_against(pattern, content): | |
295 match = re.search(pattern, content, flags=re.MULTILINE) | |
296 if match: | |
297 return match.group(1) | |
298 return None | |
299 | |
276 version_file = os.path.join(DART_DIR, 'tools', 'VERSION') | 300 version_file = os.path.join(DART_DIR, 'tools', 'VERSION') |
277 try: | 301 try: |
278 fd = open(version_file) | 302 fd = open(version_file) |
279 content = fd.read() | 303 content = fd.read() |
280 fd.close() | 304 fd.close() |
281 except: | 305 except: |
282 print "Warning: Couldn't read VERSION file (%s)" % version_file | 306 print "Warning: Couldn't read VERSION file (%s)" % version_file |
283 return None | 307 return None |
284 channel_match = re.search( | 308 |
285 '^CHANNEL ([A-Za-z0-9]+)$', content, flags=re.MULTILINE) | 309 channel = match_against('^CHANNEL ([A-Za-z0-9]+)$', content) |
kasperl
2013/12/05 08:29:58
Looks like this allows the VERSION file to contain
kustermann
2013/12/05 09:27:27
That came to my mind as well, but I wasn't sure if
| |
286 major_match = re.search('^MAJOR (\d+)$', content, flags=re.MULTILINE) | 310 major = match_against('^MAJOR (\d+)$', content) |
287 minor_match = re.search('^MINOR (\d+)$', content, flags=re.MULTILINE) | 311 minor = match_against('^MINOR (\d+)$', content) |
288 build_match = re.search('^BUILD (\d+)$', content, flags=re.MULTILINE) | 312 patch = match_against('^PATCH (\d+)$', content) |
289 patch_match = re.search('^PATCH (\d+)$', content, flags=re.MULTILINE) | 313 prerelease = match_against('^PRERELEASE (\d+)$', content) |
290 if (channel_match and | 314 prerelease_patch = match_against('^PRERELEASE_PATCH (\d+)$', content) |
291 major_match and | 315 |
292 minor_match and | 316 if channel and major and minor and prerelease and prerelease_patch: |
293 build_match and | 317 return Version( |
294 patch_match): | 318 channel, major, minor, patch, prerelease, prerelease_patch) |
295 return (channel_match.group(1), major_match.group(1), minor_match.group(1), | |
296 build_match.group(1), patch_match.group(1)) | |
297 else: | 319 else: |
298 print "Warning: VERSION file (%s) has wrong format" % version_file | 320 print "Warning: VERSION file (%s) has wrong format" % version_file |
299 return None | 321 return None |
300 | 322 |
301 def GetSVNRevision(): | 323 def GetSVNRevision(): |
302 # FIXME(kustermann): Make this work for newer SVN versions as well (where | 324 # FIXME(kustermann): Make this work for newer SVN versions as well (where |
303 # we've got only one '.svn' directory) | 325 # we've got only one '.svn' directory) |
304 custom_env = dict(os.environ) | 326 custom_env = dict(os.environ) |
305 custom_env['LC_MESSAGES'] = 'en_GB' | 327 custom_env['LC_MESSAGES'] = 'en_GB' |
306 p = subprocess.Popen(['svn', 'info'], stdout = subprocess.PIPE, | 328 p = subprocess.Popen(['svn', 'info'], stdout = subprocess.PIPE, |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
507 os.chdir(self._working_directory) | 529 os.chdir(self._working_directory) |
508 | 530 |
509 def __exit__(self, *_): | 531 def __exit__(self, *_): |
510 print "Enter directory = ", self._old_cwd | 532 print "Enter directory = ", self._old_cwd |
511 os.chdir(self._old_cwd) | 533 os.chdir(self._old_cwd) |
512 | 534 |
513 | 535 |
514 if __name__ == "__main__": | 536 if __name__ == "__main__": |
515 import sys | 537 import sys |
516 Main(sys.argv) | 538 Main(sys.argv) |
OLD | NEW |