Skip to content

Commit

Permalink
with_precise as a helper
Browse files Browse the repository at this point in the history
  • Loading branch information
Eh2406 committed Jul 29, 2024
1 parent d2d2102 commit 22f4352
Showing 1 changed file with 9 additions and 27 deletions.
36 changes: 9 additions & 27 deletions src/cargo/core/source_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,48 +468,30 @@ impl SourceId {

/// Creates a new `SourceId` from this source with the given `precise`.
pub fn with_git_precise(self, fragment: Option<String>) -> SourceId {
let precise = fragment.map(|f| Precise::GitUrlFragment(f));
if self.inner.precise == precise {
self
} else {
SourceId::wrap(SourceIdInner {
precise,
..(*self.inner).clone()
})
}
self.with_precise(&fragment.map(|f| Precise::GitUrlFragment(f)))
}

/// Creates a new `SourceId` from this source without a `precise`.
pub fn without_precise(self) -> SourceId {
if self.inner.precise.is_none() {
self
} else {
SourceId::wrap(SourceIdInner {
precise: None,
..(*self.inner).clone()
})
}
self.with_precise(&None)
}

/// Creates a new `SourceId` from this source without a `precise`.
pub fn with_locked_precise(self) -> SourceId {
if self.inner.precise == Some(Precise::Locked) {
self
} else {
SourceId::wrap(SourceIdInner {
precise: Some(Precise::Locked),
..(*self.inner).clone()
})
}
self.with_precise(&Some(Precise::Locked))
}

/// Creates a new `SourceId` from this source with the `precise` from some other `SourceId`.
pub fn with_precise_from(self, v: Self) -> SourceId {
if self.inner.precise == v.inner.precise {
self.with_precise(&v.inner.precise)
}

fn with_precise(self, precise: &Option<Precise>) -> SourceId {
if &self.inner.precise == precise {
self
} else {
SourceId::wrap(SourceIdInner {
precise: v.inner.precise.clone(),
precise: precise.clone(),
..(*self.inner).clone()
})
}
Expand Down

0 comments on commit 22f4352

Please sign in to comment.