1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
// What: Module-tree wiring. Each `mod foo;` declares that
// `src/rules/foo.rs` exists and should be compiled as
// `crate::rules::foo`. The submodules carry the actual
// code; this file is the public face plus `load_ruleset`.
// Why: `rules.rs` was 2000+ lines with tightly coupled but
// topically distinct sections (engine dispatch, parsing,
// types, walker, atom-scan, regex-syntax helpers, residual
// sharding, loader). Splitting along those seams keeps
// every file under ~500 lines and makes the dependency
// graph between sections explicit (each `use super::xxx`
// line names a real boundary).
// TS map: `import { ... } from "./rules/foo";` per submodule.
//
// In TS you'd write (pseudocode):
// ```ts
// // No equivalent. Closest: the `index.ts` barrel-export pattern.
// ```
// What: `#[cfg(test)] mod atom_tests;` and `#[cfg(test)] mod
// extract_tests;` declare two sibling submodules that ONLY
// compile when running `cargo test`. The `#[cfg(test)]`
// attribute is a conditional-compilation gate -- equivalent
// to `#ifdef TEST` in C.
// Why: Tests for `pub(super)` items (e.g. `atom::walk_literal_bytes`)
// must live in a sibling module under `rules/` because they
// need the parent-module visibility. Splitting tests into
// their own files (rather than inline `#[cfg(test)] mod tests`
// inside `atom.rs`) keeps the production source small and
// lets the test files use their own dum-dum-non-ts comment
// density without bloating the production file.
// TS map: `if (process.env.NODE_ENV === 'test') { require("./atom_tests"); }`
// in spirit, but Rust handles it at compile time.
//
// In TS you'd write (pseudocode):
// ```ts
// // No 1:1 -- TS test files are typically compiled separately.
// ```
// What: Public surface re-exports so external callers (`scan.rs`,
// `main.rs`) can keep using `crate::rules::Foo` without
// knowing which submodule actually defines `Foo`.
// Why: Preserves the existing `crate::rules::*` API. Renaming
// call sites would have been a massive diff for no benefit.
// TS map: `export { Foo } from "./rules/foo";`.
//
// In TS you'd write (pseudocode):
// ```ts
// export { CompiledRegex, ScanMatch, requiresResharp } from "./rules/engine";
// ```
pub use ;
pub use extract_gating_substrings;
pub use ;
pub use build_residual_shards;
pub use ;
// What: `use std::fs;` brings the filesystem module into scope. We
// use `fs::read_to_string` to slurp the rules file.
// Why: Reading rules is sync and tiny; no need for streaming.
// TS map: `import * as fs from "node:fs";`.
//
// In TS you'd write (pseudocode):
// ```ts
// import * as fs from "node:fs";
// ```
use fs;
// What: `use aho_corasick::AhoCorasick;` imports the multi-pattern
// literal-matcher type from the `aho-corasick` crate.
// AhoCorasick is `Send + Sync` (no interior mutex), uses SIMD
// (Teddy on x86, fallback elsewhere), and reports the
// matching pattern's id with each hit -- properties we
// explicitly exploit in the parallel scan path.
// Why: Most rules are literal substrings. A single AC automaton
// scans a haystack for thousands of patterns in linear time.
// Critically, sharing one `&AhoCorasick` across rayon threads
// does NOT serialize through a mutex, unlike `resharp::Regex`.
// TS map: `import { AhoCorasick } from "aho-corasick";` -- though TS
// has no equivalent first-class library; the closest is hand-
// rolling a trie or using `RegExp` with one giant alternation.
//
// In TS you'd write (pseudocode):
// ```ts
// import { AhoCorasick } from "aho-corasick";
// ```
use AhoCorasick;
// What: `use rayon::prelude::*;` is a "prelude import" that brings
// every common rayon trait into scope, notably `IntoParallelIterator`,
// `ParallelIterator`, `IndexedParallelIterator`. Glob imports
// with `*` are unusual in TS but typical for Rust preludes.
// Why: Without this, `.par_iter()` and friends do not exist as
// method calls.
// TS map: No equivalent. TS has no work-stealing thread-pool built in;
// closest is `Promise.all` over async tasks, which is not the
// same model.
//
// In TS you'd write (pseudocode):
// ```ts
// // No equivalent. Imagine a hypothetical:
// // import { parIter } from "rayon-like-pool";
// ```
use *;
// What: `use resharp::Regex;` imports the resharp regex type.
// Used inside `load_ruleset` for the (smaller) regex bucket
// on rules that use set-algebra; rules without set-algebra
// go through the `regex` crate via `CompiledRegex::Plain`.
// Why: Hybrid engine dispatch: this module owns the per-rule
// routing decision via `requires_resharp`.
// TS map: `import { Regex } from "resharp";`.
//
// In TS you'd write (pseudocode):
// ```ts
// import { Regex } from "resharp";
// ```
use Regex;
// What: `pub fn load_ruleset(path: &str) -> Result<RuleSet, String>`
// reads the rules file, classifies each line, parallel-compiles
// the regex bucket via rayon, builds the AC automaton over
// literals, and returns the bundled `RuleSet`. Error messages
// are owned `String`s so we can carry context.
// Why: One-stop entry point for everything rule-related. Putting
// the parallel work behind this boundary keeps `main.rs`
// clean of dependency-specific code.
// TS map: `async function loadRuleset(path: string): Promise<RuleSet>`
// where the regex compile step uses something like
// `Promise.all` instead of rayon.
//
// In TS you'd write (pseudocode):
// ```ts
// function loadRuleset(path: string): RuleSet {
// // throws on error; in Rust we return Err
// ...
// }
// ```
// What: `fn compile_plain_rule(src: &str, idx: usize) -> Result<RegexRule, String>`
// compiles a non-set-algebra rule via the `regex` crate, trying
// `unicode(false)` first for the speedup and falling back to
// `unicode(true)` only when the rule actually needs unicode-
// aware semantics (Unicode property classes, multi-byte chars
// inside character classes, the `(?u)` flag, etc.).
// Why: Disabling unicode is ~90x faster on Phase 1 compile and
// gives smaller DFAs that scan faster, but a rule using
// unicode features must compile correctly. Literal multi-
// byte UTF-8 sequences in the regex source compile fine
// in bytes mode without unicode -- the parser treats them
// as the matching byte sequence -- so they take the
// unicode-off fast path. Rules with unicode-property
// classes or multi-byte chars inside `[...]` fall back.
// Try-and-fallback is robust to any future rule shape:
// ASCII rules and ones with bare-literal unicode get the
// speedup, rules with unicode-property features get correct
// semantics, and the rule author does not have to annotate
// which is which.
// TS map: `function compilePlainRule(src: string, idx: number): RegexRule | Error`.
//
// In TS you'd write (pseudocode):
// ```ts
// function compilePlainRule(src: string, idx: number): RegexRule {
// try {
// return { idx, re: { kind: "plain", re: regex(src, { unicode: false }) } };
// } catch {
// return { idx, re: { kind: "plain", re: regex(src, { unicode: true }) } };
// }
// }
// ```