use crate::{datatypes::DataType, error::Error, types::NativeType};
use super::Scalar;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PrimitiveScalar<T: NativeType> {
value: Option<T>,
data_type: DataType,
}
impl<T: NativeType> PrimitiveScalar<T> {
#[inline]
pub fn new(data_type: DataType, value: Option<T>) -> Self {
if !data_type.to_physical_type().eq_primitive(T::PRIMITIVE) {
panic!(
"{:?}",
Error::InvalidArgumentError(format!(
"Type {} does not support logical type {:?}",
std::any::type_name::<T>(),
data_type
))
);
}
Self { value, data_type }
}
#[inline]
pub fn value(&self) -> &Option<T> {
&self.value
}
pub fn to(self, data_type: DataType) -> Self {
Self::new(data_type, self.value)
}
}
impl<T: NativeType> From<Option<T>> for PrimitiveScalar<T> {
#[inline]
fn from(v: Option<T>) -> Self {
Self::new(T::PRIMITIVE.into(), v)
}
}
impl<T: NativeType> Scalar for PrimitiveScalar<T> {
#[inline]
fn as_any(&self) -> &dyn std::any::Any {
self
}
#[inline]
fn is_valid(&self) -> bool {
self.value.is_some()
}
#[inline]
fn data_type(&self) -> &DataType {
&self.data_type
}
}