ANTLR4 runtime for Rust programming language.
Tool(generator) part is currently located in rust-target branch of my antlr4 fork rrevenantt/antlr4/tree/rust-target
Latest version is automatically built to releases on this repository.
Also you can checkout it and mvn -DskipTests install
For examples you can see grammars, tests/gen for corresponding generated code and tests/my_tests.rs for actual usage examples
For now development is going on in this repository but eventually it will be merged to main ANTLR4 repo
Currently, requires nightly version of rust.
This likely will be the case until coerce_unsize
or some kind of coercion trait is stabilized.
There are other unstable features in use but only CoerceUnsized
is essential.
Remaining things before merge:
- API stabilization
- [ ] Rust api guidelines compliance
- [ ] more tests for API because it is quite different from Java
Can be done after merge:
- more profiling and performance optimizations
- Documentation
- [ ] Some things are already documented but still far from perfect, also more links needed.
- Code quality
- [ ] Clippy sanitation
- [ ] Not all warning are fixed
- cfg to not build potentially unnecessary parts
(no Lexer if custom token stream, no ParserATNSimulator if LL(1) grammar)
- run rustfmt on generated parser
Error
optionYou should use the ANTLR4 "tool" to generate a parser, that will use the ANTLR
runtime, located here. You can run it with the following command:
bash
java -jar <path to ANTLR4 tool> -Dlanguage=Rust MyGrammar.g4
For a full list of antlr4 tool options, please visit the
tool documentation page.
You can also see build.rs as an example of build.rs
configuration
to rebuild parser automatically if grammar file was changed.
Then add following to Cargo.toml
of the crate from which generated parser
is going to be used:
toml
[dependencies]
antlr-rust = "=0.2.0-dev.1"
and #![feature(try_blocks)]
in your project root module.
It is possible to generate idiomatic Rust syntax trees. For this you would need to use labels feature of ANTLR tool. You can see Labels grammar for example. Consider following rule : ```text e : a=e op='*' b=e # mult | left=e '+' b=e # add
``
For such rule ANTLR will generate enum
EContextAllcontaining
multand
addalternatives,
so you will be able to match on them in your code.
Also corresponding struct for each alternative will contain fields you labeled.
I.e. for
MultContextstruct will contain
aand
bfields containing child subtrees and
opfield with
TerminalNodetype which corresponds to individual
Token.
It also is possible to disable generic parse tree creation to keep only selected children via
parser.buildparsetrees = false`, but unfortunately currently it will prevent visitors from working.
Although Rust runtime API has been made as close as possible to Java, there are quite some differences because Rust is not an OOP language and is much more explicit.
ListenerId
otherwise ParseTreeWalker
should be used.recog
variable instead of self
/this
.
This is because predicates have to be inserted into two syntactically different places in generated parser
and in one of them it is impossible to have parser as self
.InputStream
have different index behavior when there are unicode characters.
If you need exactly the same behavior, use [u32]
based InputStream
, or implement custom CharStream
.'
in rust lifetimes with \
because ANTLR considers them as strings, e.g. Struct<\'lifetime>
@tokenfactory
custom action, instead of usual TokenLabelType
parser option.
ANTLR parser options can accept only single identifiers while Rust target needs know about lifetime as well.
Also in Rust target TokenFactory
is the way to specify token type. As example you can see CSV test grammar.Default + Clone
.Currently, unsafe is used only for downcasting (through separate crate)
and to update data inside Rc via get_mut_unchecked
(returned mutable reference is used immediately and not stored anywhere)
In addition to usual Rust semantic versioning, patch version changes of the crate should not require updating of generator part
BSD 3-clause