Browse Source

implement chunked version of ShaFile.as_legacy_object.

Jelmer Vernooij 15 years ago
parent
commit
0bc365cf36
1 changed files with 8 additions and 2 deletions
  1. 8 2
      dulwich/objects.py

+ 8 - 2
dulwich/objects.py

@@ -133,9 +133,15 @@ class ShaFile(object):
         object.set_raw_string(text)
         return object
 
+    def as_legacy_object_chunks(self):
+        compobj = zlib.compressobj()
+        yield compobj.compress(self._header())
+        for chunk in self.as_raw_chunks():
+            yield compobj.compress(chunk)
+        yield compobj.flush()
+
     def as_legacy_object(self):
-        text = self.as_raw_string()
-        return zlib.compress("%s %d\0%s" % (self.type_name, len(text), text))
+        return "".join(self.as_legacy_object_chunks())
 
     def as_raw_chunks(self):
         if self._needs_serialization: