broot 1.56.2

File browser and launcher
Documentation
use {
    crate::errors::{
        ConfError,
        ProgramError,
    },
    deser_hjson,
    serde::de::DeserializeOwned,
    std::{
        fs,
        path::Path,
    },
    toml,
};

/// Formats usable for reading configuration files
#[derive(Default, PartialEq, Eq, Debug, Clone, Copy)]
pub enum SerdeFormat {
    #[default]
    Hjson,
    Toml,
}

pub static FORMATS: &[SerdeFormat] = &[SerdeFormat::Hjson, SerdeFormat::Toml];

impl SerdeFormat {
    pub fn key(self) -> &'static str {
        match self {
            Self::Hjson => "hjson",
            Self::Toml => "toml",
        }
    }
    pub fn from_key(key: &str) -> Option<Self> {
        match key {
            "hjson" => Some(SerdeFormat::Hjson),
            "toml" => Some(SerdeFormat::Toml),
            _ => None,
        }
    }
    pub fn from_path(path: &Path) -> Result<Self, ConfError> {
        path.extension()
            .and_then(|os| os.to_str())
            .map(str::to_lowercase)
            .and_then(|key| Self::from_key(&key))
            .ok_or_else(|| ConfError::UnknownFileExtension {
                path: path.to_string_lossy().to_string(),
            })
    }
    pub fn read_string<T>(
        path: &Path,
        s: &str,
    ) -> Result<T, ProgramError>
    where
        T: DeserializeOwned,
    {
        let format = Self::from_path(path)?;
        match format {
            Self::Hjson => deser_hjson::from_str::<T>(s).map_err(|e| ProgramError::ConfFile {
                path: path.to_string_lossy().to_string(),
                details: e.into(),
            }),
            Self::Toml => toml::from_str::<T>(s).map_err(|e| ProgramError::ConfFile {
                path: path.to_string_lossy().to_string(),
                details: e.into(),
            }),
        }
    }
    pub fn read_file<T>(path: &Path) -> Result<T, ProgramError>
    where
        T: DeserializeOwned,
    {
        let file_content = fs::read_to_string(path)?;
        Self::read_string(path, &file_content)
    }
}