castep-cell-io 0.6.0

I/O library for CASTEP .cell and .param file formats
Documentation
use castep_cell_fmt::{Cell, CellValue, ToCell, ToCellValue};
use castep_cell_fmt::parse::{FromCellValue, FromKeyValue};
use castep_cell_fmt::{CResult, Error};
use castep_cell_fmt::query::value_as_str;
use serde::{Deserialize, Serialize};

/// Selects which calculation method to use for phonon calculation on a fine grid.
///
/// Keyword type: String
///
/// Default: PhononFineMethod::None
///
/// Example:
/// PHONON_FINE_METHOD : SUPERCELL
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename = "PHONON_FINE_METHOD")]
#[derive(Default)]
pub enum PhononFineMethod {
    /// No interpolation, direct calculations
    #[serde(alias = "none", alias = "NONE")]
    #[default]
    None,
    /// Use Linear response (density functional perturbation theory) method
    #[serde(alias = "interpolate", alias = "INTERPOLATE")]
    Interpolate,
    /// Use Finite displacement method
    #[serde(alias = "supercell", alias = "SUPERCELL")]
    Supercell,
}

impl FromCellValue for PhononFineMethod {
    fn from_cell_value(value: &CellValue<'_>) -> CResult<Self> {
        match value_as_str(value)?.to_ascii_lowercase().as_str() {
            "none" => Ok(Self::None),
            "interpolate" => Ok(Self::Interpolate),
            "supercell" => Ok(Self::Supercell),
            other => Err(Error::Message(format!("unknown PhononFineMethod: {other}"))),
        }
    }
}

impl FromKeyValue for PhononFineMethod {
    const KEY_NAME: &'static str = "PHONON_FINE_METHOD";

    fn from_cell_value_kv(value: &CellValue<'_>) -> CResult<Self> {
        Self::from_cell_value(value)
    }
}


impl ToCell for PhononFineMethod {
    fn to_cell(&self) -> Cell<'_> {
        Cell::KeyValue("PHONON_FINE_METHOD", self.to_cell_value())
    }
}

impl ToCellValue for PhononFineMethod {
    fn to_cell_value(&self) -> CellValue<'_> {
        CellValue::String(
            match self {
                PhononFineMethod::None => "NONE",
                PhononFineMethod::Interpolate => "INTERPOLATE",
                PhononFineMethod::Supercell => "SUPERCELL",
            }
            .to_string(),
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use castep_cell_fmt::CellValue;

    #[test]
    fn test_case_insensitive() {
        assert_eq!(PhononFineMethod::from_cell_value(&CellValue::Str("none")).unwrap(), PhononFineMethod::None);
        assert_eq!(PhononFineMethod::from_cell_value(&CellValue::Str("NONE")).unwrap(), PhononFineMethod::None);
    }

    #[test]
    fn test_all_variants() {
        assert_eq!(PhononFineMethod::from_cell_value(&CellValue::Str("interpolate")).unwrap(), PhononFineMethod::Interpolate);
        assert_eq!(PhononFineMethod::from_cell_value(&CellValue::Str("supercell")).unwrap(), PhononFineMethod::Supercell);
    }

    #[test]
    fn test_invalid() {
        assert!(PhononFineMethod::from_cell_value(&CellValue::Str("invalid")).is_err());
    }

    #[test]
    fn test_key_name() {
        assert_eq!(PhononFineMethod::KEY_NAME, "PHONON_FINE_METHOD");
    }
}