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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
use std::io::{BufWriter, Write};

use bigdecimal::BigDecimal;
use chrono::{DateTime, FixedOffset};

use crate::element::writer::TextKind;
use crate::raw_symbol_token_ref::{AsRawSymbolTokenRef, RawSymbolTokenRef};
use crate::result::{illegal_operation, IonResult};
use crate::text::text_formatter::STRING_ESCAPE_CODES;
use crate::types::{ContainerType, Decimal, Timestamp};
use crate::writer::IonWriter;
use crate::{Int, IonType, RawSymbolToken};

pub struct RawTextWriterBuilder {
    whitespace_config: WhitespaceConfig,
}

impl RawTextWriterBuilder {
    /// Constructs a text Ion writer with the specified formatting. See [`TextKind`] for details.
    pub fn new(text_kind: TextKind) -> RawTextWriterBuilder {
        match text_kind {
            TextKind::Compact => Self::compact(),
            TextKind::Lines => Self::lines(),
            TextKind::Pretty => Self::pretty(),
        }
    }

    /// Constructs a text Ion writer with modest (but not strictly minimal) spacing.
    ///
    /// For example:
    /// ```text
    /// {foo: 1, bar: 2, baz: 3} [1, 2, 3] true "hello"
    /// ```
    pub fn compact() -> RawTextWriterBuilder {
        RawTextWriterBuilder {
            whitespace_config: COMPACT_WHITESPACE_CONFIG.clone(),
        }
    }

    /// Constructs a 'lines' 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"
    /// ```
    // This doesn't solve the problem of final newlines. Should find a way to solve that some day.
    //TODO: https://github.com/amazon-ion/ion-rust/issues/437
    pub fn lines() -> RawTextWriterBuilder {
        RawTextWriterBuilder {
            whitespace_config: LINES_WHITESPACE_CONFIG.clone(),
        }
    }

    /// 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() -> RawTextWriterBuilder {
        RawTextWriterBuilder {
            whitespace_config: PRETTY_WHITESPACE_CONFIG.clone(),
        }
    }

    pub fn with_space_between_top_level_values(
        mut self,
        space_between_top_level_values: &'static str,
    ) -> RawTextWriterBuilder {
        self.whitespace_config.space_between_top_level_values = space_between_top_level_values;
        self
    }

    pub fn with_space_between_nested_values(
        mut self,
        space_between_values: &'static str,
    ) -> RawTextWriterBuilder {
        self.whitespace_config.space_between_nested_values = space_between_values;
        self
    }

    pub fn with_indentation(mut self, indentation: &'static str) -> RawTextWriterBuilder {
        self.whitespace_config.indentation = indentation;
        self
    }

    pub fn with_space_after_field_name(
        mut self,
        space_after_field_name: &'static str,
    ) -> RawTextWriterBuilder {
        self.whitespace_config.space_after_field_name = space_after_field_name;
        self
    }

    pub fn with_space_after_container_start(
        mut self,
        space_after_container_start: &'static str,
    ) -> RawTextWriterBuilder {
        self.whitespace_config.space_after_container_start = space_after_container_start;
        self
    }

    /// Constructs a new instance of [RawTextWriter] that writes values to the provided io::Write
    /// implementation.
    pub fn build<W: Write>(self, sink: W) -> IonResult<RawTextWriter<W>> {
        let raw_text_writer = RawTextWriter {
            output: BufWriter::new(sink),
            annotations: Vec::new(),
            field_name: None,
            containers: vec![EncodingLevel::default()],
            // Should we validate here that all the strings in `whitespace_config` actually are
            // semantically whitespace?
            //TODO: https://github.com/amazon-ion/ion-rust/issues/438
            whitespace_config: Box::new(self.whitespace_config),
        };
        // This method cannot currently fail. It returns an IonResult<_> to be consistent with the
        // other builder APIs and to allow for fallible setup operations in the future.
        Ok(raw_text_writer)
    }
}

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

#[derive(Debug, PartialEq, Default)]
struct EncodingLevel {
    container_type: ContainerType,
    child_count: usize,
}

#[derive(Clone)]
struct WhitespaceConfig {
    // Top-level values are independent of other values in the stream, we may separate differently
    space_between_top_level_values: &'static str,
    // Non-top-level values are within a container
    space_between_nested_values: &'static str,
    // Indentation is repeated before nested values, corresponding to the level of nesting
    indentation: &'static str,
    // e.g. after 'foo:' in "{foo: bar}"
    space_after_field_name: &'static str,
    // Between the container open and any value in it
    space_after_container_start: &'static str,
}

