Browse Source

Always finish writing to disk before calculating checksum.

Jelmer Vernooij 16 years ago
parent
commit
ad38ef205d
2 changed files with 7 additions and 1 deletions
  1. 2 0
      NEWS
  2. 5 1
      dulwich/object_store.py

+ 2 - 0
NEWS

@@ -7,6 +7,8 @@
   * Don't fetch ^{} objects from remote hosts, as requesting them 
   * Don't fetch ^{} objects from remote hosts, as requesting them 
     causes a hangup.
     causes a hangup.
 
 
+  * Always write pack to disk completely before calculating checksum.
+
  FEATURES
  FEATURES
 
 
   * Allow disabling thin packs when talking to remote hosts.
   * Allow disabling thin packs when talking to remote hosts.

+ 5 - 1
dulwich/object_store.py

@@ -96,7 +96,7 @@ class ObjectStore(object):
         for pack in self.packs:
         for pack in self.packs:
             if sha in pack:
             if sha in pack:
                 return pack.get_raw(sha, self.get_raw)
                 return pack.get_raw(sha, self.get_raw)
-        # FIXME: Are pack deltas ever against on-disk shafiles ?
+        # FIXME: Are thin pack deltas ever against on-disk shafiles ?
         ret = self._get_shafile(sha)
         ret = self._get_shafile(sha)
         if ret is not None:
         if ret is not None:
             return ret.as_raw_string()
             return ret.as_raw_string()
@@ -152,6 +152,8 @@ class ObjectStore(object):
         fd, path = tempfile.mkstemp(dir=self.pack_dir(), suffix=".pack")
         fd, path = tempfile.mkstemp(dir=self.pack_dir(), suffix=".pack")
         f = os.fdopen(fd, 'w')
         f = os.fdopen(fd, 'w')
         def commit():
         def commit():
+            os.fdatasync(fd)
+            f.close()
             if os.path.getsize(path) > 0:
             if os.path.getsize(path) > 0:
                 self.move_in_thin_pack(path)
                 self.move_in_thin_pack(path)
         return f, commit
         return f, commit
@@ -165,6 +167,8 @@ class ObjectStore(object):
         fd, path = tempfile.mkstemp(dir=self.pack_dir(), suffix=".pack")
         fd, path = tempfile.mkstemp(dir=self.pack_dir(), suffix=".pack")
         f = os.fdopen(fd, 'w')
         f = os.fdopen(fd, 'w')
         def commit():
         def commit():
+            os.fdatasync(fd)
+            f.close()
             if os.path.getsize(path) > 0:
             if os.path.getsize(path) > 0:
                 self.move_in_pack(path)
                 self.move_in_pack(path)
         return f, commit
         return f, commit