26 unstable releases (11 breaking)

0.12.3 Jan 29, 2023
0.11.0 Jan 29, 2023
0.10.0 Jan 9, 2022
0.4.0 Dec 30, 2021

#336 in Programming languages

Download history 371/week @ 2024-02-05 17/week @ 2024-02-19 7/week @ 2024-02-26 11/week @ 2024-03-11 19/week @ 2024-03-18 92/week @ 2024-04-01

122 downloads per month
Used in aidl-cli

MIT license

150KB
3.5K SLoC

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:

[dependencies]
aidl-parser = "0.12.3"

Create parser, analyze results:

use aidl_parser::Parser;
use aidl_parser::traverse::{self, SymbolFilter};

// Parse AIDL contents
let mut parser = Parser::new();
parser.add_content("id1", "package test.pkg; interface MyInterface { void hello(String); }");
parser.add_content("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.as_ref().expect("missing AST");
traverse::walk_symbols(ast1, traverse::SymbolFilter::All, |s| println!("- Symbol: {:#?}", s));

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

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

// Find symbol at given position
if let Some(symbol) = traverse::find_symbol_at_line_col(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:

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

TODO

  • Document how to display diagnostics (e.g. with CodeSpan)
  • union (Android 12)
  • nested types (Android T)
  • smarter parsing of parcelable field values
  • User-defined generic types
  • Fixed size arrays
  • Const values with arithmetic (e.g.: const int HELLO = 3 * 4)
  • Allow annotations for list/map parameters?
  • Format?
  • validate:
    • file name matching item name
    • annotations
    • annotation cannot be attached to primitive type

License

This project is licensed under the MIT license.

Dependencies

~3–6.5MB
~106K SLoC