static COMPACT_WHITESPACE_CONFIG: WhitespaceConfig = WhitespaceConfig {
    // Single space between top level values
    space_between_top_level_values: " ",
    // Single space between values
    space_between_nested_values: " ",
    // No indentation
    indentation: "",
    // Single space between field names and values
    space_after_field_name: " ",
    // The first value in a container appears next to the opening delimiter
    space_after_container_start: "",
};

static LINES_WHITESPACE_CONFIG: WhitespaceConfig = WhitespaceConfig {
    // Each value appears on its own line
    space_between_top_level_values: "\n",
    // Otherwise use the compact/default layout from `DEFAULT_WS_CONFIG`
    ..COMPACT_WHITESPACE_CONFIG
};

static PRETTY_WHITESPACE_CONFIG: WhitespaceConfig = WhitespaceConfig {
    // Each top-level value starts on its own line
    space_between_top_level_values: "\n",
    // Each value appears on its own line
    space_between_nested_values: "\n",
    // Values get two spaces of indentation per level of depth
    indentation: "  ",
    // Field names and values are separated by a single space
    space_after_field_name: " ",
    // The first value in a container appears on a line by itself
    space_after_container_start: "\n",
};

pub struct RawTextWriter<W: Write> {
    output: BufWriter<W>,
    annotations: Vec<RawSymbolToken>,
    field_name: Option<RawSymbolToken>,
    containers: Vec<EncodingLevel>,
    whitespace_config: Box<WhitespaceConfig>,
}

impl<W: Write> RawTextWriter<W> {
    /// Returns true if the RawTextWriter is currently positioned within a Struct.
    pub fn is_in_struct(&self) -> bool {
        self.parent_level().container_type == ContainerType::Struct
    }

    /// Returns the number of values that have already been written in this container.
    /// Before the first value in a container is written, this returns `0`.
    /// For the purposes of this method, the top level is considered a container.
    fn index_within_parent(&self) -> usize {
        self.parent_level().child_count
    }

    /// Returns the `&EncodingLevel` into which the RawTextWriter most recently stepped.
    fn parent_level(&self) -> &EncodingLevel {
        // `self.containers` is never empty; it always has at least the top level.
        self.containers.last().unwrap()
    }

    /// Increments the value returned by [Self::index_within_parent].
    fn increment_child_count(&mut self) {
        let parent_level = self.containers.last_mut().unwrap();
        parent_level.child_count += 1;
    }

    /// Called after each value is written to emit an appropriate delimiter before the next value.
    fn write_value_delimiter(&mut self) -> IonResult<()> {
        use ContainerType::*;
        let delimiter = match self.parent_level().container_type {
            TopLevel => "",
            Struct | List => ",",
            SExpression => "",
        };
        write!(self.output, "{delimiter}")?;
        Ok(())
    }

    /// Writes any interstitial whitespace that is appropriate for the current context, including:
    /// * Whitespace following a container start
    /// * Whitespace between values
    /// * Indentation
    fn write_space_before_value(&mut self) -> IonResult<()> {
        // If this is the first value in this container...
        if self.index_within_parent() == 0 {
            // ...and we're not at the top level...
            if self.depth() > 0 {
                // ...then this is the first value inside a container. We'll write the
                // `space_after_container_start` so it will (e.g.) appear on its own line.
                write!(
                    &mut self.output,
                    "{}",
                    self.whitespace_config.space_after_container_start
                )?;
            }
        } else {
            // Otherwise, this is not the first value in this container. Emit the container's
            // delimiter (for example: in a list, write a `,`) before we write the value itself.
            self.write_value_delimiter()?;

            let value_spacer = if self.depth() == 0 {
                &self.whitespace_config.space_between_top_level_values
            } else {
                &self.whitespace_config.space_between_nested_values
            };
            write!(&mut self.output, "{value_spacer}")?;
        }

        if !self.whitespace_config.indentation.is_empty() {
            // Write enough indentation for the current level of depth
            for _ in 0..self.depth() {
                write!(&mut self.output, "{}", self.whitespace_config.indentation)?;
            }
        }
        Ok(())
    }

