expry

expry is a fast schemaless binary format for data, with the ability for filtering and selecting parts of the information using expressions over the stored binary data. Expressions are compiled and optimized to bytecode, and during evaluation this bytecode is interpreted. JSON can be read into these data structures (using expry_parse_json). Because expry supports binary strings, not all expry values can be exported to JSON. The following data types are supported: - null; - bool; - int64; - float; - double; - string; - array; - object.

Expressions

Expressions over binary objects are compiled to byte code, and can be transmitted over the network. This bytecode can be quickly evaluated, as the bytecode is optimized on the way the binary objects are stored on a low level. Keys inside objects are stored in an ordered way. If keys are not needed any more for evaluation of the current expression, they are permanently skipped.

User defined functions

During evaluation, there is also the possibility to add user defined functions. These user defined functions are only known at evaluation time, therefore there is no static type checking in place. Only runtime errors are generated if the number of arguments or type of arguments do not match.

Easily convert custom data types to values

Using the From trait, custom data types can be easily converted to values, even if they are contained in data structures like Vec.

``` use expry::*;

struct Foo { foo: u32, bar: bool, }

impl<'a> From<&'a Foo> for DecodedValue<'a> { fn from(v: &'a Foo) -> Self { value!({ "foo": v.foo as i64, "bar": v.bar, }) } }

let foos = vec![ Foo{foo:1,bar:true}, Foo{foo:2,bar:false}, ]; let encodedvalue = value!({ "foo": Foo{foo:1,bar:true}, "foos": foos, }).encodeto_vec(false); ```