commit | 930befc884dcc9b4db522afea30bc7559278c6df | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Wed Nov 08 18:08:45 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Nov 08 18:08:45 2023 +0000 |
tree | 533e1e85df6741e67c9256226869e50df319fb45 | |
parent | bad5ec493085b653eb458481a182811adb207a37 [diff] | |
parent | 7a6e7cf265308b842c375191e040ba3f1015b7da [diff] |
Add cargo2android.json. am: 8febd65b6f am: 7a6e7cf265 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pdl-runtime/+/2822378 Change-Id: Ia76f1ca9382b89a30599c31d69ed084532c5986b 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: