OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # Copyright (C) 2008 Evan Martin <martine@danga.com> | 6 # Copyright (C) 2008 Evan Martin <martine@danga.com> |
7 | 7 |
8 """A git-command for integrating reviews on Rietveld.""" | 8 """A git-command for integrating reviews on Rietveld.""" |
9 | 9 |
10 import json | 10 import json |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
156 dirty = RunGit(['diff-index', '--name-status', 'HEAD']) | 156 dirty = RunGit(['diff-index', '--name-status', 'HEAD']) |
157 if dirty: | 157 if dirty: |
158 print 'Cannot %s with a dirty tree. You must commit locally first.' % cmd | 158 print 'Cannot %s with a dirty tree. You must commit locally first.' % cmd |
159 print 'Uncommitted files: (git diff-index --name-status HEAD)' | 159 print 'Uncommitted files: (git diff-index --name-status HEAD)' |
160 print dirty[:4096] | 160 print dirty[:4096] |
161 if len(dirty) > 4096: | 161 if len(dirty) > 4096: |
162 print '... (run "git diff-index --name-status HEAD" to see full output).' | 162 print '... (run "git diff-index --name-status HEAD" to see full output).' |
163 return True | 163 return True |
164 return False | 164 return False |
165 | 165 |
166 | |
167 def git_cl_sanity_checks(upstream_git_obj): | |
M-A Ruel
2012/10/28 20:53:02
Would still like a oneliner docstring for the purp
Isaac (away)
2012/10/28 21:16:42
Done.
| |
168 # First verify that the commit we're diffing against is in our tree. | |
169 upstream_sha = RunGit(['rev-parse', '--verify', upstream_git_obj]).strip() | |
170 common_ancestor = RunGit(['merge-base', upstream_sha, 'HEAD']).strip() | |
171 if upstream_sha != common_ancestor: | |
172 print >> sys.stderr, ( | |
173 'ERROR: %s is not in the current branch. You may need to rebase your ' | |
174 'tracking branch' % upstream_sha) | |
175 return False | |
176 | |
177 commits_in_diff = RunGit( | |
178 ['rev-list', '^%s' % upstream_sha, 'HEAD']).splitlines() | |
179 commits_in_origin = RunGit( | |
180 ['rev-list', '^%s' % upstream_sha, 'remotes/origin/master']).splitlines() | |
181 | |
182 common_commits = set(commits_in_diff) & set(commits_in_origin) | |
183 if common_commits: | |
184 print >> sys.stderr, ( | |
185 'ERROR: Your diff contains %d commits already in origin/master.\n' | |
186 'Run "git log --oneline origin/master..HEAD" to get a list of commits ' | |
187 'in the diff' % len(common_commits)) | |
188 return False | |
189 return True | |
190 | |
191 | |
166 def MatchSvnGlob(url, base_url, glob_spec, allow_wildcards): | 192 def MatchSvnGlob(url, base_url, glob_spec, allow_wildcards): |
167 """Return the corresponding git ref if |base_url| together with |glob_spec| | 193 """Return the corresponding git ref if |base_url| together with |glob_spec| |
168 matches the full |url|. | 194 matches the full |url|. |
169 | 195 |
170 If |allow_wildcards| is true, |glob_spec| can contain wildcards (see below). | 196 If |allow_wildcards| is true, |glob_spec| can contain wildcards (see below). |
171 """ | 197 """ |
172 fetch_suburl, as_ref = glob_spec.split(':') | 198 fetch_suburl, as_ref = glob_spec.split(':') |
173 if allow_wildcards: | 199 if allow_wildcards: |
174 glob_match = re.match('(.+/)?(\*|{[^/]*})(/.+)?', fetch_suburl) | 200 glob_match = re.match('(.+/)?(\*|{[^/]*})(/.+)?', fetch_suburl) |
175 if glob_match: | 201 if glob_match: |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
600 if issue: | 626 if issue: |
601 RunGit(['config', self._IssueSetting(), str(issue)]) | 627 RunGit(['config', self._IssueSetting(), str(issue)]) |
602 if self.rietveld_server: | 628 if self.rietveld_server: |
603 RunGit(['config', self._RietveldServer(), self.rietveld_server]) | 629 RunGit(['config', self._RietveldServer(), self.rietveld_server]) |
604 else: | 630 else: |
605 RunGit(['config', '--unset', self._IssueSetting()]) | 631 RunGit(['config', '--unset', self._IssueSetting()]) |
606 self.SetPatchset(0) | 632 self.SetPatchset(0) |
607 self.has_issue = False | 633 self.has_issue = False |
608 | 634 |
609 def GetChange(self, upstream_branch, author): | 635 def GetChange(self, upstream_branch, author): |
636 if not git_cl_sanity_checks(upstream_branch): | |
637 DieWithError('\nGit sanity check failure') | |
638 | |
610 root = RunCommand(['git', 'rev-parse', '--show-cdup']).strip() or '.' | 639 root = RunCommand(['git', 'rev-parse', '--show-cdup']).strip() or '.' |
611 absroot = os.path.abspath(root) | 640 absroot = os.path.abspath(root) |
612 | 641 |
613 # We use the sha1 of HEAD as a name of this change. | 642 # We use the sha1 of HEAD as a name of this change. |
614 name = RunCommand(['git', 'rev-parse', 'HEAD']).strip() | 643 name = RunCommand(['git', 'rev-parse', 'HEAD']).strip() |
615 # Need to pass a relative path for msysgit. | 644 # Need to pass a relative path for msysgit. |
616 try: | 645 try: |
617 files = scm.GIT.CaptureStatus([root], '.', upstream_branch) | 646 files = scm.GIT.CaptureStatus([root], '.', upstream_branch) |
618 except subprocess2.CalledProcessError: | 647 except subprocess2.CalledProcessError: |
619 DieWithError( | 648 DieWithError( |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1011 (options, args) = parser.parse_args(args) | 1040 (options, args) = parser.parse_args(args) |
1012 | 1041 |
1013 if not options.force and is_dirty_git_tree('presubmit'): | 1042 if not options.force and is_dirty_git_tree('presubmit'): |
1014 print 'use --force to check even if tree is dirty.' | 1043 print 'use --force to check even if tree is dirty.' |
1015 return 1 | 1044 return 1 |
1016 | 1045 |
1017 cl = Changelist() | 1046 cl = Changelist() |
1018 if args: | 1047 if args: |
1019 base_branch = args[0] | 1048 base_branch = args[0] |
1020 else: | 1049 else: |
1021 # Default to diffing against the "upstream" branch. | 1050 # Default to diffing against the common ancestor of the upstream branch. |
1022 base_branch = cl.GetUpstreamBranch() | 1051 base_branch = RunGit(['merge-base', cl.GetUpstreamBranch(), 'HEAD']).strip() |
1023 | 1052 |
1024 cl.RunHook(committing=not options.upload, upstream_branch=base_branch, | 1053 cl.RunHook(committing=not options.upload, upstream_branch=base_branch, |
1025 may_prompt=False, verbose=options.verbose, | 1054 may_prompt=False, verbose=options.verbose, |
1026 author=None) | 1055 author=None) |
1027 return 0 | 1056 return 0 |
1028 | 1057 |
1029 | 1058 |
1030 def AddChangeIdToCommitMessage(options, args): | 1059 def AddChangeIdToCommitMessage(options, args): |
1031 """Re-commits using the current message, assumes the commit hook is in | 1060 """Re-commits using the current message, assumes the commit hook is in |
1032 place. | 1061 place. |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1209 'See http://goo.gl/JGg0Z for details.\n') | 1238 'See http://goo.gl/JGg0Z for details.\n') |
1210 | 1239 |
1211 if is_dirty_git_tree('upload'): | 1240 if is_dirty_git_tree('upload'): |
1212 return 1 | 1241 return 1 |
1213 | 1242 |
1214 cl = Changelist() | 1243 cl = Changelist() |
1215 if args: | 1244 if args: |
1216 # TODO(ukai): is it ok for gerrit case? | 1245 # TODO(ukai): is it ok for gerrit case? |
1217 base_branch = args[0] | 1246 base_branch = args[0] |
1218 else: | 1247 else: |
1219 # Default to diffing against the "upstream" branch. | 1248 # Default to diffing against common ancestor of upstream branch |
1220 base_branch = cl.GetUpstreamBranch() | 1249 base_branch = RunGit(['merge-base', cl.GetUpstreamBranch(), 'HEAD']).strip() |
1221 args = [base_branch + "..."] | 1250 args = [base_branch] |
1222 | 1251 |
1223 if not options.bypass_hooks: | 1252 if not options.bypass_hooks: |
1224 hook_results = cl.RunHook(committing=False, upstream_branch=base_branch, | 1253 hook_results = cl.RunHook(committing=False, upstream_branch=base_branch, |
1225 may_prompt=not options.force, | 1254 may_prompt=not options.force, |
1226 verbose=options.verbose, | 1255 verbose=options.verbose, |
1227 author=None) | 1256 author=None) |
1228 if not hook_results.should_continue(): | 1257 if not hook_results.should_continue(): |
1229 return 1 | 1258 return 1 |
1230 if not options.reviewers and hook_results.reviewers: | 1259 if not options.reviewers and hook_results.reviewers: |
1231 options.reviewers = hook_results.reviewers | 1260 options.reviewers = hook_results.reviewers |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1649 cl = Changelist() | 1678 cl = Changelist() |
1650 if not cl.GetIssue(): | 1679 if not cl.GetIssue(): |
1651 parser.error('Need to upload first') | 1680 parser.error('Need to upload first') |
1652 | 1681 |
1653 if not options.name: | 1682 if not options.name: |
1654 options.name = cl.GetBranch() | 1683 options.name = cl.GetBranch() |
1655 | 1684 |
1656 # Process --bot and --testfilter. | 1685 # Process --bot and --testfilter. |
1657 if not options.bot: | 1686 if not options.bot: |
1658 # Get try slaves from PRESUBMIT.py files if not specified. | 1687 # Get try slaves from PRESUBMIT.py files if not specified. |
1659 change = cl.GetChange(cl.GetUpstreamBranch(), None) | 1688 change = cl.GetChange( |
1689 RunGit(['merge-base', cl.GetUpstreamBranch(), 'HEAD']).strip(), | |
1690 None) | |
1660 options.bot = presubmit_support.DoGetTrySlaves( | 1691 options.bot = presubmit_support.DoGetTrySlaves( |
1661 change, | 1692 change, |
1662 change.LocalPaths(), | 1693 change.LocalPaths(), |
1663 settings.GetRoot(), | 1694 settings.GetRoot(), |
1664 None, | 1695 None, |
1665 None, | 1696 None, |
1666 options.verbose, | 1697 options.verbose, |
1667 sys.stdout) | 1698 sys.stdout) |
1668 if not options.bot: | 1699 if not options.bot: |
1669 parser.error('No default try builder to try, use --bot') | 1700 parser.error('No default try builder to try, use --bot') |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1809 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) | 1840 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) |
1810 | 1841 |
1811 # Not a known command. Default to help. | 1842 # Not a known command. Default to help. |
1812 GenUsage(parser, 'help') | 1843 GenUsage(parser, 'help') |
1813 return CMDhelp(parser, argv) | 1844 return CMDhelp(parser, argv) |
1814 | 1845 |
1815 | 1846 |
1816 if __name__ == '__main__': | 1847 if __name__ == '__main__': |
1817 fix_encoding.fix_encoding() | 1848 fix_encoding.fix_encoding() |
1818 sys.exit(main(sys.argv[1:])) | 1849 sys.exit(main(sys.argv[1:])) |
OLD | NEW |