Skip to content

Commit 31d2f0a

Browse files
committed
Merge branch 'dir-as-ignore'
2 parents b3ead8a + 5fbbaaa commit 31d2f0a

File tree

4 files changed

+33
-9
lines changed

4 files changed

+33
-9
lines changed

gix-fs/src/symlink.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub fn create(original: &Path, link: &Path) -> io::Result<()> {
5959
pub fn is_collision_error(err: &std::io::Error) -> bool {
6060
// TODO: use ::IsDirectory as well when stabilized instead of raw_os_error(), and ::FileSystemLoop respectively
6161
err.kind() == AlreadyExists
62-
|| err.raw_os_error() == Some(21)
62+
|| err.raw_os_error() == Some(if cfg!(windows) { 5 } else { 21 })
6363
|| err.raw_os_error() == Some(62) // no-follow on symlnk on mac-os
6464
|| err.raw_os_error() == Some(40) // no-follow on symlnk on ubuntu
6565
}

gix-glob/src/search/pattern.rs

+18-5
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,29 @@ fn read_in_full_ignore_missing(path: &Path, follow_symlinks: bool, buf: &mut Vec
4848
};
4949
Ok(match file {
5050
Ok(mut file) => {
51-
file.read_to_end(buf)?;
52-
true
51+
if let Err(err) = file.read_to_end(buf) {
52+
if io_err_is_dir(&err) {
53+
false
54+
} else {
55+
return Err(err);
56+
}
57+
} else {
58+
true
59+
}
5360
}
54-
Err(err) if err.kind() == std::io::ErrorKind::NotFound ||
55-
// TODO: use the enum variant NotADirectory for this once stabilized
56-
err.raw_os_error() == Some(20) /* Not a directory */ => false,
61+
Err(err) if err.kind() == std::io::ErrorKind::NotFound || io_err_is_dir(&err) => false,
5762
Err(err) => return Err(err),
5863
})
5964
}
6065

66+
fn io_err_is_dir(err: &std::io::Error) -> bool {
67+
// TODO: use the enum variant NotADirectory for this once stabilized
68+
let raw = err.raw_os_error();
69+
raw == Some(if cfg!(windows) { 5 } else { 21 }) /* Not a directory */
70+
/* Also that, but under different circumstances */
71+
|| raw == Some(20)
72+
}
73+
6174
/// Instantiation
6275
impl<T> List<T>
6376
where

gix-glob/tests/search/pattern.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ mod list {
8585
}
8686

8787
#[test]
88-
fn from_file() {
88+
fn from_file_that_does_not_exist() {
8989
let mut buf = Vec::new();
9090
for path in [
9191
Path::new(".").join("non-existing-dir").join("pattern-file"),
@@ -95,4 +95,16 @@ mod list {
9595
assert!(list.is_none(), "the file does not exist");
9696
}
9797
}
98+
99+
#[test]
100+
fn from_file_that_is_a_directory() -> gix_testtools::Result<()> {
101+
let tmp = gix_testtools::tempfile::TempDir::new()?;
102+
let dir_path = tmp.path().join(".gitignore");
103+
std::fs::create_dir(&dir_path)?;
104+
let mut buf = Vec::new();
105+
let list = List::<Dummy>::from_file(dir_path, None, false, &mut buf).expect("no io error");
106+
assert!(list.is_none(), "directories are ignored just like Git does it");
107+
108+
Ok(())
109+
}
98110
}

gix-worktree/src/stack/delegate.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::stack::mode_is_dir;
21
use crate::{stack::State, PathIdMapping};
32

43
/// Various aggregate numbers related to the stack delegate itself.
@@ -167,7 +166,7 @@ fn create_leading_directory(
167166
mkdir_calls: &mut usize,
168167
unlink_on_collision: bool,
169168
) -> std::io::Result<()> {
170-
if is_last_component && !mode_is_dir(mode).unwrap_or(false) {
169+
if is_last_component && !crate::stack::mode_is_dir(mode).unwrap_or(false) {
171170
return Ok(());
172171
}
173172
*mkdir_calls += 1;

0 commit comments

Comments
 (0)