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

Side by Side Diff: recipe_modules/bot_update/api.py

Issue 1741983002: bot_update: Rewrite to use properties, and add override options for patches. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Add szager change, fix small bug. Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 """Recipe module to ensure a checkout is consistant on a bot.""" 6 """Recipe module to ensure a checkout is consistant on a bot."""
7 7
8 from recipe_engine import recipe_api 8 from recipe_engine import recipe_api
9 9
10 10
(...skipping 30 matching lines...) Expand all
41 ret += ']' 41 ret += ']'
42 elif isinstance(spec, basestring): 42 elif isinstance(spec, basestring):
43 ret = repr(str(spec)) 43 ret = repr(str(spec))
44 else: 44 else:
45 ret = repr(spec) 45 ret = repr(spec)
46 return ret 46 return ret
47 47
48 48
49 class BotUpdateApi(recipe_api.RecipeApi): 49 class BotUpdateApi(recipe_api.RecipeApi):
50 50
51 def __init__(self, *args, **kwargs): 51 def __init__(self, mastername, buildername, slavename, issue, patchset,
szager1 2016/03/10 21:28:16 You added mandatory parameters, but did not change
martiniss 2016/03/10 21:40:46 So this dark magic is so that people don't do raw
iannucci 2016/03/10 21:43:11 these are filled by the explicit properties mechan
52 self._properties = {} 52 patch_url, repository, gerrit_ref, rietveld, revision,
53 super(BotUpdateApi, self).__init__(*args, **kwargs) 53 parent_got_revision, deps_revision_overrides, fail_patch,
54 *args, **kwargs):
55 self._mastername = mastername
56 self._buildername = buildername
57 self._slavename = slavename
58 self._issue = issue
59 self._patchset = patchset
60 self._patch_url = patch_url
61 self._repository = repository
62 self._gerrit_ref = gerrit_ref
63 self._rietveld = rietveld
64 self._revision = revision
65 self._parent_got_revision = parent_got_revision
66 self._deps_revision_overrides = deps_revision_overrides
67 self._fail_patch = fail_patch
68
69 self._last_returned_properties = {}
70 super(BotUpdateApi, self).__init__(*args, **kwargs)
54 71
55 def __call__(self, name, cmd, **kwargs): 72 def __call__(self, name, cmd, **kwargs):
56 """Wrapper for easy calling of bot_update.""" 73 """Wrapper for easy calling of bot_update."""
57 assert isinstance(cmd, (list, tuple)) 74 assert isinstance(cmd, (list, tuple))
58 bot_update_path = self.resource('bot_update.py') 75 bot_update_path = self.resource('bot_update.py')
59 kwargs.setdefault('infra_step', True) 76 kwargs.setdefault('infra_step', True)
60 kwargs.setdefault('env', {}) 77 kwargs.setdefault('env', {})
61 kwargs['env'].setdefault('PATH', '%(PATH)s') 78 kwargs['env'].setdefault('PATH', '%(PATH)s')
62 kwargs['env']['PATH'] = self.m.path.pathsep.join([ 79 kwargs['env']['PATH'] = self.m.path.pathsep.join([
63 kwargs['env']['PATH'], str(self._module.PACKAGE_REPO_ROOT)]) 80 kwargs['env']['PATH'], str(self._module.PACKAGE_REPO_ROOT)])
64 return self.m.python(name, bot_update_path, cmd, **kwargs) 81 return self.m.python(name, bot_update_path, cmd, **kwargs)
65 82
66 @property 83 @property
67 def properties(self): 84 def last_returned_properties(self):
68 return self._properties 85 return self._last_returned_properties
69 86
70 def ensure_checkout(self, gclient_config=None, suffix=None, 87 def ensure_checkout(self, gclient_config=None, suffix=None,
71 patch=True, update_presentation=True, 88 patch=True, update_presentation=True,
72 force=False, patch_root=None, no_shallow=False, 89 force=False, patch_root=None, no_shallow=False,
73 with_branch_heads=False, refs=None, 90 with_branch_heads=False, refs=None,
74 patch_project_roots=None, patch_oauth2=False, 91 patch_project_roots=None, patch_oauth2=False,
75 output_manifest=True, clobber=False, 92 output_manifest=True, clobber=False,
76 root_solution_revision=None, **kwargs): 93 root_solution_revision=None, rietveld=None, issue=None,
szager1 2016/03/10 21:28:16 17 named parameters is really not very many. Can
martiniss 2016/03/10 21:40:46 :( I know.
iannucci 2016/03/10 21:43:11 This is not an actionable or helpful comment. It's
94 patchset=None, **kwargs):
95 """
96 Args:
97 gclient_config: The gclient configuration to use when running bot_update.
98 If omitted, the current gclient configuration is used.
99 rietveld: The rietveld server to use. If omitted, will infer from
100 the 'rietveld' property.
101 issue: The rietveld issue number to use. If omitted, will infer from
102 the 'issue' property.
103 patchset: The rietveld issue patchset to use. If omitted, will infer from
104 the 'patchset' property.
105 git_cache_dir: The directory to use as the git cache. If omitted, will use
szager1 2016/03/10 21:28:16 This isn't actually an arg.
martiniss 2016/03/10 21:40:46 Whoops, removed this but forgot the docs. Thanks.
106 the 'cache_dir' path in the path api module.
107 """
77 refs = refs or [] 108 refs = refs or []
78 # We can re-use the gclient spec from the gclient module, since all the 109 # We can re-use the gclient spec from the gclient module, since all the
79 # data bot_update needs is already configured into the gclient spec. 110 # data bot_update needs is already configured into the gclient spec.
80 cfg = gclient_config or self.m.gclient.c 111 cfg = gclient_config or self.m.gclient.c
81 spec_string = jsonish_to_python(cfg.as_jsonish(), True) 112 spec_string = jsonish_to_python(cfg.as_jsonish(), True)
82 113
83 # Used by bot_update to determine if we want to run or not. 114 # Used by bot_update to determine if we want to run or not.
84 master = self.m.properties['mastername'] 115 master = self._mastername
85 builder = self.m.properties['buildername'] 116 builder = self._buildername
86 slave = self.m.properties['slavename'] 117 slave = self._slavename
87 118
88 # Construct our bot_update command. This basically be inclusive of 119 # Construct our bot_update command. This basically be inclusive of
89 # everything required for bot_update to know: 120 # everything required for bot_update to know:
90 root = patch_root 121 root = patch_root
91 if root is None: 122 if root is None:
92 root = cfg.solutions[0].name 123 root = cfg.solutions[0].name
93 additional = self.m.rietveld.calculate_issue_root(patch_project_roots) 124 additional = self.m.rietveld.calculate_issue_root(patch_project_roots)
94 if additional: 125 if additional:
95 root = self.m.path.join(root, additional) 126 root = self.m.path.join(root, additional)
96 127
97 if patch: 128 if patch:
98 issue = self.m.properties.get('issue') 129 issue = issue or self._issue
99 patchset = self.m.properties.get('patchset') 130 patchset = patchset or self._patchset
100 patch_url = self.m.properties.get('patch_url') 131 patch_url = self._patch_url
101 gerrit_repo = self.m.properties.get('repository') 132 gerrit_repo = self._repository
102 gerrit_ref = self.m.properties.get('event.patchSet.ref') 133 gerrit_ref = self._gerrit_ref
103 else: 134 else:
104 # The trybot recipe sometimes wants to de-apply the patch. In which case 135 # The trybot recipe sometimes wants to de-apply the patch. In which case
105 # we pretend the issue/patchset/patch_url never existed. 136 # we pretend the issue/patchset/patch_url never existed.
106 issue = patchset = patch_url = email_file = key_file = None 137 issue = patchset = patch_url = email_file = key_file = None
107 gerrit_repo = gerrit_ref = None 138 gerrit_repo = gerrit_ref = None
108 139
109 # Issue and patchset must come together. 140 # Issue and patchset must come together.
110 if issue: 141 if issue:
111 assert patchset 142 assert patchset
112 if patchset: 143 if patchset:
(...skipping 23 matching lines...) Expand all
136 flags = [ 167 flags = [
137 # 1. Do we want to run? (master/builder/slave). 168 # 1. Do we want to run? (master/builder/slave).
138 ['--master', master], 169 ['--master', master],
139 ['--builder', builder], 170 ['--builder', builder],
140 ['--slave', slave], 171 ['--slave', slave],
141 172
142 # 2. What do we want to check out (spec/root/rev/rev_map). 173 # 2. What do we want to check out (spec/root/rev/rev_map).
143 ['--spec', spec_string], 174 ['--spec', spec_string],
144 ['--root', root], 175 ['--root', root],
145 ['--revision_mapping_file', self.m.json.input(rev_map)], 176 ['--revision_mapping_file', self.m.json.input(rev_map)],
146 ['--git-cache-dir', self.m.path['git_cache']], 177 ['--git-cache-dir', cfg.cache_dir],
147 178
148 # 3. How to find the patch, if any (issue/patchset/patch_url). 179 # 3. How to find the patch, if any (issue/patchset/patch_url).
149 ['--issue', issue], 180 ['--issue', issue],
150 ['--patchset', patchset], 181 ['--patchset', patchset],
151 ['--patch_url', patch_url], 182 ['--patch_url', patch_url],
152 ['--rietveld_server', self.m.properties.get('rietveld')], 183 ['--rietveld_server', rietveld or self._rietveld],
153 ['--gerrit_repo', gerrit_repo], 184 ['--gerrit_repo', gerrit_repo],
154 ['--gerrit_ref', gerrit_ref], 185 ['--gerrit_ref', gerrit_ref],
155 ['--apply_issue_email_file', email_file], 186 ['--apply_issue_email_file', email_file],
156 ['--apply_issue_key_file', key_file], 187 ['--apply_issue_key_file', key_file],
157 188
158 # 4. Hookups to JSON output back into recipes. 189 # 4. Hookups to JSON output back into recipes.
159 ['--output_json', self.m.json.output()],] 190 ['--output_json', self.m.json.output()],]
160 191
161 192
162 # Collect all fixed revisions to simulate them in the json output. 193 # Collect all fixed revisions to simulate them in the json output.
163 # Fixed revision are the explicit input revisions of bot_update.py, i.e. 194 # Fixed revision are the explicit input revisions of bot_update.py, i.e.
164 # every command line parameter "--revision name@value". 195 # every command line parameter "--revision name@value".
165 fixed_revisions = {} 196 fixed_revisions = {}
166 197
167 revisions = {} 198 revisions = {}
168 for solution in cfg.solutions: 199 for solution in cfg.solutions:
169 if solution.revision: 200 if solution.revision:
170 revisions[solution.name] = solution.revision 201 revisions[solution.name] = solution.revision
171 elif solution == cfg.solutions[0]: 202 elif solution == cfg.solutions[0]:
172 revisions[solution.name] = ( 203 revisions[solution.name] = (
173 self.m.properties.get('parent_got_revision') or 204 self._parent_got_revision or
174 self.m.properties.get('revision') or 205 self._revision or
175 'HEAD') 206 'HEAD')
176 if self.m.gclient.c and self.m.gclient.c.revisions: 207 if self.m.gclient.c and self.m.gclient.c.revisions:
177 revisions.update(self.m.gclient.c.revisions) 208 revisions.update(self.m.gclient.c.revisions)
178 if cfg.solutions and root_solution_revision: 209 if cfg.solutions and root_solution_revision:
179 revisions[cfg.solutions[0].name] = root_solution_revision 210 revisions[cfg.solutions[0].name] = root_solution_revision
180 # Allow for overrides required to bisect into rolls. 211 # Allow for overrides required to bisect into rolls.
181 revisions.update(self.m.properties.get('deps_revision_overrides', {})) 212 revisions.update(self._deps_revision_overrides)
182 for name, revision in sorted(revisions.items()): 213 for name, revision in sorted(revisions.items()):
183 fixed_revision = self.m.gclient.resolve_revision(revision) 214 fixed_revision = self.m.gclient.resolve_revision(revision)
184 if fixed_revision: 215 if fixed_revision:
185 fixed_revisions[name] = fixed_revision 216 fixed_revisions[name] = fixed_revision
186 flags.append(['--revision', '%s@%s' % (name, fixed_revision)]) 217 flags.append(['--revision', '%s@%s' % (name, fixed_revision)])
187 218
188 # Add extra fetch refspecs. 219 # Add extra fetch refspecs.
189 for ref in refs: 220 for ref in refs:
190 flags.append(['--refs', ref]) 221 flags.append(['--refs', ref])
191 222
192 # Filter out flags that are None. 223 # Filter out flags that are None.
193 cmd = [item for flag_set in flags 224 cmd = [item for flag_set in flags
194 for item in flag_set if flag_set[1] is not None] 225 for item in flag_set if flag_set[1] is not None]
195 226
196 if clobber: 227 if clobber:
197 cmd.append('--clobber') 228 cmd.append('--clobber')
198 if force: 229 if force:
199 cmd.append('--force') 230 cmd.append('--force')
200 if no_shallow: 231 if no_shallow:
201 cmd.append('--no_shallow') 232 cmd.append('--no_shallow')
202 if output_manifest: 233 if output_manifest:
203 cmd.append('--output_manifest') 234 cmd.append('--output_manifest')
204 if with_branch_heads or cfg.with_branch_heads: 235 if with_branch_heads or cfg.with_branch_heads:
205 cmd.append('--with_branch_heads') 236 cmd.append('--with_branch_heads')
206 237
207 # Inject Json output for testing. 238 # Inject Json output for testing.
208 git_mode = self.m.properties.get('mastername') not in SVN_MASTERS 239 git_mode = self._mastername not in SVN_MASTERS
209 first_sln = cfg.solutions[0].name 240 first_sln = cfg.solutions[0].name
210 step_test_data = lambda: self.test_api.output_json( 241 step_test_data = lambda: self.test_api.output_json(
211 master, builder, slave, root, first_sln, rev_map, git_mode, force, 242 master, builder, slave, root, first_sln, rev_map, git_mode, force,
212 self.m.properties.get('fail_patch', False), 243 self._fail_patch,
213 output_manifest=output_manifest, fixed_revisions=fixed_revisions) 244 output_manifest=output_manifest, fixed_revisions=fixed_revisions)
214 245
215 # Add suffixes to the step name, if specified. 246 # Add suffixes to the step name, if specified.
216 name = 'bot_update' 247 name = 'bot_update'
217 if not patch: 248 if not patch:
218 name += ' (without patch)' 249 name += ' (without patch)'
219 if suffix: 250 if suffix:
220 name += ' - %s' % suffix 251 name += ' - %s' % suffix
221 252
222 # Ah hah! Now that everything is in place, lets run bot_update! 253 # Ah hah! Now that everything is in place, lets run bot_update!
223 try: 254 try:
224 # 87 and 88 are the 'patch failure' codes for patch download and patch 255 # 87 and 88 are the 'patch failure' codes for patch download and patch
225 # apply, respectively. We don't actually use the error codes, and instead 256 # apply, respectively. We don't actually use the error codes, and instead
226 # rely on emitted json to determine cause of failure. 257 # rely on emitted json to determine cause of failure.
227 self(name, cmd, step_test_data=step_test_data, 258 self(name, cmd, step_test_data=step_test_data,
228 ok_ret=(0, 87, 88), **kwargs) 259 ok_ret=(0, 87, 88), **kwargs)
229 finally: 260 finally:
230 step_result = self.m.step.active_result 261 step_result = self.m.step.active_result
231 self._properties = step_result.json.output.get('properties', {}) 262 self._last_returned_properties = step_result.json.output.get(
263 'properties', {})
232 264
233 if update_presentation: 265 if update_presentation:
234 # Set properties such as got_revision. 266 # Set properties such as got_revision.
235 for prop_name, prop_value in self.properties.iteritems(): 267 for prop_name, prop_value in self.last_returned_properties.iteritems():
236 step_result.presentation.properties[prop_name] = prop_value 268 step_result.presentation.properties[prop_name] = prop_value
237 # Add helpful step description in the step UI. 269 # Add helpful step description in the step UI.
238 if 'step_text' in step_result.json.output: 270 if 'step_text' in step_result.json.output:
239 step_text = step_result.json.output['step_text'] 271 step_text = step_result.json.output['step_text']
240 step_result.presentation.step_text = step_text 272 step_result.presentation.step_text = step_text
241 # Add log line output. 273 # Add log line output.
242 if 'log_lines' in step_result.json.output: 274 if 'log_lines' in step_result.json.output:
243 for log_name, log_lines in step_result.json.output['log_lines']: 275 for log_name, log_lines in step_result.json.output['log_lines']:
244 step_result.presentation.logs[log_name] = log_lines.splitlines() 276 step_result.presentation.logs[log_name] = log_lines.splitlines()
245 277
(...skipping 24 matching lines...) Expand all
270 302
271 # bot_update actually just sets root to be the folder name of the 303 # bot_update actually just sets root to be the folder name of the
272 # first solution. 304 # first solution.
273 if step_result.json.output['did_run']: 305 if step_result.json.output['did_run']:
274 co_root = step_result.json.output['root'] 306 co_root = step_result.json.output['root']
275 cwd = kwargs.get('cwd', self.m.path['slave_build']) 307 cwd = kwargs.get('cwd', self.m.path['slave_build'])
276 if 'checkout' not in self.m.path: 308 if 'checkout' not in self.m.path:
277 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep)) 309 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep))
278 310
279 return step_result 311 return step_result
OLDNEW
« recipe_modules/bot_update/__init__.py ('K') | « recipe_modules/bot_update/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698