3 releases

0.0.3 Jun 9, 2024
0.0.2 Jun 3, 2024
0.0.1 May 28, 2024

#296 in Rust patterns

Download history 172/week @ 2024-05-27 293/week @ 2024-06-03 36/week @ 2024-06-10

501 downloads per month

MIT license

135KB
3K SLoC

teleparse

Proc-macro powered LL(1) parsing library

Features:

  • Syntax tree defined by macro attributes on structs and enums - no separate grammar file
  • Proc-macro powered - no separate build step to generate parser code
  • Provide a #[test] to ensure the grammar is LL(1), or fail at runtime
  • Utils for parsing components into primitives like tuples, options, and delimited lists

Credits:

  • The lexer implementation is backed by the ridiculously fast logos library
  • The "Dragon Book" Compilers: Principles, Techniques, and Tools by Alfred V. Aho, Monica S. Lam, Ravi Sethi, and Jeffrey D. Ullman:

Progress:

  • Lexer/Tokens
  • Parser
    • LL(1) stuff
    • Macros
    • Tests
    • Semantic Tokens (token type applied later by the parser)
    • Documentation
    • Hooks
  • Utils tp
    • Tuples
    • boxed
    • option-based tp::Option<T> and tp::Exists<T>
    • string-based tp::Quote<X: From<String>, T> tp::Parse<X: FromStr> (alias tp::String)
    • iter-based tp::Star<V: FromIterator<T>, T> tp::Plus<V: FromIterator<T>, T> (alias tp::Vec, tp::Nev, tp::VecDeque, tp::NevDeque)
    • delimited tp::Sep<T, P>, tp::Pun<T, P> (pun has optional trailing and sep forbids trailing)
    • conversion tp::Into<X, T: Into<X>>
    • Documentation

Here is the "textbook grammar" implemented in a few minutes (full version at tests/first_follow.rs)

E -> T E'
E' -> + T E' | ε
T -> F T'
T' -> * F T' | ε
F -> ( E ) | id
use teleparse::prelude::*;

#[derive_lexicon]
#[teleparse(ignore(r#"\s+"#))]
pub enum TokenType {
    #[teleparse(regex(r#"\w+"#), terminal(Ident))]
    Ident,
    #[teleparse(terminal(
        OpAdd = "+",
        OpMul = "*",
    ))]
    Op,
    /// Parentheses
    #[teleparse(terminal(
        ParenOpen = "(",
        ParenClose = ")"
    ))]
    Paren,
}

#[derive_syntax]
#[teleparse(root)]
struct E { 
    first: T,
    rest: Eprime,
}

// Eplus has to be a separate struct because it contains Eprime.
// Eprime(tp::Option<(OpAdd, T, Box<Eprime>)>) 
// will cause a loop in Eprime -> tp::Option -> Eprime when trying
// to determine if traits are satisfied
#[derive_syntax]
struct Eprime(tp::Option<Eplus>);

#[derive_syntax]
struct Eplus {
    op: OpAdd,
    t: T,
    rest: Box<Eprime>,
}

#[derive_syntax]
struct T {
    first: F,
    rest: Tprime,
}

#[derive_syntax]
struct Tprime(tp::Option<Tstar>);

#[derive_syntax]
struct Tstar {
    op: OpMul,
    f: F,
    rest: Box<Tprime>,
}

#[derive_syntax]
enum F {
    Paren((ParenOpen, Box<E>, ParenClose)),
    Ident
}

let source = "(a+b)*(c+d)";
let t = E::parse(source).unwrap().unwrap();

Dependencies

~7.5MB
~117K SLoC