diff rust/hg-core/src/lib.rs @ 52582:1866119cbad7

rust-ignore: construct regex Hir object directly, avoiding large regex string Rework how we convert patterns to regexes in rust. Instead of going patterns -> string -> Regex, which is slow and causes some correctness issues, build a structured regex_syntax::hir::Hir value, which is faster and it also prevents surprising regex escape. This change makes the time of `build_regex_match` go from ~70-80ms to ~40ms in my testing (for a large hgignore). The bug I mentioned involves regex patterns that "escape" their intended scope. For example, a sequence of hgignore regexp patterns like this would previously lead to surprising behavior: foo(?: bar baz ) this matches foobar and foobaz, and doesn't match bar and baz. The new behavior is to report a pattern parse error The Python hg also has this bug, so this bugfix not really helping much, but it's probably better to fall back to real Python bugs than to simulate them.
author Arseniy Alekseyev <aalekseyev@janestreet.com>
date Fri, 06 Dec 2024 20:27:59 +0000
parents 22d24f6d6411
children 1b7a57a5b47a
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs	Sun Dec 22 08:17:53 2024 -0300
+++ b/rust/hg-core/src/lib.rs	Fri Dec 06 20:27:59 2024 +0000
@@ -35,6 +35,7 @@
 pub mod lock;
 pub mod logging;
 pub mod operations;
+mod pre_regex;
 pub mod progress;
 pub mod revset;
 pub mod transaction;