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
// What: `pub enum ParsedRule { Literal(String), Regex(String) }`
// declares an enum (Rust's tagged-union; closer to a
// discriminated union in TS than a TS `enum`). Each variant
// carries an owned `String` payload: the raw literal text,
// or the resharp regex source string. `pub` exposes it for
// `parse_rule_source`'s return type.
// Why: The classifier output of `parse_rule_source`. Downstream
// code splits these into the AC bucket vs the regex bucket.
// TS map: `type ParsedRule = { kind: "literal"; text: string } | { kind: "regex"; src: string };`.
//
// In TS you'd write (pseudocode):
// ```ts
// type ParsedRule =
// | { kind: "literal"; text: string }
// | { kind: "regex"; src: string };
// ```
// What: `pub fn parse_rule_source(line: &str) -> Option<ParsedRule>`
// classifies one line of the rules file into a literal or a
// regex (or `None` for blank/comment lines). `&str` is a
// borrowed UTF-8 slice; we don't take ownership.
// Why: Single source of truth for rule syntax. Comments use `#`,
// blanks are ignored; `/PATTERN/FLAGS` is a regex; everything
// else is a literal.
// TS map: `function parseRuleSource(line: string): ParsedRule | null`.
//
// In TS you'd write (pseudocode):
// ```ts
// function parseRuleSource(line: string): ParsedRule | null {
// const trimmed = line.trim();
// if (!trimmed || trimmed.startsWith("#")) return null;
// if (trimmed.length >= 2 && trimmed[0] === "/") {
// const last = trimmed.lastIndexOf("/");
// if (last > 0) {
// const pattern = trimmed.slice(1, last);
// const flags = trimmed.slice(last + 1);
// if (/^[a-z]*$/.test(flags)) {
// const src = flags ? `(?${flags})${pattern}` : pattern;
// return { kind: "regex", src };
// }
// }
// }
// return { kind: "literal", text: trimmed };
// }
// ```