5 releases

0.2.3 Nov 13, 2023
0.2.2 Oct 30, 2023
0.2.1 Oct 18, 2023
0.2.0 Sep 29, 2023
0.1.7 Aug 31, 2023

#231 in Parser tooling

Download history 101/week @ 2023-12-14 213/week @ 2023-12-21 239/week @ 2023-12-28 257/week @ 2024-01-04 101/week @ 2024-01-11 213/week @ 2024-01-18 337/week @ 2024-01-25 341/week @ 2024-02-01 1/week @ 2024-02-08 42/week @ 2024-02-15 78/week @ 2024-02-22 145/week @ 2024-02-29 187/week @ 2024-03-07 115/week @ 2024-03-14 109/week @ 2024-03-21 83/week @ 2024-03-28

522 downloads per month
Used in bumble

Apache-2.0

595KB
13K SLoC

Rust 9K SLoC // 0.1% comments Python 3K SLoC // 0.2% comments Pest 108 SLoC

Packet Description Language (PDL)

Crate Build workflow GitHub contributors GitHub stars

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

  1. Write the protocol definition
  2. cargo run my-protocol.pdl --output-format rust > my-protocol.rs

Language specific instructions are provided for all supported backends:

  1. Rust generated code guide
  2. Python generated code guide
  3. C++ generated code guide

Supported Features

Full reference documentation

  • Scalar values
  • Enumerators
  • Arrays
  • Optional fields
  • Nested packets
  • Conditional packet derivation
  • Custom field definitions

Similar projects

Dependencies

~3–4.5MB
~84K SLoC