Struct rtlola_hir::hir::RtLolaHir

source ·
pub struct RtLolaHir<M: HirMode> { /* private fields */ }
Expand description

This struct constitutes the Mid-Level Intermediate Representation (MIR) of an RTLola specification.

The RtLolaHir is specifically designed to allow for convenient manipulation and analysis. Hence, it is perfect for working on the specification rather than work with it.

Most Notable Structs and Enums

  • RtLolaMir is the root data structure representing the specification.
  • Output represents a single output stream. The data structure is enriched with information regarding streams accessing it or accessed by it and much more. For input streams confer Input.
  • StreamReference used for referencing streams within the Mir.
  • Expression represents an expression. It contains its ExpressionKind and its type. The latter contains all information specific to a certain kind of expression such as sub-expressions of operators.

Type-State

The Hir follows a type-state pattern. To this end, it has a type parameter, its HirMode. The Hir starts in the BaseMode and progresses through different stages until reaching CompleteMode.
Each stage constitutes another level of refinement and adds functionality. The functionality can be accesses by importing the respective trait and requiring the mode of the Hir to implement the trait. The following traits exist.

Progression through different stages is managed by the HirStage trait, in particular HirStage::progress.

See Also

Implementations§

source§

impl<M: HirMode + TypedTrait> RtLolaHir<M>

source

pub fn select(&self) -> StreamSelector<'_, M, All>

Creates a StreamSelector to query the HIR for different classes of output streams.

source§

impl<M: HirMode> RtLolaHir<M>

source

pub fn inputs(&self) -> impl Iterator<Item = &Input>

Provides access to an iterator over all input streams.

source

pub fn outputs(&self) -> impl Iterator<Item = &Output>

Provides access to an iterator over all output streams.

source

pub fn triggers(&self) -> impl Iterator<Item = &Trigger>

Provides access to an iterator over all triggers.

source

pub fn num_inputs(&self) -> usize

Yields the number of input streams present in the Hir. Not necessarily equal to the number of input streams in the specification.

source

pub fn num_outputs(&self) -> usize

Yields the number of output streams present in the Hir. Not necessarily equal to the number of output streams in the specification.

source

pub fn num_triggers(&self) -> usize

Yields the number of triggers present in the Hir. Not necessarily equal to the number of triggers in the specification.

source

pub fn all_streams(&self) -> impl Iterator<Item = StreamReference> + '_

Provides access to an iterator over all streams, i.e., inputs, outputs, and triggers.

source

pub fn get_input_with_name(&self, name: &str) -> Option<&Input>

Retrieves an input stream based on its name. Fails if no such input stream exists.

source

pub fn get_output_with_name(&self, name: &str) -> Option<&Output>

Retrieves an output stream based on its name. Fails if no such output stream exists.

source

pub fn output(&self, sref: StreamReference) -> Option<&Output>

Retrieves an output stream based on a stream reference. Fails if no such stream exists or sref is a StreamReference::In.

source

pub fn input(&self, sref: StreamReference) -> Option<&Input>

Retrieves an input stream based on a stream reference. Fails if no such stream exists or sref is a StreamReference::Out.

source

pub fn window_refs(&self) -> Vec<WindowReference>

Provides access to a collection of references for all windows occurring in the Hir.

source

pub fn sliding_windows(&self) -> Vec<&Window<SlidingAggr>>

Provides access to a collection of references for all sliding windows occurring in the Hir.

source

pub fn discrete_windows(&self) -> Vec<&Window<DiscreteAggr>>

Provides access to a collection of references for all discrete windows occurring in the Hir.

source

pub fn expression(&self, id: ExprId) -> &Expression

Retrieves an expression for a given expression id.

Panic

Panics if the expression does not exist.

source

pub fn func_declaration(&self, func_name: &str) -> &FuncDecl

Retrieves a function declaration for a given function name.

Panic

Panics if the declaration does not exist.

source

pub fn single_sliding(&self, window: WindowReference) -> Window<SlidingAggr>

Retrieves a single sliding window for a given reference.

Panic

Panics if no such window exists.

source

pub fn single_discrete(&self, window: WindowReference) -> Window<DiscreteAggr>

Retrieves a single discrete window for a given reference.

Panic

Panics if no such window exists.

source

pub fn spawn(&self, sr: StreamReference) -> Option<SpawnDef<'_>>

Retrieves the spawn definition of a particular output stream or trigger or None for input references.

source

pub fn spawn_cond(&self, sr: StreamReference) -> Option<&Expression>

Retrieves the spawn condition of a particular output stream or None for input and trigger references. If all parts of the SpawnDef are needed, see RtLolaHir::spawn

source

pub fn spawn_expr(&self, sr: StreamReference) -> Option<&Expression>

Retrieves the spawn expresion of a particular output stream or None for input and trigger references. If all parts of the SpawnDef are needed, see RtLolaHir::spawn

source

pub fn spawn_pacing(&self, sr: StreamReference) -> Option<&AnnotatedPacingType>

Retrieves the spawn pacing of a particular output stream or None for input and trigger references. If all parts of the SpawnDef are needed, see RtLolaHir::spawn

source

pub fn eval(&self, sr: StreamReference) -> Option<EvalDef<'_>>

Retrieves the eval definition of a particular output stream or trigger or None for input references.

source

pub fn eval_cond(&self, sr: StreamReference) -> Option<&Expression>

Retrieves the eval condition of a particular output stream or None for input and trigger references. If all parts of the EvalDef are needed, see RtLolaHir::eval

