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

Unified Diff: git_cl.py

Issue 1893563002: Use CLs more consistently instead of branch names (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: fix git map-branches -vv 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 | « no previous file | git_map_branches.py » ('j') | git_map_branches.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 45dace5f295929b90dd63205860a0047b9a10e0e..41f35ebfd92b419fad14a66813886b0dc8e7ee9b 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -17,11 +17,9 @@ import json
import logging
import optparse
import os
-import Queue
import re
import stat
import sys
-import tempfile
import textwrap
import time
import traceback
@@ -2901,21 +2899,9 @@ def color_for_status(status):
'error': Fore.WHITE,
}.get(status, Fore.WHITE)
-def fetch_cl_status(branch, auth_config=None):
- """Fetches information for an issue and returns (branch, issue, status)."""
- cl = Changelist(branchref=branch, auth_config=auth_config)
- url = cl.GetIssueURL()
- status = cl.GetStatus()
-
- if url and (not status or status == 'error'):
- # The issue probably doesn't exist anymore.
- url += ' (broken)'
-
- return (branch, url, status)
-
def get_cl_statuses(
- branches, fine_grained, max_processes=None, auth_config=None):
- """Returns a blocking iterable of (branch, issue, color) for given branches.
+ changes, fine_grained, max_processes=None, auth_config=None):
+ """Returns a blocking iterable of (cl, status) for given branches.
tandrii(chromium) 2016/04/26 09:49:51 s/for given branches/for given changelists
If fine_grained is true, this will fetch CL statuses from the server.
Otherwise, simply indicate if there's a matching url for the given branches.
@@ -2927,26 +2913,26 @@ def get_cl_statuses(
# Silence upload.py otherwise it becomes unwieldly.
upload.verbosity = 0
+ change_cls = [Changelist(branchref=c, auth_config=auth_config)
+ if type(c) is str else c for c in changes]
tandrii(chromium) 2016/04/26 09:49:51 Let's keep get_cl_statuses() API clear: changes is
if fine_grained:
# Process one branch synchronously to work through authentication, then
# spawn processes to process all the other branches in parallel.
- if branches:
- fetch = lambda branch: fetch_cl_status(branch, auth_config=auth_config)
- yield fetch(branches[0])
+ if changes:
+ fetch = lambda cl: (cl, cl.GetStatus())
+ yield fetch(change_cls[0])
- branches_to_fetch = branches[1:]
+ changes_to_fetch = change_cls[1:]
pool = ThreadPool(
- min(max_processes, len(branches_to_fetch))
+ min(max_processes, len(changes_to_fetch))
if max_processes is not None
- else len(branches_to_fetch))
- for x in pool.imap_unordered(fetch, branches_to_fetch):
+ else len(changes_to_fetch))
+ for x in pool.imap_unordered(fetch, changes_to_fetch):
yield x
else:
# Do not use GetApprovingReviewers(), since it requires an HTTP request.
- for b in branches:
- cl = Changelist(branchref=b, auth_config=auth_config)
- url = cl.GetIssueURL()
- yield (b, url, 'waiting' if url else 'error')
+ for cl in change_cls:
+ yield (cl, 'waiting' if cl.GetIssueURL() else 'error')
def upload_branch_deps(cl, args):
@@ -3099,25 +3085,27 @@ def CMDstatus(parser, args):
print('No local branch found.')
return 0
- changes = (
+ changes = [
Changelist(branchref=b, auth_config=auth_config)
- for b in branches.splitlines())
- # TODO(tandrii): refactor to use CLs list instead of branches list.
- branches = [c.GetBranch() for c in changes]
- alignment = max(5, max(len(b) for b in branches))
+ for b in branches.splitlines()]
print 'Branches associated with reviews:'
- output = get_cl_statuses(branches,
+ output = get_cl_statuses(changes,
fine_grained=not options.fast,
- max_processes=options.maxjobs,
- auth_config=auth_config)
+ max_processes=options.maxjobs)
branch_statuses = {}
- alignment = max(5, max(len(ShortBranchName(b)) for b in branches))
- for branch in sorted(branches):
+ alignment = max(5, max(len(ShortBranchName(c.GetBranch())) for c in changes))
+ for cl in sorted(changes, key=lambda c: c.GetBranch()):
+ branch = cl.GetBranch()
while branch not in branch_statuses:
- b, i, status = output.next()
- branch_statuses[b] = (i, status)
- issue_url, status = branch_statuses.pop(branch)
+ c, status = output.next()
+ branch_statuses[c.GetBranch()] = status
+ status = branch_statuses.pop(branch)
+ url = cl.GetIssueURL()
+ if url and (not status or status == 'error'):
+ # The issue probably doesn't exist anymore.
+ url += ' (broken)'
+
color = color_for_status(status)
reset = Fore.RESET
if not setup_color.IS_TTY:
@@ -3125,8 +3113,8 @@ def CMDstatus(parser, args):
reset = ''
status_str = '(%s)' % status if status else ''
print ' %*s : %s%s %s%s' % (
- alignment, ShortBranchName(branch), color, issue_url, status_str,
- reset)
+ alignment, ShortBranchName(branch), color, url,
+ status_str, reset)
cl = Changelist(auth_config=auth_config)
print
« no previous file with comments | « no previous file | git_map_branches.py » ('j') | git_map_branches.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698