26 releases (8 breaking)

0.9.1 Apr 3, 2024
0.9.0 Mar 28, 2024
0.8.7 Feb 29, 2024
0.8.4 Oct 30, 2023
0.1.1 Jul 26, 2022

#89 in Parser implementations

Download history 9/week @ 2024-01-05 13/week @ 2024-01-12 88/week @ 2024-02-23 186/week @ 2024-03-01 32/week @ 2024-03-08 22/week @ 2024-03-15 92/week @ 2024-03-22 166/week @ 2024-03-29 31/week @ 2024-04-05

312 downloads per month

MIT license

785KB
16K SLoC

rsonpath – SIMD-powered JSONPath 🚀

Rust docs.rs Book

OpenSSF Best Practices OpenSSF Scorecard fuzzing

Crates.io GitHub Release Date GitHub last commit

MSRV License

Experimental JSONPath engine for querying massive streamed datasets.

The rsonpath crate provides a JSONPath parser and a query execution engine rq, which utilizes SIMD instructions to provide massive throughput improvements over conventional engines.

Benchmarks of rsonpath against a reference no-SIMD engine on the Pison dataset. NOTE: Scale is logarithmic! Main throughput plot

Usage

To run a JSONPath query on a file execute:

rq '$..a.b' ./file.json

If the file is omitted, the engine reads standard input. JSON can also be passed inline:

$ rq '$..a.b' --json '{"c":{"a":{"b":42}}}'
42

For details, consult rq --help or the rsonbook.

Results

The result of running a query is a sequence of matched values, delimited by newlines. Alternatively, passing --result count returns only the number of matches, which might be much faster. For other result modes consult the --help usage page.

Installation

See Releases for precompiled binaries for all first-class support targets.

cargo

Easiest way to install is via cargo.

$ cargo install rsonpath
...

Native CPU optimizations

If maximum speed is paramount, you should install rsonpath with native CPU instructions support. This will result in a binary that is not portable and might work incorrectly on any other machine, but will squeeze out every last bit of throughput.

To do this, run the following cargo install variant:

$ RUSTFLAGS="-C target-cpu=native" cargo install rsonpath
...

Check out the relevant chapter in the rsonbook.

Query language

The project is actively developed and currently supports only a subset of the JSONPath query language. A query is a sequence of segments, each containing one or more selectors.

Supported segments

Segment Syntax Supported Since Tracking Issue
Child segment (single) [<selector>] ✔️ v0.1.0
Child segment (multiple) [<selector1>,...,<selectorN>]
Descendant segment (single) ..[<selector>] ✔️ v0.1.0
Descendant segment (multiple) ..[<selector1>,...,<selectorN>]

Supported selectors

Selector Syntax Supported Since Tracking Issue
Root $ ✔️ v0.1.0
Name .<member>, [<member>] ✔️ v0.1.0
Wildcard .*, ..*, [*] ✔️ v0.4.0
Index (array index) [<index>] ✔️ v0.5.0
Index (array index from end) [-<index>]
Array slice (forward, positive bounds) [<start>:<end>:<step>] ✔️ v0.9.0 #152
Array slice (forward, arbitrary bounds) [<start>:<end>:<step>]
Array slice (backward, arbitrary bounds) [<start>:<end>:-<step>]
Filters – existential tests [?<path>] #154
Filters – const atom comparisons [?<path> <binop> <atom>] #156
Filters – logical expressions &&, ||, !
Filters – nesting [?<expr>[?<expr>]...]
Filters – arbitrary comparisons [?<path> <binop> <path>]
Filters – function extensions [?func(<path>)]

Supported platforms

The crate is continuously built for all Tier 1 Rust targets, and tests are continuously ran for targets that can be ran with GitHub action images. SIMD is supported only on x86/x86_64 platforms.

Target triple nosimd build SIMD support Continuous testing Tracking issues
aarch64-unknown-linux-gnu ✔️ ✔️ #21, #115
i686-unknown-linux-gnu ✔️ ✔️ ✔️
x86_64-unknown-linux-gnu ✔️ ✔️ ✔️
x86_64-apple-darwin ✔️ ✔️ ✔️
i686-pc-windows-gnu ✔️ ✔️ ✔️
i686-pc-windows-msvc ✔️ ✔️ ✔️
x86_64-pc-windows-gnu ✔️ ✔️ ✔️
x86_64-pc-windows-msvc ✔️ ✔️ ✔️

