use crate::event_bus::EventBus;
use crate::filter_library::FilterLibrary;
use crate::runner::Runner;
use somatize_compiler::{CompileMode, CompileResult, compile, compile_stream};
use somatize_core::cache::CacheStore;
use somatize_core::error::{Result, SomaError};
use somatize_core::graph::Graph;
use somatize_core::store::{DataRef, DataStore};
use somatize_core::value::Value;
use std::sync::Arc;
pub trait ForwardStrategy {
fn forward(
&self,
graph: &Graph,
library: &FilterLibrary,
cache: &dyn CacheStore,
event_bus: &Arc<EventBus>,
data_store: Option<&Arc<dyn DataStore>>,
x: &Value,
) -> Result<Value>;
}
pub struct Standard;
impl ForwardStrategy for Standard {
fn forward(
&self,
graph: &Graph,
library: &FilterLibrary,
cache: &dyn CacheStore,
event_bus: &Arc<EventBus>,
_data_store: Option<&Arc<dyn DataStore>>,
x: &Value,
) -> Result<Value> {
let CompileResult { plan, .. } =
compile(graph, library, CompileMode::Inference, Some(cache))?;
let runner = crate::runner::LocalRunner;
runner.forward(&plan, library, cache, event_bus, x)
}
}
pub struct Stream {
pub chunk_size: usize,
}
impl ForwardStrategy for Stream {
fn forward(
&self,
graph: &Graph,
library: &FilterLibrary,
cache: &dyn CacheStore,
event_bus: &Arc<EventBus>,
_data_store: Option<&Arc<dyn DataStore>>,
x: &Value,
) -> Result<Value> {
let CompileResult { plan, .. } = compile_stream(graph, library, self.chunk_size)?;
let runner = crate::runner::LocalRunner;
runner.forward(&plan, library, cache, event_bus, x)
}
}
pub struct Batched<'a> {
pub data_ref: &'a DataRef,
pub batch_size: usize,
}
impl ForwardStrategy for Batched<'_> {
fn forward(
&self,
graph: &Graph,
library: &FilterLibrary,
cache: &dyn CacheStore,
event_bus: &Arc<EventBus>,
data_store: Option<&Arc<dyn DataStore>>,
_x: &Value,
) -> Result<Value> {
let store = data_store.ok_or_else(|| SomaError::Execution {
node_id: "session".into(),
message: "Batched strategy requires a data store (use with_data_store)".into(),
})?;
let meta = store.meta(self.data_ref)?;
let total_rows = meta.total_rows;
if total_rows == 0 {
return Ok(Value::Empty);
}
let CompileResult { plan, .. } =
compile(graph, library, CompileMode::Inference, Some(cache))?;
let runner = crate::runner::LocalRunner;
let mut all_values: Vec<f64> = Vec::new();
let mut result_shape: Option<Vec<usize>> = None;
let mut rows_processed = 0;
while rows_processed < total_rows {
let batch_len = self.batch_size.min(total_rows - rows_processed);
let batch = store.get_rows(self.data_ref, rows_processed, batch_len)?;
let output = runner.forward(&plan, library, cache, event_bus, &batch)?;
if let Value::Tensor { values, shape } = &output {
if result_shape.is_none() {
result_shape = Some(shape.clone());
}
all_values.extend_from_slice(values.as_slice());
} else {
return Ok(output);
}
rows_processed += batch_len;
}
match result_shape {
Some(mut shape) => {
shape[0] = total_rows;
Ok(Value::tensor(all_values, shape))
}
None => Ok(Value::Empty),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::cache::MemoryCache;
use crate::filter_library::FilterLibrary;
use somatize_core::cache::CacheKey;
use somatize_core::error::Result as SomaResult;
use somatize_core::filter::{Distribution, Filter, FilterKind, FilterMeta, StreamMode};
use somatize_core::graph::{Graph, Node};
struct DoublerFilter;
impl Filter for DoublerFilter {
fn config_hash(&self) -> CacheKey {
CacheKey::from_parts(&[b"Doubler"])
}
fn fit(&self, _x: &Value, _y: Option<&Value>) -> SomaResult<Value> {
Ok(Value::Empty)
}
fn forward(&self, x: &Value, _state: &Value) -> SomaResult<Value> {
match x {
Value::Tensor { values, shape } => {
let doubled: Vec<f64> = values.iter().map(|v| v * 2.0).collect();
Ok(Value::tensor(doubled, shape.clone()))
}
_ => Ok(x.clone()),
}
}
fn meta(&self) -> FilterMeta {
FilterMeta {
name: "Doubler".into(),
kind: FilterKind::Stateless,
cacheable: false,
differentiable: false,
stream_mode: StreamMode::FixedState,
distribution: Distribution::Local,
input_schema: None,
output_schema: None,
}
}
fn as_any(&self) -> &dyn std::any::Any {
self
}
}
fn make_session() -> (Graph, FilterLibrary, Arc<dyn CacheStore>, Arc<EventBus>) {
let mut graph = Graph::new();
graph.nodes.push(Node::new("double", "Double", "double"));
let mut library = FilterLibrary::new();
library.register("double", Box::new(DoublerFilter));
let cache: Arc<dyn CacheStore> = Arc::new(MemoryCache::default());
let bus = Arc::new(EventBus::new(64));
(graph, library, cache, bus)
}
#[test]
fn standard_forward() {
let (graph, library, cache, bus) = make_session();
let input = Value::tensor(vec![1.0, 2.0, 3.0], vec![3]);
let result = Standard
.forward(&graph, &library, cache.as_ref(), &bus, None, &input)
.unwrap();
let (data, _) = result.as_tensor().unwrap();
assert_eq!(data, &[2.0, 4.0, 6.0]);
}
#[test]
fn stream_forward() {
let (graph, library, cache, bus) = make_session();
let input = Value::tensor(vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0], vec![6]);
let result = Stream { chunk_size: 2 }
.forward(&graph, &library, cache.as_ref(), &bus, None, &input)
.unwrap();
let (data, shape) = result.as_tensor().unwrap();
assert_eq!(data, &[2.0, 4.0, 6.0, 8.0, 10.0, 12.0]);
assert_eq!(shape, &[6]);
}
#[test]
fn stream_matches_standard() {
let (graph, library, cache, bus) = make_session();
let input = Value::tensor(vec![1.0, 2.0, 3.0, 4.0], vec![4]);
let standard = Standard
.forward(&graph, &library, cache.as_ref(), &bus, None, &input)
.unwrap();
let streamed = Stream { chunk_size: 2 }
.forward(&graph, &library, cache.as_ref(), &bus, None, &input)
.unwrap();
assert_eq!(standard, streamed);
}
}