7 releases (breaking)

0.9.0 Mar 25, 2024
0.6.0 Oct 26, 2023
0.5.0 May 17, 2023
0.4.1 Feb 20, 2023
0.3.0 Jul 29, 2022

#377 in Encoding

Download history 8/week @ 2024-01-05 2/week @ 2024-02-23 2/week @ 2024-03-01 124/week @ 2024-03-22 27/week @ 2024-03-29

151 downloads per month

Apache-2.0 OR BSD-3-Clause

185KB
3K SLoC

virtio-queue-ser

This crate is a companion to virtio-queue, focusing on persistent state representation for use cases such as (de)serialization. The main abstraction is the QueueStateSer object, which can be converted to and from QueueState via the provided From trait implementations. virtio-queue-ser currently supports (de)serialization of QueueStateSer objects via serde and versionize. The former always serializes the latest version of QueueStateSer, whereas multiple versions will be supported with versionize as breaking changes are introduced to QueueState (and, by extension, QueueStateSer).

On serialization, the typical workflow is to start from a state: QueueState object, obtain the corresponding QueueStateSer (i.e. state_ser = QueueStateSer::from(&state)), then write the serialized data using the underlying backend (i.e. serde or versionize). When deserializing, we first get a state_ser: QueueStateSer object from the backend, and then convert it to a QueueState (for example, state = QueueState::from(&state_ser)).

When a versionize-based backend is used, the state transformations required to transition between versions are transparent to consumers of virtio-queue-ser. For example, if an older version of QueueStateSer has been serialized with versionize, and we're deserializing based on that data, then the QueueStateSer object obtained via versionize will automatically include any changes required for converting to the current version.

License

This project is licensed under either of

Dependencies

~1.6–2.5MB
~51K SLoC