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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
use crate::element::writer::TextKind;
use crate::raw_symbol_token_ref::{AsRawSymbolTokenRef, RawSymbolTokenRef};
use crate::result::IonResult;
use crate::text::raw_text_writer::RawTextWriter;
use crate::types::{Decimal, Timestamp};
use crate::writer::IonWriter;
use crate::{Int, IonType, RawTextWriterBuilder, SymbolTable};
use delegate::delegate;
use std::io::Write;

pub struct TextWriterBuilder {
    text_kind: TextKind,
}

impl TextWriterBuilder {
    /// Constructs a text Ion writer with the specified formatting. See [`TextKind`] for details.
    pub fn new(format: TextKind) -> TextWriterBuilder {
        TextWriterBuilder { text_kind: format }
    }

    /// Constructs a text Ion writer that serializes data with modest (but not strictly minimal)
    /// spacing.
    ///
    /// For example:
    /// ```text
    /// {foo: 1, bar: 2, baz: 3} [1, 2, 3] true "hello"
    /// ```
    pub fn compact() -> TextWriterBuilder {
        TextWriterBuilder {
            text_kind: TextKind::Compact,
        }
    }

    /// Constructs a newline-delimited text Ion writer that adds UNIX and human-friendly newlines
    /// between top-level values.
    ///
    /// For example:
    /// ```text
    /// {foo: 1, bar: 2, baz: 3}
    /// [1, 2, 3]
    /// true
    /// "hello"
    /// ```
    pub fn lines() -> TextWriterBuilder {
        TextWriterBuilder {
            text_kind: TextKind::Lines,
        }
    }

    /// Constructs a 'pretty' text Ion writer that adds human-friendly spacing between values.
    ///
    /// For example:
    /// ```text
    /// {
    ///     foo: 1,
    ///     bar: 2,
    ///     baz: 3
    /// }
    /// [
    ///     1,
    ///     2,
    ///     3
    /// ]
    /// true
    /// "hello"
    /// ```
    pub fn pretty() -> TextWriterBuilder {
        TextWriterBuilder {
            text_kind: TextKind::Pretty,
        }
    }

    /// Constructs a new instance of TextWriter that writes values to the provided io::Write
    /// implementation.
    pub fn build<W: Write>(self, sink: W) -> IonResult<TextWriter<W>> {
        let builder = match self.text_kind {
            TextKind::Compact => RawTextWriterBuilder::default(),
            TextKind::Pretty => RawTextWriterBuilder::pretty(),
            TextKind::Lines => RawTextWriterBuilder::lines(),
        };
        let raw_writer = builder.build(sink)?;
        let text_writer = TextWriter {
            raw_writer,
            symbol_table: SymbolTable::new(),
        };
        Ok(text_writer)
    }
}

impl Default for TextWriterBuilder {
    fn default() -> Self {
        TextWriterBuilder::new(TextKind::Compact)
    }
}

/**
 * An application-level text Ion writer. This writer manages a symbol table and so can convert
 * symbol IDs to their corresponding text. However, unlike the BinaryWriter, it is capable of writing
 * text to the output stream without first adding it to the symbol table.
 */
pub struct TextWriter<W: Write> {
    raw_writer: RawTextWriter<W>,
    symbol_table: SymbolTable,
}

impl<W: Write> IonWriter for TextWriter<W> {
    type Output = W;

    fn supports_text_symbol_tokens(&self) -> bool {
        // The TextWriter can always write text field names, annotations, and symbols.
        true
    }

    fn set_annotations<I, A>(&mut self, annotations: I)
    where
        A: AsRawSymbolTokenRef,
        I: IntoIterator<Item = A>,
    {
        for annotation in annotations {
            let raw_symbol_token_ref = match annotation.as_raw_symbol_token_ref() {
                RawSymbolTokenRef::SymbolId(symbol_id) => {
                    // Get the text associated with this symbol ID
                    match self.symbol_table.text_for(symbol_id) {
                        Some(text) => RawSymbolTokenRef::Text(text),
                        None => RawSymbolTokenRef::SymbolId(symbol_id),
                    }
                }
                text_token => text_token,
            };
            self.raw_writer.add_annotation(raw_symbol_token_ref);
        }
    }

