use std::sync::{Arc, RwLock};
use khive_db::StorageBackend;
use khive_gate::{AllowAllGate, GateRef};
use khive_storage::{EntityStore, EventStore, GraphStore, NoteStore, SqlAccess};
use khive_types::EdgeEndpointRule;
use lattice_embed::{
CachedEmbeddingService, EmbeddingModel, EmbeddingService, NativeEmbeddingService,
};
use tokio::sync::OnceCell;
use crate::error::RuntimeResult;
#[derive(Clone, Debug)]
pub struct RuntimeConfig {
pub db_path: Option<std::path::PathBuf>,
pub default_namespace: String,
pub embedding_model: Option<EmbeddingModel>,
pub gate: GateRef,
pub packs: Vec<String>,
}
pub fn parse_pack_list(s: &str) -> Vec<String> {
s.split(|c: char| c == ',' || c.is_whitespace())
.map(str::trim)
.filter(|s| !s.is_empty())
.map(str::to_owned)
.collect()
}
impl Default for RuntimeConfig {
fn default() -> Self {
let db_path = std::env::var("HOME")
.ok()
.map(|h| std::path::PathBuf::from(h).join(".khive/khive-graph.db"));
let embedding_model = std::env::var("KHIVE_EMBEDDING_MODEL")
.ok()
.and_then(|s| s.parse().ok())
.or(Some(EmbeddingModel::AllMiniLmL6V2));
let packs = std::env::var("KHIVE_PACKS")
.ok()
.map(|s| parse_pack_list(&s))
.filter(|v| !v.is_empty())
.unwrap_or_else(|| vec!["kg".to_string()]);
Self {
db_path,
default_namespace: "local".to_string(),
embedding_model,
gate: Arc::new(AllowAllGate),
packs,
}
}
}
#[derive(Clone)]
pub struct KhiveRuntime {
backend: Arc<StorageBackend>,
config: RuntimeConfig,
embedder: Arc<OnceCell<Arc<dyn EmbeddingService>>>,
edge_rules: Arc<RwLock<Vec<EdgeEndpointRule>>>,
}
impl KhiveRuntime {
pub fn new(config: RuntimeConfig) -> RuntimeResult<Self> {
let backend = match &config.db_path {
Some(path) => {
if let Some(parent) = path.parent() {
std::fs::create_dir_all(parent).ok();
}
StorageBackend::sqlite(path)?
}
None => StorageBackend::memory()?,
};
Ok(Self {
backend: Arc::new(backend),
config,
embedder: Arc::new(OnceCell::new()),
edge_rules: Arc::new(RwLock::new(Vec::new())),
})
}
pub fn memory() -> RuntimeResult<Self> {
Self::new(RuntimeConfig {
db_path: None,
default_namespace: "local".to_string(),
embedding_model: None,
gate: Arc::new(AllowAllGate),
packs: vec!["kg".to_string()],
})
}
pub fn config(&self) -> &RuntimeConfig {
&self.config
}
pub fn backend(&self) -> &StorageBackend {
&self.backend
}
pub fn ns<'a>(&'a self, namespace: Option<&'a str>) -> &'a str {
namespace.unwrap_or(&self.config.default_namespace)
}
pub fn entities(&self, namespace: Option<&str>) -> RuntimeResult<Arc<dyn EntityStore>> {
Ok(self.backend.entities_for_namespace(self.ns(namespace))?)
}
pub fn graph(&self, namespace: Option<&str>) -> RuntimeResult<Arc<dyn GraphStore>> {
Ok(self.backend.graph_for_namespace(self.ns(namespace))?)
}
pub fn notes(&self, namespace: Option<&str>) -> RuntimeResult<Arc<dyn NoteStore>> {
Ok(self.backend.notes_for_namespace(self.ns(namespace))?)
}
pub fn events(&self, namespace: Option<&str>) -> RuntimeResult<Arc<dyn EventStore>> {
Ok(self.backend.events_for_namespace(self.ns(namespace))?)
}
pub fn sql(&self) -> Arc<dyn SqlAccess> {
self.backend.sql()
}
pub fn vectors(
&self,
namespace: Option<&str>,
) -> RuntimeResult<Arc<dyn khive_storage::VectorStore>> {
let model = self
.config
.embedding_model
.ok_or_else(|| crate::RuntimeError::Unconfigured("embedding_model".into()))?;
Ok(self.backend.vectors_for_namespace(
&vec_model_key(model),
model.dimensions(),
self.ns(namespace),
)?)
}
pub fn text(
&self,
namespace: Option<&str>,
) -> RuntimeResult<Arc<dyn khive_storage::TextSearch>> {
let key = format!("entities_{}", sanitize_key(self.ns(namespace)));
Ok(self.backend.text(&key)?)
}
pub fn text_for_notes(
&self,
namespace: Option<&str>,
) -> RuntimeResult<Arc<dyn khive_storage::TextSearch>> {
let key = format!("notes_{}", sanitize_key(self.ns(namespace)));
Ok(self.backend.text(&key)?)
}
pub fn install_edge_rules(&self, rules: Vec<EdgeEndpointRule>) {
if let Ok(mut guard) = self.edge_rules.write() {
*guard = rules;
}
}
pub(crate) fn pack_edge_rules(&self) -> Vec<EdgeEndpointRule> {
self.edge_rules
.read()
.map(|g| g.clone())
.unwrap_or_default()
}
pub async fn embedder(&self) -> RuntimeResult<Arc<dyn EmbeddingService>> {
let model = self
.config
.embedding_model
.ok_or_else(|| crate::RuntimeError::Unconfigured("embedding_model".into()))?;
let service = self
.embedder
.get_or_init(|| async move {
let native = Arc::new(NativeEmbeddingService::with_model(model));
let cached = CachedEmbeddingService::with_default_cache(native);
Arc::new(cached) as Arc<dyn EmbeddingService>
})
.await
.clone();
Ok(service)
}
}
pub(crate) fn vec_model_key(model: EmbeddingModel) -> String {
sanitize_key(&model.to_string())
}
fn sanitize_key(s: &str) -> String {
s.chars()
.map(|c| if c.is_ascii_alphanumeric() { c } else { '_' })
.collect()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn memory_runtime_creates_successfully() {
let rt = KhiveRuntime::memory().expect("memory runtime should create");
assert!(rt.config().db_path.is_none());
}
#[test]
fn file_runtime_creates_successfully() {
let dir = tempfile::tempdir().unwrap();
let path = dir.path().join("test.db");
let config = RuntimeConfig {
db_path: Some(path.clone()),
default_namespace: "test".to_string(),
embedding_model: None,
gate: Arc::new(AllowAllGate),
packs: vec!["kg".to_string()],
};
let rt = KhiveRuntime::new(config).expect("file runtime should create");
assert!(path.exists());
assert_eq!(rt.config().default_namespace, "test");
}
#[test]
fn ns_defaults_to_config_namespace() {
let rt = KhiveRuntime::memory().unwrap();
assert_eq!(rt.ns(None), "local");
assert_eq!(rt.ns(Some("custom")), "custom");
}
#[test]
fn store_accessors_return_ok() {
let rt = KhiveRuntime::memory().unwrap();
assert!(rt.entities(None).is_ok());
assert!(rt.graph(None).is_ok());
assert!(rt.notes(None).is_ok());
assert!(rt.events(None).is_ok());
}
#[test]
fn vectors_returns_unconfigured_without_model() {
let rt = KhiveRuntime::memory().unwrap();
match rt.vectors(None) {
Err(crate::RuntimeError::Unconfigured(s)) => assert_eq!(s, "embedding_model"),
Err(other) => panic!("expected Unconfigured, got {:?}", other),
Ok(_) => panic!("expected Err, got Ok"),
}
}
#[test]
fn vec_model_key_sanitizes_dots_and_dashes() {
assert_eq!(
vec_model_key(EmbeddingModel::BgeSmallEnV15),
"bge_small_en_v1_5"
);
assert_eq!(
vec_model_key(EmbeddingModel::BgeBaseEnV15),
"bge_base_en_v1_5"
);
assert_eq!(
vec_model_key(EmbeddingModel::AllMiniLmL6V2),
"all_minilm_l6_v2"
);
}
#[test]
fn default_config_uses_allow_all_gate() {
let cfg = RuntimeConfig::default();
assert_eq!(cfg.default_namespace, "local");
let _: GateRef = cfg.gate.clone();
}
#[test]
fn parse_pack_list_handles_comma_and_whitespace() {
assert_eq!(parse_pack_list("kg"), vec!["kg".to_string()]);
assert_eq!(
parse_pack_list("kg,gtd"),
vec!["kg".to_string(), "gtd".to_string()]
);
assert_eq!(
parse_pack_list(" kg , gtd "),
vec!["kg".to_string(), "gtd".to_string()]
);
assert_eq!(
parse_pack_list("kg gtd"),
vec!["kg".to_string(), "gtd".to_string()]
);
assert_eq!(parse_pack_list(",,"), Vec::<String>::new());
assert_eq!(parse_pack_list(""), Vec::<String>::new());
}
#[test]
fn default_config_packs_falls_back_to_kg() {
let prior = std::env::var("KHIVE_PACKS").ok();
unsafe {
std::env::remove_var("KHIVE_PACKS");
}
let cfg = RuntimeConfig::default();
assert_eq!(cfg.packs, vec!["kg".to_string()]);
if let Some(v) = prior {
unsafe {
std::env::set_var("KHIVE_PACKS", v);
}
}
}
#[test]
fn default_config_uses_minilm_when_env_unset() {
let prior = std::env::var("KHIVE_EMBEDDING_MODEL").ok();
unsafe {
std::env::remove_var("KHIVE_EMBEDDING_MODEL");
}
let cfg = RuntimeConfig::default();
assert_eq!(cfg.embedding_model, Some(EmbeddingModel::AllMiniLmL6V2));
if let Some(v) = prior {
unsafe {
std::env::set_var("KHIVE_EMBEDDING_MODEL", v);
}
}
}
}