SIMD support

SIMD support is enabled on a module-by-module basis. Generally, any CPU released in the past decade supports AVX2, which enables all available optimizations.

Older CPUs with SSE2 or higher get partial support. You can check what exactly is enabled with rq --version – check the SIMD support field:

$ rq --version
rq 0.9.1

Commit SHA:      c024e1bab89610455537b77aed249d2a05a81ed6
Features:        default,simd
Opt level:       3
Target triple:   x86_64-unknown-linux-gnu
Codegen flags:   link-arg=-fuse-ld=lld
SIMD support:    avx2;fast_quotes;fast_popcnt

The fast_quotes capability depends on the pclmulqdq instruction, and fast_popcnt on the popcnt instruction.

Caveats and limitations

JSONPath

Not all selectors are supported, see the support table above.

Duplicate keys

The engine assumes that every object in the input JSON has no duplicate keys. Behavior on duplicate keys is not guaranteed to be stable, but currently the engine will simply match the first such key.

$ rq '$.key' --json '{"key":"value","key":"other value"}'
"value"

Unicode

The engine does not parse unicode escape sequences in member names. This means that a key "a" is different from a key "\u0041", even though semantically they represent the same string. This is actually as-designed with respect to the current JSONPath spec. Parsing unicode sequences is costly, so the support for this was postponed in favour of high performance. This is tracked as #117.

Contributing

The gist is: fork, implement, make a PR back here. More details are in the CONTRIBUTING doc.

Build & test

The dev workflow utilizes just. Use the included Justfile. It will automatically install Rust for you using the rustup tool if it detects there is no Cargo in your environment.

$ just build
...
$ just test
...

Benchmarks

Benchmarks for rsonpath are located in a separate repository, included as a git submodule in this main repository.

Easiest way to run all the benchmarks is just bench. For details, look at the README in the submodule.

Background

We have a paper on rsonpath to be published at ASPLOS '24! You can read it here.

This project was conceived as my thesis. You can read it for details on the theoretical background on the engine and details of its implementation.

Dependencies

Showing direct dependencies, for full graph see below.

cargo tree --package rsonpath --edges normal --depth 1
rsonpath v0.9.1 (/home/mat/src/rsonpath/crates/rsonpath)
├── clap v4.5.4
├── color-eyre v0.6.3
├── eyre v0.6.12
├── log v0.4.21
├── rsonpath-lib v0.9.1 (/home/mat/src/rsonpath/crates/rsonpath-lib)
├── rsonpath-syntax v0.3.1 (/home/mat/src/rsonpath/crates/rsonpath-syntax)
└── simple_logger v4.3.3
[build-dependencies]
├── rustflags v0.1.5
└── vergen v8.3.1
    [build-dependencies]
cargo tree --package rsonpath-lib --edges normal --depth 1
rsonpath-lib v0.9.1 (/home/mat/src/rsonpath/crates/rsonpath-lib)
├── arbitrary v1.3.2
├── cfg-if v1.0.0
├── log v0.4.21
├── memmap2 v0.9.4
├── nom v7.1.3
├── rsonpath-syntax v0.3.1 (/home/mat/src/rsonpath/crates/rsonpath-syntax)
├── smallvec v1.13.2
├── static_assertions v1.1.0
├── thiserror v1.0.58
└── vector-map v1.0.1

Justification

  • clap – standard crate to provide the CLI.
  • color-eyre, eyre – more accessible error messages for the parser.
  • log, simple-logger – diagnostic logs during compilation and execution.
  • cfg-if – used to support SIMD and no-SIMD versions.
  • memmap2 – for fast reading of source files via a memory map instead of buffered copies.
  • nom – for parser implementation.
  • smallvec – crucial for small-stack performance.
  • static_assertions – additional reliability by some constant assumptions validated at compile time.
  • thiserror – idiomatic Error implementations.
  • vector_map – used in the query compiler for measurably better performance.

Full dependency tree

