1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
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
    }
}

/// Represents a single value encountered in a text Ion stream. The enum includes variants for each
/// scalar type as well as variants for the beginning of each container type.
#[derive(Debug, Clone, PartialEq)]
pub(crate) enum TextValue {
    Null(IonType),
    Bool(bool),
    Int(Int),
    Float(f64),
    Decimal(Decimal),
    Timestamp(Timestamp),
    Symbol(RawSymbolToken),
    // TODO: String(&str) will be possible if/when we add reusable buffers to the TextReader.
    String(String),
    // TODO: [BC]lob(&[u8]) will be possible if/when we add reusable buffers to the TextReader.
    Clob(Vec<u8>),
    Blob(Vec<u8>),
    ListStart,
    SExpStart,
    StructStart,
}

impl TextValue {
    /// Returns the IonType associated with the TextValue in question.
    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,
        }
    }

    /// Converts this [TextValue] into an [AnnotatedTextValue] with the specified annotations.
    pub fn with_annotations<I: IntoRawAnnotations>(self, annotations: I) -> AnnotatedTextValue {
        AnnotatedTextValue::new(annotations.into_annotations(), self)
    }

    /// Converts this [TextValue] into an [AnnotatedTextValue] with no annotations.
    pub fn without_annotations(self) -> AnnotatedTextValue {
        // Vec::new() doesn't perform heap allocations
        AnnotatedTextValue::new(Vec::new(), self)
    }
}

/// Converts a given type into a `Vec<RawSymbolToken>`.
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)
    }
}