[PATCH 4 of 5] branchmap: simplify error handlind when writing rev branch cache

Pierre-Yves David pierre-yves.david at ens-lyon.org
Fri Aug 5 19:02:56 EDT 2016


# HG changeset patch
# User Pierre-Yves David <pierre-yves.david at ens-lyon.org>
# Date 1470402053 -7200
#      Fri Aug 05 15:00:53 2016 +0200
# Node ID 9183fbdd909111cb9d3076f4f17af006a29fa6ad
# Parent  84885aeec2e442d18dcb70fcce2d65dd9fafbf91
# EXP-Topic vfsward
branchmap: simplify error handlind when writing rev branch cache

Now that we have a general try except, we can move the error handling from the
individual writes in it.
Code will be reindented in the next changeset to help this on readability.

diff -r 84885aeec2e4 -r 9183fbdd9091 mercurial/branchmap.py
--- a/mercurial/branchmap.py	Fri Aug 05 14:57:16 2016 +0200
+++ b/mercurial/branchmap.py	Fri Aug 05 15:00:53 2016 +0200
@@ -471,10 +471,12 @@ class revbranchcache(object):
         """Save branch cache if it is dirty."""
         repo = self._repo
         wlock = None
+        step = ''
         try:
             if self._rbcnamescount < len(self._names):
+                step = ' names'
                 wlock = repo.wlock(wait=False)
-                try:
+                if True:
                     if self._rbcnamescount != 0:
                         f = repo.vfs.open(_rbcnames, 'ab')
                         if f.tell() == self._rbcsnameslen:
@@ -495,18 +497,15 @@ class revbranchcache(object):
                                       ))
                     self._rbcsnameslen = f.tell()
                     f.close()
-                except (IOError, OSError, error.Abort) as inst:
-                    repo.ui.debug("couldn't write revision branch cache names: "
-                                  "%s\n" % inst)
-                    return
                 self._rbcnamescount = len(self._names)
 
             start = self._rbcrevslen * _rbcrecsize
             if start != len(self._rbcrevs):
+                step = ''
                 wlock = repo.wlock(wait=False)
                 revs = min(len(repo.changelog),
                            len(self._rbcrevs) // _rbcrecsize)
-                try:
+                if True:
                     f = repo.vfs.open(_rbcrevs, 'ab')
                     if f.tell() != start:
                         repo.ui.debug("truncating %s to %s\n"
@@ -519,13 +518,10 @@ class revbranchcache(object):
                     end = revs * _rbcrecsize
                     f.write(self._rbcrevs[start:end])
                     f.close()
-                except (IOError, OSError, error.Abort) as inst:
-                    repo.ui.debug("couldn't write revision branch cache: %s\n" %
-                                  inst)
-                    return
                 self._rbcrevslen = revs
-        except error.LockHeld as inst:
-            repo.ui.debug("couldn't write revision branch cache: %s\n" % inst)
+        except (IOError, OSError, error.Abort, error.LockHeld) as inst:
+            repo.ui.debug("couldn't write revision branch cache%s: %s\n"
+                          % (step, inst))
         finally:
             if wlock is not None:
                 wlock.release()


More information about the Mercurial-devel mailing list