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

Unified Diff: scm.py

Issue 6598068: Add support for wildcards in svn remote configuration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 10 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
« git_cl/git_cl.py ('K') | « git_cl/git_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scm.py
diff --git a/scm.py b/scm.py
index 2690f1f9bb4fa3f83d3ef0bfc4c544668ec63064..93c62875e89f65b9d015171c866e79b60f0544ae 100644
--- a/scm.py
+++ b/scm.py
@@ -64,6 +64,47 @@ def GenFakeDiff(filename):
data.close()
return result
+def MatchSvnGlob(url, base_url, glob_spec, allow_wildcards):
+ """Return the corresponding git ref if |base_url| together with |glob_spec|
+ matches the full |url|.
+
+ If |allow_wildcards| is true, |glob_spec| can contain wildcards (see below).
+ """
+ glob_spec = glob_spec.split(':')
+ if allow_wildcards:
+ glob_match = re.match('(.+/)?(\*|{[^/]*})(/.+)?', glob_spec[0])
+ if glob_match:
+ # Parse specs like "branches/*/src:refs/remotes/svn/*" or
+ # "branches/{472,597,648}/src:refs/remotes/svn/*".
+ branch_re = re.escape(base_url)
+ if glob_match.group(1):
+ branch_re += '/' + re.escape(glob_match.group(1))
+ wildcard = glob_match.group(2)
+ if wildcard == '*':
+ branch_re += '([^/]*)'
+ else:
+ # Escape and replace surrounding braces with parentheses and commas
+ # with pipe symbols.
+ wildcard = re.escape(wildcard)
+ wildcard = re.sub('^\\\\{', '(', wildcard)
+ wildcard = re.sub('\\\\,', '|', wildcard)
+ wildcard = re.sub('\\\\}$', ')', wildcard)
+ branch_re += wildcard
+ if glob_match.group(3):
+ branch_re += re.escape(glob_match.group(3))
+ match = re.match(branch_re, url)
+ if match:
+ return re.sub('\*$', match.group(1), glob_spec[1])
+
+ # Parse specs like "trunk/src:refs/remotes/origin/trunk".
+ if glob_spec[0]:
+ full_url = base_url + '/' + glob_spec[0]
+ else:
+ full_url = base_url
+ if full_url == url:
+ return glob_spec[1]
+ return None
+
class GIT(object):
@staticmethod
@@ -171,15 +212,33 @@ class GIT(object):
if match:
remote = match.group(1)
base_url = match.group(2)
- fetch_spec = GIT.Capture(
- ['config', 'svn-remote.%s.fetch' % remote],
- cwd=cwd).strip().split(':')
- if fetch_spec[0]:
- full_url = base_url + '/' + fetch_spec[0]
- else:
- full_url = base_url
- if full_url == url:
- return fetch_spec[1]
+ try:
+ fetch_spec = GIT.Capture(
+ ['config', 'svn-remote.%s.fetch' % remote],
+ cwd=cwd).strip()
+ branch = MatchSvnGlob(url, base_url, fetch_spec, False)
+ except gclient_utils.CheckCallError:
+ branch = None
+ if branch:
+ return branch
+ try:
+ branch_spec = GIT.Capture(
+ ['config', 'svn-remote.%s.branches' % remote],
+ cwd=cwd).strip()
+ branch = MatchSvnGlob(url, base_url, branch_spec, True)
+ except gclient_utils.CheckCallError:
+ branch = None
+ if branch:
+ return branch
+ try:
+ tag_spec = GIT.Capture(
+ ['config', 'svn-remote.%s.tags' % remote],
+ cwd=cwd).strip()
+ branch = MatchSvnGlob(url, base_url, tag_spec, True)
+ except gclient_utils.CheckCallError:
+ branch = None
+ if branch:
+ return branch
@staticmethod
def FetchUpstreamTuple(cwd):
« git_cl/git_cl.py ('K') | « git_cl/git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698