Skip to main content

Engine

Struct Engine 

Source
pub struct Engine { /* private fields */ }
Expand description

Engine for evaluating Lemma rules.

Pure Rust implementation that evaluates Lemma specs directly from the AST. Uses pre-built execution plans that are self-contained and ready for evaluation.

The engine never performs network calls. External @... references must be pre-resolved before loading — either by including dependency sources in the source map or by calling resolve_registry_references separately (e.g. in a lemma fetch command).

Implementations§

Source§

impl Engine

Source

pub fn new() -> Self

Source

pub fn with_limits(limits: ResourceLimits) -> Self

Source

pub fn limits(&self) -> &ResourceLimits

Resource limits configured for this engine.

Source

pub fn load( &mut self, sources: impl IntoIterator<Item = (SourceType, impl Into<String>)>, ) -> Result<(), Errors>

Load Lemma sources in one planning pass. Pairs are (source_type, source_text).

Provenance is derived solely from SourceType: SourceType::Path and SourceType::Volatile are workspace-local; SourceType::Dependency tags repositories with that dependency id.

Source

pub fn list(&self) -> Vec<ResolvedRepository>

Every loaded repository in insertion order (workspace, embedded stdlib EMBEDDED_STDLIB_REPOSITORY, dependencies).

Returns listed spec rows (metadata only, no AST, no source text).

Source

pub fn show( &self, repository: Option<&str>, spec: &str, effective: Option<&DateTimeValue>, ) -> Result<Show, Error>

Spec interface and resolved temporal window at effective.

Show.data lists only data used by the spec’s rules. Lemma source text is Self::source.

Source

pub fn source( &self, repository: Option<&str>, spec: Option<&str>, effective: Option<&DateTimeValue>, ) -> Result<String, Error>

Formatted canonical Lemma source for a repository or one spec slice.

When spec is None, returns all specs in the repository sorted by name/effective. When spec is Some, effective selects the temporal slice (default: now).

Source

pub fn run( &self, repository: Option<&str>, spec: &str, effective: Option<&DateTimeValue>, data: HashMap<String, String>, rules: Option<&[String]>, explain: bool, ) -> Result<Response, Error>

Evaluate a spec.

Source

pub fn remove( &mut self, repository: Option<&str>, spec: &str, effective: Option<&DateTimeValue>, ) -> Result<(), Error>

Trait Implementations§

Source§

impl Default for Engine

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more