    /// Returns `true` if the provided `token`'s text is an 'identifier'. That is, the text starts
    /// with a `$`, `_` or ASCII letter and is followed by a sequence of `$`, `_`, or ASCII letters
    /// and numbers. Examples:
    /// * `firstName`
    /// * `first_name`
    /// * `name_1`
    /// * `$name`
    /// Unlike other symbols, identifiers don't have to be wrapped in quotes.
    fn token_is_identifier(token: &str) -> bool {
        if token.is_empty() {
            return false;
        }
        let mut chars = token.chars();
        let first = chars.next().unwrap();
        (first == '$' || first == '_' || first.is_ascii_alphabetic())
            && chars.all(|c| c == '$' || c == '_' || c.is_ascii_alphanumeric())
    }

    /// Returns `true` if the provided text is an Ion keyword. Keywords like `true` or `null`
    /// resemble identifiers, but writers must wrap them in quotes when using them as symbol text.
    fn token_is_keyword(token: &str) -> bool {
        const KEYWORDS: &[&str] = &["true", "false", "nan", "null"];
        KEYWORDS.contains(&token)
    }

    /// Returns `true` if this token's text resembles a symbol ID literal. For example: `'$99'` is a
    /// symbol with the text `$99`. However, `$99` (without quotes) is a symbol ID that maps to
    /// different text.
    fn token_resembles_symbol_id(token: &str) -> bool {
        if token.is_empty() {
            return false;
        }
        let mut chars = token.chars();
        let first = chars.next().unwrap();
        first == '$' && chars.all(|c| c.is_numeric())
    }

    pub(crate) fn write_symbol_token<A: AsRawSymbolTokenRef>(
        output: &mut BufWriter<W>,
        token: A,
    ) -> IonResult<()> {
        match token.as_raw_symbol_token_ref() {
            RawSymbolTokenRef::SymbolId(sid) => write!(output, "${sid}")?,
            RawSymbolTokenRef::Text(text)
                if Self::token_is_keyword(text) || Self::token_resembles_symbol_id(text) =>
            {
                // Write the symbol text in single quotes
                write!(output, "'{text}'")?;
            }
            RawSymbolTokenRef::Text(text) if Self::token_is_identifier(text) => {
                // Write the symbol text without quotes
                write!(output, "{text}")?
            }
            RawSymbolTokenRef::Text(text) => {
                // Write the symbol text using quotes and escaping any characters that require it.
                write!(output, "\'")?;
                Self::write_escaped_text_body(output, text)?;
                write!(output, "\'")?;
            }
        };
        Ok(())
    }

    // Write the field name and annotations if set
    fn write_value_metadata(&mut self) -> IonResult<()> {
        if let Some(field_name) = &self.field_name.take() {
            Self::write_symbol_token(&mut self.output, field_name)?;
            write!(
                self.output,
                ":{}",
                self.whitespace_config.space_after_field_name
            )?;
        } else if self.is_in_struct() {
            return illegal_operation("Values inside a struct must have a field name.");
        }

        if !self.annotations.is_empty() {
            for annotation in &self.annotations {
                Self::write_symbol_token(&mut self.output, annotation)?;
                write!(self.output, "::")?;
            }
            self.annotations.clear();
        }
        Ok(())
    }

    // Writes:
    // * the field name (if any)
    // * the annotations (if any)
    // * the value written by the `scalar_writer` closure
    // * a trailing delimiter (if any)
    fn write_scalar<F>(&mut self, scalar_writer: F) -> IonResult<()>
    where
        F: FnOnce(&mut BufWriter<W>) -> IonResult<()>,
    {
        self.write_space_before_value()?;
        self.write_value_metadata()?;
        scalar_writer(&mut self.output)?;
        // We just wrote another value; bump the child count.
        self.increment_child_count();
        Ok(())
    }

