| Crates.io | parol |
| lib.rs | parol |
| version | 4.1.1 |
| created_at | 2021-09-18 17:57:44.469371+00 |
| updated_at | 2025-09-19 16:29:00.760731+00 |
| description | LL(k) and LALR(1) parser generator for Rust |
| homepage | |
| repository | https://github.com/jsinger67/parol/tree/main/crates/parol |
| max_upload_size | |
| id | 453373 |
| size | 1,131,977 |
parolparol is a LL(k) and a LALR(1) parser generator for Rust.
It's an installable command line tool that can generate complete parsers from a single grammar
description file including all AST data types you would otherwise had to design by yourself. parol
does this solely by analyzing your language's grammar. parol is also a library that you can use in
your own crates.
You can control the process of AST type generation. First you can mark elements for omission in your AST. Also you can specify your own types for language elements.
Language description and language implementation is strictly separated in parol. Thus you can
design your language's grammar without any need to process anything because generated parsers
function by default as acceptors. This empowers you to do a real rapid prototyping of your grammar.
parol generates a trait as interface between your language processing and the generated parser.
The trait contains functions for each non-terminal of your grammar which you can implement for
non-terminals you need to process. In the simplest case you only implement the trait function for
the start symbol of your grammar which is called after the whole input string is parsed. This
function then is called with a parameter that comprises the complete structure of the parsed
document.
The parser calls the interface trait's functions via a separately generated adapter automatically during the process of parsing.
With such a generated interface trait you theoretically never have to let parol generate new code
for you anymore and you can concentrate on the development of your language processing. Although,
often a more iterative approach is taken.
parol starts to support LR style grammars as well, in detail LALR(1)
grammars. Please have a look at the CHANGELOGparolparol's parser is generated by parol itself.parol new to create your own crate that uses parol.LL parsing technique is a top-down parsing strategy that always starts from the start symbol of your grammar. This symbol becomes the root node of the parse tree. Then it tries to derive the left-most symbol first. All such symbols are then processed in a pre-order traversal. During this process the parse tree is created from the root downwards.
Both, processing the input and producing the parse tree in 'natural' direction ensures that at every
point during parsing you can see where you came from and what you want to derive next. parol's
parse stack contains 'End of Production' markers which reflect the 'call hierarchy' of productions.
This tremendously helps to put your language processing into operation. In contrast, anyone who has ever debugged a LR parser will remember the effect of 'coming out of nowhere'.
Although LL grammars are known to be less powerful than LR grammars many use cases exist where LL grammars are sufficient. By supporting more than one lookahead token the abilities of traditional LR(1) grammars and LL(k) grammars become more and more indistinct.
parol?parol is simple. You can actually understand all parts of it without broader knowledge in parsing
theory.
parol is fast. The use of deterministic automata ensures a minimal overhead during parsing, no
backtracking needed.
parol is a true LL(k) parser. You won't find much working LL(k) parsers out there.
parol generates beautiful code that is easy to read which fosters debugging.
parol is young. Although this might be a problem some times, especially regarding the stability of
the API, the best is yet to come.
parol is actively developed. Thus new features are likely to be added as the need arises.
This project contains some introductory grammar examples from entry level up to a more complex C-like expression language and an acceptor for Oberon-0 grammar.
A complete Oberon-2 acceptor generated by parol can be found in the examples of this
repository.
A rudimentary Basic interpreter strives to mimic a small part of C64 Basic.
A TOML parser can be found here.
I also provide a JSON Parser.
parol's input language processing is an additional and very practical example.
A book explains some internals and the practical use of parol in detail. It is still a work in
progress but should be considered as the central documentation.
This video explains the installation of parol and the language server to setup your working
environment. Then it shows the process of designing grammars with parol with the help of an
example project.
Version 1 of parol is stable and production ready with all the usual disclaimers.
It receives fixes on branch release1.0
You should use the latest releases available on crates.io with version >=1.
Version 2 is stable and production ready with all the usual disclaimers.
It receives fixes on branch release2.2
Version 3 is stable and production ready with all the usual disclaimers.
It receives fixes on branch release3.1
Version 4 is in development but released versions can quite safely be used. Watch CHANGELOG closely and update when new releases are published.
Please note that any necessary dependencies are automatically added to your new parol project if
you use the parol new subcommand to create your new crate. The following sections are therefore
for information only.
Parsers generated by parol have to add a dependency to the
parol_runtime crate. It provides the scanner and parser
implementations needed. The parol_runtime crate is very lightweight.
You have to add the parol-macros crate to your
dependencies. When using parol new all necessary dependencies are added for you automatically.
parol and its accompanied tools included in this workspace are free, open source and permissively
licensed! Except where noted (below and/or in individual files), all code in this repository is
dual-licensed under either:
at your option. This means you can select the license you prefer!
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Thanks to all the contributors for improving this project!