About
This module implements the Protocol Buffer Format in a light weight, minimalistic, and efficient way.
The pbf Rust crate provides functionalities to read and write Protocol Buffers (protobuf) messages. This crate is a 0 dependency package that uses no_std and is intended to be used in embedded systems and WASM applications. The crate is designed to be small and efficient, with the cost of some features and flexibility. It is up to the user to create the necessary data structures and implement the ProtoRead and ProtoWrite traits in order to use it effectively.
Usage
Typescript
This is a low-level, fast, ultra-lightweight typescript library for decoding and encoding protocol buffers. It was ported from the pbf package.
Install the package:
# bun
# npm
# pnpm
# yarn
# deno
Typescript Examples
import { readFileSync } from 'fs';
import { Pbf } from 'pbf-ts';
// Reading:
const pbf = new Pbf(readFileSync(path));
// Writing:
const pbf = new Pbf();
pbf.writeVarintField(1, 1);
// ...
const result = pbf.commit();
If you want to reduce build size and know you're only reading data, not writing to it, use the PbfReader class:
import { readFileSync } from 'fs';
import { PbfReader } from 'pbf-ts';
const pbf = new PbfReader(readFileSync(path));
// ...
More complex example:
/** Building a class to test with. */
class Test {
a = 0;
b = 0;
c = 0;
/**
* @param pbf - the Protobuf object to read from
* @param end - the position to stop at
*/
constructor(pbf: Protobuf, end = 0) {
pbf.readFields(Test.read, this, end);
}
/**
* @param t - the test object to write.
* @param pbf - the Protobuf object to write to.
*/
static writeMessage(t: Test, pbf: Protobuf): void {
pbf.writeVarintField(1, t.a);
pbf.writeFloatField(2, t.b);
pbf.writeSVarintField(3, t.c);
}
/**
* @param tag - the tag to read.
* @param test - the test to modify
* @param pbf - the Protobuf object to read from
*/
static read(tag: number, test: Test, pbf: Protobuf): void {
if (tag === 1) test.a = pbf.readVarint();
else if (tag === 2) test.b = pbf.readFloat();
else if (tag === 3) test.c = pbf.readSVarint();
else throw new Error(`Unexpected tag: ${tag}`);
}
/**
* @returns - a new test object
*/
static newTest(): Test {
return { a: 1, b: 2.2, c: -3 } as Test;
}
/**
* @returns - a new default test object
*/
static newTestDefault(): Test {
return { a: 0, b: 0, c: 0 } as Test;
}
}
// Writing the message
const pbf = new Protobuf();
const t = Test.newTest();
pbf.writeMessage(5, Test.writeMessage, t);
const data = pbf.commit();
expect(data).toEqual(new Uint8Array([42, 9, 8, 1, 21, 205, 204, 12, 64, 24, 5]));
// Reading the message
const pbf2 = new Protobuf(data);
expect(pbf2.readTag()).toEqual({ tag: 5, type: Protobuf.Bytes });
const t2 = new Test(pbf2, pbf2.readVarint() + pbf2.pos);
expect(t2).toEqual({ a: 1, b: 2.200000047683716, c: -3 } as Test);
Rust
[!NOTE]
Safety Unsafe code is forbidden by a #![forbid(unsafe_code)] attribute in the root of the library.
Install the package:
# cargo
or add the following to your Cargo.toml:
[]
= "0.3"
Rust Examples
use ;
// write the protobuf message
let mut pb = new;
let msg = new;
// top level proto messages usually write fields, but inner messages use `write_message`
pb.write_fields;
// take the data as a Vec<u8>
let bytes = pb.take;
// Let's put it back into a protobuffer for reading
let mut pb = from_input;
let mut msg = default;
pb.read_fields;
assert_eq!;
assert_eq!;
Development
Requirements
You need the tool tarpaulin to generate the coverage report. Install it using the following command:
The bacon coverage tool is used to generate the coverage report. To utilize the pycobertura package for a prettier coverage report, install it using the following command:
Running Tests
To run the tests, use the following command:
# bacon
Generating Coverage Report
To generate the coverage report, use the following command:
# bacon