7 releases
0.3.1 | Jul 15, 2024 |
---|---|
0.3.0 | May 24, 2024 |
0.2.3 | Nov 13, 2023 |
0.2.2 | Oct 30, 2023 |
0.1.7 | Aug 31, 2023 |
#249 in Parser tooling
799 downloads per month
Used in bumble
735KB
16K
SLoC
Packet Description Language (PDL)
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.
How to use PDL
- Write the protocol definition
cargo run my-protocol.pdl --output-format rust > my-protocol.rs
Language specific instructions are provided for all supported backends:
Supported Features
- Scalar values
- Enumerators
- Arrays
- Optional fields
- Nested packets
- Conditional packet derivation
- Custom field definitions
Similar projects
Dependencies
~4–12MB
~137K SLoC