blob: a6a1fa7082403f24ac521fd75d0c04728b668866 [file] [log] [blame]
Aviv Keshetb1238c32013-04-01 11:42:13 -07001#!/usr/bin/python
Aviv Keshetb1238c32013-04-01 11:42:13 -07002# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Mike Frysingerad8c6ca2014-02-03 11:28:45 -05006"""Fast alternative to `emerge-$BOARD autotest-all`
Aviv Keshetb1238c32013-04-01 11:42:13 -07007
Aviv Keshetb1238c32013-04-01 11:42:13 -07008Simple script to be run inside the chroot. Used as a fast approximation of
9emerge-$board autotest-all, by simply rsync'ing changes from trunk to sysroot.
10"""
11
Aviv Keshete7b20192013-04-24 14:05:53 -070012import argparse
Aviv Keshetfe54a8a2013-09-16 15:49:03 -070013import glob
Aviv Keshete00caeb2013-04-17 14:03:25 -070014import logging
Aviv Keshetb1238c32013-04-01 11:42:13 -070015import os
Aviv Keshet787ffcd2013-04-08 15:14:56 -070016import re
Aviv Keshetb1238c32013-04-01 11:42:13 -070017import sys
Aviv Keshet787ffcd2013-04-08 15:14:56 -070018from collections import namedtuple
19
Aviv Keshetb1238c32013-04-01 11:42:13 -070020from chromite.buildbot import constants
Aviv Keshet940c17f2013-04-11 18:41:42 -070021from chromite.buildbot import portage_utilities
Aviv Keshetb1238c32013-04-01 11:42:13 -070022from chromite.lib import cros_build_lib
23from chromite.lib import git
Aviv Keshet557e6882013-04-25 13:26:09 -070024from chromite.lib import osutils
Aviv Keshetb1238c32013-04-01 11:42:13 -070025
Aviv Keshetb1238c32013-04-01 11:42:13 -070026
Aviv Keshet940c17f2013-04-11 18:41:42 -070027if cros_build_lib.IsInsideChroot():
28 # Only import portage after we've checked that we're inside the chroot.
29 import portage
30
Aviv Keshetb1238c32013-04-01 11:42:13 -070031INCLUDE_PATTERNS_FILENAME = 'autotest-quickmerge-includepatterns'
32AUTOTEST_PROJECT_NAME = 'chromiumos/third_party/autotest'
Aviv Keshet5f3cf722013-05-09 17:35:25 -070033AUTOTEST_EBUILD = 'chromeos-base/autotest'
Aviv Keshetfe54a8a2013-09-16 15:49:03 -070034DOWNGRADE_EBUILDS = ['chromeos-base/autotest']
Aviv Keshet787ffcd2013-04-08 15:14:56 -070035
Aviv Keshetc73cfc32013-06-14 16:18:53 -070036IGNORE_SUBDIRS = ['ExternalSource',
37 'logs',
38 'results',
39 'site-packages']
40
Aviv Keshet787ffcd2013-04-08 15:14:56 -070041# Data structure describing a single rsync filesystem change.
42#
43# change_description: An 11 character string, the rsync change description
44# for the particular file.
45# absolute_path: The absolute path of the created or modified file.
46ItemizedChange = namedtuple('ItemizedChange', ['change_description',
47 'absolute_path'])
48
49
50# Data structure describing the rsync new/modified files or directories.
51#
52# new_files: A list of ItemizedChange objects for new files.
53# modified_files: A list of ItemizedChange objects for modified files.
54# new_directories: A list of ItemizedChange objects for new directories.
55ItemizedChangeReport = namedtuple('ItemizedChangeReport',
56 ['new_files', 'modified_files',
57 'new_directories'])
58
Aviv Keshet84bdfc52013-06-04 13:19:38 -070059class PortagePackageAPIError(Exception):
60 """Exception thrown when unable to retrieve a portage package API."""
61
Aviv Keshet787ffcd2013-04-08 15:14:56 -070062
Aviv Keshetc73cfc32013-06-14 16:18:53 -070063
64def GetNewestFileTime(path, ignore_subdirs=[]):
65 #pylint: disable-msg=W0102
66 """Recursively determine the newest file modification time.
67
Mike Frysinger02e1e072013-11-10 22:11:34 -050068 Args:
Aviv Keshetc73cfc32013-06-14 16:18:53 -070069 path: The absolute path of the directory to recursively search.
70 ignore_subdirs: list of names of subdirectores of given path, to be
71 ignored by recursive search. Useful as a speed
72 optimization, to ignore directories full of many
73 files.
74
75 Returns:
76 The modification time of the most recently modified file recursively
77 contained within the specified directory. Returned as seconds since
78 Jan. 1, 1970, 00:00 GMT, with fractional part (floating point number).
79 """
80 command = ['find', path]
81 for ignore in ignore_subdirs:
82 command.extend(['-path', os.path.join(path, ignore), '-prune', '-o'])
83 command.extend(['-printf', r'%T@\n'])
84
Yu-Ju Hong3add4432014-01-30 11:46:15 -080085 command_result = cros_build_lib.RunCommand(command, error_code_ok=True,
86 capture_output=True)
Aviv Keshetc73cfc32013-06-14 16:18:53 -070087 float_times = [float(str_time) for str_time in
88 command_result.output.split('\n')
89 if str_time != '']
90
91 return max(float_times)
92
93
Aviv Keshet75d65962013-04-17 16:15:23 -070094def GetStalePackageNames(change_list, autotest_sysroot):
Aviv Keshete7b20192013-04-24 14:05:53 -070095 """Given a rsync change report, returns the names of stale test packages.
Aviv Keshet75d65962013-04-17 16:15:23 -070096
97 This function pulls out test package names for client-side tests, stored
98 within the client/site_tests directory tree, that had any files added or
99 modified and for whom any existing bzipped test packages may now be stale.
100
Mike Frysinger02e1e072013-11-10 22:11:34 -0500101 Args:
Aviv Keshet75d65962013-04-17 16:15:23 -0700102 change_list: A list of ItemizedChange objects corresponding to changed
103 or modified files.
104 autotest_sysroot: Absolute path of autotest in the sysroot,
Aviv Keshet474469d2013-07-22 12:54:52 -0700105 e.g. '/build/lumpy/usr/local/build/autotest'
Aviv Keshet75d65962013-04-17 16:15:23 -0700106
107 Returns:
108 A list of test package names, eg ['factory_Leds', 'login_UserPolicyKeys'].
109 May contain duplicate entries if multiple files within a test directory
110 were modified.
111 """
112 exp = os.path.abspath(autotest_sysroot) + r'/client/site_tests/(.*?)/.*'
113 matches = [re.match(exp, change.absolute_path) for change in change_list]
114 return [match.group(1) for match in matches if match]
115
116
Aviv Keshet787ffcd2013-04-08 15:14:56 -0700117def ItemizeChangesFromRsyncOutput(rsync_output, destination_path):
118 """Convert the output of an rsync with `-i` to a ItemizedChangeReport object.
119
Mike Frysinger02e1e072013-11-10 22:11:34 -0500120 Args:
Aviv Keshet787ffcd2013-04-08 15:14:56 -0700121 rsync_output: String stdout of rsync command that was run with `-i` option.
122 destination_path: String absolute path of the destination directory for the
123 rsync operations. This argument is necessary because
124 rsync's output only gives the relative path of
125 touched/added files.
126
127 Returns:
128 ItemizedChangeReport object giving the absolute paths of files that were
129 created or modified by rsync.
130 """
131 modified_matches = re.findall(r'([.>]f[^+]{9}) (.*)', rsync_output)
132 new_matches = re.findall(r'(>f\+{9}) (.*)', rsync_output)
133 new_symlink_matches = re.findall(r'(cL\+{9}) (.*) -> .*', rsync_output)
134 new_dir_matches = re.findall(r'(cd\+{9}) (.*)', rsync_output)
135
136 absolute_modified = [ItemizedChange(c, os.path.join(destination_path, f))
137 for (c, f) in modified_matches]
138
139 # Note: new symlinks are treated as new files.
140 absolute_new = [ItemizedChange(c, os.path.join(destination_path, f))
141 for (c, f) in new_matches + new_symlink_matches]
142
143 absolute_new_dir = [ItemizedChange(c, os.path.join(destination_path, f))
144 for (c, f) in new_dir_matches]
145
146 return ItemizedChangeReport(new_files=absolute_new,
147 modified_files=absolute_modified,
148 new_directories=absolute_new_dir)
149
150
Aviv Keshete00caeb2013-04-17 14:03:25 -0700151def GetPackageAPI(portage_root, package_cp):
Aviv Keshete7b20192013-04-24 14:05:53 -0700152 """Gets portage API handles for the given package.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700153
Mike Frysinger02e1e072013-11-10 22:11:34 -0500154 Args:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700155 portage_root: Root directory of portage tree. Eg '/' or '/build/lumpy'
Mike Frysingerad8c6ca2014-02-03 11:28:45 -0500156 package_cp: A string similar to 'chromeos-base/autotest-tests'.
Aviv Keshete00caeb2013-04-17 14:03:25 -0700157
158 Returns:
159 Returns (package, vartree) tuple, where
160 package is of type portage.dbapi.vartree.dblink
161 vartree is of type portage.dbapi.vartree.vartree
Aviv Keshet940c17f2013-04-11 18:41:42 -0700162 """
163 if portage_root is None:
Aviv Keshete7b20192013-04-24 14:05:53 -0700164 # pylint: disable-msg=E1101
165 portage_root = portage.root
Aviv Keshet940c17f2013-04-11 18:41:42 -0700166 # Ensure that portage_root ends with trailing slash.
167 portage_root = os.path.join(portage_root, '')
168
Aviv Keshete7b20192013-04-24 14:05:53 -0700169 # Create a vartree object corresponding to portage_root.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700170 trees = portage.create_trees(portage_root, portage_root)
171 vartree = trees[portage_root]['vartree']
172
Aviv Keshete7b20192013-04-24 14:05:53 -0700173 # List the matching installed packages in cpv format.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700174 matching_packages = vartree.dbapi.cp_list(package_cp)
175
176 if not matching_packages:
Aviv Keshet84bdfc52013-06-04 13:19:38 -0700177 raise PortagePackageAPIError('No matching package for %s in portage_root '
178 '%s' % (package_cp, portage_root))
Aviv Keshet940c17f2013-04-11 18:41:42 -0700179
180 if len(matching_packages) > 1:
Aviv Keshet84bdfc52013-06-04 13:19:38 -0700181 raise PortagePackageAPIError('Too many matching packages for %s in '
182 'portage_root %s' % (package_cp,
183 portage_root))
Aviv Keshet940c17f2013-04-11 18:41:42 -0700184
Aviv Keshete7b20192013-04-24 14:05:53 -0700185 # Convert string match to package dblink.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700186 package_cpv = matching_packages[0]
187 package_split = portage_utilities.SplitCPV(package_cpv)
Aviv Keshete7b20192013-04-24 14:05:53 -0700188 # pylint: disable-msg=E1101
189 package = portage.dblink(package_split.category,
Aviv Keshet940c17f2013-04-11 18:41:42 -0700190 package_split.pv, settings=vartree.settings,
191 vartree=vartree)
192
Aviv Keshete00caeb2013-04-17 14:03:25 -0700193 return package, vartree
194
195
196def DowngradePackageVersion(portage_root, package_cp,
197 downgrade_to_version='0'):
Aviv Keshete7b20192013-04-24 14:05:53 -0700198 """Downgrade the specified portage package version.
Aviv Keshete00caeb2013-04-17 14:03:25 -0700199
Mike Frysinger02e1e072013-11-10 22:11:34 -0500200 Args:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700201 portage_root: Root directory of portage tree. Eg '/' or '/build/lumpy'
Mike Frysingerad8c6ca2014-02-03 11:28:45 -0500202 package_cp: A string similar to 'chromeos-base/autotest-tests'.
Aviv Keshete00caeb2013-04-17 14:03:25 -0700203 downgrade_to_version: String version to downgrade to. Default: '0'
204
205 Returns:
Aviv Keshet557e6882013-04-25 13:26:09 -0700206 True on success. False on failure (nonzero return code from `mv` command).
Aviv Keshete00caeb2013-04-17 14:03:25 -0700207 """
Aviv Keshet84bdfc52013-06-04 13:19:38 -0700208 try:
209 package, _ = GetPackageAPI(portage_root, package_cp)
210 except PortagePackageAPIError:
211 # Unable to fetch a corresponding portage package API for this
212 # package_cp (either no such package, or name ambigious and matches).
213 # So, just fail out.
214 return False
Aviv Keshete00caeb2013-04-17 14:03:25 -0700215
216 source_directory = package.dbdir
217 destination_path = os.path.join(
218 package.dbroot, package_cp + '-' + downgrade_to_version)
219 if os.path.abspath(source_directory) == os.path.abspath(destination_path):
Aviv Keshet557e6882013-04-25 13:26:09 -0700220 return True
Aviv Keshete00caeb2013-04-17 14:03:25 -0700221 command = ['mv', source_directory, destination_path]
Aviv Keshet557e6882013-04-25 13:26:09 -0700222 code = cros_build_lib.SudoRunCommand(command, error_code_ok=True).returncode
223 return code == 0
Aviv Keshete00caeb2013-04-17 14:03:25 -0700224
225
Aviv Keshete7b20192013-04-24 14:05:53 -0700226def UpdatePackageContents(change_report, package_cp, portage_root=None):
227 """Add newly created files/directors to package contents.
Aviv Keshete00caeb2013-04-17 14:03:25 -0700228
229 Given an ItemizedChangeReport, add the newly created files and directories
230 to the CONTENTS of an installed portage package, such that these files are
231 considered owned by that package.
232
Mike Frysinger02e1e072013-11-10 22:11:34 -0500233 Args:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700234 changereport: ItemizedChangeReport object for the changes to be
235 made to the package.
236 package_cp: A string similar to 'chromeos-base/autotest-tests' giving
237 the package category and name of the package to be altered.
238 portage_root: Portage root path, corresponding to the board that
239 we are working on. Defaults to '/'
240 """
241 package, vartree = GetPackageAPI(portage_root, package_cp)
242
Aviv Keshete7b20192013-04-24 14:05:53 -0700243 # Append new contents to package contents dictionary.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700244 contents = package.getcontents().copy()
245 for _, filename in change_report.new_files:
246 contents.setdefault(filename, (u'obj', '0', '0'))
247 for _, dirname in change_report.new_directories:
Aviv Keshete7b20192013-04-24 14:05:53 -0700248 # Strip trailing slashes if present.
249 contents.setdefault(dirname.rstrip('/'), (u'dir',))
Aviv Keshet940c17f2013-04-11 18:41:42 -0700250
Aviv Keshete7b20192013-04-24 14:05:53 -0700251 # Write new contents dictionary to file.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700252 vartree.dbapi.writeContentsToContentsFile(package, contents)
253
254
Aviv Keshet19276752013-05-16 11:12:23 -0700255def RemoveBzipPackages(autotest_sysroot):
256 """Remove all bzipped test/dep/profiler packages from sysroot autotest.
Aviv Keshet75d65962013-04-17 16:15:23 -0700257
Mike Frysinger02e1e072013-11-10 22:11:34 -0500258 Args:
Aviv Keshet75d65962013-04-17 16:15:23 -0700259 autotest_sysroot: Absolute path of autotest in the sysroot,
Aviv Keshet474469d2013-07-22 12:54:52 -0700260 e.g. '/build/lumpy/usr/local/build/autotest'
Aviv Keshet75d65962013-04-17 16:15:23 -0700261 """
Aviv Keshet19276752013-05-16 11:12:23 -0700262 osutils.RmDir(os.path.join(autotest_sysroot, 'packages'),
263 ignore_missing=True)
264 osutils.SafeUnlink(os.path.join(autotest_sysroot, 'packages.checksum'))
Aviv Keshet75d65962013-04-17 16:15:23 -0700265
266
Aviv Keshetb1238c32013-04-01 11:42:13 -0700267def RsyncQuickmerge(source_path, sysroot_autotest_path,
268 include_pattern_file=None, pretend=False,
Aviv Keshet60968ec2013-04-11 18:44:14 -0700269 overwrite=False):
Aviv Keshetb1238c32013-04-01 11:42:13 -0700270 """Run rsync quickmerge command, with specified arguments.
Aviv Keshete7b20192013-04-24 14:05:53 -0700271
Aviv Keshetb1238c32013-04-01 11:42:13 -0700272 Command will take form `rsync -a [options] --exclude=**.pyc
273 --exclude=**.pyo
274 [optional --include-from argument]
275 --exclude=* [source_path] [sysroot_autotest_path]`
276
Mike Frysinger02e1e072013-11-10 22:11:34 -0500277 Args:
Mike Frysingerad8c6ca2014-02-03 11:28:45 -0500278 pretend: True to use the '-n' option to rsync, to perform dry run.
Aviv Keshetb1238c32013-04-01 11:42:13 -0700279 overwrite: True to omit '-u' option, overwrite all files in sysroot,
280 not just older files.
Aviv Keshet557e6882013-04-25 13:26:09 -0700281
282 Returns:
283 The cros_build_lib.CommandResult object resulting from the rsync command.
Aviv Keshetb1238c32013-04-01 11:42:13 -0700284 """
285 command = ['rsync', '-a']
286
Prathmesh Prabhu137266a2014-02-11 20:02:18 -0800287 # For existing files, preserve destination permissions. This ensures that
288 # existing files end up with the file permissions set by the ebuilds.
289 # If this script copies over a file that does not exist in the destination
290 # tree, it will set the least restrictive permissions allowed in the
291 # destination tree. This could happen if the file copied is not installed by
292 # *any* ebuild, or if the ebuild that installs the file was never emerged.
293 command += ['--no-p', '--chmod=ugo=rwX']
294
Aviv Keshetb1238c32013-04-01 11:42:13 -0700295 if pretend:
296 command += ['-n']
297
298 if not overwrite:
299 command += ['-u']
300
Aviv Keshet60968ec2013-04-11 18:44:14 -0700301 command += ['-i']
Aviv Keshetb1238c32013-04-01 11:42:13 -0700302
303 command += ['--exclude=**.pyc']
304 command += ['--exclude=**.pyo']
305
Aviv Keshet787ffcd2013-04-08 15:14:56 -0700306 # Exclude files with a specific substring in their name, because
307 # they create an ambiguous itemized report. (see unit test file for details)
308 command += ['--exclude=** -> *']
309
Aviv Keshetb1238c32013-04-01 11:42:13 -0700310 if include_pattern_file:
311 command += ['--include-from=%s' % include_pattern_file]
312
313 command += ['--exclude=*']
314
315 command += [source_path, sysroot_autotest_path]
316
Aviv Keshet60968ec2013-04-11 18:44:14 -0700317 return cros_build_lib.SudoRunCommand(command, redirect_stdout=True)
Aviv Keshetb1238c32013-04-01 11:42:13 -0700318
319
320def ParseArguments(argv):
321 """Parse command line arguments
322
Mike Frysinger02e1e072013-11-10 22:11:34 -0500323 Returns:
324 parsed arguments.
Aviv Keshetb1238c32013-04-01 11:42:13 -0700325 """
326 parser = argparse.ArgumentParser(description='Perform a fast approximation '
327 'to emerge-$board autotest-all, by '
328 'rsyncing source tree to sysroot.')
329
Aviv Keshet0a366a02013-07-18 10:52:04 -0700330
331 default_board = cros_build_lib.GetDefaultBoard()
332 parser.add_argument('--board', metavar='BOARD', default=default_board,
333 help='Board to perform quickmerge for. Default: ' +
334 (default_board or 'Not configured.'))
Aviv Keshetb1238c32013-04-01 11:42:13 -0700335 parser.add_argument('--pretend', action='store_true',
336 help='Dry run only, do not modify sysroot autotest.')
337 parser.add_argument('--overwrite', action='store_true',
338 help='Overwrite existing files even if newer.')
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700339 parser.add_argument('--force', action='store_true',
340 help='Do not check whether destination tree is newer '
341 'than source tree, always perform quickmerge.')
Aviv Keshete00caeb2013-04-17 14:03:25 -0700342 parser.add_argument('--verbose', action='store_true',
343 help='Print detailed change report.')
Aviv Keshetb1238c32013-04-01 11:42:13 -0700344
Aviv Keshet474469d2013-07-22 12:54:52 -0700345 # Used only if test_that is calling autotest_quickmerge and has detected that
346 # the sysroot autotest path is still in usr/local/autotest (ie the build
347 # pre-dates https://chromium-review.googlesource.com/#/c/62880/ )
348 parser.add_argument('--legacy_path', action='store_true',
349 help=argparse.SUPPRESS)
350
Aviv Keshetb1238c32013-04-01 11:42:13 -0700351 return parser.parse_args(argv)
352
353
354def main(argv):
355 cros_build_lib.AssertInsideChroot()
356
357 args = ParseArguments(argv)
358
Aviv Keshete7b20192013-04-24 14:05:53 -0700359 if os.geteuid() != 0:
Aviv Keshet940c17f2013-04-11 18:41:42 -0700360 try:
361 cros_build_lib.SudoRunCommand([sys.executable] + sys.argv)
362 except cros_build_lib.RunCommandError:
363 return 1
364 return 0
365
Aviv Keshetb1238c32013-04-01 11:42:13 -0700366 if not args.board:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700367 print 'No board specified. Aborting.'
Aviv Keshetb1238c32013-04-01 11:42:13 -0700368 return 1
369
370 manifest = git.ManifestCheckout.Cached(constants.SOURCE_ROOT)
David Jamese3b06062013-11-09 18:52:02 -0800371 checkout = manifest.FindCheckout(AUTOTEST_PROJECT_NAME)
372 source_path = os.path.join(checkout.GetPath(absolute=True), '')
Aviv Keshetb1238c32013-04-01 11:42:13 -0700373
374 script_path = os.path.dirname(__file__)
375 include_pattern_file = os.path.join(script_path, INCLUDE_PATTERNS_FILENAME)
376
377 # TODO: Determine the following string programatically.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700378 sysroot_path = os.path.join('/build', args.board, '')
Aviv Keshet474469d2013-07-22 12:54:52 -0700379 sysroot_autotest_path = os.path.join(sysroot_path,
380 constants.AUTOTEST_BUILD_PATH, '')
381 if args.legacy_path:
382 sysroot_autotest_path = os.path.join(sysroot_path, 'usr/local/autotest',
383 '')
Aviv Keshetb1238c32013-04-01 11:42:13 -0700384
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700385 if not args.force:
386 newest_dest_time = GetNewestFileTime(sysroot_autotest_path, IGNORE_SUBDIRS)
387 newest_source_time = GetNewestFileTime(source_path, IGNORE_SUBDIRS)
388 if newest_dest_time >= newest_source_time:
389 logging.info('The sysroot appears to be newer than the source tree, '
390 'doing nothing and exiting now.')
391 return 0
392
Aviv Keshet60968ec2013-04-11 18:44:14 -0700393 rsync_output = RsyncQuickmerge(source_path, sysroot_autotest_path,
Aviv Keshete7b20192013-04-24 14:05:53 -0700394 include_pattern_file, args.pretend,
395 args.overwrite)
Aviv Keshetb1238c32013-04-01 11:42:13 -0700396
Aviv Keshete00caeb2013-04-17 14:03:25 -0700397 if args.verbose:
398 logging.info(rsync_output.output)
399
Aviv Keshet60968ec2013-04-11 18:44:14 -0700400 change_report = ItemizeChangesFromRsyncOutput(rsync_output.output,
401 sysroot_autotest_path)
402
Aviv Keshet940c17f2013-04-11 18:41:42 -0700403 if not args.pretend:
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700404 logging.info('Updating portage database.')
Aviv Keshet5f3cf722013-05-09 17:35:25 -0700405 UpdatePackageContents(change_report, AUTOTEST_EBUILD,
Aviv Keshet940c17f2013-04-11 18:41:42 -0700406 sysroot_path)
Aviv Keshetfe54a8a2013-09-16 15:49:03 -0700407 for logfile in glob.glob(os.path.join(sysroot_autotest_path, 'packages',
408 '*.log')):
409 try:
410 # Open file in a try-except block, for atomicity, instead of
411 # doing existence check.
412 with open(logfile, 'r') as f:
413 package_cp = f.readline().strip()
414 DOWNGRADE_EBUILDS.append(package_cp)
415 except IOError:
416 pass
417
Aviv Keshet3cc4e9e2013-04-24 10:47:23 -0700418 for ebuild in DOWNGRADE_EBUILDS:
Aviv Keshet557e6882013-04-25 13:26:09 -0700419 if not DowngradePackageVersion(sysroot_path, ebuild):
Aviv Keshet3cc4e9e2013-04-24 10:47:23 -0700420 logging.warning('Unable to downgrade package %s version number.',
Aviv Keshete7b20192013-04-24 14:05:53 -0700421 ebuild)
Aviv Keshet19276752013-05-16 11:12:23 -0700422 RemoveBzipPackages(sysroot_autotest_path)
Aviv Keshetb1238c32013-04-01 11:42:13 -0700423
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700424 sentinel_filename = os.path.join(sysroot_autotest_path,
425 '.quickmerge_sentinel')
426 cros_build_lib.RunCommand(['touch', sentinel_filename])
427
Aviv Keshetfe54a8a2013-09-16 15:49:03 -0700428
Aviv Keshet940c17f2013-04-11 18:41:42 -0700429 if args.pretend:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700430 logging.info('The following message is pretend only. No filesystem '
Aviv Keshete7b20192013-04-24 14:05:53 -0700431 'changes made.')
Aviv Keshete00caeb2013-04-17 14:03:25 -0700432 logging.info('Quickmerge complete. Created or modified %s files.',
Aviv Keshete7b20192013-04-24 14:05:53 -0700433 len(change_report.new_files) +
434 len(change_report.modified_files))
Aviv Keshete00caeb2013-04-17 14:03:25 -0700435
436 return 0