Github.com Crates.io Documentation Github Actions

AIDL parser for Rust

Parse and validate AIDL files (or contents).

For each AIDL file, the parser will return: - the AST (Abstract Syntax Tree) - diagnostics (errors and warnings)

The [traverse] module contains various helper functions to extract informations from the AST.

Usage

Add to Cargo.toml:

toml [dependencies] aidl-parser = "0.9.1"

Create parser, analyze results:

```rust use aidlparser::Parser; use aidlparser::traverse::{self, SymbolFilter};

// Parse AIDL contents let mut parser = Parser::new(); parser.addcontent("id1", "package test.pkg; interface MyInterface { void hello(String); }"); parser.addcontent("id2", "package test.pkg; parcelable Parcelable { int myField; }"); let results = parser.validate();

// Display results for (id, res) in &results { println!("{}: AST = {:#?}", id, res.ast); println!("{}: Diagnostics = {:#?}", id, res.diagnostics); }

// Traverse AST let ast1 = results["id1"].ast.asref().expect("missing AST"); traverse::walksymbols(ast1, traverse::SymbolFilter::All, |s| println!("- Symbol: {:#?}", s));

// Filter symbols with closure let symbols = traverse::filtersymbols(ast1, SymbolFilter::ItemsAndItemElements, |s| s.getname().unwrapordefault().contains("el")); println!("Found symbols containing 'el': {:#?}", symbols);

// Find symbol with closure if let Some(symbol) = traverse::findsymbol(ast1, SymbolFilter::All, |s| s.getname().as_deref() == Some("myField")) { println!("Found myField: {:#?}", symbol); }

// Find symbol at given position if let Some(symbol) = traverse::findsymbolatlinecol(ast1, SymbolFilter::All, (0, 3)) { println!("Found myField: {:#?}", symbol); } ```

AIDL language support

It is currently a best effort to provide good diagnostic and navigation based on the official AIDL documentation and AOSP implementation.

It is planned to gradually improve language support to cover all the AIDL functionalities. If you encounter any issue or missing functionality which is not mentioned in the README, it is considered as a bug (please submit an issue or a pull request!).

To get more insight on the current grammar and validation, please refer to: - grammar (lalrpop): https://github.com/bwalter/rust-aidl-parser/blob/main/src/aidl.lalrpop - unit-tests for grammar: https://github.com/bwalter/rust-aidl-parser/blob/main/src/rules.rs - validation incl. unit-tests: https://github.com/bwalter/rust-aidl-parser/blob/main/src/validation.rs

Link to AOSP AIDL implementation: https://android.googlesource.com/platform/system/tools/aidl/+/refs/heads/master

TODO

License

This project is licensed under the MIT license.