    fn write_symbol<A: AsRawSymbolTokenRef>(&mut self, value: A) -> IonResult<()> {
        let raw_symbol_token_ref = match value.as_raw_symbol_token_ref() {
            RawSymbolTokenRef::SymbolId(symbol_id) => {
                // Get the text associated with this symbol ID
                match self.symbol_table.text_for(symbol_id) {
                    Some(text) => RawSymbolTokenRef::Text(text),
                    None => RawSymbolTokenRef::SymbolId(symbol_id),
                }
            }
            text_token => text_token,
        };
        self.raw_writer.write_symbol(raw_symbol_token_ref)
    }

    fn set_field_name<A: AsRawSymbolTokenRef>(&mut self, name: A) {
        let raw_symbol_token_ref = match name.as_raw_symbol_token_ref() {
            RawSymbolTokenRef::SymbolId(symbol_id) => {
                // Get the text associated with this symbol ID
                match self.symbol_table.text_for(symbol_id) {
                    Some(text) => RawSymbolTokenRef::Text(text),
                    None => RawSymbolTokenRef::SymbolId(symbol_id),
                }
            }
            text_token => text_token,
        };
        self.raw_writer.set_field_name(raw_symbol_token_ref);
    }

    delegate! {
        to self.raw_writer {
            fn ion_version(&self) -> (u8, u8);
            fn write_ion_version_marker(&mut self, major: u8, minor: u8) -> IonResult<()>;
            fn write_null(&mut self, ion_type: IonType) -> IonResult<()>;
            fn write_bool(&mut self, value: bool) -> IonResult<()>;
            fn write_i64(&mut self, value: i64) -> IonResult<()>;
            fn write_int(&mut self, value: &Int) -> IonResult<()>;
            fn write_f32(&mut self, value: f32) -> IonResult<()>;
            fn write_f64(&mut self, value: f64) -> IonResult<()>;
            fn write_decimal(&mut self, value: &Decimal) -> IonResult<()>;
            fn write_timestamp(&mut self, value: &Timestamp) -> IonResult<()>;
            fn write_string<A: AsRef<str>>(&mut self, value: A) -> IonResult<()>;
            fn write_clob<A: AsRef<[u8]>>(&mut self, value: A) -> IonResult<()>;
            fn write_blob<A: AsRef<[u8]>>(&mut self, value: A) -> IonResult<()>;
            fn step_in(&mut self, container_type: IonType) -> IonResult<()>;
            fn parent_type(&self) -> Option<IonType>;
            fn depth(&self) -> usize;
            fn step_out(&mut self) -> IonResult<()>;
            fn flush(&mut self) -> IonResult<()>;
            fn output(&self) -> &Self::Output;
            fn output_mut(&mut self) -> &mut Self::Output;
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::reader::ReaderBuilder;
    use crate::IonReader;
    use crate::StreamItem::Value;

    #[test]
    fn resolve_symbol_ids() -> IonResult<()> {
        // Unlike the binary writer, the text writer won't add strings to the symbol table.
        // However, if you ask it to write a symbol ID (e.g. $10) for which its initial symbol
        // table has text, it will convert it to text before writing it.
        let mut buffer = Vec::new();
        let mut text_writer = TextWriterBuilder::default().build(&mut buffer)?;
        // The following symbol IDs are in the system symbol table.
        // https://amazon-ion.github.io/ion-docs/docs/symbols.html#system-symbols
        text_writer.step_in(IonType::Struct)?;
        text_writer.set_field_name(4);
        text_writer.set_annotations([1]);
        text_writer.write_symbol(5)?;
        text_writer.step_out()?;
        text_writer.flush()?;

        let mut reader = ReaderBuilder::new().build(text_writer.output().as_slice())?;
        assert_eq!(Value(IonType::Struct), reader.next()?);
        reader.step_in()?;
        assert_eq!(Value(IonType::Symbol), reader.next()?);
        assert_eq!(1, reader.number_of_annotations());
        // The reader returns text values for the symbol IDs it encountered in the stream
        assert_eq!("$ion", reader.annotations().next().unwrap()?);
        assert_eq!("name", reader.field_name()?);
        assert_eq!("version", reader.read_symbol()?);

        Ok(())
    }
}