commit | a8a050704ebcca002501d22cd33f406e839c78d1 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Tue Feb 06 00:23:27 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Tue Feb 06 00:23:27 2024 +0000 |
tree | f91c5674b32b7c7960b0bccab434426de019774b | |
parent | 3af244471d68cb9bd2dacccf7c5c3bed6c483d7b [diff] | |
parent | 78d9c2e46b8af889aa08f521a14c7259b01e1fa4 [diff] |
Snap for 11406759 from 78d9c2e46b8af889aa08f521a14c7259b01e1fa4 to 24D1-release Change-Id: Ieb58a88f558f97d6510f6bd1ea7f6a8b9430e3c7
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: