#serde-json #json #query #serde #macro #extract

valq

macros for querying and extracting value from structured data by JavaScript-like syntax

1 unstable release

0.1.0 Dec 19, 2021

#1537 in Encoding

Download history 376/week @ 2024-07-21 320/week @ 2024-07-28 626/week @ 2024-08-04 576/week @ 2024-08-11 356/week @ 2024-08-18 617/week @ 2024-08-25 579/week @ 2024-09-01 1362/week @ 2024-09-08 488/week @ 2024-09-15 870/week @ 2024-09-22 370/week @ 2024-09-29 272/week @ 2024-10-06 184/week @ 2024-10-13 230/week @ 2024-10-20 339/week @ 2024-10-27 337/week @ 2024-11-03

1,090 downloads per month

MIT license

24KB
440 lines

valq   Docs.rs shield crates.io shield

valq provides a macro for querying and extracting value from structured data in very concise manner, like the JavaScript syntax.

Look & Feel:

use serde_json::Value;
use valq::query_value;

let j: Value = ...;
let deep_val: Option<&Value> = query_value!(j.path.to.value.at.deep);

For now, there is only single macro exported: query_value.

query_value macro

A macro for querying inner value of structured data.

Basic Usage

// get field `foo` from JSON object `obj`
let foo = query_value!(obj.foo);

// get nested field `bar` inside object `foo` in JSON object `obj`
let bar = query_value!(obj.foo.bar);

// get head of JSON array 'arr'
let head = query_value!(arr[0]);

// get head of nested JSON array `arr` in JSON object `obj`
let head = query_value!(obj.arr[0]);

// more complex example!
let abyss = query_value!(obj.path.to.matrix[0][1].abyss);

Converting to Specified Type

// try to convert extracted value to `u64` by `as_u64()` method  on that value.
// results in `None` in case of type mismatch
let foo_u64: Option<u64> = query_value!(obj.foo -> u64)

// in case of mutable reference extraction (see below), `as_xxx_mut()` method will be used.
let arr_vec: Option<&mut Vec<Value>> = query_value!(mut obj.arr -> array)

Extracting Mutable Reference to Inner Value

use serde_json::{json, Value}

let mut obj = json!({"foo": { "bar": { "x": 1, "y": 2 }}});
{
    // prefixed `mut` means extracting mutable reference
    let bar: &mut Value = query_value!(mut obj.foo.bar).unwrap();
    *bar = json!({"x": 100, "y": 200});
}
assert_eq!(query_value!(obj.foo.bar.x -> u64), Some(100));
assert_eq!(query_value!(obj.foo.bar.y -> u64), Some(200));

No runtime deps