1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
//! Base traits for different implementations of JSONPath execution engines.
//!
//! Defines the [`Engine`] trait that provides different ways of retrieving
//! query results from input bytes, as well as [`Compiler`] which provides
//! a standalone entry point for compiling a [`JsonPathQuery`] into an [`Engine`].
mod depth;
pub mod error;
#[cfg(feature = "head-skip")]
mod head_skipping;
pub mod main;
pub mod recursive;
#[cfg(feature = "tail-skip")]
mod tail_skipping;
pub use main::MainEngine as RsonpathEngine;
use self::error::EngineError;
use crate::input::Input;
use crate::query::{automaton::Automaton, error::CompilerError, JsonPathQuery};
use crate::result::QueryResult;
/// Trait for an engine that can run its query on a given input.
pub trait Engine {
/// Compute the [`QueryResult`] on given [`Input`].
///
/// # Errors
/// An appropriate [`EngineError`] is returned if the JSON input is malformed
/// and the syntax error is detected.
///
/// **Please note** that detecting malformed JSONs is not guaranteed.
/// Some glaring errors like mismatched braces or double quotes are raised,
/// but in general the result of an engine run on an invalid JSON is undefined.
/// It _is_ guaranteed that the computation terminates and does not panic.
fn run<I: Input, R: QueryResult>(&self, input: &I) -> Result<R, EngineError>;
}
/// Trait for an engine that can be created by compiling a [`JsonPathQuery`].
pub trait Compiler {
/// Concrete type of the [`Engines`](`Engine`) created,
/// parameterized with the lifetime of the input query.
type E<'q>: Engine + 'q;
/// Compile a [`JsonPathQuery`] into an [`Engine`].
///
/// # Errors
/// An appropriate [`CompilerError`] is returned if the compiler
/// cannot handle the query.
fn compile_query(query: &JsonPathQuery) -> Result<Self::E<'_>, CompilerError>;
/// Turn a compiled [`Automaton`] into an [`Engine`].
fn from_compiled_query(automaton: Automaton<'_>) -> Self::E<'_>;
}