#codec #decoder #encoder #byte #decode #io #async-io

bytecodec

A tiny framework for implementing encoders/decoders of byte-oriented protocols

45 releases

0.4.15 Jul 22, 2021
0.4.13 Jan 6, 2020
0.4.12 Oct 3, 2019
0.4.11 Sep 10, 2018
0.4.6 Jul 30, 2018

#251 in Encoding

Download history 6144/week @ 2023-12-15 3290/week @ 2023-12-22 5631/week @ 2023-12-29 8565/week @ 2024-01-05 6330/week @ 2024-01-12 8817/week @ 2024-01-19 13830/week @ 2024-01-26 10207/week @ 2024-02-02 10825/week @ 2024-02-09 14484/week @ 2024-02-16 13509/week @ 2024-02-23 22862/week @ 2024-03-01 17302/week @ 2024-03-08 15587/week @ 2024-03-15 13178/week @ 2024-03-22 9992/week @ 2024-03-29

59,315 downloads per month
Used in 42 crates (36 directly)

MIT license

210KB
4K SLoC

bytecodec

bytecodec Documentation Actions Status Coverage Status License: MIT

A tiny Rust framework for implementing encoders/decoders of byte-oriented protocols.

Documentation

Features

  • Suited for byte-oriented protocols
  • Incremental encoding/decoding:
    • Encode and Decode traits support incremental encoding and decoding
    • The number of bytes consumed in an execution of encode/decode methods can be completely controlled by the caller
    • This property makes it easy to implement, for example, multi-stream multiplexing, transmittin rate control and asynchronous I/O
  • Composable:
    • By combining multiple encoders (or decoders), it is easy to build a more complex encoder (or decoder)
    • See the examples of EncodeExt and DecodeExt traits
  • Reduced number of memory copies:
    • In design, only two memory copies are required
    • Considering in the decode process, one is the copy from the actual stream (e.g., TCP socket) to the decoding buffer, the other one is the copy to construct the item from the buffer.
  • Supports some serde implemention crates:
    • Currently serde_json and bincode are supported (as optional featuers)
    • See json_codec and bincode_codec modules
  • Easily adapt to synchronous I/O, asynchronous I/O, UDP, etc
  • Trackable errors:
    • By using trackable crate, the location where an error occurred can be easily specified
    • See EncodeExt::map_err and DecodeExt::map_err methods

Dependencies

~1.2–2.9MB
~60K SLoC