    /// Writes the provided BigDecimal value as an Ion decimal.
    pub fn write_big_decimal(&mut self, value: &BigDecimal) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "{}", &value)?;
            Ok(())
        })
    }

    /// Writes the provided DateTime value as an Ion timestamp.
    #[deprecated(
        since = "0.6.1",
        note = "Please use the `write_timestamp` method instead."
    )]
    pub fn write_datetime(&mut self, value: &DateTime<FixedOffset>) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "{}", value.to_rfc3339())?;
            Ok(())
        })
    }

    pub fn add_annotation<A: AsRawSymbolTokenRef>(&mut self, annotation: A) {
        // TODO: This function currently allocates a new string for each annotation.
        //       It will be common for this text to come from the symbol table; we should
        //       make it possible to pass an Arc<str> or similar when applicable.
        //       See: https://github.com/amazon-ion/ion-rust/issues/496
        let token = match annotation.as_raw_symbol_token_ref() {
            RawSymbolTokenRef::SymbolId(sid) => RawSymbolToken::SymbolId(sid),
            RawSymbolTokenRef::Text(text) => RawSymbolToken::Text(text.to_string()),
        };
        self.annotations.push(token);
    }

    /// Writes the body (i.e. no start or end delimiters) of a string or symbol with any illegal
    /// characters escaped.
    pub(crate) fn write_escaped_text_body<S: AsRef<str>>(
        output: &mut BufWriter<W>,
        value: S,
    ) -> IonResult<()> {
        let mut start = 0usize;
        let text = value.as_ref();
        for (byte_index, character) in text.char_indices() {
            let escaped = match character {
                '\n' => r"\n",
                '\r' => r"\r",
                '\t' => r"\t",
                '\\' => r"\\",
                '/' => r"\/",
                '"' => r#"\""#,
                '\'' => r"\'",
                '?' => r"\?",
                '\x00' => r"\0", // NUL
                '\x07' => r"\a", // alert BEL
                '\x08' => r"\b", // backspace
                '\x0B' => r"\v", // vertical tab
                '\x0C' => r"\f", // form feed
                _ => {
                    // Other characters can be left as-is
                    continue;
                }
            };
            // If we reach this point, the current character needed to be escaped.
            // Write all of the text leading up to this character to output, then the escaped
            // version of this character.
            write!(output, "{}{}", &text[start..byte_index], escaped)?;
            // Update `start` to point to the first byte after the end of this character.
            start = byte_index + character.len_utf8();
        }
        write!(output, "{}", &text[start..])?;
        Ok(())
    }
}

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

    fn ion_version(&self) -> (u8, u8) {
        (1, 0)
    }

    fn write_ion_version_marker(&mut self, major: u8, minor: u8) -> IonResult<()> {
        write!(self.output, "$ion_{major}_{minor}")?;
        Ok(())
    }

    fn supports_text_symbol_tokens(&self) -> bool {
        true
    }

    /// Sets a list of annotations that will be applied to the next value that is written.
    fn set_annotations<I, A>(&mut self, annotations: I)
    where
        A: AsRawSymbolTokenRef,
        I: IntoIterator<Item = A>,
    {
        self.annotations.clear();
        for annotation in annotations {
            self.add_annotation(annotation)
        }
    }

    /// Writes an Ion null of the specified type.
    fn write_null(&mut self, ion_type: IonType) -> IonResult<()> {
        use IonType::*;
        self.write_scalar(|output| {
            let null_text = match ion_type {
                Null => "null",
                Bool => "null.bool",
                Int => "null.int",
                Float => "null.float",
                Decimal => "null.decimal",
                Timestamp => "null.timestamp",
                Symbol => "null.symbol",
                String => "null.string",
                Blob => "null.blob",
                Clob => "null.clob",
                List => "null.list",
                SExp => "null.sexp",
                Struct => "null.struct",
            };
            write!(output, "{null_text}")?;
            Ok(())
        })
    }

    /// Writes the provided bool value as an Ion boolean.
    fn write_bool(&mut self, value: bool) -> IonResult<()> {
        self.write_scalar(|output| {
            let bool_text = match value {
                true => "true",
                false => "false",
            };
            write!(output, "{bool_text}")?;
            Ok(())
        })
    }

    /// Writes the provided i64 value as an Ion integer.
    fn write_i64(&mut self, value: i64) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "{value}")?;
            Ok(())
        })
    }

    /// Writes an Ion `integer` with the specified value to the output stream.
    fn write_int(&mut self, value: &Int) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "{value}")?;
            Ok(())
        })
    }

    /// Writes the provided f64 value as an Ion float.
    fn write_f32(&mut self, value: f32) -> IonResult<()> {
        // The text writer doesn't distinguish between f32 and f64 in its output.
        self.write_f64(value as f64)
    }

    /// Writes the provided f64 value as an Ion float.
    fn write_f64(&mut self, value: f64) -> IonResult<()> {
        self.write_scalar(|output| {
            if value.is_nan() {
                write!(output, "nan")?;
                return Ok(());
            }

            if value.is_infinite() {
                if value.is_sign_positive() {
                    write!(output, "+inf")?;
                } else {
                    write!(output, "-inf")?;
                }
                return Ok(());
            }

            // The {:e} formatter provided by the Display trait writes floats using scientific
            // notation. It works for all floating point values except -0.0 (it drops the sign).
            // See: https://github.com/rust-lang/rust/issues/20596
            if value == 0.0f64 && value.is_sign_negative() {
                write!(output, "-0e0")?;
                return Ok(());
            }

            write!(output, "{value:e}")?;
            Ok(())
        })
    }

    /// Writes the provided Decimal as an Ion decimal.
    fn write_decimal(&mut self, value: &Decimal) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "{value}")?;
            Ok(())
        })
    }

    /// Writes the provided Timestamp as an Ion timestamp.
    fn write_timestamp(&mut self, value: &Timestamp) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "{value}")?;
            Ok(())
        })
    }

    /// Writes the provided &str value as an Ion symbol.
    fn write_symbol<A: AsRawSymbolTokenRef>(&mut self, value: A) -> IonResult<()> {
        self.write_scalar(|output| {
            RawTextWriter::write_symbol_token(output, value)?;
            Ok(())
        })
    }

    /// Writes the provided &str value as an Ion string.
    fn write_string<S: AsRef<str>>(&mut self, value: S) -> IonResult<()> {
        self.write_scalar(|output| {
            write!(output, "\"")?;
            RawTextWriter::write_escaped_text_body(output, value)?;
            write!(output, "\"")?;
            Ok(())
        })
    }

    /// Writes the provided byte array slice as an Ion clob.
    fn write_clob<A: AsRef<[u8]>>(&mut self, value: A) -> IonResult<()> {
        // clob_value to be written based on defined STRING_ESCAPE_CODES.
        const NUM_DELIMITER_BYTES: usize = 4; // {{}}
        const NUM_HEX_BYTES_PER_BYTE: usize = 4; // \xHH

        let value: &[u8] = value.as_ref();

        // Set aside enough memory to hold a clob containing all hex-encoded bytes
        let mut clob_value =
            String::with_capacity((value.len() * NUM_HEX_BYTES_PER_BYTE) + NUM_DELIMITER_BYTES);

        for byte in value.iter().copied() {
            let c = byte as char;
            let escaped_byte = STRING_ESCAPE_CODES[c as usize];
            if !escaped_byte.is_empty() {
                clob_value.push_str(escaped_byte);
            } else {
                clob_value.push(c);
            }
        }
        self.write_scalar(|output| {
            write!(output, "{{{{\"{clob_value}\"}}}}")?;
            Ok(())
        })
    }

    /// Writes the provided byte array slice as an Ion blob.
    fn write_blob<A: AsRef<[u8]>>(&mut self, value: A) -> IonResult<()> {
        self.write_scalar(|output| {
            // Rust format strings escape curly braces by doubling them. The following string is:
            // * The opening {{ from a text Ion blob, with each brace doubled to escape it.
            // * A {} pair used by the format string to indicate where the base64-encoded bytes
            //   should be inserted.
            // * The closing }} from a text Ion blob, with each brace doubled to escape it.
            write!(output, "{{{{{}}}}}", base64::encode(value))?;
            Ok(())
        })
    }

    /// Begins a container (List, S-Expression, or Struct). If `ion_type` is not a container type,
    /// `step_in` will return an Err(IllegalOperation).
    fn step_in(&mut self, ion_type: IonType) -> IonResult<()> {
        use IonType::*;

        self.write_space_before_value()?;
        self.write_value_metadata()?;
        let container_type = match ion_type {
            Struct => {
                write!(self.output, "{{")?;
                ContainerType::Struct
            }
            List => {
                write!(self.output, "[")?;
                ContainerType::List
            }
            SExp => {
                write!(self.output, "(")?;
                ContainerType::SExpression
            }
            _ => return illegal_operation(format!("Cannot step into a(n) {ion_type:?}")),
        };
        self.containers.push(EncodingLevel {
            container_type,
            child_count: 0usize,
        });

        Ok(())
    }

    /// Sets the current field name to `name`. If the TextWriter is currently positioned inside
    /// of a struct, the field name will be written before the next value. Otherwise, it will be
    /// ignored.
    fn set_field_name<A: AsRawSymbolTokenRef>(&mut self, name: A) {
        let token = match name.as_raw_symbol_token_ref() {
            RawSymbolTokenRef::SymbolId(sid) => RawSymbolToken::SymbolId(sid),
            RawSymbolTokenRef::Text(text) => RawSymbolToken::Text(text.to_string()),
        };
        self.field_name = Some(token);
    }

    fn parent_type(&self) -> Option<IonType> {
        match self.parent_level().container_type {
            ContainerType::TopLevel => None,
            ContainerType::List => Some(IonType::List),
            ContainerType::SExpression => Some(IonType::SExp),
            ContainerType::Struct => Some(IonType::Struct),
        }
    }

    fn depth(&self) -> usize {
        self.containers.len() - 1
    }

    /// Completes the current container. If the TextWriter is not currently positioned inside a
    /// container, `step_out` will return an Err(IllegalOperation).
    fn step_out(&mut self) -> IonResult<()> {
        use ContainerType::*;
        let end_delimiter = match self.parent_level().container_type {
            Struct => "}",
            List => "]",
            SExpression => ")",
            TopLevel => return illegal_operation("cannot step out of the top level"),
        };
        // Wait to pop() the encoding level until after we've confirmed it wasn't TopLevel
        let popped_encoding_level = self.containers.pop().unwrap();
        if popped_encoding_level.child_count > 0 {
            // If this isn't an empty container, put the closing delimiter on the next line
            // with proper indentation.
            if self
                .whitespace_config
                .space_between_nested_values
                .contains(['\n', '\r'])
            {
                writeln!(&mut self.output)?;
                for _ in 0..self.depth() {
                    write!(&mut self.output, "{}", self.whitespace_config.indentation)?;
                }
            }
        }
        write!(self.output, "{end_delimiter}")?;
        self.increment_child_count();
        Ok(())
    }

    fn flush(&mut self) -> IonResult<()> {
        self.output.flush()?;
        Ok(())
    }

    fn output(&self) -> &W {
        self.output.get_ref()
    }

    fn output_mut(&mut self) -> &mut W {
        self.output.get_mut()
    }
}

