2 # Copyright 2015 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.
16 SCRIPT_DIR
= os
.path
.dirname(os
.path
.realpath(__file__
))
17 SRC_DIR
= os
.path
.abspath(os
.path
.join(SCRIPT_DIR
, os
.pardir
))
18 import find_depot_tools
19 find_depot_tools
.add_depot_tools_to_path()
21 from gclient
import GClientKeywords
22 from third_party
import upload
24 # Avoid depot_tools/third_party/upload.py print verbose messages.
25 upload
.verbosity
= 0 # Errors only.
27 CHROMIUM_GIT_URL
= 'https://chromium.googlesource.com/chromium/src.git'
28 CL_ISSUE_RE
= re
.compile('^Issue number: ([0-9]+) \((.*)\)$')
29 RIETVELD_URL_RE
= re
.compile('^https?://(.*)/(.*)')
30 ROLL_BRANCH_NAME
= 'special_angle_roll_branch'
31 TRYJOB_STATUS_SLEEP_SECONDS
= 30
33 # Use a shell for subcommands on Windows to get a PATH search.
34 IS_WIN
= sys
.platform
.startswith('win')
35 ANGLE_PATH
= os
.path
.join('third_party', 'angle')
37 CommitInfo
= collections
.namedtuple('CommitInfo', ['git_commit',
39 CLInfo
= collections
.namedtuple('CLInfo', ['issue', 'url', 'rietveld_server'])
42 """Convert a possibly-Windows path to a posix-style path."""
43 (_
, path
) = os
.path
.splitdrive(path
)
44 return path
.replace(os
.sep
, '/')
46 def _ParseGitCommitHash(description
):
47 for line
in description
.splitlines():
48 if line
.startswith('commit '):
49 return line
.split()[1]
50 logging
.error('Failed to parse git commit id from:\n%s\n', description
)
55 def _ParseDepsFile(filename
):
56 with
open(filename
, 'rb') as f
:
57 deps_content
= f
.read()
58 return _ParseDepsDict(deps_content
)
61 def _ParseDepsDict(deps_content
):
63 var
= GClientKeywords
.VarImpl({}, local_scope
)
65 'File': GClientKeywords
.FileImpl
,
66 'From': GClientKeywords
.FromImpl
,
70 exec(deps_content
, global_scope
, local_scope
)
74 def _GenerateCLDescriptionCommand(angle_current
, angle_new
, bugs
):
75 def GetChangeString(current_hash
, new_hash
):
76 return '%s..%s' % (current_hash
[0:7], new_hash
[0:7]);
78 def GetChangeLogURL(git_repo_url
, change_string
):
79 return '%s/+log/%s' % (git_repo_url
, change_string
)
81 def GetBugString(bugs
):
84 bug_str
+= str(bug
) + ','
85 return bug_str
.rstrip(',')
87 if angle_current
.git_commit
!= angle_new
.git_commit
:
88 change_str
= GetChangeString(angle_current
.git_commit
,
90 changelog_url
= GetChangeLogURL(angle_current
.git_repo_url
,
94 '-m', 'Roll ANGLE ' + change_str
,
95 '-m', '%s' % changelog_url
,
96 '-m', GetBugString(bugs
),
101 class AutoRoller(object):
102 def __init__(self
, chromium_src
):
103 self
._chromium
_src
= chromium_src
105 def _RunCommand(self
, command
, working_dir
=None, ignore_exit_code
=False,
107 """Runs a command and returns the stdout from that command.
109 If the command fails (exit code != 0), the function will exit the process.
111 working_dir
= working_dir
or self
._chromium
_src
112 logging
.debug('cmd: %s cwd: %s', ' '.join(command
), working_dir
)
113 env
= os
.environ
.copy()
115 logging
.debug('extra env: %s', extra_env
)
116 env
.update(extra_env
)
117 p
= subprocess
.Popen(command
, stdout
=subprocess
.PIPE
,
118 stderr
=subprocess
.PIPE
, shell
=IS_WIN
, env
=env
,
119 cwd
=working_dir
, universal_newlines
=True)
120 output
= p
.stdout
.read()
125 if not ignore_exit_code
and p
.returncode
!= 0:
126 logging
.error('Command failed: %s\n%s', str(command
), output
)
127 sys
.exit(p
.returncode
)
130 def _GetCommitInfo(self
, path_below_src
, git_hash
=None, git_repo_url
=None):
131 working_dir
= os
.path
.join(self
._chromium
_src
, path_below_src
)
132 self
._RunCommand
(['git', 'fetch', 'origin'], working_dir
=working_dir
)
133 revision_range
= git_hash
or 'origin'
134 ret
= self
._RunCommand
(
135 ['git', '--no-pager', 'log', revision_range
, '--pretty=full', '-1'],
136 working_dir
=working_dir
)
137 return CommitInfo(_ParseGitCommitHash(ret
), git_repo_url
)
139 def _GetDepsCommitInfo(self
, deps_dict
, path_below_src
):
140 entry
= deps_dict
['deps'][_PosixPath('src/%s' % path_below_src
)]
141 at_index
= entry
.find('@')
142 git_repo_url
= entry
[:at_index
]
143 git_hash
= entry
[at_index
+ 1:]
144 return self
._GetCommitInfo
(path_below_src
, git_hash
, git_repo_url
)
146 def _GetCLInfo(self
):
147 cl_output
= self
._RunCommand
(['git', 'cl', 'issue'])
148 m
= CL_ISSUE_RE
.match(cl_output
.strip())
150 logging
.error('Cannot find any CL info. Output was:\n%s', cl_output
)
152 issue_number
= int(m
.group(1))
155 # Parse the Rietveld host from the URL.
156 m
= RIETVELD_URL_RE
.match(url
)
158 logging
.error('Cannot parse Rietveld host from URL: %s', url
)
160 rietveld_server
= m
.group(1)
161 return CLInfo(issue_number
, url
, rietveld_server
)
163 def _GetCurrentBranchName(self
):
164 return self
._RunCommand
(
165 ['git', 'rev-parse', '--abbrev-ref', 'HEAD']).splitlines()[0]
167 def _IsTreeClean(self
):
168 lines
= self
._RunCommand
(
169 ['git', 'status', '--porcelain', '-uno']).splitlines()
173 logging
.debug('Dirty/unversioned files:\n%s', '\n'.join(lines
))
176 def _GetBugList(self
, path_below_src
, angle_current
, angle_new
):
177 working_dir
= os
.path
.join(self
._chromium
_src
, path_below_src
)
178 lines
= self
._RunCommand
(
180 '%s..%s' % (angle_current
.git_commit
, angle_new
.git_commit
)],
181 working_dir
=working_dir
).split('\n')
186 if line
.startswith(bug_prefix
):
187 bugs_strings
= line
[len(bug_prefix
):].split(',')
188 for bug_string
in bugs_strings
:
190 bugs
.add(int(bug_string
))
192 # skip this, it may be a project specific bug such as
193 # "angleproject:X" or an ill-formed BUG= message
197 def _UpdateReadmeFile(self
, readme_path
, new_revision
):
198 readme
= open(os
.path
.join(self
._chromium
_src
, readme_path
), 'r+')
200 m
= re
.sub(re
.compile('.*^Revision\: ([0-9]*).*', re
.MULTILINE
),
201 ('Revision: %s' % new_revision
), txt
)
206 def PrepareRoll(self
, ignore_checks
):
207 # TODO(kjellander): use os.path.normcase, os.path.join etc for all paths for
208 # cross platform compatibility.
210 if not ignore_checks
:
211 if self
._GetCurrentBranchName
() != 'master':
212 logging
.error('Please checkout the master branch.')
214 if not self
._IsTreeClean
():
215 logging
.error('Please make sure you don\'t have any modified files.')
218 # Always clean up any previous roll.
221 logging
.debug('Pulling latest changes')
222 if not ignore_checks
:
223 self
._RunCommand
(['git', 'pull'])
225 self
._RunCommand
(['git', 'checkout', '-b', ROLL_BRANCH_NAME
])
227 # Modify Chromium's DEPS file.
229 # Parse current hashes.
230 deps_filename
= os
.path
.join(self
._chromium
_src
, 'DEPS')
231 deps
= _ParseDepsFile(deps_filename
)
232 angle_current
= self
._GetDepsCommitInfo
(deps
, ANGLE_PATH
)
234 # Find ToT revisions.
235 angle_latest
= self
._GetCommitInfo
(ANGLE_PATH
)
238 # Make sure the roll script doesn't use windows line endings
239 self
._RunCommand
(['git', 'config', 'core.autocrlf', 'true'])
241 self
._UpdateDep
(deps_filename
, ANGLE_PATH
, angle_latest
)
243 if self
._IsTreeClean
():
244 logging
.debug('Tree is clean - no changes detected.')
245 self
._DeleteRollBranch
()
247 bugs
= self
._GetBugList
(ANGLE_PATH
, angle_current
, angle_latest
)
248 description
= _GenerateCLDescriptionCommand(
249 angle_current
, angle_latest
, bugs
)
250 logging
.debug('Committing changes locally.')
251 self
._RunCommand
(['git', 'add', '--update', '.'])
252 self
._RunCommand
(['git', 'commit'] + description
)
253 logging
.debug('Uploading changes...')
254 self
._RunCommand
(['git', 'cl', 'upload'],
255 extra_env
={'EDITOR': 'true'})
256 self
._RunCommand
(['git', 'cl', 'try'])
257 cl_info
= self
._GetCLInfo
()
258 print 'Issue: %d URL: %s' % (cl_info
.issue
, cl_info
.url
)
260 # Checkout master again.
261 self
._RunCommand
(['git', 'checkout', 'master'])
262 print 'Roll branch left as ' + ROLL_BRANCH_NAME
265 def _UpdateDep(self
, deps_filename
, dep_relative_to_src
, commit_info
):
266 dep_name
= _PosixPath(os
.path
.join('src', dep_relative_to_src
))
268 # roll_dep_svn.py relies on cwd being the Chromium checkout, so let's
269 # temporarily change the working directory and then change back.
271 os
.chdir(os
.path
.dirname(deps_filename
))
272 roll_dep_svn
.update_deps(deps_filename
, dep_relative_to_src
, dep_name
,
273 commit_info
.git_commit
, '')
276 def _DeleteRollBranch(self
):
277 self
._RunCommand
(['git', 'checkout', 'master'])
278 self
._RunCommand
(['git', 'branch', '-D', ROLL_BRANCH_NAME
])
279 logging
.debug('Deleted the local roll branch (%s)', ROLL_BRANCH_NAME
)
282 def _GetBranches(self
):
283 """Returns a tuple of active,branches.
285 The 'active' is the name of the currently active branch and 'branches' is a
286 list of all branches.
288 lines
= self
._RunCommand
(['git', 'branch']).split('\n')
293 # The assumption is that the first char will always be the '*'.
294 active
= l
[1:].strip()
295 branches
.append(active
)
300 return (active
, branches
)
303 active_branch
, branches
= self
._GetBranches
()
304 if active_branch
== ROLL_BRANCH_NAME
:
305 active_branch
= 'master'
306 if ROLL_BRANCH_NAME
in branches
:
307 print 'Aborting pending roll.'
308 self
._RunCommand
(['git', 'checkout', ROLL_BRANCH_NAME
])
309 # Ignore an error here in case an issue wasn't created for some reason.
310 self
._RunCommand
(['git', 'cl', 'set_close'], ignore_exit_code
=True)
311 self
._RunCommand
(['git', 'checkout', active_branch
])
312 self
._RunCommand
(['git', 'branch', '-D', ROLL_BRANCH_NAME
])
317 parser
= argparse
.ArgumentParser(
318 description
='Auto-generates a CL containing an ANGLE roll.')
319 parser
.add_argument('--abort',
320 help=('Aborts a previously prepared roll. '
321 'Closes any associated issues and deletes the roll branches'),
323 parser
.add_argument('--ignore-checks', action
='store_true', default
=False,
324 help=('Skips checks for being on the master branch, dirty workspaces and '
325 'the updating of the checkout. Will still delete and create local '
327 parser
.add_argument('-v', '--verbose', action
='store_true', default
=False,
328 help='Be extra verbose in printing of log messages.')
329 args
= parser
.parse_args()
332 logging
.basicConfig(level
=logging
.DEBUG
)
334 logging
.basicConfig(level
=logging
.ERROR
)
336 autoroller
= AutoRoller(SRC_DIR
)
338 return autoroller
.Abort()
340 return autoroller
.PrepareRoll(args
.ignore_checks
)
342 if __name__
== '__main__':