use config::{Config, File, FileStoredFormat, Format, Map, Value, ValueKind};
fn main() {
let config = Config::builder()
.add_source(File::from_str("bad", CustomFormat))
.add_source(File::from_str("good", CustomFormat))
.build();
match config {
Ok(cfg) => println!("A config: {cfg:#?}"),
Err(e) => println!("An error: {e}"),
}
}
#[derive(Debug, Clone)]
pub struct CustomFormat;
impl Format for CustomFormat {
fn parse(
&self,
uri: Option<&String>,
text: &str,
) -> Result<Map<String, Value>, Box<dyn std::error::Error + Send + Sync>> {
let mut result = Map::new();
if text == "good" {
result.insert(
"key".to_owned(),
Value::new(uri, ValueKind::String(text.into())),
);
} else {
println!("Something went wrong in {uri:?}");
}
Ok(result)
}
}
impl FileStoredFormat for CustomFormat {
fn file_extensions(&self) -> &'static [&'static str] {
&NO_EXTS
}
}
static NO_EXTS: Vec<&'static str> = vec![];