tinyjson

tinyjson is a library to parse/generate JSON format document.

Goals:

Usage

Parse JSON

String is parsed to JsonValue struct.

```rust use tinyjson::parser::parse;

let s = r#" { "bool": true, "arr": [1, null, "test"], "nested": { "blah": false, "blahblah": 3.14 }, "unicode": "\u2764" } "#;

let parsed = parse(s); println!("Parsed: {:?}", parsed); ```

tinyjson::parser::parse() is available for &String and &'a str. It parses the target as JSON and creates tinyjson::JsonValue object. It represents tree structure of parsed JSON. JsonValue is an enum struct and allocated on stack. So it doesn't require additional heap allocation.

Access to JSON Value

JsonValue is an enum value. So we can access it with match statement.

rust let json = JsonValue::Number(42); let v = match json { JsonValue::Number(n) => n, // When number JsonValue::Null => 0.0, // When null _ => panic!("Unexpected!"), };

But JSON is a tree structure and it's boring to write nested match statement. So JsonValue meets std::ops::Index trait in order to access to its value quickly.

```rust let complicated_json = tinyjson::parser::parse(r#" { "foo": { "bar": [ { "target": 42 }, { "not target": 0 } ] } } "#);

let targetvalue = complicatedjson["foo"]["bar"][0]["target"]; println!("{:?}", target_value); // => JsonValue::Number(42.0) ```

Index access with String or str key is available when the value is an object. And Index access with usize is available when the value is an array. They return the &JsonValue value if target value was found.

When the value for key or the element of index was not found, it will call panic!.

Additionally, get() method is provided to dereference the enum value (e.g. JsonValue::Number(4.2) -> 4.2).

```rust let json = tinyjson::parser::parse(r#" { "num": 42, "array": [1, true, "aaa"], "null": null } "#);

let ref num: f64 = json["num"].get().expect("Number value"); let ref arr: Vec = json["array"].get().expect("Array value"); let ref null: () = json["null"].get().expect("Null value");

print!("{}, {:?}", num, arr); ```

get() method returns its dereferenced raw value. It returns Option<&T> (T is corresponding value that you expected). If None is returned, it means its type mismatched with your expected one. Which type get() should dereference is inferred from how the returned value will be handled. So you need not to specify it explicitly.

Equality of JsonValue

JsonValue drives PartialEq traits hence it can be checked with == operator.

rust let json = tinyjson::parser::parse(r#"{"foo": 42}"#); assert!(json["foo"] == JsonValue::Number(42.0));

If you want to check its type only, there are is_xxx() shortcut methods in JsonValue instead of using match statement explicitly.

```rust let json = tinyjson::parser::parse(r#" { "num": 42, "array": [1, true, "aaa"], "null": null } "#);

assert!(json["num"].isnumber()); assert!(json["num"].isarray()); assert!(json["num"].is_null()); ```

Generate JSON

to_string() method can be used to create JSON string from JsonValue.

```rust use tinyjson::parser::parse; use tinyjson::to_string;

let s = r#" { "bool": true, "arr": [1, null, "test"], "nested": { "blah": false, "blahblah": 3.14 }, "unicode": "\u2764" } "#;

let parsed = parse(s); let str = parsed.to_string(); println!("{}", str); ```

TODO

License

the MIT License