#key-hash #data #size #byte #maximum #traits #serialization

cdr-encoding-size

Helper crate for RustDDS: Trait to compute the maximum CDR-serialized size of data

2 releases

new 0.5.1 Apr 24, 2024
0.5.0 Nov 4, 2021

#479 in Encoding

Download history 445/week @ 2024-01-03 216/week @ 2024-01-10 354/week @ 2024-01-17 356/week @ 2024-01-24 110/week @ 2024-01-31 246/week @ 2024-02-07 312/week @ 2024-02-14 307/week @ 2024-02-21 236/week @ 2024-02-28 253/week @ 2024-03-06 326/week @ 2024-03-13 404/week @ 2024-03-20 302/week @ 2024-03-27 279/week @ 2024-04-03 454/week @ 2024-04-10 270/week @ 2024-04-17

1,394 downloads per month
Used in 3 crates (2 directly)

Apache-2.0

7KB
88 lines

This crate specifies the CdrEncodingSize trait. It is a helper to the RustDDS library.

The trait is in a separate crate, because it has a derive-macro, and (the Rust Programming Language, Section "19.5 Macros")https://doc.rust-lang.org/book/ch19-06-macros.html advises that "At the time of this writing, procedural macros need to be in their own crate. Eventually, this restriction might be lifted."

The RTPS specification version 2.5 Section "9.6.4.8 KeyHash (PID_KEY_HASH)" defines an algorithm for computing a 16-byte hash of a DDS Key of a data sample.

The algorithm summary:

  • Define a "holder" type corresponding to the data sample type.
  • The holder type consists of all the fields that form the Key of the data sample type.
  • The holder type is serialized according to PLAIN_CDR2 Big Endian rules.
  • If the holder type has maximum serialized size of at most 16 bytes, the serialized representation produced in the previous step, padded with zero bytes to be exactly 16 bytes, is the "key hash".
  • If the holder type has maximum serialized size of more than 16 bytes, then the MD5 hash of the serialized representation above is computed, and this is the "key hash"
  • This always results in a "key hash" of exactly 16 bytes.

This trait is an automated mechanism for deciding if the 16-byte limit is exceeded, i.e. if MD5 hashing should be used or not.

TODO

  • Derive macro supports primitive types and structs, but not enum types. It will fail if a Key type is, or contains, an enum.

Dependencies

~1.5MB
~33K SLoC