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

Unified Diff: gclient_utils.py

Issue 8161009: Restore 103787 (fix git progress message), and update test expectations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 9 years, 2 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 | « gclient_scm.py ('k') | tests/gclient_scm_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
===================================================================
--- gclient_utils.py (revision 104208)
+++ gclient_utils.py (working copy)
@@ -247,7 +247,7 @@
return new_fileobj
-def MakeFileAnnotated(fileobj, include_zero=False):
+def MakeFileAnnotated(fileobj):
M-A Ruel 2011/10/06 00:57:34 Please git svn rebase or svn up correctly.
"""Creates a file object clone to automatically prepends every line in worker
threads with a NN> prefix."""
if hasattr(fileobj, 'output_buffers'):
@@ -265,11 +265,9 @@
def annotated_write(out):
index = getattr(threading.currentThread(), 'index', None)
if index is None:
- if not include_zero:
- # Unindexed threads aren't buffered.
- new_fileobj.old_annotated_write(out)
- return
- index = 0
+ # Undexed threads aren't buffered.
+ new_fileobj.old_annotated_write(out)
+ return
new_fileobj.lock.acquire()
try:
@@ -360,6 +358,9 @@
else:
filter_fn(in_line)
in_line = ''
+ else:
+ filter_fn(in_line)
+ in_line = ''
in_byte = kid.stdout.read(1)
# Flush the rest of buffered output. This is only an issue with
# stdout/stderr not ending with a \n.
@@ -497,11 +498,7 @@
def requirements(self):
return tuple(self._requirements)
- @lockedmethod
- def add_requirement(self, new):
- self._requirements.add(new)
-
class ExecutionQueue(object):
"""Runs a set of WorkItem that have interdependencies and were WorkItem are
added as they are processed.
@@ -563,7 +560,7 @@
self._flush_terminated_threads()
if (not self.queued and not self.running or
self.jobs == len(self.running)):
- logging.debug('No more worker threads or can\'t queue anything.')
+ # No more worker threads or can't queue anything.
break
# Check for new tasks to start.
@@ -650,7 +647,7 @@
"""One thread to execute one WorkItem."""
def __init__(self, item, index, args, kwargs):
threading.Thread.__init__(self, name=item.name or 'Worker')
- logging.info('_Worker(%s) reqs:%s' % (item.name, item.requirements))
+ logging.info(item.name)
self.item = item
self.index = index
self.args = args
@@ -658,7 +655,7 @@
def run(self):
"""Runs in its own thread."""
- logging.debug('_Worker.run(%s)' % self.item.name)
+ logging.debug('running(%s)' % self.item.name)
work_queue = self.kwargs['work_queue']
try:
self.item.run(*self.args, **self.kwargs)
@@ -667,7 +664,7 @@
logging.info('Caught exception in thread %s' % self.item.name)
logging.info(str(sys.exc_info()))
work_queue.exceptions.put(sys.exc_info())
- logging.info('_Worker.run(%s) done' % self.item.name)
+ logging.info('Task %s done' % self.item.name)
work_queue.ready_cond.acquire()
try:
« no previous file with comments | « gclient_scm.py ('k') | tests/gclient_scm_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698