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
use ;
// What: `pub(super) fn extract_scope(s: &str, ci: bool) -> Option<Vec<(String, bool)>>`
// splits `s` on top-level `|` (respecting paren depth, character
// classes, and `\X` escapes) and returns the union of each
// branch's required-substring set, each tagged with the
// ci context active when extracted. Returns `None` if any
// branch's `extract_branch` returns None -- soundness demands
// that every branch be covered by at least one registered
// substring. A branch with no required content (e.g. `.*`,
// `(?:foo)?`) cannot be gated, so the whole alternation
// cannot be gated.
// Why: Top-level alternation handling lives here so it can be
// reached BOTH from the outer wrapper (`extract_gating_substrings`)
// AND from inside a group body via `skip_atom_with_extract`'s
// recursion. The body of `(?:foo|bar)` has its own top-level
// alternation; calling `extract_scope` on it splits "foo|bar"
// and returns [("foo", ci), ("bar", ci)] inheriting the
// caller's ci context.
// TS map: `function extractScope(s: string, ci: boolean): Array<{ sub: string; ci: boolean }> | null`.
//
// In TS you'd write (pseudocode):
// ```ts
// function extractScope(s: string, ci: boolean): Array<{ sub: string; ci: boolean }> | null {
// const branches = splitTopLevelAlternations(s);
// const out: Array<{ sub: string; ci: boolean }> = [];
// for (const branch of branches) {
// const branchSubs = extractBranch(branch, ci);
// if (branchSubs === null) return null;
// out.push(...branchSubs);
// }
// return out;
// }
// ```
pub
// What: `fn extract_branch(s: &str, ci: bool) -> Option<Vec<(String, bool)>>`
// walks one branch (no top-level `|`), returning the BEST candidate
// gating set. A "candidate" is either a single literal run
// (e.g. ("keyword", ci)) or the multi-substring set returned
// by a required group's body (e.g. [("foo", ci), ("bar", ci)]
// from `(?:foo|bar)`). "Best" is the most-selective: highest
// minimum substring length across the candidate's elements.
// The `ci` parameter is the scoped-flag context; `current_lit`
// literals walked at this level inherit it. A scoped-flag
// group inside the branch may yield substrings tagged with a
// different ci -- those carry their own per-substring ci.
// Why: A single branch may have multiple required structures in
// sequence (`prefix(?:foo|bar)suffix`). The walker only needs
// ONE of them as the rule's gate -- pick the most selective
// to minimise spurious AC fires. Choosing the longest single
// literal beats a low-min alternation; choosing a long-min
// alternation beats a short literal.
// TS map: `function extractBranch(s: string, ci: boolean): Array<{ sub: string; ci: boolean }> | null`.
//
// In TS you'd write (pseudocode):
// ```ts
// function extractBranch(s: string, ci: boolean): Array<{ sub: string; ci: boolean }> | null {
// let best: Array<{ sub: string; ci: boolean }> = [];
// let bestScore = 0;
// let current = "";
// while (s.length > 0) {
// // walk literals into current at outer ci; pick best between current-as-singleton and prior best
// // skip atom (class/group/escape); recurse into group body via extractScope with appropriate ci
// }
// return best.length > 0 ? best : null;
// }
// ```
// What: `fn split_top_level_alternations(s: &str) -> Vec<&str>`
// returns slices of `s` separated by `|` characters at
// depth 0 (i.e. NOT inside a `(...)` group, NOT inside a
// `[...]` character class, and NOT escaped as `\|`). The
// slices share `s`'s lifetime -- no allocation per branch.
// Why: Cannot just call `s.split('|')` because:
// - `|` inside `[a|b]` is a literal character.
// - `|` inside `(foo|bar)` is alternation at depth 1, which
// is the GROUP's responsibility, not the outer scope's.
// - `\|` is an escaped pipe (literal `|`).
// TS map: `function splitTopLevelAlternations(s: string): string[]`.
//
// In TS you'd write (pseudocode):
// ```ts
// function splitTopLevelAlternations(s: string): string[] {
// // Walk bytes, tracking paren depth + class membership.
// // Push slice on each unescaped depth-0 `|` outside a class.
// }
// ```