Skip to content

Commit e11ec51

Browse files
committed
feat: Add blob::pipeline::WorktreeRoots::is_unset()
That way it's easy to determine if a worktree root has any root set.
1 parent 1d3d258 commit e11ec51

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

gix-diff/src/blob/pipeline.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ pub struct WorktreeRoots {
2222
pub new_root: Option<PathBuf>,
2323
}
2424

25+
/// Access
2526
impl WorktreeRoots {
2627
/// Return the root path for the given `kind`
2728
pub fn by_kind(&self, kind: ResourceKind) -> Option<&Path> {
@@ -30,6 +31,11 @@ impl WorktreeRoots {
3031
ResourceKind::NewOrDestination => self.new_root.as_deref(),
3132
}
3233
}
34+
35+
/// Return `true` if all worktree roots are unset.
36+
pub fn is_unset(&self) -> bool {
37+
self.new_root.is_none() && self.old_root.is_none()
38+
}
3339
}
3440

3541
/// Data as part of an [Outcome].
@@ -184,6 +190,8 @@ impl Pipeline {
184190
/// Access
185191
impl Pipeline {
186192
/// Return all drivers that this instance was initialized with.
193+
///
194+
/// They are sorted by [`name`](Driver::name) to support binary searches.
187195
pub fn drivers(&self) -> &[super::Driver] {
188196
&self.drivers
189197
}
@@ -445,7 +453,7 @@ impl Pipeline {
445453
}
446454
}
447455
.map_err(|err| {
448-
convert_to_diffable::Error::CreateTempfile {
456+
convert_to_diffable::Error::StreamCopy {
449457
source: err,
450458
rela_path: rela_path.to_owned(),
451459
}

0 commit comments

Comments
 (0)