2
0
Эх сурвалжийг харах

Store pack with correct suffix and also update refs appropriately

John Carr 16 жил өмнө
parent
commit
115cc83cb4
2 өөрчлөгдсөн 12 нэмэгдсэн , 4 устгасан
  1. 11 3
      bin/dul-daemon
  2. 1 1
      dulwich/repo.py

+ 11 - 3
bin/dul-daemon

@@ -46,7 +46,7 @@ class GitBackend(Backend):
 
     def apply_pack(self, refs, read):
         # store the incoming pack in the repository
-        fd, name = tempfile.mkstemp(suffix='pack', prefix='', dir=self.repo.pack_dir())
+        fd, name = tempfile.mkstemp(suffix='.pack', prefix='', dir=self.repo.pack_dir())
         os.write(fd, read())
         os.close(fd)
 
@@ -57,12 +57,20 @@ class GitBackend(Backend):
         pd = PackData(name)
         pd.create_index_v2(basename+".idx")
 
-        # FIXME: Update heads
+        for oldsha, sha, ref in refs:
+            if ref == "0" * 40:
+                self.repo.remove_ref(ref)
+            else:
+                self.repo.set_ref(ref, sha)
 
         print "pack applied"
 
     def generate_pack(self, want, have, write, progress):
-        pass
+        progress("dul-daemon says what")
+
+        commits_to_send = want[:]
+        count = 0
+        
 
 
 if __name__ == "__main__":

+ 1 - 1
dulwich/repo.py

@@ -90,7 +90,7 @@ class Repo(object):
       if os.path.exists(file):
         return self._get_ref(file)
 
-  def set_ref(self, name, vale):
+  def set_ref(self, name, value):
     file = os.path.join(self.basedir(), name)
     open(file, 'w').write(value)