use castep_cell_fmt::{Cell, CellValue, ToCell, ToCellValue, CResult};
use castep_cell_fmt::parse::{FromCellValue, FromKeyValue};
use castep_cell_fmt::query::value_as_str;
use castep_cell_fmt::Error;
#[derive(Debug, Default, Clone, Copy, Hash, PartialEq, Eq)]
pub enum OptStrategy {
Speed,
#[default]
Default,
Memory,
}
impl FromCellValue for OptStrategy {
fn from_cell_value(value: &CellValue<'_>) -> CResult<Self> {
match value_as_str(value)?.to_ascii_lowercase().as_str() {
"speed" => Ok(Self::Speed),
"default" => Ok(Self::Default),
"memory" => Ok(Self::Memory),
other => Err(Error::Message(format!("unknown OptStrategy: {other}"))),
}
}
}
impl FromKeyValue for OptStrategy {
const KEY_NAME: &'static str = "OPT_STRATEGY";
fn from_cell_value_kv(value: &CellValue<'_>) -> CResult<Self> {
Self::from_cell_value(value)
}
}
impl ToCell for OptStrategy {
fn to_cell(&self) -> Cell<'_> {
Cell::KeyValue("OPT_STRATEGY", self.to_cell_value())
}
}
impl ToCellValue for OptStrategy {
fn to_cell_value(&self) -> CellValue<'_> {
CellValue::String(
match self {
OptStrategy::Speed => "Speed",
OptStrategy::Default => "Default",
OptStrategy::Memory => "Memory",
}
.to_string(),
)
}
}
#[cfg(test)]
mod tests {
use super::*;
use castep_cell_fmt::CellValue;
#[test]
fn test_case_insensitive() {
assert_eq!(OptStrategy::from_cell_value(&CellValue::Str("speed")).unwrap(), OptStrategy::Speed);
assert_eq!(OptStrategy::from_cell_value(&CellValue::Str("SPEED")).unwrap(), OptStrategy::Speed);
assert_eq!(OptStrategy::from_cell_value(&CellValue::Str("memory")).unwrap(), OptStrategy::Memory);
assert_eq!(OptStrategy::from_cell_value(&CellValue::Str("MEMORY")).unwrap(), OptStrategy::Memory);
}
#[test]
fn test_all_variants() {
assert_eq!(OptStrategy::from_cell_value(&CellValue::Str("default")).unwrap(), OptStrategy::Default);
}
#[test]
fn test_invalid() {
assert!(OptStrategy::from_cell_value(&CellValue::Str("invalid")).is_err());
}
#[test]
fn test_key_name() {
assert_eq!(OptStrategy::KEY_NAME, "OPT_STRATEGY");
}
}