cargo tree --package rsonpath --edges normal
rsonpath v0.9.1 (/home/mat/src/rsonpath/crates/rsonpath)
├── clap v4.5.4
│   ├── clap_builder v4.5.2
│   │   ├── anstream v0.6.13
│   │   │   ├── anstyle v1.0.6
│   │   │   ├── anstyle-parse v0.2.3
│   │   │   │   └── utf8parse v0.2.1
│   │   │   ├── anstyle-query v1.0.2
│   │   │   │   └── windows-sys v0.52.0
│   │   │   │       └── windows-targets v0.52.4
│   │   │   │           ├── windows_aarch64_gnullvm v0.52.4
│   │   │   │           ├── windows_aarch64_msvc v0.52.4
│   │   │   │           ├── windows_i686_gnu v0.52.4
│   │   │   │           ├── windows_i686_msvc v0.52.4
│   │   │   │           ├── windows_x86_64_gnu v0.52.4
│   │   │   │           ├── windows_x86_64_gnullvm v0.52.4
│   │   │   │           └── windows_x86_64_msvc v0.52.4
│   │   │   ├── anstyle-wincon v3.0.2
│   │   │   │   ├── anstyle v1.0.6
│   │   │   │   └── windows-sys v0.52.0 (*)
│   │   │   ├── colorchoice v1.0.0
│   │   │   └── utf8parse v0.2.1
│   │   ├── anstyle v1.0.6
│   │   ├── clap_lex v0.7.0
│   │   ├── strsim v0.11.1
│   │   └── terminal_size v0.3.0
│   │       ├── rustix v0.38.32
│   │       │   ├── bitflags v2.5.0
│   │       │   ├── errno v0.3.8
│   │       │   │   ├── libc v0.2.153
│   │       │   │   └── windows-sys v0.52.0 (*)
│   │       │   ├── libc v0.2.153
│   │       │   ├── linux-raw-sys v0.4.13
│   │       │   └── windows-sys v0.52.0 (*)
│   │       └── windows-sys v0.48.0
│   │           └── windows-targets v0.48.5
│   │               ├── windows_aarch64_gnullvm v0.48.5
│   │               ├── windows_aarch64_msvc v0.48.5
│   │               ├── windows_i686_gnu v0.48.5
│   │               ├── windows_i686_msvc v0.48.5
│   │               ├── windows_x86_64_gnu v0.48.5
│   │               ├── windows_x86_64_gnullvm v0.48.5
│   │               └── windows_x86_64_msvc v0.48.5
│   └── clap_derive v4.5.4 (proc-macro)
│       ├── heck v0.5.0
│       ├── proc-macro2 v1.0.79
│       │   └── unicode-ident v1.0.12
│       ├── quote v1.0.35
│       │   └── proc-macro2 v1.0.79 (*)
│       └── syn v2.0.58
│           ├── proc-macro2 v1.0.79 (*)
│           ├── quote v1.0.35 (*)
│           └── unicode-ident v1.0.12
├── color-eyre v0.6.3
│   ├── backtrace v0.3.71
│   │   ├── addr2line v0.21.0
│   │   │   └── gimli v0.28.1
│   │   ├── cfg-if v1.0.0
│   │   ├── libc v0.2.153
│   │   ├── miniz_oxide v0.7.2
│   │   │   └── adler v1.0.2
│   │   ├── object v0.32.2
│   │   │   └── memchr v2.7.2
│   │   └── rustc-demangle v0.1.23
│   │   [build-dependencies]
│   │   └── cc v1.0.90
│   ├── eyre v0.6.12
│   │   ├── indenter v0.3.3
│   │   └── once_cell v1.19.0
│   ├── indenter v0.3.3
│   ├── once_cell v1.19.0
│   └── owo-colors v3.5.0
├── eyre v0.6.12 (*)
├── log v0.4.21
├── rsonpath-lib v0.9.1 (/home/mat/src/rsonpath/crates/rsonpath-lib)
│   ├── cfg-if v1.0.0
│   ├── log v0.4.21
│   ├── memmap2 v0.9.4
│   │   └── libc v0.2.153
│   ├── nom v7.1.3
│   │   ├── memchr v2.7.2
│   │   └── minimal-lexical v0.2.1
│   ├── rsonpath-syntax v0.3.1 (/home/mat/src/rsonpath/crates/rsonpath-syntax)
│   │   ├── nom v7.1.3 (*)
│   │   ├── owo-colors v4.0.0
│   │   ├── thiserror v1.0.58
│   │   │   └── thiserror-impl v1.0.58 (proc-macro)
│   │   │       ├── proc-macro2 v1.0.79 (*)
│   │   │       ├── quote v1.0.35 (*)
│   │   │       └── syn v2.0.58 (*)
│   │   └── unicode-width v0.1.11
│   ├── smallvec v1.13.2
│   ├── static_assertions v1.1.0
│   ├── thiserror v1.0.58 (*)
│   └── vector-map v1.0.1
│       ├── contracts v0.4.0 (proc-macro)
│       │   ├── proc-macro2 v1.0.79 (*)
│       │   ├── quote v1.0.35 (*)
│       │   └── syn v1.0.109
│       │       ├── proc-macro2 v1.0.79 (*)
│       │       ├── quote v1.0.35 (*)
│       │       └── unicode-ident v1.0.12
│       └── rand v0.7.3
│           ├── getrandom v0.1.16
│           │   ├── cfg-if v1.0.0
│           │   ├── libc v0.2.153
│           │   └── wasi v0.9.0+wasi-snapshot-preview1
│           ├── libc v0.2.153
│           ├── rand_chacha v0.2.2
│           │   ├── ppv-lite86 v0.2.17
│           │   └── rand_core v0.5.1
│           │       └── getrandom v0.1.16 (*)
│           ├── rand_core v0.5.1 (*)
│           └── rand_hc v0.2.0
│               └── rand_core v0.5.1 (*)
├── rsonpath-syntax v0.3.1 (/home/mat/src/rsonpath/crates/rsonpath-syntax) (*)
└── simple_logger v4.3.3
    ├── colored v2.1.0
    │   ├── lazy_static v1.4.0
    │   └── windows-sys v0.48.0 (*)
    ├── log v0.4.21
    ├── time v0.3.34
    │   ├── deranged v0.3.11
    │   │   └── powerfmt v0.2.0
    │   ├── itoa v1.0.11
    │   ├── libc v0.2.153
    │   ├── num-conv v0.1.0
    │   ├── num_threads v0.1.7
    │   │   └── libc v0.2.153
    │   ├── powerfmt v0.2.0
    │   ├── time-core v0.1.2
    │   └── time-macros v0.2.17 (proc-macro)
    │       ├── num-conv v0.1.0
    │       └── time-core v0.1.2
    └── windows-sys v0.48.0 (*)
