Browse Source

Take care not to remove consolidated pack after repacking

Signed-off-by: Earl Chew <earl_chew@yahoo.com>
Earl Chew 7 years ago
parent
commit
995a906e28
1 changed files with 18 additions and 7 deletions
  1. 18 7
      dulwich/object_store.py

+ 18 - 7
dulwich/object_store.py

@@ -295,13 +295,16 @@ class PackBasedObjectStore(BaseObjectStore):
         """
         """
         self._pack_cache[base_name] = pack
         self._pack_cache[base_name] = pack
 
 
-    def close(self):
+    def _flush_pack_cache(self):
         pack_cache = self._pack_cache
         pack_cache = self._pack_cache
         self._pack_cache = {}
         self._pack_cache = {}
         while pack_cache:
         while pack_cache:
             (name, pack) = pack_cache.popitem()
             (name, pack) = pack_cache.popitem()
             pack.close()
             pack.close()
 
 
+    def close(self):
+        self._flush_pack_cache()
+
     @property
     @property
     def packs(self):
     def packs(self):
         """List with pack objects."""
         """List with pack objects."""
@@ -326,7 +329,7 @@ class PackBasedObjectStore(BaseObjectStore):
     def _remove_loose_object(self, sha):
     def _remove_loose_object(self, sha):
         raise NotImplementedError(self._remove_loose_object)
         raise NotImplementedError(self._remove_loose_object)
 
 
-    def _remove_pack(self, name):
+    def _remove_pack(self, name, keep=None):
         raise NotImplementedError(self._remove_pack)
         raise NotImplementedError(self._remove_pack)
 
 
     def pack_loose_objects(self):
     def pack_loose_objects(self):
@@ -355,13 +358,18 @@ class PackBasedObjectStore(BaseObjectStore):
         old_packs = list(self.packs)
         old_packs = list(self.packs)
         for pack in old_packs:
         for pack in old_packs:
             objects.update((obj, None) for obj in pack.iterobjects())
             objects.update((obj, None) for obj in pack.iterobjects())
+        self._flush_pack_cache()
 
 
-        self.add_objects(objects)
+        # The name of the consolidated pack might match the name of a
+        # pre-existing pack. Take care not to remove the newly created
+        # consolidated pack.
+
+        consolidated = self.add_objects(objects)
 
 
         for obj in loose_objects:
         for obj in loose_objects:
             self._remove_loose_object(obj.id)
             self._remove_loose_object(obj.id)
         for pack in old_packs:
         for pack in old_packs:
-            self._remove_pack(pack)
+            self._remove_pack(pack, keep=consolidated)
         self._update_pack_cache()
         self._update_pack_cache()
         return len(objects)
         return len(objects)
 
 
@@ -558,9 +566,12 @@ class DiskObjectStore(PackBasedObjectStore):
     def _remove_loose_object(self, sha):
     def _remove_loose_object(self, sha):
         os.remove(self._get_shafile_path(sha))
         os.remove(self._get_shafile_path(sha))
 
 
-    def _remove_pack(self, pack):
-        os.remove(pack.data.path)
-        os.remove(pack.index.path)
+    def _remove_pack(self, pack, keep=None):
+        if keep and keep.data.path == pack.data.path:
+            assert keep.index.path == pack.index.path
+        else:
+            os.remove(pack.data.path)
+            os.remove(pack.index.path)
 
 
     def _get_pack_basepath(self, entries):
     def _get_pack_basepath(self, entries):
         suffix = iter_sha1(entry[0] for entry in entries)
         suffix = iter_sha1(entry[0] for entry in entries)