Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(988)

Unified Diff: build/update_reference_build.py

Issue 12662037: Adds update_reference_build.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Heavy rework, fully tested Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/update_reference_build.py
diff --git a/build/update_reference_build.py b/build/update_reference_build.py
new file mode 100755
index 0000000000000000000000000000000000000000..56cb3b93d833f61537b38290fbad700788dc9597
--- /dev/null
+++ b/build/update_reference_build.py
@@ -0,0 +1,230 @@
+#!/usr/bin/env python
+#
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Updates the Chrome reference builds.
+
+Usage:
+ $ cd /tmp
+ $ /path/to/update_reference_build.py -r <revision>
+ $ cd reference_builds/reference_builds
+ $ gcl change
+ $ gcl upload <change>
+ $ gcl commit <change>
+"""
+
+import errno
+import logging
+import optparse
+import os
+import shutil
+import subprocess
+import sys
+import time
+import urllib
+import urllib2
+import zipfile
+
+
+class BuildUpdater(object):
+ _PLATFORM_FILES_MAP = {
+ 'Win': [
+ 'chrome-win32.zip',
+ 'chrome-win32-syms.zip',
+ 'chrome-win32.test/_pyautolib.pyd',
+ 'chrome-win32.test/pyautolib.py',
+ ],
+ 'Mac': [
+ 'chrome-mac.zip',
+ 'chrome-mac.test/_pyautolib.so',
+ 'chrome-mac.test/pyautolib.py',
+ ],
+ 'Linux': [
+ 'chrome-linux.zip',
+ ],
+ 'Linux_x64': [
+ 'chrome-linux.zip',
+ ],
+ }
+
+ _PLATFORM_DEST_MAP = {
+ 'Linux': 'chrome_linux',
+ 'Linux_x64': 'chrome_linux64',
+ 'Win': 'chrome_win',
+ 'Mac': 'chrome_mac',
+ }
+
+ def __init__(self, options):
+ self._platforms = options.platforms.split(',')
+ self._revision = int(options.revision)
+
+ @staticmethod
+ def _GetCmdStatusAndOutput(args, cwd=None, shell=False):
+ """Executes a subprocess and returns its exit code and output.
+
+ Args:
+ args: A string or a sequence of program arguments.
+ cwd: If not None, the subprocess's current directory will be changed to
+ |cwd| before it's executed.
+ shell: Whether to execute args as a shell command.
+
+ Returns:
+ The tuple (exit code, output).
+ """
+ logging.info(str(args) + ' ' + (cwd or ''))
+ p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE, shell=shell)
+ stdout, stderr = p.communicate()
+ exit_code = p.returncode
+ if stderr:
+ logging.critical(stderr)
+ logging.info(stdout)
+ return (exit_code, stdout)
+
+ def _GetBuildUrl(self, platform, revision, filename):
+ URL_FMT = ('http://commondatastorage.googleapis.com/'
+ 'chromium-browser-snapshots/%s/%s/%s')
+ return URL_FMT % (urllib.quote_plus(platform), revision, filename)
+
+ def _FindBuildRevision(self, platform, revision, filename):
+ MAX_REVISIONS_PER_BUILD = 100
+ for revision_guess in xrange(revision, revision + MAX_REVISIONS_PER_BUILD):
+ r = urllib2.Request(self._GetBuildUrl(platform, revision_guess, filename))
+ r.get_method = lambda: 'HEAD'
+ try:
+ response = urllib2.urlopen(r)
+ return revision_guess
+ except urllib2.HTTPError, err:
+ if err.code == 404:
+ time.sleep(.1)
+ continue
+ return None
+
+ def _DownloadBuilds(self):
+ for platform in self._platforms:
+ for f in BuildUpdater._PLATFORM_FILES_MAP[platform]:
+ output = os.path.join('dl', platform,
+ '%s_%s_%s' % (platform, self._revision, f))
+ if os.path.exists(output):
+ print '%s alread exists, skipping download' % output
+ continue
+ build_revision = self._FindBuildRevision(platform, self._revision, f)
+ if not build_revision:
+ sys.stderr.write('Failed to find %s build for r%s\n' % (
+ platform, self._revision))
+ sys.exit(1)
+ dirname = os.path.dirname(output)
+ if dirname and not os.path.exists(dirname):
+ os.makedirs(dirname)
+ url = self._GetBuildUrl(platform, build_revision, f)
+ print 'Downloading %s, saving to %s' % (url, output)
+ r = urllib2.urlopen(url)
+ with file(output, 'wb') as f:
+ f.write(r.read())
+
+ def _FetchSvnRepos(self):
+ if not os.path.exists('reference_builds'):
+ os.makedirs('reference_builds')
+ BuildUpdater._GetCmdStatusAndOutput(
+ ['gclient', 'config',
+ 'svn://svn.chromium.org/chrome/trunk/deps/reference_builds'],
+ 'reference_builds')
+ BuildUpdater._GetCmdStatusAndOutput(
+ ['gclient', 'sync'], 'reference_builds')
+
+ def _UnzipFile(self, dl_file, dest_dir):
+ if not zipfile.is_zipfile(dl_file):
+ return False
+ print 'Opening ', dl_file
+ with zipfile.ZipFile(dl_file, 'r') as z:
+ for content in z.namelist():
+ dest = os.path.join(dest_dir, content[content.find('/')+1:])
+ if not os.path.basename(dest):
+ # It is a directory, create it mkdir -p style.
+ try:
+ os.makedirs(dest)
+ except OSError as e:
+ if e.errno == errno.EEXIST and os.path.isdir(dest):
+ pass
+ else:
+ raise
+ continue
+ with z.open(content) as unzipped_content:
+ print 'Extracting %s to %s (%s)' % (content, dest, dl_file)
+ with file(dest, 'wb') as dest_file:
+ dest_file.write(unzipped_content.read())
+ return True
+
+ def _ClearDir(self, dir):
+ """Clears all files in |dir| except for hidden files and folders."""
+ for root, dirs, files in os.walk(dir):
+ # Skip hidden files and folders (like .svn and .git).
+ files = [f for f in files if f[0] != '.']
+ dirs[:] = [d for d in dirs if d[0] != '.']
+
+ for f in files:
+ os.remove(os.path.join(root, f))
+
+ def _ExtractBuilds(self):
+ for platform in self._platforms:
+ if os.path.exists('tmp_unzip'):
+ os.path.unlink('tmp_unzip')
+ dest_dir = os.path.join('reference_builds', 'reference_builds',
+ BuildUpdater._PLATFORM_DEST_MAP[platform])
+ self._ClearDir(dest_dir)
+ for root, _, dl_files in os.walk(os.path.join('dl', platform)):
+ for dl_file in dl_files:
+ dl_file = os.path.join(root, dl_file)
+ if not self._UnzipFile(dl_file, dest_dir):
+ print 'Copying %s to %s' % (dl_file, dest_dir)
+ shutil.copy(dl_file, dest_dir)
+
+ def _SvnAddAndRemove(self):
+ svn_dir = os.path.join('reference_builds', 'reference_builds')
+ stat = BuildUpdater._GetCmdStatusAndOutput(['svn', 'stat'], svn_dir)[1]
+ for line in stat.splitlines():
+ action, filename = line.split(None, 1)
+ if action == '?':
+ BuildUpdater._GetCmdStatusAndOutput(
+ ['svn', 'add', filename], svn_dir)
+ elif action == '!':
+ BuildUpdater._GetCmdStatusAndOutput(
+ ['svn', 'delete', filename], svn_dir)
+
+ def DownloadAndUpdateBuilds(self):
+ self._DownloadBuilds()
+ self._FetchSvnRepos()
+ self._ExtractBuilds()
+ self._SvnAddAndRemove()
+
+
+def ParseOptions(argv):
+ parser = optparse.OptionParser()
+ usage = 'usage: %prog <options>'
+ parser.set_usage(usage)
+ parser.add_option('-r', dest='revision',
+ help='Revision to pickup')
+ parser.add_option('-p', dest='platforms',
+ default='Win,Mac,Linux,Linux_x64',
+ help='Comma separated list of platforms to download '
+ '(as defined by the chromium builders).')
+ (options, _) = parser.parse_args(argv)
+ if not options.revision:
+ sys.stderr.write('Must specify -r\n')
+ sys.exit(1)
+
+ return options
+
+
+def main(argv):
+ logging.getLogger().setLevel(logging.DEBUG)
+ options = ParseOptions(argv)
+ b = BuildUpdater(options)
+ b.DownloadAndUpdateBuilds()
+ print ('Successfully updated reference builds. Move to '
+ 'reference_builds/reference_builds and create a change using gcl.')
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698