runx-core 0.6.19

Pure Rust parity kernel for runx state-machine and policy decisions.
Documentation
use std::collections::BTreeMap;

use super::super::types::{
    SequentialGraphState, SequentialGraphStepDefinition, SequentialGraphStepState,
};

#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct SequentialGraphStepIndex {
    positions: BTreeMap<String, usize>,
    context_positions: Vec<Vec<ContextSourcePosition>>,
}

#[derive(Clone, Debug, PartialEq, Eq)]
pub(super) struct ContextSourcePosition {
    pub(super) step_id: String,
    pub(super) position: Option<usize>,
}

impl SequentialGraphStepIndex {
    #[must_use]
    pub fn new(steps: &[SequentialGraphStepDefinition]) -> Self {
        let positions = steps
            .iter()
            .enumerate()
            .map(|(index, step)| (step.id.clone(), index))
            .collect::<BTreeMap<_, _>>();
        let context_positions = steps
            .iter()
            .map(|step| {
                step.context_from
                    .as_deref()
                    .unwrap_or(&[])
                    .iter()
                    .map(|step_id| ContextSourcePosition {
                        step_id: step_id.clone(),
                        position: positions.get(step_id).copied(),
                    })
                    .collect()
            })
            .collect();
        Self {
            positions,
            context_positions,
        }
    }

    pub(super) fn state_for<'a>(
        &self,
        state: &'a SequentialGraphState,
        step_id: &str,
    ) -> Option<&'a SequentialGraphStepState> {
        self.positions
            .get(step_id)
            .and_then(|index| state.steps.get(*index))
            .filter(|step| step.step_id == step_id)
    }

    pub(super) fn state_at<'a>(
        &self,
        state: &'a SequentialGraphState,
        position: usize,
        step_id: &str,
    ) -> Option<&'a SequentialGraphStepState> {
        state
            .steps
            .get(position)
            .filter(|step| step.step_id == step_id)
            .or_else(|| self.state_for(state, step_id))
    }

    pub(super) fn context_sources_at(
        &self,
        definition_index: usize,
    ) -> Option<&[ContextSourcePosition]> {
        self.context_positions
            .get(definition_index)
            .map(Vec::as_slice)
    }
}

#[must_use]
pub fn create_sequential_graph_step_index(
    steps: &[SequentialGraphStepDefinition],
) -> SequentialGraphStepIndex {
    SequentialGraphStepIndex::new(steps)
}