source

pub fn eval_expr(&self, sr: StreamReference) -> Option<&Expression>

Retrieves the eval expression of a particular output stream or trigger and None for input references. If all parts of the EvalDef are needed, see RtLolaHir::eval

source

pub fn eval_pacing(&self, sr: StreamReference) -> Option<&AnnotatedPacingType>

Retrieves the eval pacing of a particular output stream or trigger None for input references. If all parts of the EvalDef are needed, see RtLolaHir::eval

source

pub fn close(&self, sr: StreamReference) -> Option<CloseDef<'_>>

Retrieves the expressions representing the close definition of a particular output stream or None for input and trigger references.

source

pub fn close_cond(&self, sr: StreamReference) -> Option<&Expression>

Retrieves the expression representing the close condition of a particular output stream or None for input and trigger references. If all parts of the CloseDef are needed, see RtLolaHir::close

source

pub fn close_pacing(&self, sr: StreamReference) -> Option<&AnnotatedPacingType>

Retrieves the close pacing of a particular output stream or None for input and trigger references. If all parts of the CloseDef are needed, see RtLolaHir::close

source

pub fn names(&self) -> HashMap<StreamReference, &str>

Generates a map from a StreamReference to the name of the corresponding stream.

source§

impl RtLolaHir<BaseMode>

source

pub fn check_types(self) -> Result<RtLolaHir<TypedMode>, RtLolaError>

Returns the RtLolaHir with the type information for each stream and expression

The function returns the RtLolaHir after the type analysis. The new mode implements the same functionality as the BaseMode and additionally holds for each stream and expression its StreamType. The function moves the information of the previous mode to the new one and therefore destroys the current mode.

Fails

The function fails if the type checker finds a type error in the specification and returns a string with a detailed description.

source§

impl RtLolaHir<TypedMode>

source

pub fn analyze_dependencies(self) -> Result<RtLolaHir<DepAnaMode>, RtLolaError>

Returns the RtLolaHir with additional information about the dependencies between streams

The function returns the RtLolaHir after the dependency analysis. The new mode implements the same functionality as the TypedMode and additionally contains the dependencies between streams in the specification. The function moves the information of the previous mode to the new one and therefore destroys the current mode.

Fails

The function returns a RtLolaError if the specification is not well-formed.

source§

impl RtLolaHir<DepAnaMode>

source

pub fn determine_evaluation_order(
    self
) -> Result<RtLolaHir<OrderedMode>, RtLolaError>

Returns the RtLolaHir with the spawn and evaluation layer of each stream

Fails

The function fails if the evaluation order cannot be determined.

source§

impl RtLolaHir<OrderedMode>

source

pub fn determine_memory_bounds(
    self
) -> Result<RtLolaHir<MemBoundMode>, RtLolaError>

Returns the RtLolaHir with the memory-bound for each stream

Fails

The function fails if the memory cannot be determined.

source§

impl RtLolaHir<MemBoundMode>

source

pub fn finalize(self) -> Result<RtLolaHir<CompleteMode>, RtLolaError>

Returns the RtLolaHir in the last mode

The function returns the RtLolaHir in the CompleteMode. This mode indicates that the RtLolaHir has passed all analyzes and now contains all information. The function moves the information of the previous mode to the new one and therefore destroys the current mode.

Trait Implementations§

source§

impl<M: Clone + HirMode> Clone for RtLolaHir<M>

source§

fn clone(&self) -> RtLolaHir<M>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<M: Debug + HirMode> Debug for RtLolaHir<M>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl HirStage for RtLolaHir<BaseMode>

§

type NextStage = TypedMode

Defines the next mode that is produced by the progress function
source§

fn progress(self) -> Result<RtLolaHir<Self::NextStage>, RtLolaError>

Returns an RtLolaHir with additional functionality
source§

impl HirStage for RtLolaHir<DepAnaMode>

§

type NextStage = OrderedMode

Defines the next mode that is produced by the progress function
source§

fn progress(self) -> Result<RtLolaHir<Self::NextStage>, RtLolaError>

Returns an RtLolaHir with additional functionality
source§

impl HirStage for RtLolaHir<MemBoundMode>

§

type NextStage = CompleteMode

Defines the next mode that is produced by the progress function
source§

fn progress(self) -> Result<RtLolaHir<Self::NextStage>, RtLolaError>

Returns an RtLolaHir with additional functionality
source§

impl HirStage for RtLolaHir<OrderedMode>

§

type NextStage = MemBoundMode

Defines the next mode that is produced by the progress function
source§

fn progress(self) -> Result<RtLolaHir<Self::NextStage>, RtLolaError>

Returns an RtLolaHir with additional functionality
source§

impl HirStage for RtLolaHir<TypedMode>

§

type NextStage = DepAnaMode

Defines the next mode that is produced by the progress function
source§

fn progress(self) -> Result<RtLolaHir<Self::NextStage>, RtLolaError>

Returns an RtLolaHir with additional functionality

Auto Trait Implementations§

§

impl<M> RefUnwindSafe for RtLolaHir<M>where
    M: RefUnwindSafe,

§

impl<M> Send for RtLolaHir<M>where
    M: Send,

§

impl<M> Sync for RtLolaHir<M>where
    M: Sync,

§

impl<M> Unpin for RtLolaHir<M>where
    M: Unpin,

§

impl<M> UnwindSafe for RtLolaHir<M>where
    M: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere
    T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.