mod includes;
mod merge;
mod types;
use std::collections::HashSet;
use std::fs;
use std::path::{Path, PathBuf};
use systemprompt_config::ProfileBootstrap;
use systemprompt_models::services::{AiConfig, ServicesConfig};
use crate::error::{ConfigLoadError, ConfigLoadResult};
use includes::resolve_includes_recursively;
use merge::{resolve_skill_instruction_includes, resolve_system_prompt_includes};
use types::{IncludeResolveCtx, RootConfig};
#[derive(Debug)]
pub struct ConfigLoader {
base_path: PathBuf,
config_path: PathBuf,
}
impl ConfigLoader {
#[must_use]
pub fn new(config_path: PathBuf) -> Self {
let base_path = config_path
.parent()
.unwrap_or_else(|| Path::new("."))
.to_path_buf();
Self {
base_path,
config_path,
}
}
pub fn from_env() -> ConfigLoadResult<Self> {
let profile = ProfileBootstrap::get()
.map_err(|e| ConfigLoadError::ProfileBootstrap(e.to_string()))?;
let config_path = PathBuf::from(profile.paths.config());
Ok(Self::new(config_path))
}
pub fn load() -> ConfigLoadResult<ServicesConfig> {
Self::from_env()?.run()
}
pub fn load_from_path(path: &Path) -> ConfigLoadResult<ServicesConfig> {
Self::new(path.to_path_buf()).run()
}
pub fn load_from_content(content: &str, path: &Path) -> ConfigLoadResult<ServicesConfig> {
Self::new(path.to_path_buf()).run_from_content(content)
}
pub fn validate_file(path: &Path) -> ConfigLoadResult<()> {
Self::load_from_path(path).map(|_| ())
}
fn run(&self) -> ConfigLoadResult<ServicesConfig> {
let content = fs::read_to_string(&self.config_path).map_err(|e| ConfigLoadError::Io {
path: self.config_path.clone(),
source: e,
})?;
self.run_from_content(&content)
}
fn run_from_content(&self, content: &str) -> ConfigLoadResult<ServicesConfig> {
let root: RootConfig =
serde_yaml::from_str(content).map_err(|e| ConfigLoadError::Yaml {
path: self.config_path.clone(),
source: e,
})?;
let mut merged = ServicesConfig {
agents: root.agents,
mcp_servers: root.mcp_servers,
settings: root.settings,
scheduler: root.scheduler,
ai: root.ai.unwrap_or_else(AiConfig::default),
web: root.web,
plugins: root.plugins,
skills: root.skills,
content: root.content,
};
let mut visited: HashSet<PathBuf> = HashSet::new();
if let Ok(canonical_root) = fs::canonicalize(&self.config_path) {
visited.insert(canonical_root);
}
{
let mut ctx = IncludeResolveCtx {
visited: &mut visited,
merged: &mut merged,
chain: vec![self.config_path.clone()],
};
for include_path in &root.includes {
resolve_includes_recursively(
&self.base_path,
include_path,
&self.config_path,
&mut ctx,
)?;
}
}
resolve_system_prompt_includes(&self.base_path, &mut merged)?;
resolve_skill_instruction_includes(&self.base_path, &mut merged)?;
merged.settings.apply_env_overrides();
merged
.validate()
.map_err(|e| ConfigLoadError::Validation(e.to_string()))?;
Ok(merged)
}
pub fn get_includes(&self) -> ConfigLoadResult<Vec<String>> {
#[derive(serde::Deserialize)]
struct IncludesOnly {
#[serde(default)]
includes: Vec<String>,
}
let content = fs::read_to_string(&self.config_path).map_err(|e| ConfigLoadError::Io {
path: self.config_path.clone(),
source: e,
})?;
let parsed: IncludesOnly =
serde_yaml::from_str(&content).map_err(|e| ConfigLoadError::Yaml {
path: self.config_path.clone(),
source: e,
})?;
Ok(parsed.includes)
}
pub fn list_all_includes(&self) -> ConfigLoadResult<Vec<(String, bool)>> {
self.get_includes()?
.into_iter()
.map(|include| {
let exists = self.base_path.join(&include).exists();
Ok((include, exists))
})
.collect()
}
#[must_use]
pub fn base_path(&self) -> &Path {
&self.base_path
}
}