9 releases

0.3.2 Oct 10, 2021
0.3.1 Oct 8, 2021
0.2.1 Oct 4, 2021
0.2.0 Sep 26, 2021
0.1.4 Sep 22, 2021

#2145 in Encoding

Download history 31/week @ 2023-11-25 44/week @ 2023-12-02 8/week @ 2023-12-09 49/week @ 2023-12-16 1/week @ 2023-12-23 40/week @ 2023-12-30 30/week @ 2024-01-06 50/week @ 2024-01-13 106/week @ 2024-01-20 150/week @ 2024-01-27 133/week @ 2024-02-03 46/week @ 2024-02-10 184/week @ 2024-02-17 131/week @ 2024-02-24 70/week @ 2024-03-02 15/week @ 2024-03-09

405 downloads per month

MIT license

115KB
2K SLoC

httlib-protos

This crate implements Protocol Buffers binary protocol v3 (proto3), for encoding and decoding typed messages to and from the wire format. The protocol deals in-depth with optimizing the representation of data types on the wire so that as little data as possible is transmitted between the client and server.

Documentation Source

About

Protocol Buffers, also know as protos or protobufs, is an open-source interface description language originally developed by Google and a library that allows JSON-like data messages to be transmitted over the wire without unnecessary ballast. Today, it is most relevant in the context of gRPC, where RPC server and client code for arbitrary programming languages is generated based on Protocol Buffers descriptions.

Protocol Buffers were developed primarily with the goal of speeding up the transmission of strongly typed key-value message objects over the network, which in turn means reducing the amount of data that needs to be transmitted over the wire from A to B.

REST and RPC are two concepts that are now considered a kind of de facto way of developing APIs in web development. Communication between the client and the server is mostly about transferring data in JSON format. This is user-friendly, but highly suboptimal at the network level.

Protocol Buffers addresses this issue and is one of the most optimized protocols which is also growing in popularity.

This library is not meant for generating code for the client and the server. The crate focuses on the low-level data compression and decompression for transmitting typed objects over the wire. It offers the full implementation of the Protocol Buffer's binary protocol.

Usage

Encoding example:

use httlib_protos::{Encoder, EncoderLit};

let encoder = Encoder::default();

let mut dst = Vec::new();
encoder.encode((&1, &150i32), &mut dst).unwrap(); // common type
encoder.encode((&2, EncoderLit::SInt32(&-150i32)), &mut dst).unwrap(); // specific type

Decoding example:

use httlib_protos::{Decoder, DecoderLit};

let mut decoder = Decoder::default();

let mut buf = vec![0x85, 0x35, 0x85];

let mut dst = vec![];
let size = decoder.decode(&mut buf, &mut dst).unwrap();

for (tag, typ, byt) in dst.drain(..) {
    if tag == 1 {
        i32::from(DecoderLit::Int32(byt));
    }
}

Articles

License: MIT

No runtime deps