mod config;
mod engine_api_impl;
mod eval;
mod eval_store;
pub(crate) mod lockfile;
mod logging;
pub(crate) mod manifest;
pub(crate) mod path;
mod pkg;
mod pkg_link;
pub(crate) mod project;
pub mod resolve;
mod run;
mod scenario;
pub(crate) mod source;
mod status;
mod transcript;
#[cfg(test)]
mod tests;
use std::path::Path;
use std::sync::Arc;
use algocline_engine::{Executor, SessionRegistry};
pub use algocline_core::{EngineApi, TokenUsage};
pub use config::{AppConfig, LogDirSource};
pub use resolve::{QueryResponse, SearchPath};
type EvalSessions = std::sync::Mutex<std::collections::HashMap<String, String>>;
type SessionStrategies = std::sync::Mutex<std::collections::HashMap<String, String>>;
#[derive(Clone)]
pub struct AppService {
executor: Arc<Executor>,
registry: Arc<SessionRegistry>,
log_config: AppConfig,
search_paths: Vec<resolve::SearchPath>,
eval_sessions: Arc<EvalSessions>,
session_strategies: Arc<SessionStrategies>,
}
impl AppService {
pub fn new(
executor: Arc<Executor>,
log_config: AppConfig,
search_paths: Vec<resolve::SearchPath>,
) -> Self {
let registry = Arc::new(SessionRegistry::new());
registry.spawn_gc_task(std::time::Duration::from_secs(10800));
Self {
executor,
registry,
log_config,
search_paths,
eval_sessions: Arc::new(std::sync::Mutex::new(std::collections::HashMap::new())),
session_strategies: Arc::new(std::sync::Mutex::new(std::collections::HashMap::new())),
}
}
fn require_log_dir(&self) -> Result<&Path, String> {
self.log_config
.log_dir
.as_deref()
.ok_or_else(|| "File logging is not available (no writable log directory)".to_string())
}
pub(crate) fn resolve_extra_lib_paths(
&self,
project_root: Option<&str>,
) -> Vec<std::path::PathBuf> {
let Some(root) = project::resolve_project_root(project_root) else {
return vec![];
};
match lockfile::load_lockfile(&root) {
Ok(Some(lock)) => lockfile::resolve_local_dir_paths(&root, &lock),
Ok(None) => vec![],
Err(e) => {
tracing::warn!("failed to load alc.lock at {}: {e}", root.display());
vec![]
}
}
}
}