commit | 60adb2ea6c74399fadb13c19d14598a8b085abe4 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Wed Nov 15 02:11:09 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Nov 15 02:11:09 2023 +0000 |
tree | 31bfbde306507249ed3a8e8e1dbbbf6b383c3152 | |
parent | 930befc884dcc9b4db522afea30bc7559278c6df [diff] | |
parent | e1405e9915629423871c489c6b833c9790200bdf [diff] |
Migrate to cargo_embargo. am: 590d9e906d am: e1405e9915 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pdl-runtime/+/2828319 Change-Id: Ie2ee9493d940e5e3f01827924b415a0b5047471d Signed-off-by: Automerger Merge Worker <[email protected]>
PDL is a domain specific language for writing the definition of binary protocol packets. Parsing and validating packets from raw bytes is tedious and error prone in any language. PDL generates memory safe and tailored backends for multiple target languages:
- Rust - C++ - Python
Historically PDL was developed as part of the Android Bluetooth stack (bluetooth_packetgen) as a way to generate the parser and serializer for Bluetooth packets, and reduce the number of memory safety issues that come with manipulating and validating raw data.
cargo run my-protocol.pdl --output-format rust > my-protocol.rs
Language specific instructions are provided for all supported backends: