mailrs-sieve-core 0.2.0

Native RFC 5228 Sieve interpreter — tokenizer + parser + evaluator. Built from the spec, no AGPL dependencies. The internal engine the `mailrs-sieve` wrapper will route to once parity with `sieve-rs` is reached (v8 ckpt 6).
Documentation
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
//! RFC 5228 §3-4 recursive-descent parser.

use crate::ast::{Argument, Command, Test};
use crate::lex::{Token, TokenizeError, tokenize};

/// Parse failure modes.
#[derive(Debug, Clone, PartialEq, Eq, thiserror::Error)]
pub enum ParseError {
    /// Tokenizer rejected the source before any parsing started.
    #[error("tokenize: {0}")]
    Tokenize(#[from] TokenizeError),
    /// Reached end-of-input while expecting more tokens.
    #[error("unexpected end of input")]
    UnexpectedEof,
    /// A specific token kind was required but a different one (or
    /// none) was found at this position.
    #[error("expected {expected} at token {at}, got {got:?}")]
    Expected {
        /// What the parser was looking for, as a human-readable label.
        expected: String,
        /// 0-based token index in the lexed stream.
        at: usize,
        /// What was actually found, or `None` for end-of-input.
        got: Option<Token>,
    },
    /// A test was expected (after `if`, inside `allof(…)`, etc.)
    /// but none could be parsed.
    #[error("expected test expression at token {at}")]
    ExpectedTest {
        /// 0-based token index.
        at: usize,
    },
}

struct Parser {
    tokens: Vec<Token>,
    pos: usize,
}

impl Parser {
    fn new(tokens: Vec<Token>) -> Self {
        Self { tokens, pos: 0 }
    }

    fn peek(&self) -> Option<&Token> {
        self.tokens.get(self.pos)
    }

    fn bump(&mut self) -> Option<Token> {
        let t = self.tokens.get(self.pos).cloned();
        if t.is_some() {
            self.pos += 1;
        }
        t
    }

    fn expect(&mut self, want: &Token) -> Result<(), ParseError> {
        match self.peek() {
            Some(t) if t == want => {
                self.pos += 1;
                Ok(())
            }
            other => Err(ParseError::Expected {
                expected: format!("{want}"),
                at: self.pos,
                got: other.cloned(),
            }),
        }
    }

    fn parse_commands(&mut self) -> Result<Vec<Command>, ParseError> {
        let mut out = Vec::new();
        while let Some(t) = self.peek() {
            if matches!(t, Token::RBrace) {
                break;
            }
            out.push(self.parse_command()?);
        }
        Ok(out)
    }

    fn parse_command(&mut self) -> Result<Command, ParseError> {
        let name = match self.bump() {
            Some(Token::Identifier(n)) => n,
            other => {
                return Err(ParseError::Expected {
                    expected: "command identifier".into(),
                    at: self.pos.saturating_sub(1),
                    got: other,
                });
            }
        };

        let mut args = Vec::new();
        while let Some(t) = self.peek() {
            match t {
                Token::Semicolon | Token::LBrace => break,
                _ => args.push(self.parse_argument_or_test(&name)?),
            }
        }

        let block = if matches!(self.peek(), Some(Token::LBrace)) {
            self.bump();
            let inner = self.parse_commands()?;
            self.expect(&Token::RBrace)?;
            inner
        } else {
            self.expect(&Token::Semicolon)?;
            Vec::new()
        };

        Ok(Command { name, args, block })
    }

    /// Argument *or* test — used at the top level inside a command's
    /// argument list. `if`, `elsif`, `not`, `allof`, `anyof` always
    /// start a test; otherwise the parser checks whether the next
    /// identifier is a known test name.
    fn parse_argument_or_test(&mut self, parent: &str) -> Result<Argument, ParseError> {
        // For control-flow commands the next token MUST be a test.
        let starts_test = matches!(
            parent,
            "if" | "elsif" | "while"
        );
        if starts_test {
            return Ok(Argument::Test(self.parse_test()?));
        }
        self.parse_argument()
    }

