[Request] [+ ] D12539: rust-status: stop using `state()` in `handle_normal_file`
Alphare (Raphaël Gomès)
phabricator at mercurial-scm.org
Tue Apr 12 16:06:54 UTC 2022
Alphare created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
Let's use the new API
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12539
AFFECTED FILES
rust/hg-core/src/dirstate_tree/status.rs
CHANGE DETAILS
diff --git a/rust/hg-core/src/dirstate_tree/status.rs b/rust/hg-core/src/dirstate_tree/status.rs
--- a/rust/hg-core/src/dirstate_tree/status.rs
+++ b/rust/hg-core/src/dirstate_tree/status.rs
@@ -653,10 +653,15 @@
&self,
dirstate_node: &NodeRef<'tree, 'on_disk>,
) -> Result<(), DirstateV2ParseError> {
- if let Some(state) = dirstate_node.state()? {
+ if let Some(entry) = dirstate_node.entry()? {
+ if !entry.any_tracked() {
+ // Future-compat for when we start storing ignored and unknown
+ // files for caching reasons
+ return Ok(())
+ }
let path = dirstate_node.full_path(self.dmap.on_disk)?;
if self.matcher.matches(path) {
- if let EntryState::Removed = state {
+ if entry.removed() {
self.push_outcome(Outcome::Removed, dirstate_node)?
} else {
self.push_outcome(Outcome::Deleted, &dirstate_node)?
To: Alphare, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20220412/4d0d7a7f/attachment.html>
More information about the Mercurial-patches
mailing list