#[cfg(test)]
mod tests {
    use std::str;
    use std::str::FromStr;

    use bigdecimal::BigDecimal;
    use chrono::{FixedOffset, NaiveDate, TimeZone};

    use crate::result::IonResult;
    use crate::text::raw_text_writer::{RawTextWriter, RawTextWriterBuilder};
    use crate::types::Timestamp;
    use crate::writer::IonWriter;
    use crate::IonType;

    fn writer_test_with_builder<F>(builder: RawTextWriterBuilder, mut commands: F, expected: &str)
    where
        F: FnMut(&mut RawTextWriter<&mut Vec<u8>>) -> IonResult<()>,
    {
        let mut output = Vec::new();
        let mut writer = builder
            .build(&mut output)
            .expect("could not create RawTextWriter");
        commands(&mut writer).expect("Invalid TextWriter test commands.");
        writer.flush().expect("Call to flush() failed.");
        assert_eq!(
            str::from_utf8(writer.output().as_slice()).unwrap(),
            expected
        );
    }

    /// Constructs a [RawTextWriter] using [RawTextReaderBuilder::default], passes it to the
    /// provided `commands` closure, and then verifies that its output matches `expected_default`.
    /// Then, constructs a [RawTextWriter] using [RawTextReaderBuilder::pretty], passes it to the
    /// provided `commands` closure, and then verifies that its output matches `expected_pretty`.
    /// Finally, constructs a [RawTextWriter] using [RawTextReaderBuilder::lines], passes it to the
    /// provided `commands` closure, and then verifies that its output matches `expected_lines`.
    fn writer_test<F>(
        mut commands: F,
        expected_default: &str,
        expected_pretty: &str,
        expected_lines: &str,
    ) where
        F: Fn(&mut RawTextWriter<&mut Vec<u8>>) -> IonResult<()>,
    {
        writer_test_with_builder(
            RawTextWriterBuilder::default(),
            &mut commands,
            expected_default,
        );
        writer_test_with_builder(
            RawTextWriterBuilder::pretty(),
            &mut commands,
            expected_pretty,
        );
        writer_test_with_builder(RawTextWriterBuilder::lines(), commands, expected_lines)
    }

