2 unstable releases

Uses old Rust 2015

0.2.0 May 2, 2017
0.1.0 Feb 19, 2017

#1383 in Encoding

Download history 4/week @ 2023-11-27 4/week @ 2023-12-04 3/week @ 2023-12-11 10/week @ 2023-12-18 1/week @ 2023-12-25 5/week @ 2024-01-15 13/week @ 2024-02-12 22/week @ 2024-02-19 54/week @ 2024-02-26 50/week @ 2024-03-04 50/week @ 2024-03-11

177 downloads per month
Used in roslibrust

MIT license

62KB
1.5K SLoC

Serde ROSMSG

MIT Licensed Crates.io Build Status

serde_rosmsg is a Rust serializer to the rosmsg data format, used in TCPROS and UDPROS.

For more information you can look at:

License

serde_rosmsg is distributed under the MIT license.


lib.rs:

Serde ROSMSG

ROSMSG is a binary format used for communication between ROS nodes.

Message types are defined in ROS's own specification. The linked specification contains information about supported data structures. Serialization is performed by just writing the underlying binary data in a Little Endian byte order. Fields that contain multiple items are prefixed with a 32-bit length, in number of items. That applies to variable sized arrays (like vectors) and strings. Serialized data is prefixed by a 32-bit number, representing the number of bytes in the serialized data, excluding that prefix.

Examples

If we wanted to serialize "Rust is great!", we would need to prefix the string with 14, which is the string's length. Then we would need to prefix that with 18, the combined length of the length annotation and the string itself.

let rosmsg_data = to_vec(&String::from("Rust is great!")).unwrap();
assert_eq!(rosmsg_data, b"\x12\0\0\0\x0e\0\0\0Rust is great!");
let rust_data: String = from_slice(&rosmsg_data).unwrap();
assert_eq!(rust_data, "Rust is great!");

Serialization is performed using serde. Thus, if you want to serialize your own structures, you can use serde_derive

extern crate serde_rosmsg;
#[macro_use]
extern crate serde_derive;
use serde_rosmsg::{to_vec, from_slice};

fn main() {
#[derive(Debug,Serialize,Deserialize,PartialEq)]
struct Position {
    x: i16,
    y: i16,
    z: i16,
}

let data = Position {
    x: 1025,
    y: -1,
    z: 5,
};

let rosmsg_data = to_vec(&data).unwrap();
assert_eq!(rosmsg_data, [6, 0, 0, 0, 1, 4, 255, 255, 5, 0]);
let rust_data: Position = from_slice(&rosmsg_data).unwrap();
assert_eq!(rust_data, data);
}

Dependencies

~3–5MB
~98K SLoC