commit | daf0da49e66ba1edd37602374120b34589ba0fda | [log] [tgz] |
---|---|---|
author | David Duarte <[email protected]> | Tue Jun 04 00:42:16 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jun 04 00:42:16 2024 +0000 |
tree | ece4849b52cc8838865430cd1b93cc03cdbe3c8e | |
parent | 97f74011e835bbdf51fd6715b3bcd5a79d191311 [diff] | |
parent | ae290114b002638ec5694cc0df5abf314c0e6681 [diff] |
Upgrade pdl-runtime to 0.3.0 am: 67a386da6a am: ae290114b0 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pdl-runtime/+/3108708 Change-Id: Ibefd34b3a7847ced1b837a75b49be8992bf3de41 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: