use super::super::checkpointer::Checkpointer;
use super::super::edge::{ConditionalEdge, GraphEdge};
use super::super::errors::{GraphError, GraphResult};
use super::super::node::GraphNode;
use super::super::state::{Reducer, StateSchema};
use super::super::subgraph::SubgraphNode;
use super::types::{DynamicTask, GraphExecution};
use std::collections::HashMap;
use std::sync::Arc;
use tokio::sync::Mutex;
use tokio::sync::RwLock;
#[allow(clippy::type_complexity)]
pub struct CompiledGraph<S: StateSchema> {
pub(super) nodes: HashMap<String, Arc<dyn GraphNode<S>>>,
pub(super) edges: Vec<GraphEdge>,
pub(super) entry_point: String,
pub(super) default_reducer: Arc<dyn Reducer<S>>,
pub(super) conditional_routers: HashMap<String, Arc<dyn ConditionalEdge<S>>>,
pub(super) checkpointer: Option<Arc<Mutex<dyn Checkpointer<S> + Send>>>,
pub(super) recursion_limit: usize,
pub(super) interrupt_before: Vec<String>,
pub(super) interrupt_after: Vec<String>,
pub(super) runtime_nodes: Arc<RwLock<HashMap<String, Arc<dyn GraphNode<S>>>>>,
pub(super) runtime_edges: Arc<RwLock<Vec<GraphEdge>>>,
pub(super) runtime_conditional_routers:
Arc<RwLock<HashMap<String, Arc<dyn ConditionalEdge<S>>>>>,
pub(super) task_inbox: Arc<Mutex<Vec<DynamicTask>>>,
}
impl<S: StateSchema> std::fmt::Debug for CompiledGraph<S> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("CompiledGraph")
.field("nodes", &self.nodes.keys().collect::<Vec<_>>())
.field("edges", &self.edges)
.field("entry_point", &self.entry_point)
.field("recursion_limit", &self.recursion_limit)
.field("interrupt_before", &self.interrupt_before)
.field("interrupt_after", &self.interrupt_after)
.finish()
}
}
impl<S: StateSchema> CompiledGraph<S> {
pub(crate) fn new(
nodes: HashMap<String, Arc<dyn GraphNode<S>>>,
edges: Vec<GraphEdge>,
entry_point: String,
default_reducer: Arc<dyn Reducer<S>>,
) -> Self {
Self {
nodes,
edges,
entry_point,
default_reducer,
conditional_routers: HashMap::new(),
checkpointer: None,
recursion_limit: 25,
interrupt_before: Vec::new(),
interrupt_after: Vec::new(),
runtime_nodes: Arc::new(RwLock::new(HashMap::new())),
runtime_edges: Arc::new(RwLock::new(Vec::new())),
runtime_conditional_routers: Arc::new(RwLock::new(HashMap::new())),
task_inbox: Arc::new(Mutex::new(Vec::new())),
}
}
pub(crate) fn add_router(&mut self, name: String, router: Arc<dyn ConditionalEdge<S>>) {
self.conditional_routers.insert(name, router);
}
pub fn with_checkpointer<C: Checkpointer<S> + 'static>(mut self, checkpointer: C) -> Self {
self.checkpointer = Some(Arc::new(Mutex::new(checkpointer)));
self
}
pub fn with_recursion_limit(mut self, limit: usize) -> Self {
self.recursion_limit = limit;
self
}
pub fn with_interrupt_before(mut self, nodes: Vec<String>) -> Self {
self.interrupt_before = nodes;
self
}
pub fn with_interrupt_after(mut self, nodes: Vec<String>) -> Self {
self.interrupt_after = nodes;
self
}
pub fn node_names(&self) -> Vec<String> {
self.nodes.keys().cloned().collect()
}
pub fn get_edges(&self) -> &[GraphEdge] {
&self.edges
}
pub fn entry_point(&self) -> &str {
&self.entry_point
}
pub fn recursion_limit(&self) -> usize {
self.recursion_limit
}
pub fn interrupt_before(&self) -> &[String] {
&self.interrupt_before
}
pub fn interrupt_after(&self) -> &[String] {
&self.interrupt_after
}
pub async fn last_checkpoint_state(&self) -> Option<S> {
if let Some(ref cp) = self.checkpointer {
let guard = cp.lock().await;
let ids = guard.list().await.ok()?;
let last_id = ids.last()?.clone();
guard.load(&last_id).await.ok()
} else {
None
}
}
pub async fn create_resume_execution(
&self,
interrupted_node: &str,
) -> Option<GraphExecution<S>> {
let state = self.last_checkpoint_state().await?;
let current = interrupted_node
.strip_prefix("after_")
.unwrap_or(interrupted_node);
Some(GraphExecution {
state,
current_node: current.to_string(),
steps: Vec::new(),
recursion_count: 0,
interrupted_at: interrupted_node.to_string(),
})
}
pub(super) async fn get_node(&self, name: &str) -> GraphResult<Arc<dyn GraphNode<S>>> {
if let Some(node) = self.nodes.get(name) {
return Ok(node.clone());
}
if let Some(node) = self.runtime_nodes.read().await.get(name) {
return Ok(node.clone());
}
Err(GraphError::ExecutionError(format!(
"Node '{}' not found",
name
)))
}
pub fn submit_task(&self, description: String) {
if let Ok(mut inbox) = self.task_inbox.try_lock() {
inbox.push(DynamicTask {
id: uuid::Uuid::new_v4().to_string(),
description,
});
}
}
pub async fn inject_node(&self, name: &str, node: Arc<dyn GraphNode<S>>) -> GraphResult<()> {
self.runtime_nodes
.write()
.await
.insert(name.to_string(), node);
Ok(())
}
pub async fn inject_edge(&self, source: &str, target: &str) -> GraphResult<()> {
self.runtime_edges
.write()
.await
.push(GraphEdge::fixed(source, target));
Ok(())
}
pub async fn inject_subgraph<SubS: StateSchema + 'static>(
&self,
name: &str,
subgraph: CompiledGraph<SubS>,
input_mapper: impl Fn(&S) -> SubS + Send + Sync + 'static,
output_mapper: impl Fn(&SubS, &mut S) + Send + Sync + 'static,
) -> GraphResult<()> {
let node = SubgraphNode::new(name, subgraph, input_mapper, output_mapper);
self.runtime_nodes
.write()
.await
.insert(name.to_string(), Arc::new(node));
Ok(())
}
}