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

Unified Diff: presubmit_support.py

Issue 1891233003: Support getting changes of non-HEAD branches (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@branch-to-cl
Patch Set: fix Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « git_cl.py ('k') | scm.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_support.py
diff --git a/presubmit_support.py b/presubmit_support.py
index 2b01bc356401cea34d7634b6ab87d3ba120a893b..d8e2c5b79224c487fef697c877c4dcae6cf80264 100755
--- a/presubmit_support.py
+++ b/presubmit_support.py
@@ -508,7 +508,7 @@ class InputApi(object):
class _DiffCache(object):
"""Caches diffs retrieved from a particular SCM."""
- def __init__(self, upstream=None):
+ def __init__(self, upstream=None, *args, **kwargs):
"""Stores the upstream revision against which all diffs will be computed."""
self._upstream = upstream
@@ -519,8 +519,8 @@ class _DiffCache(object):
class _SvnDiffCache(_DiffCache):
"""DiffCache implementation for subversion."""
- def __init__(self, *args, **kwargs):
- super(_SvnDiffCache, self).__init__(*args, **kwargs)
+ def __init__(self, upstream=None, *args, **kwargs):
+ super(_SvnDiffCache, self).__init__(upstream, *args, **kwargs)
self._diffs_by_file = {}
def GetDiff(self, path, local_root):
@@ -532,20 +532,22 @@ class _SvnDiffCache(_DiffCache):
class _GitDiffCache(_DiffCache):
"""DiffCache implementation for git; gets all file diffs at once."""
- def __init__(self, upstream):
- super(_GitDiffCache, self).__init__(upstream=upstream)
+ def __init__(self, upstream=None, *args, **kwargs):
+ super(_GitDiffCache, self).__init__(upstream, *args, **kwargs)
self._diffs_by_file = None
+ self._local_ref = kwargs.get('local_ref', 'HEAD')
def GetDiff(self, path, local_root):
if not self._diffs_by_file:
- # Compute a single diff for all files and parse the output; should
- # with git this is much faster than computing one diff for each file.
+ # Compute a single diff for all files and parse the output; with git
+ # this is much faster than computing one diff for each file.
diffs = {}
# Don't specify any filenames below, because there are command line length
# limits on some platforms and GenerateDiff would fail.
unified_diff = scm.GIT.GenerateDiff(local_root, files=[], full_move=True,
- branch=self._upstream)
+ branch=self._upstream,
+ branch_head=self._local_ref)
# This regex matches the path twice, separated by a space. Note that
# filename itself may contain spaces.
@@ -802,13 +804,14 @@ class Change(object):
def __init__(
self, name, description, local_root, files, issue, patchset, author,
- upstream=None):
+ upstream=None, local_ref='HEAD'):
if files is None:
files = []
self._name = name
# Convert root into an absolute path.
self._local_root = os.path.abspath(local_root)
self._upstream = upstream
+ self._local_ref = local_ref
self.issue = issue
self.patchset = patchset
self.author_email = author
@@ -821,7 +824,8 @@ class Change(object):
assert all(
(isinstance(f, (list, tuple)) and len(f) == 2) for f in files), files
- diff_cache = self._AFFECTED_FILES.DIFF_CACHE(self._upstream)
+ diff_cache = self._AFFECTED_FILES.DIFF_CACHE(self._upstream,
+ local_ref=self._local_ref)
self._affected_files = [
self._AFFECTED_FILES(path, action.strip(), self._local_root, diff_cache)
for action, path in files
« no previous file with comments | « git_cl.py ('k') | scm.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698