miniconf: serialize/deserialize/access reflection for trees
miniconf enables lightweight (no_std/no alloc) serialization, deserialization,
and access within a tree of heretogeneous types by keys.
Example
See below for an example showing some of the features of the Tree* traits.
See also the documentation and doctests of the [TreeKey] trait for a detailed description.
Note that the example below focuses on JSON and slash-separated paths while in fact
any serde backend (or dyn Any trait objects) and many different Keys/Transcode
providers are supported.
use ;
use ;
let mut settings = default;
// Atomic updates by field name
set?;
assert_eq!;
set?;
set?;
set?;
set?;
set?;
// Exposing nodes of containers
// ... by field name in a struct
set?;
// ... or by index in an array
set?;
// ... or by index and then struct field name
set?;
// ... or by hierarchical index
set_by_key?;
// ... or by packed index
let = .unwrap;
assert_eq!;
assert_eq!;
set_by_key?;
// ... or by JSON path
set_by_key?;
// Hiding paths by setting an Option to `None` at runtime
assert_eq!;
settings.option_tree = Some;
set?;
// Hiding a path and descending into the inner `Tree`
settings.option_tree2 = Some;
set?;
// Hiding items of an array of `Tree`s
settings.array_option_tree = Some;
set?;
let mut buf = ;
// Serializing nodes by path
let len = get.unwrap;
assert_eq!;
// Iterating over all paths
for path in >
# Ok::
Settings management
One possible use of miniconf is a backend for run-time settings management in embedded devices.
It was originally designed to work with JSON (serde_json_core)
payloads over MQTT (minimq) and provides a MQTT settings management
client in the miniconf_mqtt crate and a Python reference implementation to interact with it.
Miniconf is agnostic of the serde backend/format, key type/format, and transport/protocol.
Formats
miniconf can be used with any serde::Serializer/serde::Deserializer backend, and key format.
Explicit support for / as the path hierarchy separator and JSON (serde_json_core) is implemented.
Support for the postcard wire format with any postcard flavor and
any [Keys] type is implemented. Combined with the [Packed] key representation, this is a very
space-efficient serde-by-key API.
Blanket implementations are provided for all
TreeSerialize+TreeDeserialize types for all formats.
Transport
miniconf is also protocol-agnostic. Any means that can receive or emit serialized key-value data
can be used to access nodes by path.
The MqttClient in the miniconf_mqtt crate implements settings management over the MQTT
protocol with JSON payloads. A Python reference library is provided that
interfaces with it. This example discovers the unique prefix of an application listening to messages
under the topic quartiq/application/12345 and set its /foo setting to true.
Derive macros
For structs miniconf offers derive macros for [macro@TreeKey], [macro@TreeSerialize], [macro@TreeDeserialize], and [macro@TreeAny].
The macros implements the [TreeKey], [TreeSerialize], [TreeDeserialize], and [TreeAny] traits.
Fields/variants that form internal nodes (non-leaf) need to implement the respective Tree{Key,Serialize,Deserialize,Any} trait.
Leaf fields/items need to support the respective [serde] (and the desired serde::Serializer/serde::Deserializer
backend) or [core::any] trait.
Structs, enums, arrays, and Options can then be cascaded to construct more complex trees.
When using the derive macro, the behavior and tree recursion depth can be configured for each
struct field using the #[tree(depth(Y))] attribute.
See also the [TreeKey] trait documentation for details.
Keys and paths
Lookup into the tree is done using a [Keys] implementation. A blanket implementation through [IntoKeys]
is provided for IntoIterators over [Key] items. The [Key] lookup capability is implemented
for usize indices and &str names.
Path iteration is supported with arbitrary separator chars between names.
Very compact hierarchical indices encodings can be obtained from the [Packed] structure.
It implements [Keys].
Limitations
enum: The derive macros don't support enums with record (named fields) variants or tuple variants with more than one field. Only unit, newtype and skipped variants are supported. Without the derive macros, theseenumsare still however usable in their atomicserdeform as leaf nodes.- The derive macros don't handle
std/allocsmart pointers (Box,Rc,Arc) in any special way. They however still be handled with accessors (get,get_mut,validate). - The derive macros only support flattening in non-ambiguous situations (single field structs and single variant enums, both modulo skipped fields/variants and unit variants).
Features
json-core: Enable helper functions for serializing from and into json slices (using theserde_json_corecrate).postcard: Enable helper functions for serializing from and into the postcard compact binary format (using thepostcardcrate).derive: Enable the derive macros inminiconf_derive. Enabled by default.
Reflection
miniconf enables certain kinds of reflective access to heterogeneous trees.
Let's compare it to bevy_reflect
which is a comprehensive and mature reflection crate:
bevy_reflect is thoroughly std while miniconf aims at no_std.
bevy_reflect uses its Reflect trait to operate on and pass nodes as trait objects.
miniconf uses serialized data or Any to access leaf nodes and pure "code" to traverse through internal nodes.
The Tree* traits like Reflect thus give access to nodes but unlike Reflect they are all decidedly not object-safe
and can not be used as trait objects. This allows miniconf to support non-'static borrowed data
(only for TreeAny the leaf nodes need to be 'static)
while bevy_reflect requires 'static for Reflect types.
miniconfsupports at least the following reflection features mentioned in the bevy_reflect README:
- ➕ Derive the traits:
miniconfhasTree*derive macros and blanket implementations for arrays and Options. Leaf nodes just need some impls ofSerialize/Deserialize/Anywhere desired. - ➕ Interact with fields using their names
- ➖ "Patch" your types with new values:
miniconfonly supports limited changes to the tree structure at runtime (Optionand custom accessors) whilebevy_reflecthas powerful dynamic typing tools. - ➕ Look up nested fields using "path strings": In addition to a superset of JSON path style
"path strings"
miniconfsupports hierarchical indices and bit-packed ordered keys. - ➕ Iterate over struct fields:
miniconfSupports recursive iteration over node keys. - ➕ Automatically serialize and deserialize via Serde without explicit serde impls:
miniconfsupports automatic serializing/deserializing into key-value pairs without an explicit container serde impls. - ➕ Trait "reflection": Together with
crosstraitsupports building the type registry and enables casting fromdyn Anyreturned byTreeAnyto other desired trait objects. Together witherased-serdeit can be used to implement node serialization/deserialization usingminiconf'sTreeAnywithout usingTreeSerialize/TreeDeserializesimilar tobevy_reflect.
Some tangential crates:
serde-reflection: extract schemata from serde implstypetag: "derive serde for trait objects" (local traits and impls)deflect: reflection on trait objects using adjacent DWARF debug info as the type registryintertrait: inspiration and source of ideas forcrosstrait
Functional Programming, Polymorphism
The type-heterogeneity of miniconf also borders on functional programming features. For that crates like the
following may also be relevant: