pdl-compiler

Crates.iopdl-compiler
lib.rspdl-compiler
version0.3.0
sourcesrc
created_at2023-05-11 17:09:33.116555
updated_at2024-07-15 17:10:46.332227
descriptionParser and serializer generator for protocol binary packets
homepage
repositoryhttps://github.com/google/pdl/
max_upload_size
id862297
size2,036,265
Martin Geisler (mgeisler)

documentation

README

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

Commit count: 361

cargo fmt