use crate::raw_symbol_token::RawSymbolToken;
use crate::types::{Decimal, Int, Timestamp};
use crate::IonType;
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct AnnotatedTextValue {
annotations: Vec<RawSymbolToken>,
value: TextValue,
}
impl AnnotatedTextValue {
pub(crate) fn new(annotations: Vec<RawSymbolToken>, value: TextValue) -> Self {
AnnotatedTextValue { annotations, value }
}
pub(crate) fn ion_type(&self) -> IonType {
self.value.ion_type()
}
pub(crate) fn value(&self) -> &TextValue {
&self.value
}
pub(crate) fn is_null(&self) -> bool {
matches!(self.value(), TextValue::Null(_))
}
pub(crate) fn annotations(&self) -> &[RawSymbolToken] {
&self.annotations
}
}
impl PartialEq<TextValue> for AnnotatedTextValue {
fn eq(&self, other: &TextValue) -> bool {
if !self.annotations.is_empty() {
return false;
}
*self.value() == *other
}
}
#[derive(Debug, Clone, PartialEq)]
pub(crate) enum TextValue {
Null(IonType),
Bool(bool),
Int(Int),
Float(f64),
Decimal(Decimal),
Timestamp(Timestamp),
Symbol(RawSymbolToken),
String(String),
Clob(Vec<u8>),
Blob(Vec<u8>),
ListStart,
SExpStart,
StructStart,
}
impl TextValue {
pub fn ion_type(&self) -> IonType {
match self {
TextValue::Null(ion_type) => *ion_type,
TextValue::Bool(_) => IonType::Bool,
TextValue::Int(_) => IonType::Int,
TextValue::Float(_) => IonType::Float,
TextValue::Decimal(_) => IonType::Decimal,
TextValue::Timestamp(_) => IonType::Timestamp,
TextValue::Symbol(_) => IonType::Symbol,
TextValue::String(_) => IonType::String,
TextValue::Clob(_) => IonType::Clob,
TextValue::Blob(_) => IonType::Blob,
TextValue::ListStart => IonType::List,
TextValue::SExpStart => IonType::SExp,
TextValue::StructStart => IonType::Struct,
}
}
pub fn with_annotations<I: IntoRawAnnotations>(self, annotations: I) -> AnnotatedTextValue {
AnnotatedTextValue::new(annotations.into_annotations(), self)
}
pub fn without_annotations(self) -> AnnotatedTextValue {
AnnotatedTextValue::new(Vec::new(), self)
}
}
pub trait IntoRawAnnotations {
fn into_annotations(self) -> Vec<RawSymbolToken>;
}
impl<T> IntoRawAnnotations for T
where
T: Into<RawSymbolToken>,
{
fn into_annotations(self) -> Vec<RawSymbolToken> {
vec![self.into()]
}
}
fn annotations_from_iter<T, I>(collection: I) -> Vec<RawSymbolToken>
where
T: Into<RawSymbolToken>,
I: IntoIterator<Item = T>,
{
collection.into_iter().map(|item| item.into()).collect()
}
impl<T: Into<RawSymbolToken>> IntoRawAnnotations for Vec<T> {
fn into_annotations(self) -> Vec<RawSymbolToken> {
annotations_from_iter(self)
}
}
impl<T: Into<RawSymbolToken>, const N: usize> IntoRawAnnotations for [T; N] {
fn into_annotations(self) -> Vec<RawSymbolToken> {
annotations_from_iter(self)
}
}
impl<T: Into<RawSymbolToken> + Clone> IntoRawAnnotations for &[T] {
fn into_annotations(self) -> Vec<RawSymbolToken> {
annotations_from_iter(self)
}
}
impl<T: Into<RawSymbolToken> + Clone, const N: usize> IntoRawAnnotations for &[T; N] {
fn into_annotations(self) -> Vec<RawSymbolToken> {
annotations_from_iter(self)
}
}