D6489: rust-regex: fix shortcut for exact matches

Alphare (Raphaël Gomès) phabricator at mercurial-scm.org
Fri Jun 7 09:50:17 UTC 2019


Alphare created this revision.
Herald added subscribers: mercurial-devel, kevincox, durin42.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  The current shortcut for rootglobs that can be simplified to exact matches
  does not work, it instead treats the pattern as a regex, which is not the
  same thing.
  This changes fixes the behavior and introduces a test for this behavior.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D6489

AFFECTED FILES
  rust/hg-core/src/filepatterns.rs

CHANGE DETAILS

diff --git a/rust/hg-core/src/filepatterns.rs b/rust/hg-core/src/filepatterns.rs
--- a/rust/hg-core/src/filepatterns.rs
+++ b/rust/hg-core/src/filepatterns.rs
@@ -200,9 +200,11 @@
 ) -> Result<Vec<u8>, PatternError> {
     let enum_kind = parse_pattern_syntax(kind)?;
     if enum_kind == PatternSyntax::RootGlob
-        && pat.iter().all(|b| GLOB_SPECIAL_CHARACTERS.contains(b))
+        && !pat.iter().any(|b| GLOB_SPECIAL_CHARACTERS.contains(b))
     {
-        Ok(pat.to_vec())
+        let mut escaped = escape_pattern(pat);
+        escaped.extend(b"(?:/|$)");
+        Ok(escaped)
     } else {
         Ok(_build_single_regex(enum_kind, pat, globsuffix))
     }
@@ -351,4 +353,20 @@
             vec![(b"relglob:**.o".to_vec(), 1, b"**.o".to_vec())]
         );
     }
+
+    #[test]
+    fn test_build_single_regex_shortcut() {
+        assert_eq!(
+            br"(?:/|$)".to_vec(),
+            build_single_regex(b"rootglob", b"", b"").unwrap()
+        );
+        assert_eq!(
+            br"whatever(?:/|$)".to_vec(),
+            build_single_regex(b"rootglob", b"whatever", b"").unwrap()
+        );
+        assert_eq!(
+            br"[^/]*\.o".to_vec(),
+            build_single_regex(b"rootglob", b"*.o", b"").unwrap()
+        );
+    }
 }



To: Alphare, #hg-reviewers
Cc: durin42, kevincox, mercurial-devel


More information about the Mercurial-devel mailing list