    /// When writing a scalar value, there shouldn't be any difference in output between the
    /// `default`, `pretty`, and `lines` text writers. This function simply calls `writer_test_with_builder`
    /// above using the same expected text for all cases.
    fn write_scalar_test<F>(mut commands: F, expected: &str)
    where
        F: Fn(&mut RawTextWriter<&mut Vec<u8>>) -> IonResult<()>,
    {
        writer_test_with_builder(RawTextWriterBuilder::default(), &mut commands, expected);
        writer_test_with_builder(RawTextWriterBuilder::pretty(), &mut commands, expected);
        writer_test_with_builder(RawTextWriterBuilder::lines(), commands, expected)
    }

    #[test]
    fn write_null_null() {
        write_scalar_test(|w| w.write_null(IonType::Null), "null");
    }

    #[test]
    fn write_null_string() {
        write_scalar_test(|w| w.write_null(IonType::String), "null.string");
    }

    #[test]
    fn write_bool_true() {
        write_scalar_test(|w| w.write_bool(true), "true");
    }

    #[test]
    fn write_bool_false() {
        write_scalar_test(|w| w.write_bool(false), "false");
    }

    #[test]
    fn write_i64() {
        write_scalar_test(|w| w.write_i64(7), "7");
    }

    #[test]
    fn write_f32() {
        write_scalar_test(|w| w.write_f32(700f32), "7e2");
    }

