blob: e1ce6f35d4ae45cc9907305d02cfc1e803a7ad12 [file] [log] [blame]
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +09001#!/usr/bin/env python
2# Copyright (c) 2012 The Chromium 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
6"""
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +09007This script runs every build as the first hook (See DEPS). If it detects that
scherkusda2b5522014-09-04 06:28:23 +09008the build should be clobbered, it will delete the contents of the build
9directory.
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090010
11A landmine is tripped when a builder checks out a different revision, and the
12diff between the new landmines and the old ones is non-null. At this point, the
13build is clobbered.
14"""
15
16import difflib
smut@google.come121fc22014-04-23 13:19:23 +090017import errno
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090018import gyp_environment
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090019import logging
20import optparse
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090021import os
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090022import shutil
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090023import sys
sivachandra@chromium.org54da9682013-08-21 11:44:58 +090024import subprocess
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090025import time
26
sivachandra@chromium.org54da9682013-08-21 11:44:58 +090027import landmine_utils
28
29
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090030SRC_DIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
31
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090032
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090033def get_build_dir(build_tool, is_iphone=False):
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090034 """
35 Returns output directory absolute path dependent on build and targets.
36 Examples:
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090037 r'c:\b\build\slave\win\build\src\out'
38 '/mnt/data/b/build/slave/linux/build/src/out'
39 '/b/build/slave/ios_rel_device/build/src/xcodebuild'
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090040
41 Keep this function in sync with tools/build/scripts/slave/compile.py
42 """
43 ret = None
44 if build_tool == 'xcode':
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090045 ret = os.path.join(SRC_DIR, 'xcodebuild')
thakis@chromium.orgcf894a72013-05-12 04:13:21 +090046 elif build_tool in ['make', 'ninja', 'ninja-ios']: # TODO: Remove ninja-ios.
oetuaho0c7f69f2014-11-03 18:09:53 +090047 if ('CHROMIUM_OUT_DIR' not in os.environ and
48 'output_dir' in landmine_utils.gyp_generator_flags()):
49 output_dir = landmine_utils.gyp_generator_flags()['output_dir']
50 else:
51 output_dir = os.environ.get('CHROMIUM_OUT_DIR', 'out')
52 ret = os.path.join(SRC_DIR, output_dir)
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090053 else:
scottmg@chromium.org39465182013-01-18 08:50:02 +090054 raise NotImplementedError('Unexpected GYP_GENERATORS (%s)' % build_tool)
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +090055 return os.path.abspath(ret)
56
57
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090058def clobber_if_necessary(new_landmines):
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090059 """Does the work of setting, planting, and triggering landmines."""
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090060 out_dir = get_build_dir(landmine_utils.builder())
61 landmines_path = os.path.normpath(os.path.join(out_dir, '..', '.landmines'))
smut@google.come121fc22014-04-23 13:19:23 +090062 try:
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090063 os.makedirs(out_dir)
smut@google.come121fc22014-04-23 13:19:23 +090064 except OSError as e:
65 if e.errno == errno.EEXIST:
66 pass
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090067
scottmg@chromium.org4bf07be2014-05-23 07:12:48 +090068 if os.path.exists(landmines_path):
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090069 with open(landmines_path, 'r') as f:
70 old_landmines = f.readlines()
71 if old_landmines != new_landmines:
72 old_date = time.ctime(os.stat(landmines_path).st_ctime)
73 diff = difflib.unified_diff(old_landmines, new_landmines,
74 fromfile='old_landmines', tofile='new_landmines',
75 fromfiledate=old_date, tofiledate=time.ctime(), n=0)
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090076 sys.stdout.write('Clobbering due to:\n')
77 sys.stdout.writelines(diff)
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090078
scherkusda2b5522014-09-04 06:28:23 +090079 # Clobber contents of build directory but not directory itself: some
80 # checkouts have the build directory mounted.
81 for f in os.listdir(out_dir):
82 path = os.path.join(out_dir, f)
83 if os.path.isfile(path):
84 os.unlink(path)
85 elif os.path.isdir(path):
86 shutil.rmtree(path)
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +090087
88 # Save current set of landmines for next time.
scottmg@chromium.org4bf07be2014-05-23 07:12:48 +090089 with open(landmines_path, 'w') as f:
90 f.writelines(new_landmines)
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090091
92
tkent@chromium.org05c93a72013-09-03 06:51:18 +090093def process_options():
94 """Returns a list of landmine emitting scripts."""
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +090095 parser = optparse.OptionParser()
sivachandra@chromium.org54da9682013-08-21 11:44:58 +090096 parser.add_option(
97 '-s', '--landmine-scripts', action='append',
98 default=[os.path.join(SRC_DIR, 'build', 'get_landmines.py')],
99 help='Path to the script which emits landmines to stdout. The target '
tkent@chromium.org05c93a72013-09-03 06:51:18 +0900100 'is passed to this script via option -t. Note that an extra '
101 'script can be specified via an env var EXTRA_LANDMINES_SCRIPT.')
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +0900102 parser.add_option('-v', '--verbose', action='store_true',
103 default=('LANDMINES_VERBOSE' in os.environ),
104 help=('Emit some extra debugging information (default off). This option '
105 'is also enabled by the presence of a LANDMINES_VERBOSE environment '
106 'variable.'))
sivachandra@chromium.org54da9682013-08-21 11:44:58 +0900107
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +0900108 options, args = parser.parse_args()
109
110 if args:
111 parser.error('Unknown arguments %s' % args)
112
113 logging.basicConfig(
114 level=logging.DEBUG if options.verbose else logging.ERROR)
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +0900115
tkent@chromium.org05c93a72013-09-03 06:51:18 +0900116 extra_script = os.environ.get('EXTRA_LANDMINES_SCRIPT')
117 if extra_script:
118 return options.landmine_scripts + [extra_script]
119 else:
120 return options.landmine_scripts
121
122
123def main():
124 landmine_scripts = process_options()
scottmg@chromium.org87ca2792014-02-15 14:23:29 +0900125
newt@chromium.org776db5e2014-04-12 10:13:21 +0900126 if landmine_utils.builder() in ('dump_dependency_json', 'eclipse'):
scottmg@chromium.org87ca2792014-02-15 14:23:29 +0900127 return 0
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +0900128
scottmg@chromium.org2f8c83b2014-08-14 23:03:30 +0900129 gyp_environment.SetEnvironment()
130
131 landmines = []
132 for s in landmine_scripts:
133 proc = subprocess.Popen([sys.executable, s], stdout=subprocess.PIPE)
134 output, _ = proc.communicate()
135 landmines.extend([('%s\n' % l.strip()) for l in output.splitlines()])
136 clobber_if_necessary(landmines)
iannucci@chromium.orgdccbcf12012-11-14 13:59:48 +0900137
138 return 0
139
140
141if __name__ == '__main__':
iannucci@chromium.orgb48a6382012-11-15 11:53:03 +0900142 sys.exit(main())