Plan

Struct Plan 

Source
pub struct Plan {
    pub nodes: Vec<Node>,
    pub constants: BTreeMap<OpId, Core>,
    pub root: OpId,
    pub state: OpId,
    pub session: OpId,
    pub presence: OpId,
    pub signals: Vec<(Arc<str>, OpId)>,
}
Expand description

The view as a dataflow.

Nodes are in dependency order — every input’s index is less than its consumer’s — so the engine is one forward pass with no scheduling.

Fields§

§nodes: Vec<Node>§constants: BTreeMap<OpId, Core>

Constants, in the same index space as nodes, for the ones whose op is Op::Const.

§root: OpId§state: OpId§session: OpId§presence: OpId§signals: Vec<(Arc<str>, OpId)>

The declared signals that survived as nodes, so a report can use the program’s own names.

Implementations§

Source§

impl Plan

Source

pub fn counts(&self) -> (usize, usize)

How many operators are maintained by delta, and how many are recomputed.

Sources and constants are neither: the accumulator, the session and a string literal are inputs to the dataflow rather than steps in it, and counting them as “recomputed” would make every program look worse than it is by a fixed amount.

Source

pub fn shared(&self) -> Vec<OpId>

The nodes that do not read the session: §5.3’s shared dataflow.

Source

pub fn compile(placed: &Placed) -> Plan

Compile the view of a sliced program, and fuse it.

Everything downstream — the engine, the read models, both reports — reads the fused plan, so there is one plan a program has rather than two that could disagree. Plan::unfused is what the differential gate compares against.

Source

pub fn unfused(placed: &Placed) -> Plan

The plan as the decomposition produced it, before crate::fuse rewrites it.

Works from the graph rather than from crate::split::Roles::view, for the reason 23 built the graph in the first place: the sliced expression has already lost which signal each part came from, and a plan whose nodes cannot be named is a plan no report can explain.

Source

pub fn dependencies(&self, i: OpId) -> Vec<OpId>

Every node an operator reads, including the ones its per-element function captured.

Source

pub fn names_of(&self, i: OpId) -> Vec<&str>

The names this plan gives one operator, if any — a declared signal is a name a developer wrote, and a report that can use it should.

Trait Implementations§

Source§

impl Clone for Plan

Source§

fn clone(&self) -> Plan

Returns a duplicate 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 Plan

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Plan

§

impl RefUnwindSafe for Plan

§

impl Send for Plan

§

impl Sync for Plan

§

impl Unpin for Plan

§

impl UnwindSafe for Plan

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

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 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.