    #[test]
    fn write_f64() {
        write_scalar_test(|w| w.write_f64(700f64), "7e2");
    }

    #[test]
    fn write_annotated_i64() {
        write_scalar_test(
            |w| {
                w.set_annotations(["foo", "bar", "baz quux"]);
                w.write_i64(7)
            },
            "foo::bar::'baz quux'::7",
        );
    }

    #[test]
    fn write_decimal() {
        let decimal_text = "731221.9948";
        write_scalar_test(
            |w| w.write_big_decimal(&BigDecimal::from_str(decimal_text).unwrap()),
            decimal_text,
        );
    }

    #[test]
    fn write_datetime_epoch() {
        #![allow(deprecated)] // `write_datetime` is deprecated
        let naive_datetime =
            NaiveDate::from_ymd(2000_i32, 1_u32, 1_u32).and_hms(0_u32, 0_u32, 0_u32);
        let offset = FixedOffset::west(0);
        let datetime = offset.from_utc_datetime(&naive_datetime);
        write_scalar_test(|w| w.write_datetime(&datetime), "2000-01-01T00:00:00+00:00");
    }

    #[test]
    fn write_timestamp_with_year() {
        let timestamp = Timestamp::with_year(2000)
            .build()
            .expect("building timestamp failed");
        write_scalar_test(|w| w.write_timestamp(&timestamp), "2000T");
    }

    #[test]
    fn write_timestamp_with_month() {
        let timestamp = Timestamp::with_year(2000)
            .with_month(8)
            .build()
            .expect("building timestamp failed");
        write_scalar_test(|w| w.write_timestamp(&timestamp), "2000-08T");
    }

    #[test]
    fn write_timestamp_with_ymd() {
        let timestamp = Timestamp::with_ymd(2000, 8, 22)
            .build()
            .expect("building timestamp failed");
        write_scalar_test(|w| w.write_timestamp(&timestamp), "2000-08-22T");
    }

    #[test]
    fn write_timestamp_with_ymd_hms() {
        let timestamp = Timestamp::with_ymd(2000, 8, 22)
            .with_hms(15, 45, 11)
            .build_at_offset(2 * 60)
            .expect("building timestamp failed");
        write_scalar_test(
            |w| w.write_timestamp(&timestamp),
            "2000-08-22T15:45:11+02:00",
        );
    }

    #[test]
    fn write_timestamp_with_ymd_hms_millis() {
        let timestamp = Timestamp::with_ymd_hms_millis(2000, 8, 22, 15, 45, 11, 931)
            .build_at_offset(-5 * 60)
            .expect("building timestamp failed");
        write_scalar_test(
            |w| w.write_timestamp(&timestamp),
            "2000-08-22T15:45:11.931-05:00",
        );
    }

    #[test]
    fn write_timestamp_with_ymd_hms_millis_unknown_offset() {
        let timestamp = Timestamp::with_ymd_hms_millis(2000, 8, 22, 15, 45, 11, 931)
            .build_at_unknown_offset()
            .expect("building timestamp failed");
        write_scalar_test(
            |w| w.write_timestamp(&timestamp),
            "2000-08-22T15:45:11.931-00:00",
        );
    }

    #[test]
    fn write_blob() {
        write_scalar_test(|w| w.write_blob("hello".as_bytes()), "{{aGVsbG8=}}");
    }

