jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! Store middleware hooks for `NodeGraphStore`.
//!
//! This module is intentionally headless-safe (no `fret-ui` dependency).

use crate::profile::ApplyPipelineError;
use crate::runtime::commit::NodeGraphPatch;
use crate::runtime::events::NodeGraphStoreSnapshot;
use jellyflow_core::ops::GraphTransaction;

pub trait NodeGraphStoreMiddleware: 'static {
    fn before_dispatch(
        &mut self,
        _snapshot: NodeGraphStoreSnapshot<'_>,
        _tx: &mut GraphTransaction,
    ) -> Result<(), ApplyPipelineError> {
        Ok(())
    }

    fn after_dispatch(&mut self, _snapshot: NodeGraphStoreSnapshot<'_>, _patch: &NodeGraphPatch) {}
}

#[derive(Debug, Default, Clone, Copy)]
pub struct NoopNodeGraphStoreMiddleware;

impl NodeGraphStoreMiddleware for NoopNodeGraphStoreMiddleware {}

#[derive(Debug, Clone)]
pub struct NodeGraphStoreMiddlewareChain<A, B> {
    pub first: A,
    pub second: B,
}

impl<A, B> NodeGraphStoreMiddlewareChain<A, B> {
    pub fn new(first: A, second: B) -> Self {
        Self { first, second }
    }
}

impl<A, B> NodeGraphStoreMiddleware for NodeGraphStoreMiddlewareChain<A, B>
where
    A: NodeGraphStoreMiddleware,
    B: NodeGraphStoreMiddleware,
{
    fn before_dispatch(
        &mut self,
        snapshot: NodeGraphStoreSnapshot<'_>,
        tx: &mut GraphTransaction,
    ) -> Result<(), ApplyPipelineError> {
        self.first.before_dispatch(snapshot, tx)?;
        self.second.before_dispatch(snapshot, tx)?;
        Ok(())
    }

    fn after_dispatch(&mut self, snapshot: NodeGraphStoreSnapshot<'_>, patch: &NodeGraphPatch) {
        self.first.after_dispatch(snapshot, patch);
        self.second.after_dispatch(snapshot, patch);
    }
}