From fbb95a43421eb925985223fffa3febc12e5dbe33 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 23 Feb 2021 17:34:35 -0500 Subject: progress/sync: include active number of jobs Provide a bit more info to users that things are actively running. Bug: https://crbug.com/gerrit/11293 Change-Id: Ie8eeaa8804d1ca71cf5c78ad850fa2d17d26208c Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/297904 Reviewed-by: Michael Mortensen Tested-by: Mike Frysinger --- subcmds/sync.py | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) (limited to 'subcmds/sync.py') diff --git a/subcmds/sync.py b/subcmds/sync.py index 0a3cde7d..b1b6a6ef 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py @@ -354,6 +354,8 @@ later is required to fix a server side protocol bug. # - We always make sure we unlock the lock if we locked it. start = time.time() success = False + with lock: + pm.start(project.name) try: try: success = project.Sync_NetworkHalf( @@ -383,7 +385,6 @@ later is required to fix a server side protocol bug. raise _FetchError() fetched.add(project.gitdir) - pm.update(msg=project.name) except _FetchError: pass except Exception as e: @@ -392,8 +393,10 @@ later is required to fix a server side protocol bug. err_event.set() raise finally: - if did_lock: - lock.release() + if not did_lock: + lock.acquire() + pm.finish(project.name) + lock.release() finish = time.time() self.event_log.AddSync(project, event_log.TASK_SYNC_NETWORK, start, finish, success) @@ -403,7 +406,7 @@ later is required to fix a server side protocol bug. def _Fetch(self, projects, opt, err_event): fetched = set() lock = _threading.Lock() - pm = Progress('Fetching projects', len(projects)) + pm = Progress('Fetching', len(projects)) objdir_project_map = dict() for project in projects: @@ -493,6 +496,8 @@ later is required to fix a server side protocol bug. syncbuf = SyncBuffer(self.manifest.manifestProject.config, detach_head=opt.detach_head) success = False + with lock: + pm.start(project.name) try: try: project.Sync_LocalHalf(syncbuf, force_sync=opt.force_sync) @@ -508,8 +513,6 @@ later is required to fix a server side protocol bug. print('error: Cannot checkout %s' % (project.name), file=sys.stderr) raise _CheckoutError() - - pm.update(msg=project.name) except _CheckoutError: pass except Exception as e: @@ -519,10 +522,12 @@ later is required to fix a server side protocol bug. err_event.set() raise finally: - if did_lock: - if not success: - err_results.append(project.relpath) - lock.release() + if not did_lock: + lock.acquire() + if not success: + err_results.append(project.relpath) + pm.finish(project.name) + lock.release() finish = time.time() self.event_log.AddSync(project, event_log.TASK_SYNC_LOCAL, start, finish, success) @@ -553,7 +558,7 @@ later is required to fix a server side protocol bug. syncjobs = 1 lock = _threading.Lock() - pm = Progress('Checking out projects', len(all_projects)) + pm = Progress('Checking out', len(all_projects)) threads = set() sem = _threading.Semaphore(syncjobs) -- cgit v1.2.3-54-g00ecf