    #[test]
    fn write_clob() {
        write_scalar_test(|w| w.write_clob("a\"\'\n".as_bytes()), "{{\"a\\\"'\\n\"}}");
        write_scalar_test(
            |w| w.write_clob("❤️".as_bytes()),
            "{{\"\\xe2\\x9d\\xa4\\xef\\xb8\\x8f\"}}",
        );
        write_scalar_test(
            |w| w.write_clob("hello world".as_bytes()),
            "{{\"hello world\"}}",
        );
    }

    #[test]
    fn with_space_between_top_level_values() {
        writer_test_with_builder(
            RawTextWriterBuilder::default().with_space_between_top_level_values("  "),
            |w| {
                w.write_bool(true)?;
                w.write_bool(false)
            },
            "true  false",
        );
    }

    #[test]
    fn with_space_between_nested_values() {
        writer_test_with_builder(
            RawTextWriterBuilder::default().with_space_between_nested_values("  "),
            |w| {
                w.write_bool(true)?;
                w.step_in(IonType::List)?;
                w.write_string("foo")?;
                w.write_i64(21)?;
                w.write_symbol("bar")?;
                w.step_out()
            },
            "true [\"foo\",  21,  bar]", // extra spaces between nested values only
        );
    }

    #[test]
    fn with_indentation() {
        writer_test_with_builder(
            RawTextWriterBuilder::pretty().with_indentation(" "),
            |w| {
                w.step_in(IonType::List)?;
                w.write_string("foo")?;
                w.write_i64(21)?;
                w.write_symbol("bar")?;
                w.step_out()
            },
            "[\n \"foo\",\n 21,\n bar\n]", // single space indentation differs from pretty()
        );
    }

    #[test]
    fn with_space_after_field_name() {
        writer_test_with_builder(
            RawTextWriterBuilder::default().with_space_after_field_name("   "),
            |w| {
                w.step_in(IonType::Struct)?;
                w.set_field_name("a");
                w.write_string("foo")?;
                w.step_out()
            },
            "{a:   \"foo\"}",
        );
    }

    #[test]
    fn with_space_after_container_start() {
        writer_test_with_builder(
            RawTextWriterBuilder::default().with_space_after_container_start("   "),
            |w| {
                w.step_in(IonType::Struct)?;
                w.set_field_name("a");
                w.write_string("foo")?;
                w.step_out()
            },
            "{   a: \"foo\"}",
        );
    }

    #[test]
    fn write_stream() {
        writer_test(
            |w| {
                w.write_string("foo")?;
                w.write_i64(21)?;
                w.write_symbol("bar")
            },
            "\"foo\" 21 bar",
            "\"foo\"\n21\nbar",
            "\"foo\"\n21\nbar",
        );
    }

    #[test]
    fn write_list() {
        writer_test(
            |w| {
                w.step_in(IonType::List)?;
                w.write_string("foo")?;
                w.write_i64(21)?;
                w.write_symbol("bar")?;
                w.step_out()
            },
            "[\"foo\", 21, bar]",
            "[\n  \"foo\",\n  21,\n  bar\n]",
            "[\"foo\", 21, bar]",
        );
    }

    #[test]
    fn write_nested_list() {
        writer_test(
            |w| {
                w.step_in(IonType::List)?;
                w.write_string("foo")?;
                w.write_i64(21)?;
                w.step_in(IonType::List)?;
                w.write_symbol("bar")?;
                w.step_out()?;
                w.step_out()
            },
            "[\"foo\", 21, [bar]]",
            "[\n  \"foo\",\n  21,\n  [\n    bar\n  ]\n]",
            "[\"foo\", 21, [bar]]",
        );
    }

    #[test]
    fn write_s_expression() {
        writer_test(
            |w| {
                w.step_in(IonType::SExp)?;
                w.write_string("foo")?;
                w.write_i64(21)?;
                w.write_symbol("bar")?;
                w.step_out()
            },
            "(\"foo\" 21 bar)",
            "(\n  \"foo\"\n  21\n  bar\n)",
            "(\"foo\" 21 bar)",
        );
    }

    #[test]
    fn write_struct() {
        writer_test(
            |w| {
                w.step_in(IonType::Struct)?;
                w.set_field_name("a");
                w.write_string("foo")?;
                w.set_field_name("b");
                w.write_i64(21)?;
                w.set_field_name("c");
                w.set_annotations(["quux"]);
                w.write_symbol("bar")?;
                w.step_out()
            },
            "{a: \"foo\", b: 21, c: quux::bar}",
            "{\n  a: \"foo\",\n  b: 21,\n  c: quux::bar\n}",
            "{a: \"foo\", b: 21, c: quux::bar}",
        );
    }
}