use schemars::JsonSchema;
use serde::de::DeserializeOwned;
use std::path::Path;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum ConfigValidationError {
#[error("Failed to read config file: {0}")]
Read(#[from] std::io::Error),
#[error("Failed to parse YAML config: {0}")]
Parse(#[from] serde_yaml::Error),
#[error("Schema validation failed: {0}")]
Schema(String),
}
pub fn validate_config<T: DeserializeOwned + JsonSchema>(
yaml_path: impl AsRef<Path>,
) -> Result<T, ConfigValidationError> {
let content = std::fs::read_to_string(yaml_path)?;
let config: T = serde_yaml::from_str(&content)?;
Ok(config)
}
pub fn generate_schema<T: JsonSchema>() -> Result<serde_json::Value, serde_json::Error> {
let schema = schemars::schema_for!(T);
serde_json::to_value(schema)
}
pub fn validate_yaml_str<T: DeserializeOwned>(yaml: &str) -> Result<T, ConfigValidationError> {
let config: T = serde_yaml::from_str(yaml)?;
Ok(config)
}
#[allow(
clippy::print_stderr,
clippy::exit,
clippy::print_stdout,
clippy::type_complexity
)]
pub fn build_validate_configs(configs: &[(&str, fn(&str) -> Result<(), String>)]) {
for (path, validator) in configs {
println!("cargo:rerun-if-changed={path}");
if let Err(e) = validator(path) {
eprintln!("Config validation failed for {path}: {e}");
std::process::exit(1);
}
}
}
pub fn validate_yaml_file(
path: impl AsRef<Path>,
) -> Result<serde_yaml::Value, ConfigValidationError> {
let content = std::fs::read_to_string(path)?;
let value: serde_yaml::Value = serde_yaml::from_str(&content)?;
Ok(value)
}