[build-dependencies]
├── rustflags v0.1.5
└── vergen v8.3.1
    ├── anyhow v1.0.81
    ├── cargo_metadata v0.18.1
    │   ├── camino v1.1.6
    │   │   └── serde v1.0.197
    │   │       └── serde_derive v1.0.197 (proc-macro)
    │   │           ├── proc-macro2 v1.0.79 (*)
    │   │           ├── quote v1.0.35 (*)
    │   │           └── syn v2.0.58 (*)
    │   ├── cargo-platform v0.1.8
    │   │   └── serde v1.0.197 (*)
    │   ├── semver v1.0.22
    │   │   └── serde v1.0.197 (*)
    │   ├── serde v1.0.197 (*)
    │   ├── serde_json v1.0.115
    │   │   ├── itoa v1.0.11
    │   │   ├── ryu v1.0.17
    │   │   └── serde v1.0.197 (*)
    │   └── thiserror v1.0.58 (*)
    ├── cfg-if v1.0.0
    ├── regex v1.10.4
    │   ├── aho-corasick v1.1.3
    │   │   └── memchr v2.7.2
    │   ├── memchr v2.7.2
    │   ├── regex-automata v0.4.6
    │   │   ├── aho-corasick v1.1.3 (*)
    │   │   ├── memchr v2.7.2
    │   │   └── regex-syntax v0.8.3
    │   └── regex-syntax v0.8.3
    ├── rustc_version v0.4.0
    │   └── semver v1.0.22 (*)
    └── time v0.3.34
        ├── deranged v0.3.11 (*)
        ├── itoa v1.0.11
        ├── libc v0.2.153
        ├── num-conv v0.1.0
        ├── num_threads v0.1.7 (*)
        ├── powerfmt v0.2.0
        └── time-core v0.1.2
    [build-dependencies]
    └── rustversion v1.0.14 (proc-macro)

Dependencies

~8–21MB
~273K SLoC