Przeglądaj źródła

Don't break when encountering block devices.

Jelmer Vernooij 5 lat temu
rodzic
commit
76912fa975
3 zmienionych plików z 20 dodań i 11 usunięć
  1. 3 0
      NEWS
  2. 11 5
      dulwich/index.py
  3. 6 6
      dulwich/repo.py

+ 3 - 0
NEWS

@@ -1,5 +1,8 @@
 0.19.17	UNRELEASED
 
+ * Don't break when encountering block devices.
+   (Jelmer Vernooij)
+
 0.19.16	2020-04-17
 
  * Don't send "deepen None" to server if graph walker

+ 11 - 5
dulwich/index.py

@@ -591,11 +591,8 @@ def blob_from_path_and_stat(fs_path, st):
     """
     assert isinstance(fs_path, bytes)
     blob = Blob()
-    if not stat.S_ISLNK(st.st_mode):
-        with open(fs_path, 'rb') as f:
-            blob.data = f.read()
-    else:
-        if sys.platform == 'win32' and sys.version_info[0] == 3:
+    if stat.S_ISLNK(st.st_mode):
+        if sys.platform == 'win32':
             # os.readlink on Python3 on Windows requires a unicode string.
             # TODO(jelmer): Don't assume tree_encoding == fs_encoding
             tree_encoding = sys.getfilesystemencoding()
@@ -603,6 +600,9 @@ def blob_from_path_and_stat(fs_path, st):
             blob.data = os.readlink(fs_path).encode(tree_encoding)
         else:
             blob.data = os.readlink(fs_path)
+    else:
+        with open(fs_path, 'rb') as f:
+            blob.data = f.read()
     return blob
 
 
@@ -679,6 +679,9 @@ def get_unstaged_changes(index, root_path, filter_blob_callback=None):
 
             if filter_blob_callback is not None:
                 blob = filter_blob_callback(blob, tree_path)
+        except BlockDevice:
+            # The file is now a block device
+            yield tree_path
         except EnvironmentError as e:
             if e.errno == errno.ENOENT:
                 # The file was removed, so we assume that counts as
@@ -757,6 +760,9 @@ def index_entry_from_path(path, object_store=None):
                 st, head, 0, mode=S_IFGITLINK)
         return None
 
+    if stat.S_ISBLK(st.st_mode):
+        return None
+
     blob = blob_from_path_and_stat(path, st)
     if object_store is not None:
         object_store.add_object(blob)

+ 6 - 6
dulwich/repo.py

@@ -1145,16 +1145,16 @@ class Repo(BaseRepo):
                 except KeyError:
                     pass  # already removed
             else:
-                if not stat.S_ISDIR(st.st_mode):
-                    blob = blob_from_path_and_stat(full_path, st)
-                    blob = blob_normalizer.checkin_normalize(blob, fs_path)
-                    self.object_store.add_object(blob)
-                    index[tree_path] = index_entry_from_stat(st, blob.id, 0)
-                else:
+                if stat.S_ISDIR(st.st_mode) or stat.S_ISBLK(st.st_mode):
                     try:
                         del index[tree_path]
                     except KeyError:
                         pass
+                else:
+                    blob = blob_from_path_and_stat(full_path, st)
+                    blob = blob_normalizer.checkin_normalize(blob, fs_path)
+                    self.object_store.add_object(blob)
+                    index[tree_path] = index_entry_from_stat(st, blob.id, 0)
         index.write()
 
     def clone(self, target_path, mkdir=True, bare=False,