    fn parse_argument(&mut self) -> Result<Argument, ParseError> {
        match self.peek().cloned() {
            Some(Token::Tag(t)) => {
                self.bump();
                Ok(Argument::Tag(t))
            }
            Some(Token::Number(n)) => {
                self.bump();
                Ok(Argument::Number(n))
            }
            Some(Token::String(s)) => {
                self.bump();
                Ok(Argument::String(s))
            }
            Some(Token::LBracket) => {
                self.bump();
                let mut items = Vec::new();
                loop {
                    match self.peek().cloned() {
                        Some(Token::String(s)) => {
                            self.bump();
                            items.push(s);
                        }
                        other => {
                            return Err(ParseError::Expected {
                                expected: "string inside list".into(),
                                at: self.pos,
                                got: other,
                            });
                        }
                    }
                    match self.peek() {
                        Some(Token::Comma) => {
                            self.bump();
                            continue;
                        }
                        Some(Token::RBracket) => {
                            self.bump();
                            break;
                        }
                        other => {
                            return Err(ParseError::Expected {
                                expected: ", or ]".into(),
                                at: self.pos,
                                got: other.cloned(),
                            });
                        }
                    }
                }
                Ok(Argument::StringList(items))
            }
            Some(Token::Identifier(_)) => {
                // identifier inside an arg slot must be a test
                // (this handles e.g. `not header :is …`)
                Ok(Argument::Test(self.parse_test()?))
            }
            other => Err(ParseError::Expected {
                expected: "argument".into(),
                at: self.pos,
                got: other,
            }),
        }
    }

