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
// 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 compile_rule_src;
pub use ;
pub use nesting_depth;
pub use extract_gating_substrings;
pub use ;
pub use build_residual_shards;
pub use ;
// What: Crate-local re-exports gated behind the `fuzzing` Cargo
// feature. Each item is a `pub(crate)` helper inside the
// rules submodule; the re-export pulls it up to
// `crate::rules::*` so `crate::fuzz_api` can import it
// without learning the submodule layout. Production
// consumers compile with this feature off and see no
// change to the public API surface.
// Why: Avoid widening to `pub`/`pub(crate)` everywhere just so
// fuzz_api can reach two atom helpers and five regex-
// syntax walkers. The cfg gate keeps the re-export
// invisible outside the fuzzing build.
// TS map: `export { walkLiteralBytes, skipAtomWithExtract } from "./rules/atom";`.
//
// In TS you'd write (pseudocode):
// ```ts
// export { walkLiteralBytes, skipAtomWithExtract } from "./atom";
// export {
// groupBodyStart, findMatchingCloseParen, skipAnyQuantifier,
// quantifierIsRequired, skipClassBody,
// } from "./regex_syntax";
// ```
pub use ;
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: `pub fn load_ruleset(path: &str) -> Result<RuleSet, String>`
// reads the rules file at `path`, surfaces the I/O error
// with a friendly message if the read fails, and hands
// the contents to `load_ruleset_from_source`. The
// production CLI calls this; fuzz targets that want to
// drive the loader with a generated in-memory source
// call `load_ruleset_from_source` directly.
// Why: Keep the file-read split out from the loader proper so
// it can be exercised from fuzz tests without writing a
// tempfile per iteration.
// TS map: `async function loadRuleset(path: string): Promise<RuleSet>`.
//
// In TS you'd write (pseudocode):
// ```ts
// async function loadRuleset(path: string): Promise<RuleSet> {
// const content = await readFile(path, "utf8");
// return loadRulesetFromSource(content, path);
// }
// ```
// What: `pub fn load_ruleset_from_source(content: &str, _label: &str) -> Result<RuleSet, String>`
// runs the loader pipeline (classify -> compile regex
// rules in parallel -> extract gating substrings -> build
// the AC indices -> build the residual shards) against an
// in-memory rule source. The `_label` parameter exists for
// future error-context use; it is currently unused but
// kept so callers can pass an identifying string (path,
// "fuzz-input", "test-fixture").
// Why: Fuzz targets need to drive the loader without touching
// the filesystem. Splitting the file-read out of the
// pipeline gives them an entry point that takes a
// generated source directly.
// TS map: `function loadRulesetFromSource(content: string, label: string): RuleSet`.
//
// In TS you'd write (pseudocode):
// ```ts
// function loadRulesetFromSource(content: string, label: string): RuleSet {
// /* classify, compile, build indices, return RuleSet */
// }
// ```