This small Rust crate provides a wrapper struct for generated Rust FlatBuffers that allows them to be used as owned types. A owned FlatBuffer does not reference its source data and can therefore be easily moved into another thread.
Use the flatbuffers_owned!
convenience macro on your FlatBuffers to implement the required trait and introduce a type alias for each owned FlatBuffer.
Generate the OwnedMessage
type alias for the Message
FlatBuffer:
rust
flatbuffers_owned!(Message);
Receive a byte slice, create a boxed slice, and initialize the owned flatbuffer: ```rust let messagebytes: &[u8] = receivemessagebytes(); let messagebytes: Box<[u8]> = Box::from(message_bytes);
let ownedmessage = OwnedMessage::new(messagebytes).unwrap(); ```
Access the actual FlatBuffer: ```rust let message: Message = ownedmessage.asactual();
asserteq!(message.gettext().unwrap(), "Hello, world!"); ```
The new() constructor always verifies the raw FlatBuffer bytes using the FlatBuffer's built-in runverifier() method. Since there can always be a faulty byte-slice passed, you need to check the returned Result of the constructor: ```rust for id in messageids { let messagebytes = Box::from(receivemessage_bytes());
let owned_message = OwnedMessage::new(message_bytes);
match owned_message {
Ok(message) => {
// ... process message
},
Err(e) => {
println!("Failed to parse Message: {}", e);
// ... handling logic
},
}
} ```
The wrapper struct is a newtype for a Box<[u8]> that accepts a FlatBuffer as the generic type.
With the flatbuffers_owned!
convenience macro we get a type alias that just masks this wrapper struct.
rust
pub type OwnedMessage = OwnedFlatBuffer<Message<'static>>;
So instead of OwnedMessage
, we can just as well use OwnedFlatBuffer<Message<'static>>
.
rust
let owned_message = OwnedFlatBuffer::<Message<'static>>::new(message_bytes).unwrap();
As you may have noticed, the 'static
lifetime is then always present when working with the OwnedFlatBuffer.
However, this can be misleading, because the OwnedFlatBuffer does not actually reference anything in the 'static
lifetime.
The lifetime is only required by the FlatBuffer struct.
So to make the code more readable, we have the type alias.
The OwnedFlatBuffer struct de-references itself to its underlying bytes slice. A Deref to the actual FlatBuffer struct is sadly not possible, since the associated type of the Deref trait can not carry a lifetime.
If you have any ideas for improvements or would like to contribute to this project, please feel free to open an issue or pull request. I will also be happy for any general tips or suggestions given that this is my first (published) library ever. :)
This project is released under the MIT License, which allows for commercial use, modification, distribution, and private use. See the LICENSE file for the full text of the license.