3 unstable releases

0.4.1 Aug 17, 2019
0.4.0 Jul 7, 2019
0.0.0-alpha Jun 28, 2019

#1020 in Parser implementations

Download history 65/week @ 2023-12-06 61/week @ 2023-12-13 70/week @ 2023-12-20 104/week @ 2023-12-27 107/week @ 2024-01-03 97/week @ 2024-01-10 131/week @ 2024-01-17 41/week @ 2024-01-24 43/week @ 2024-01-31 146/week @ 2024-02-07 96/week @ 2024-02-14 116/week @ 2024-02-21 124/week @ 2024-02-28 132/week @ 2024-03-06 74/week @ 2024-03-13 91/week @ 2024-03-20

449 downloads per month
Used in 6 crates (5 directly)

Apache-2.0/MIT

33KB
434 lines

jq-rs

crates.io crates.io docs.rs Build Status

Overview

Prior to v0.4.0 this crate was named json-query.

This rust crate provides access to jq 1.6 via the libjq C API (rather than "shelling out").

By leveraging jq we can extract data from json strings using jq's dsl.

This crate requires Rust 1.32 or above.

Usage

The interface provided by this crate is very basic. You supply a jq program string and a string to run the program over.

use jq_rs;
// ...

let res = jq_rs::run(".name", r#"{"name": "test"}"#);
assert_eq!(res.unwrap(), "\"test\"\n".to_string());

In addition to running one-off programs with jq_rs::run(), you can also use jq_rs::compile() to compile a jq program and reuse it with different inputs.

use jq_rs;

let tv_shows = r#"[
 {"title": "Twilight Zone"},
 {"title": "X-Files"},
 {"title": "The Outer Limits"}
]"#;

let movies = r#"[
 {"title": "The Omen"},
 {"title": "Amityville Horror"},
 {"title": "The Thing"}
]"#;

let mut program = jq_rs::compile("[.[].title] | sort").unwrap();

assert_eq!(
 &program.run(tv_shows).unwrap(),
 "[\"The Outer Limits\",\"Twilight Zone\",\"X-Files\"]\n"
);

assert_eq!(
 &program.run(movies).unwrap(),
 "[\"Amityville Horror\",\"The Omen\",\"The Thing\"]\n",
);

A Note on Performance

While the benchmarks are far from exhaustive, they indicate that much of the runtime of a simple jq program goes to the compilation. In fact, the compilation is quite expensive.

run one off             time:   [48.594 ms 48.689 ms 48.800 ms]
Found 6 outliers among 100 measurements (6.00%)
3 (3.00%) high mild
3 (3.00%) high severe

run pre-compiled        time:   [4.0351 us 4.0708 us 4.1223 us]
Found 15 outliers among 100 measurements (15.00%)
6 (6.00%) high mild
9 (9.00%) high severe

If you have a need to run the same jq program multiple times it is highly recommended to retain a pre-compiled JqProgram and reuse it.

Handling Output

The return values from jq are strings since there is no certainty that the output will be valid json. As such the output will need to be parsed if you want to work with the actual data types being represented.

In such cases you may want to pair this crate with serde_json or similar.

For example, here we want to extract the numbers from a set of objects:

use jq_rs;
use serde_json::{self, json};

// ...

let data = json!({
 "movies": [
     { "title": "Coraline", "year": 2009 },
     { "title": "ParaNorman", "year": 2012 },
     { "title": "Boxtrolls", "year": 2014 },
     { "title": "Kubo and the Two Strings", "year": 2016 },
     { "title": "Missing Link", "year": 2019 }
 ]
});

let query = "[.movies[].year]";
// program output as a json string...
let output = jq_rs::run(query, &data.to_string()).unwrap();
// ... parse via serde
let parsed: Vec<i64> = serde_json::from_str(&output).unwrap();

assert_eq!(vec![2009, 2012, 2014, 2016, 2019], parsed);

Barely any of the options or flags available from the jq cli are exposed currently. Literally all that is provided is the ability to execute a jq program on a blob of json. Please pardon my dust as I sort out the details.

Linking to libjq

This crate requires access to libjq at build and/or runtime depending on the your choice.

When the bundled feature is enabled (off by default) libjq is provided and linked statically to your crate by jq-sys and jq-src. Using this feature requires having autotools and gcc in PATH in order for the to build to work.

Without the bundled feature, you will need to ensure your crate can link to libjq in order for the bindings to work.

You can choose to compile libjq yourself, or perhaps install it via your system's package manager. See the jq-sys building docs for details on how to share hints with the jq-sys crate on how to link.

Changelog

v0.4.1 (2019-08-17)

Additions

  • Implements std::error::Error + Send + 'static for jq_rs::Error to better integrate with popular error handling crate error-chain and others (#22).

v0.4.0 (2019-07-06)

Breaking Changes

  • Renamed crate from json-query to jq-rs (#12).
  • Adopted 2018 edition. The minimum supported rust version is now 1.32 (#14).
  • Output from jq programs now includes a trailing newline, just like the output from the jq binary (#6).
  • Added custom Error and Result types, returned from fallible functions/methods in this crate (#8).

v0.3.1 (2019-07-04)

Note: This is final release with the name json-query. Future releases will be published as jq-rs.

Bugfixes

  • Fixed issue where newlines in output were not being preserved correctly (#3).
  • Resolved a memory error which could cause a crash when running a jq program which could attempt to access missing fields on an object (#4).
  • Fixed some memory leaks which could occur during processing (#10).

v0.3.0 (2019-06-01)

  • Added json_query::compile(). Compile a jq program, then reuse it, running it against several inputs.

v0.2.1 (2019-06-01)

  • #1 Enabled bundled feature when building on docs.rs.

v0.2.0 (2019-02-18)

  • Updates jq-sys dep to v0.2.0 for better build controls.
  • Settles on 2015 edition style imports (for now).

Breaking Changes:

  • bundled feature is no longer enabled by default.

v0.1.1 (2019-01-14)

  • Added extra links to cargo manifest.
  • Added some basic docs.
  • Added a bundled feature to opt in or out of using the bundled source.

v0.1.0 (2019-01-13)

Initial release.

Dependencies

~1MB
~23K SLoC