    fn parse_test(&mut self) -> Result<Test, ParseError> {
        let name = match self.bump() {
            Some(Token::Identifier(n)) => n,
            other => {
                return Err(ParseError::Expected {
                    expected: "test identifier".into(),
                    at: self.pos.saturating_sub(1),
                    got: other,
                });
            }
        };

        // `allof(t1, t2)` / `anyof(t1, t2)` / `not test`
        let mut children = Vec::new();
        match name.as_str() {
            "not" => {
                children.push(self.parse_test()?);
                return Ok(Test {
                    name,
                    tags: Vec::new(),
                    args: Vec::new(),
                    children,
                });
            }
            "allof" | "anyof" => {
                self.expect(&Token::LParen)?;
                loop {
                    children.push(self.parse_test()?);
                    match self.peek() {
                        Some(Token::Comma) => {
                            self.bump();
                            continue;
                        }
                        Some(Token::RParen) => {
                            self.bump();
                            break;
                        }
                        other => {
                            return Err(ParseError::Expected {
                                expected: ", or )".into(),
                                at: self.pos,
                                got: other.cloned(),
                            });
                        }
                    }
                }
                return Ok(Test {
                    name,
                    tags: Vec::new(),
                    args: Vec::new(),
                    children,
                });
            }
            _ => {}
        }

        // Regular test: tags + args until we hit a delimiter that
        // unambiguously ends a test (`)`, `,`, `;`, `{`)
        let mut tags = Vec::new();
        let mut args = Vec::new();
        while let Some(t) = self.peek().cloned() {
            match t {
                Token::Tag(s) => {
                    self.bump();
                    tags.push(s);
                }
                Token::Number(n) => {
                    self.bump();
                    args.push(Argument::Number(n));
                }
                Token::String(s) => {
                    self.bump();
                    args.push(Argument::String(s));
                }
                Token::LBracket => {
                    let list = self.parse_argument()?;
                    args.push(list);
                }
                Token::RParen | Token::Comma | Token::Semicolon | Token::LBrace => break,
                Token::Identifier(_) => break, // start of next command — test is done
                other => {
                    return Err(ParseError::Expected {
                        expected: "test arg or delimiter".into(),
                        at: self.pos,
                        got: Some(other),
                    });
                }
            }
        }

        Ok(Test {
            name,
            tags,
            args,
            children,
        })
    }
}

/// Tokenize + parse a full Sieve script.
pub fn parse_script(src: &str) -> Result<Vec<Command>, ParseError> {
    let tokens = tokenize(src)?;
    let mut p = Parser::new(tokens);
    p.parse_commands()
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::ast::Argument;

    #[test]
    fn empty_script() {
        let cmds = parse_script("").unwrap();
        assert!(cmds.is_empty());
    }

    #[test]
    fn just_keep() {
        let cmds = parse_script("keep;").unwrap();
        assert_eq!(cmds.len(), 1);
        assert_eq!(cmds[0].name, "keep");
        assert!(cmds[0].block.is_empty());
        assert!(cmds[0].args.is_empty());
    }

    #[test]
    fn require_string_list() {
        let cmds = parse_script(r#"require ["fileinto", "envelope"];"#).unwrap();
        assert_eq!(cmds.len(), 1);
        assert_eq!(cmds[0].name, "require");
        assert_eq!(
            cmds[0].args,
            vec![Argument::StringList(vec![
                "fileinto".into(),
                "envelope".into()
            ])]
        );
    }

    #[test]
    fn fileinto_with_string_arg() {
        let cmds = parse_script(r#"fileinto "Junk";"#).unwrap();
        assert_eq!(cmds[0].name, "fileinto");
        assert_eq!(cmds[0].args, vec![Argument::String("Junk".into())]);
    }

    #[test]
    fn if_header_is_then_block() {
        let src = r#"if header :is "Subject" "spam" { discard; }"#;
        let cmds = parse_script(src).unwrap();
        assert_eq!(cmds.len(), 1);
        assert_eq!(cmds[0].name, "if");
        assert_eq!(cmds[0].block.len(), 1);
        assert_eq!(cmds[0].block[0].name, "discard");
        // first arg must be the parsed Test
        match &cmds[0].args[0] {
            Argument::Test(t) => {
                assert_eq!(t.name, "header");
                assert_eq!(t.tags, vec!["is".to_string()]);
                assert_eq!(t.args.len(), 2);
            }
            other => panic!("expected Test, got {other:?}"),
        }
    }

    #[test]
    fn if_else_chain() {
        let src = r#"
            if header :is "Subject" "spam" { discard; }
            elsif header :contains "Subject" "ad" { fileinto "Ads"; }
            else { keep; }
        "#;
        let cmds = parse_script(src).unwrap();
        assert_eq!(cmds.len(), 3);
        assert_eq!(cmds[0].name, "if");
        assert_eq!(cmds[1].name, "elsif");
        assert_eq!(cmds[2].name, "else");
    }

    #[test]
    fn allof_anyof() {
        let src = r#"if allof(header :is "X" "1", header :is "Y" "2") { keep; }"#;
        let cmds = parse_script(src).unwrap();
        match &cmds[0].args[0] {
            Argument::Test(t) => {
                assert_eq!(t.name, "allof");
                assert_eq!(t.children.len(), 2);
            }
            other => panic!("expected Test, got {other:?}"),
        }
    }

    #[test]
    fn not_wrap() {
        let src = r#"if not header :is "Subject" "spam" { keep; }"#;
        let cmds = parse_script(src).unwrap();
        match &cmds[0].args[0] {
            Argument::Test(t) => {
                assert_eq!(t.name, "not");
                assert_eq!(t.children.len(), 1);
                assert_eq!(t.children[0].name, "header");
            }
            other => panic!("expected Test, got {other:?}"),
        }
    }

    #[test]
    fn size_test() {
        let src = "if size :over 1M { discard; }";
        let cmds = parse_script(src).unwrap();
        match &cmds[0].args[0] {
            Argument::Test(t) => {
                assert_eq!(t.name, "size");
                assert_eq!(t.tags, vec!["over".to_string()]);
                assert_eq!(t.args, vec![Argument::Number(1024 * 1024)]);
            }
            other => panic!("expected Test, got {other:?}"),
        }
    }

    #[test]
    fn redirect() {
        let cmds = parse_script(r#"redirect "alice@example.com";"#).unwrap();
        assert_eq!(cmds[0].name, "redirect");
        assert_eq!(
            cmds[0].args,
            vec![Argument::String("alice@example.com".into())]
        );
    }
}