use std::f32;
use super::context::MessageContext;
use super::intl::PluralRules;
#[derive(Clone, Debug, PartialEq)]
pub enum FluentValue {
String(String),
Number(f32),
}
impl FluentValue {
pub fn format(&self, _ctx: &MessageContext) -> String {
match *self {
FluentValue::String(ref s) => s.clone(),
FluentValue::Number(ref n) => format!("{}", n),
}
}
pub fn matches(&self, ctx: &MessageContext, other: &FluentValue) -> bool {
match (self, other) {
(&FluentValue::String(ref a), &FluentValue::String(ref b)) => a == b,
(&FluentValue::Number(ref a), &FluentValue::Number(ref b)) => {
(a - b).abs() < f32::EPSILON
}
(&FluentValue::String(ref a), &FluentValue::Number(ref b)) => {
let pr = PluralRules::new(ctx.locales);
pr.select(*b) == a
}
(&FluentValue::Number(..), &FluentValue::String(..)) => false,
}
}
}
impl From<String> for FluentValue {
fn from(s: String) -> Self {
FluentValue::String(s)
}
}
impl<'a> From<&'a str> for FluentValue {
fn from(s: &'a str) -> Self {
FluentValue::String(String::from(s))
}
}
impl From<f32> for FluentValue {
fn from(n: f32) -> Self {
FluentValue::Number(n)
}
}
impl From<i8> for FluentValue {
fn from(n: i8) -> Self {
FluentValue::Number(f32::from(n))
}
}