gluesql-core 0.20.0

GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!
Documentation
use {
    crate::{
        ast::Literal,
        query_builder::QueryBuilderError,
        result::{Error, Result},
    },
    bigdecimal::BigDecimal,
    std::{borrow::Cow, str::FromStr},
};

#[derive(Clone, Debug)]
pub enum NumericNode<'a> {
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    F32(f32),
    F64(f64),
    Str(Cow<'a, str>),
}

macro_rules! impl_from {
    ($type: path, $name: ident) => {
        impl<'a> From<$type> for NumericNode<'a> {
            fn from(v: $type) -> Self {
                NumericNode::$name(v)
            }
        }
    };
}

impl_from!(i8, I8);
impl_from!(i16, I16);
impl_from!(i32, I32);
impl_from!(i64, I64);
impl_from!(u8, U8);
impl_from!(u16, U16);
impl_from!(u32, U32);
impl_from!(u64, U64);
impl_from!(f32, F32);
impl_from!(f64, F64);

impl From<String> for NumericNode<'_> {
    fn from(v: String) -> Self {
        Self::Str(Cow::Owned(v))
    }
}

impl<'a> From<&'a str> for NumericNode<'a> {
    fn from(v: &'a str) -> Self {
        Self::Str(Cow::Borrowed(v))
    }
}

impl<'a> TryFrom<NumericNode<'a>> for Literal {
    type Error = Error;

    fn try_from(node: NumericNode<'a>) -> Result<Self> {
        match node {
            NumericNode::I8(v) => Ok(Literal::Number(v.into())),
            NumericNode::I16(v) => Ok(Literal::Number(v.into())),
            NumericNode::I32(v) => Ok(Literal::Number(v.into())),
            NumericNode::I64(v) => Ok(Literal::Number(v.into())),
            NumericNode::U8(v) => Ok(Literal::Number(v.into())),
            NumericNode::U16(v) => Ok(Literal::Number(v.into())),
            NumericNode::U32(v) => Ok(Literal::Number(v.into())),
            NumericNode::U64(v) => Ok(Literal::Number(v.into())),
            NumericNode::F32(v) => BigDecimal::try_from(v)
                .map_err(|_| QueryBuilderError::FailedToParseNumeric(v.to_string()).into())
                .map(Literal::Number),
            NumericNode::F64(v) => BigDecimal::try_from(v)
                .map_err(|_| QueryBuilderError::FailedToParseNumeric(v.to_string()).into())
                .map(Literal::Number),
            NumericNode::Str(v) => BigDecimal::from_str(&v)
                .map_err(|_| QueryBuilderError::FailedToParseNumeric(v.into_owned()).into())
                .map(Literal::Number),
        }
    }
}

#[cfg(test)]
mod tests {
    use {
        crate::{
            ast::Literal,
            query_builder::{NumericNode, QueryBuilderError},
        },
        bigdecimal::BigDecimal,
        std::str::FromStr,
    };

    #[test]
    fn numeric() {
        let num = |n| Ok(Literal::Number(BigDecimal::from_str(n).unwrap()));

        assert_eq!(NumericNode::from(1_i8).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_i16).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_i32).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_i64).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_u8).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_u16).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_u32).try_into(), num("1"));
        assert_eq!(NumericNode::from(1_u64).try_into(), num("1"));
        assert_eq!(NumericNode::from(1.50_f32).try_into(), num("1.50"));
        assert_eq!(NumericNode::from(4.125_f64).try_into(), num("4.125"));
        assert_eq!(NumericNode::from("123.456").try_into(), num("123.456"));
        assert_eq!(NumericNode::from("1.6".to_owned()).try_into(), num("1.6"));

        assert_eq!(
            Literal::try_from(NumericNode::from(f32::NAN)),
            Err(QueryBuilderError::FailedToParseNumeric(f32::NAN.to_string()).into()),
        );
        assert_eq!(
            Literal::try_from(NumericNode::from(f64::NAN)),
            Err(QueryBuilderError::FailedToParseNumeric(f64::NAN.to_string()).into()),
        );
        assert_eq!(
            Literal::try_from(NumericNode::from("not a number")),
            Err(QueryBuilderError::FailedToParseNumeric("not a number".to_owned()).into()),
        );
    }
}