Crates.io | jsonata-rs |
lib.rs | jsonata-rs |
version | |
source | src |
created_at | 2023-11-13 15:57:50.325782 |
updated_at | 2024-12-12 16:33:42.979227 |
description | An (incomplete) implementation of JSONata in Rust |
homepage | https://github.com/Stedi/jsonata-rs/ |
repository | https://github.com/Stedi/jsonata-rs/ |
max_upload_size | |
id | 1033755 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
An (incomplete) implementation of JSONata in Rust.
Alpha version. All internal and external interfaces are considered unstable and subject to change without notice.
From the JSONata website:
Read the complete documentation, and try it out in Stedi's JSONata Playground.
The API is not ergonomic (yet), as you must provide a bumpalo
arena.
First, add the following to your Cargo.toml
:
[dependencies]
jsonata-rs = "0"
bumpalo = "3.9.1"
Then you can evaluate an expression with JSON input like this:
use bumpalo::Bump;
use jsonata_rs::JsonAta;
// Create an arena for allocating values
let arena = Bump::new();
// Provide some JSON input. This could be read from a file or come from the network.
let input = r#"{ "name": "world" }";
// The JSONata expression to evaluate
let expr = r#""Hello, " & name & "!"";
// Parse the expression
let jsonata = JsonAta::new(expr, &arena).unwrap();
// Evaluate the expression against the input. The second parameter should
// contain any binding variables you want to be available during evaluations.
let result = jsonata.evaluate(Some(input), None).unwrap();
// Serialize the result into JSON
println!("{}", result.serialize(false));
There's also a basic CLI tool:
# cargo install jsonata-rs
# jsonata "1 + 1"
2
# jsonata '"Hello, " & name & "!"' '{ "name": "world" }'
"Hello, world!"
The expression and input can be specified on the command line, which requires manual escaping. Alternatively, they can be provided from files. Here's the --help
output:
# jsonata --help
jsonata-rs
A command line JSON processor using JSONata
USAGE:
jsonata [FLAGS] [OPTIONS] [ARGS]
FLAGS:
-a, --ast Parse the given expression, print the AST and exit
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-e, --expr-file <expr-file> File containing the JSONata expression to evaluate (overrides expr on command line)
-i, --input-file <input-file> Input JSON file (if not specified, STDIN)
ARGS:
<expr> JSONata expression to evaluate
<input> JSON input
There are several JSONata features which are not yet implemented:
Function signatures have problems as described here, and are not supported by this implementation.
Most of the JSONata functions, however, support being passed the context as the first argument as dictated by their signature, e.g:
["Hello", "world"].$substring(1, 2)
/* Output: ["el", "or"] */
This is implemented in each built-in function itself. For example, if $string
sees that it is called without arguments, it will use the current context.
In addition, for all the built-in functions, type checking of arguments is also implemented directly in the functions themselves so that you get equivalent runtime errors for passing the wrong things to these functions as you would in reference JSONata.
Reference JSONata contains an extensive test suite with over 1,000 tests. Currently, this implementation passes almost 800 of these. You can run them like this:
cargo test testsuite
In tests/testsuite/groups
are the tests groups that are passing, while tests/testsuite/skip
contains the groups that still require feature implementation. There may be tests in the remaining groups that do pass, but I don't want to split them up - only when a test group fully passes is it moved.
There are several issues to be resolved:
We welcome community contributions and pull requests.
This project is licensed under the Apache-2.0 License. Any code you submit will be released under that license.