lj_rust/src/conf.rs

30 lines
605 B
Rust
Raw Normal View History

use config::Config;
use serde::Deserialize;
2023-06-03 16:54:41 +00:00
#[derive(Deserialize, Debug)]
pub enum DacFamily {
Helios,
2023-06-03 16:54:41 +00:00
Etherdream,
}
2023-06-03 16:54:41 +00:00
#[derive(Deserialize, Debug)]
2023-06-03 16:11:55 +00:00
pub struct Conf {
2023-06-03 21:27:12 +00:00
pub laser_id: u8,
pub debug: bool,
pub redis_url: String,
pub dac_family: DacFamily,
pub dac_id: Option<u8>,
pub dac_url: Option<String>,
}
2023-06-04 10:08:44 +00:00
impl Conf {
pub fn new(path: &str) -> Result<Conf, Box<dyn std::error::Error>> {
let settings = Config::builder()
.add_source(config::File::with_name(path))
.build()?;
let conf : Conf = settings.try_deserialize()?;
Ok(conf)
}
2023-06-03 16:11:55 +00:00
}