pub struct RtLolaMir {
    pub inputs: Vec<InputStream>,
    pub outputs: Vec<OutputStream>,
    pub time_driven: Vec<TimeDrivenStream>,
    pub event_driven: Vec<EventDrivenStream>,
    pub discrete_windows: Vec<DiscreteWindow>,
    pub sliding_windows: Vec<SlidingWindow>,
    pub triggers: Vec<Trigger>,
}
Expand description

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

The RtLolaMir is specifically designed to allow convenient navigation and access to data. Hence, it is perfect for working with the specification rather than work on it.

Most Notable Structs and Enums

  • Stream is a trait offering several convenient access methods for everything constituting a stream.
  • OutputStream 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 InputStream.
  • StreamReference used for referencing streams within the Mir.
  • Spawn and Close contain all information regarding the parametrization, spawning and closing behavior of streams.
  • Eval contains the information regarding the evaluation condition and the expression of the stream. The Expression represents an computational evaluation. 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.

See Also

Fields§

§inputs: Vec<InputStream>

Contains all input streams.

§outputs: Vec<OutputStream>

Contains all output streams including all triggers. They only contain the information relevant for every single kind of output stream. Refer to RtLolaMir::time_driven, RtLolaMir::event_driven, and RtLolaMir::triggers for more information.

§time_driven: Vec<TimeDrivenStream>

References and pacing information of all time-driven streams.

§event_driven: Vec<EventDrivenStream>

References and pacing information of all event-driven streams.

§discrete_windows: Vec<DiscreteWindow>

A collection of all discrete windows.

§sliding_windows: Vec<SlidingWindow>

A collection of all sliding windows.

§triggers: Vec<Trigger>

References and message information of all triggers.

Implementations§

source§

impl RtLolaMir

source

pub fn from_hir(hir: RtLolaHir<CompleteMode>) -> RtLolaMir

Generates an Mir from a complete Hir.

source§

impl RtLolaMir

source

pub fn input_refs(&self) -> impl Iterator<Item = InputReference>

Returns a collection containing a reference to each input stream in the specification.

source

pub fn output_refs(&self) -> impl Iterator<Item = OutputReference>

Returns a collection containing a reference to each output stream in the specification.

source

pub fn input_mut(&mut self, reference: StreamReference) -> &mut InputStream

Provides mutable access to an input stream.

Panic

Panics if reference is a StreamReference::Out.

source

pub fn input(&self, reference: StreamReference) -> &InputStream

Provides immutable access to an input stream.

Panic

Panics if reference is a StreamReference::Out.

source

pub fn output_mut(&mut self, reference: StreamReference) -> &mut OutputStream

Provides mutable access to an output stream.

Panic

Panics if reference is a StreamReference::In.

source

pub fn output(&self, reference: StreamReference) -> &OutputStream

Provides immutable access to an output stream.

Panic

Panics if reference is a StreamReference::In.

source

pub fn stream(&self, reference: StreamReference) -> &dyn Stream

Provides immutable access to a stream.

source

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

Produces an iterator over all stream references.

source

pub fn all_triggers(&self) -> Vec<&OutputStream>

Provides a collection of all output streams representing a trigger.

source

pub fn all_event_driven(&self) -> Vec<&OutputStream>

Provides a collection of all event-driven output streams.

source

pub fn has_time_driven_features(&self) -> bool

Return true if the specification contains any time-driven features. This includes time-driven streams and time-driven spawn conditions.

source

pub fn all_time_driven(&self) -> Vec<&OutputStream>

Provides a collection of all time-driven output streams.

source

pub fn get_ac(&self, sref: StreamReference) -> Option<&ActivationCondition>

Provides the activation contion of a event-driven stream and none if the stream is time-driven

source

pub fn discrete_window(&self, window: WindowReference) -> &DiscreteWindow

Provides immutable access to a discrete window.

Panic

Panics if window is a WindowReference::Sliding.

source

pub fn sliding_window(&self, window: WindowReference) -> &SlidingWindow

Provides immutable access to a sliding window.

Panic

Panics if window is a WindowReference::Discrete.

source

pub fn window(&self, window: WindowReference) -> &dyn Window

Provides immutable access to a window.

source

pub fn get_event_driven_layers(&self) -> Vec<Vec<Task>>

Provides a representation for the evaluation layers of all event-driven output streams. Each element of the outer Vec represents a layer, each element of the inner Vec an output stream in the layer.

source

pub fn compute_schedule(&self) -> Result<Schedule, String>

Attempts to compute a schedule for all time-driven streams.

Fail

Fails if the resulting schedule would require at least 10^7 deadlines.

source

pub fn display<'a, T>(&'a self, target: &'a T) -> RtLolaMirPrinter<'a, T>

Creates a new RtLolaMirPrinter for the Mir type T. It implements the Display Trait for type T.

source

pub fn dependency_graph(&self) -> DependencyGraph<'_>

Represents the specification as a dependency graph

Trait Implementations§

source§

impl Clone for RtLolaMir

source§

fn clone(&self) -> RtLolaMir

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 Debug for RtLolaMir

source§

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

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

impl<'de> Deserialize<'de> for RtLolaMir

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for RtLolaMir

source§

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

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

impl PartialEq<RtLolaMir> for RtLolaMir

source§

fn eq(&self, other: &RtLolaMir) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for RtLolaMir

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for RtLolaMir

Auto Trait Implementations§

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> ToString for Twhere
    T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
source§

impl<T> DeserializeOwned for Twhere
    T: for<'de> Deserialize<'de>,