10 breaking releases

0.12.0 Nov 11, 2023
0.10.0 Aug 20, 2023
0.9.0 Jun 10, 2023
0.6.0 Feb 13, 2023
0.2.0 Feb 14, 2021

#268 in Parser implementations

Download history 461/week @ 2024-01-05 276/week @ 2024-01-12 429/week @ 2024-01-19 267/week @ 2024-01-26 295/week @ 2024-02-02 382/week @ 2024-02-09 335/week @ 2024-02-16 258/week @ 2024-02-23 377/week @ 2024-03-01 309/week @ 2024-03-08 271/week @ 2024-03-15 350/week @ 2024-03-22 312/week @ 2024-03-29 458/week @ 2024-04-05 473/week @ 2024-04-12 494/week @ 2024-04-19

1,800 downloads per month
Used in 5 crates (3 directly)

Apache-2.0/MIT

450KB
11K SLoC

Rust 5.5K SLoC // 0.1% comments C 4.5K SLoC // 0.2% comments Happy 1.5K SLoC

Build Status Latest Version Docs dependency status

LEMON parser generator modified to generate Rust code.

Lemon source and SQLite3 grammar were last synced as of November 2023.

Unsupported

Unsupported Grammar syntax

  • %token_destructor: Code to execute to destroy token data
  • %default_destructor: Code for the default non-terminal destructor
  • %destructor: Code which executes whenever this symbol is popped from the stack during error processing

https://www.codeproject.com/Articles/1056460/Generating-a-High-Speed-Parser-Part-Lemon https://www.sqlite.org/lemon.html

SQLite

SQLite lexer and SQLite parser have been ported from C to Rust. The parser generates an AST.

Lexer/Parser:

  • Keep track of position (line, column).
  • Streamable (stop at the end of statement).
  • Resumable (restart after the end of statement).

Lexer and parser have been tested with the following scripts:

TODO:

Unsupported by Rust

  • #line directive

API change

  • No ParseAlloc/ParseFree anymore

Features not tested

  • NDEBUG
  • YYNOERRORRECOVERY
  • YYERRORSYMBOL

To be fixed

  • RHS are moved. Maybe it is not a problem if they are always used once. Just add a check in lemon...
  • %extra_argument is not supported.
  • Terminal symbols generated by lemon should be dumped in a specified file.

Raison d'être

  • lemon_rust does the same thing but with an old version of lemon. And it seems not possible to use yystack as a stack because items may be access randomly and the top+1 item can be used.

  • lalrpop would be the perfect alternative but it does not support fallback/streaming (see this issue) and compilation/generation is slow.

Dependencies

~1.3–2MB
~34K SLoC