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

Side by Side Diff: git_cl.py

Issue 1847693004: Fix hanging issue with git map-branches. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: address_comments 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 from distutils.version import LooseVersion 10 from distutils.version import LooseVersion
11 from multiprocessing.pool import ThreadPool 11 from multiprocessing.pool import ThreadPool
12 import base64 12 import base64
13 import collections 13 import collections
14 import glob 14 import glob
15 import httplib 15 import httplib
16 import json 16 import json
17 import logging 17 import logging
18 import multiprocessing
18 import optparse 19 import optparse
19 import os 20 import os
20 import Queue 21 import Queue
21 import re 22 import re
22 import stat 23 import stat
23 import sys 24 import sys
24 import tempfile 25 import tempfile
25 import textwrap 26 import textwrap
26 import time 27 import time
27 import traceback 28 import traceback
(...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after
1692 status = cl.GetStatus() 1693 status = cl.GetStatus()
1693 1694
1694 if url and (not status or status == 'error'): 1695 if url and (not status or status == 'error'):
1695 # The issue probably doesn't exist anymore. 1696 # The issue probably doesn't exist anymore.
1696 url += ' (broken)' 1697 url += ' (broken)'
1697 1698
1698 return (branch, url, status) 1699 return (branch, url, status)
1699 1700
1700 def get_cl_statuses( 1701 def get_cl_statuses(
1701 branches, fine_grained, max_processes=None, auth_config=None): 1702 branches, fine_grained, max_processes=None, auth_config=None):
1702 """Returns a blocking iterable of (branch, issue, color) for given branches. 1703 """Returns a blocking iterable of (branch, issue, status) for given branches.
1703 1704
1704 If fine_grained is true, this will fetch CL statuses from the server. 1705 If fine_grained is true, this will fetch CL statuses from the server.
1705 Otherwise, simply indicate if there's a matching url for the given branches. 1706 Otherwise, simply indicate if there's a matching url for the given branches.
1706 1707
1707 If max_processes is specified, it is used as the maximum number of processes 1708 If max_processes is specified, it is used as the maximum number of processes
1708 to spawn to fetch CL status from the server. Otherwise 1 process per branch is 1709 to spawn to fetch CL status from the server. Otherwise 1 process per branch is
1709 spawned. 1710 spawned.
1711
1712 See GetStatus() for a list of possible statuses.
1710 """ 1713 """
1714 def fetch(branch):
1715 if not branch:
1716 return None
1717
1718 return fetch_cl_status(branch, auth_config=auth_config)
1719
1711 # Silence upload.py otherwise it becomes unwieldly. 1720 # Silence upload.py otherwise it becomes unwieldly.
1712 upload.verbosity = 0 1721 upload.verbosity = 0
1713 1722
1714 if fine_grained: 1723 if fine_grained:
1715 # Process one branch synchronously to work through authentication, then 1724 # Process one branch synchronously to work through authentication, then
1716 # spawn processes to process all the other branches in parallel. 1725 # spawn processes to process all the other branches in parallel.
1717 if branches: 1726 if branches:
1718 fetch = lambda branch: fetch_cl_status(branch, auth_config=auth_config) 1727
1719 yield fetch(branches[0]) 1728 yield fetch(branches[0])
1720 1729
1721 branches_to_fetch = branches[1:] 1730 branches_to_fetch = branches[1:]
1722 pool = ThreadPool( 1731 pool = ThreadPool(
1723 min(max_processes, len(branches_to_fetch)) 1732 min(max_processes, len(branches_to_fetch))
1724 if max_processes is not None 1733 if max_processes is not None
1725 else len(branches_to_fetch)) 1734 else len(branches_to_fetch))
1726 for x in pool.imap_unordered(fetch, branches_to_fetch): 1735
1727 yield x 1736 fetched_branches = set()
1737 it = pool.imap_unordered(fetch, branches_to_fetch).__iter__()
1738 while True:
1739 try:
1740 row = it.next(timeout=5)
1741 fetched_branches.add(row[0])
Matt Giuca 2016/04/01 03:52:04 Move the last two lines out of the try block.
calamity 2016/04/28 21:43:47 Done.
1742 yield row
1743 except multiprocessing.TimeoutError:
1744 break
1745
1746 # Add any branches that failed to fetch.
1747 for b in set(branches_to_fetch) - fetched_branches:
1748 cl = Changelist(branchref=b, auth_config=auth_config)
1749 yield (b, cl.GetIssueURL() if b else None, 'error')
1750
1728 else: 1751 else:
1729 # Do not use GetApprovingReviewers(), since it requires an HTTP request. 1752 # Do not use GetApprovingReviewers(), since it requires an HTTP request.
1730 for b in branches: 1753 for b in branches:
1731 cl = Changelist(branchref=b, auth_config=auth_config) 1754 cl = Changelist(branchref=b, auth_config=auth_config)
1732 url = cl.GetIssueURL() 1755 url = cl.GetIssueURL() if b else None
1733 yield (b, url, 'waiting' if url else 'error') 1756 yield (b, url, 'waiting' if url else 'error')
1734 1757
1735 1758
1736 def upload_branch_deps(cl, args): 1759 def upload_branch_deps(cl, args):
1737 """Uploads CLs of local branches that are dependents of the current branch. 1760 """Uploads CLs of local branches that are dependents of the current branch.
1738 1761
1739 If the local branch dependency tree looks like: 1762 If the local branch dependency tree looks like:
1740 test1 -> test2.1 -> test3.1 1763 test1 -> test2.1 -> test3.1
1741 -> test3.2 1764 -> test3.2
1742 -> test2.2 -> test3.3 1765 -> test2.2 -> test3.3
(...skipping 2264 matching lines...) Expand 10 before | Expand all | Expand 10 after
4007 if __name__ == '__main__': 4030 if __name__ == '__main__':
4008 # These affect sys.stdout so do it outside of main() to simplify mocks in 4031 # These affect sys.stdout so do it outside of main() to simplify mocks in
4009 # unit testing. 4032 # unit testing.
4010 fix_encoding.fix_encoding() 4033 fix_encoding.fix_encoding()
4011 colorama.init() 4034 colorama.init()
4012 try: 4035 try:
4013 sys.exit(main(sys.argv[1:])) 4036 sys.exit(main(sys.argv[1:]))
4014 except KeyboardInterrupt: 4037 except KeyboardInterrupt:
4015 sys.stderr.write('interrupted\n') 4038 sys.stderr.write('interrupted\n')
4016 sys.exit(1) 4039 sys.exit(1)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698