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
use crate::raw_symbol_token::RawSymbolToken;
use crate::text::parse_result::{IonParseResult, UpgradeIResult, UpgradeParser};
use nom::branch::alt;
use nom::bytes::streaming::tag;
use nom::combinator::{map, peek, value};
use nom::sequence::{delimited, pair, preceded, terminated};
use nom::{IResult, Parser};

use crate::text::parsers::annotations::parse_annotations;
use crate::text::parsers::comments::whitespace_or_comments;
use crate::text::parsers::string::parse_string;
use crate::text::parsers::symbol::{parse_operator, parse_symbol};
use crate::text::parsers::top_level::top_level_value;
use crate::text::parsers::value::{annotated_container_start, annotated_scalar};
use crate::text::text_value::{AnnotatedTextValue, TextValue};

/// Matches the beginning of a container and returns a [TextValue] indicating its type.
pub(crate) fn container_start(input: &str) -> IonParseResult<TextValue> {
    alt((struct_start, list_start, s_expression_start))(input).upgrade()
}

/// Matches the beginning of a struct and returns a [TextValue::StructStart].
pub(crate) fn struct_start(input: &str) -> IResult<&str, TextValue> {
    value(TextValue::StructStart, tag("{"))(input)
}

/// Matches the beginning of a list and returns a [TextValue::ListStart].
pub(crate) fn list_start(input: &str) -> IResult<&str, TextValue> {
    value(TextValue::ListStart, tag("["))(input)
}

/// Matches the beginning of an s-expression and returns a [TextValue::SExpStart].
pub(crate) fn s_expression_start(input: &str) -> IResult<&str, TextValue> {
    value(TextValue::SExpStart, tag("("))(input)
}

/// Matches the end of a struct and returns a `&str` containing the delimiter.
pub(crate) fn struct_end(input: &str) -> IonParseResult<&str> {
    preceded(whitespace_or_comments, tag("}").upgrade())(input)
}

/// Matches the end of a list and returns a `&str` containing the delimiter.
pub(crate) fn list_end(input: &str) -> IonParseResult<&str> {
    preceded(whitespace_or_comments, tag("]").upgrade())(input)
}

/// Matches the end of an s-expression and returns a `&str` containing the delimiter.
pub(crate) fn s_expression_end(input: &str) -> IonParseResult<&str> {
    preceded(whitespace_or_comments, tag(")").upgrade())(input)
}

/// Matches an optional series of annotations and a TextValue. If the TextValue is not a container,
/// this parser will also match a trailing delimiting comma (that will be consumed) or end-of-list
/// marker (that will not be consumed). Whitespace and comments can appear throughout; they will be
/// discarded.
pub(crate) fn list_value(input: &str) -> IonParseResult<AnnotatedTextValue> {
    alt((
        // Matches a scalar value and either a delimiter or end-of-container.
        list_scalar,
        // If the next value in the list is a container, we only need to match the start.
        // We'll look for the trailing delimiter or end-of-container when the reader steps out.
        preceded(whitespace_or_comments, annotated_container_start),
    ))(input)
}

/// Matches a (possibly annotated) non-container value in a list followed by a delimiter
/// or end-of-container.
pub(crate) fn list_scalar(input: &str) -> IonParseResult<AnnotatedTextValue> {
    // A list scalar must be followed by either a comma or the end-of-list delimiter (`]`).
    delimited(
        // Any amount of whitespace or comments
        whitespace_or_comments,
        // Match the value itself (may be preceded by whitespace/comments)
        annotated_scalar,
        // Check for any amount of whitespace followed by a comma or end-of-list delimiter.
        list_delimiter,
    )(input)
}

/// Matches any amount of whitespace/comments followed by either a delimiter (which is consumed)
/// or an end-of-container (which is not consumed).
pub(crate) fn list_delimiter(input: &str) -> IonParseResult<()> {
    preceded(
        whitespace_or_comments,
        alt((tag(",").upgrade(), peek(list_end))),
    )
    // TODO: This parser discards the matched &str as a workaround to a limitation in RawTextReader.
    //       See: https://github.com/amazon-ion/ion-rust/issues/337
    .map(|_| ())
    .parse(input)
}

/// Returns [None] if the next token in input is an end-of-list delimiter (`]`).
/// Otherwise, matches and returns the next value in the list using [list_value].
pub(crate) fn list_value_or_end(input: &str) -> IonParseResult<Option<AnnotatedTextValue>> {
    map(list_end, |_end_marker| None)
        .or(map(list_value, Some))
        .parse(input)
}

/// Matches an optional series of annotations and a TextValue (including operators). If the TextValue
/// is not a container, this parser will also match a trailing delimiting whitespace character
/// (that will be consumed) or end-of-s-expression marker (that will not be consumed).
pub(crate) fn s_expression_value(input: &str) -> IonParseResult<AnnotatedTextValue> {
    alt((
        // Matches a scalar value followed by either a delimiter or end-of-container.
        s_expression_scalar,
        // If the next value in the s-expression is a container, we only need to match the start.
        // We'll look for the trailing delimiter or end-of-container when the reader steps out.
        preceded(whitespace_or_comments, annotated_container_start),
    ))(input)
}

/// Matches a (possibly annotated) non-container value in an s-expression followed by a delimiter
/// or end-of-container.
pub(crate) fn s_expression_scalar(input: &str) -> IonParseResult<AnnotatedTextValue> {
    preceded(
        whitespace_or_comments,
        // An s-expression value can be either...
        alt((
            // ...an annotated operator (`foo::++`)...
            pair(parse_annotations, parse_operator)
                .map(|(annotations, value)| AnnotatedTextValue::new(annotations, value)),
            // ...a non-operator value, with or without annotations (`5`, `foo::5`, `"hello"`, etc)...
            top_level_value,
            // ...or an un-annotated operator (`++`).
            parse_operator.map(|op| op.without_annotations()),
        )),
        // ^^^ Note that the parser order above is important.
        //
        // We need the s-expression parser to recognize the input `--3` as the operator `--` and the
        // int `3` while recognizing the input `-3` as the int `-3`. If `parse_operator` runs before
        // `top_level_value`, it will consume the sign (`-`) of negative number values, treating
        // `-3` as an operator (`-`) and an int (`3`).
        //
        // Similarly, we must check for annotated operators before we check for annotated values.
        // If we run `top_level_value` first, it will consume the annotation from the
        // input `foo::++` as a symbol (`foo`), leaving the `::++` in the buffer.
    )(input)
}

/// Returns [None] if the next token in input is an end-of-s-expression delimiter (`)`).
/// Otherwise, matches and returns the next value in the s-expression using
/// [`s_expression_value`].
pub(crate) fn s_expression_value_or_end(input: &str) -> IonParseResult<Option<AnnotatedTextValue>> {
    map(s_expression_end, |_end_marker| None)
        .or(map(s_expression_value, Some))
        .parse(input)
}

/// Always matches. Consumes nothing from input. This function is only defined for parity with the
/// other container types.
pub(crate) fn s_expression_delimiter(input: &str) -> IonParseResult<()> {
    // An s-expression doesn't require *anything* to appear between values. For example:
    //    (+(foo)-)
    // This s-expression contains three child values:
    // 1. an operator: `+`
    // 2. a nested s-expression: `(foo)`
    // 3. another operator (`-`)
    //
    // Notice that no delimiters appear between these values.
    Ok((input, ()))
}

/// Matches a struct field name and returns it as a [RawSymbolToken].
/// This function should be called before [`struct_field_value`].
pub(crate) fn struct_field_name(input: &str) -> IonParseResult<RawSymbolToken> {
    delimited(
        whitespace_or_comments,
        // We check for string first because the field name may be a long string (`'''foo'''`)
        // and we don't want the symbol parser to interpret the first two `''`s as an empty symbol.
        parse_string.or(parse_symbol),
        pair(whitespace_or_comments, tag(":")),
    )
    .map(|value| match value {
        TextValue::String(text) => RawSymbolToken::Text(text),
        TextValue::Symbol(token) => token,
        other => unreachable!(
            "Struct field names can only be strings or symbols. Found a {:?}",
            other
        ),
    })
    .parse(input)
}

/// Matches an optional series of annotations and a TextValue. If the TextValue is not a container,
/// this parser will also match a trailing delimiting comma (that will be consumed) or end-of-struct
/// marker (that will not be consumed). Whitespace and comments can appear throughout; they will be
/// discarded.
pub(crate) fn struct_field_value(input: &str) -> IonParseResult<AnnotatedTextValue> {
    alt((
        // Matches a scalar value and either a delimiter or end-of-container.
        struct_field_scalar,
        // If the next value in the list is a container, we only need to match the start.
        // We'll look for the trailing delimiter or end-of-container when the reader steps out.
        preceded(whitespace_or_comments, annotated_container_start),
    ))(input)
}

/// Matches a (possibly annotated) non-container value in an struct followed by a delimiter
/// or end-of-container.
pub(crate) fn struct_field_scalar(input: &str) -> IonParseResult<AnnotatedTextValue> {
    terminated(
        // Match the value itself (may be preceded by whitespace/comments)
        top_level_value,
        // Check for any amount of whitespace followed by a comma or end-of-struct delimiter.
        struct_delimiter,
    )(input)
}

/// Returns [None] if the next token in input is an end-of-struct delimiter (`}`).
/// Otherwise, matches and returns the next field name in the struct using [struct_field_name].
pub(crate) fn struct_field_name_or_end(input: &str) -> IonParseResult<Option<RawSymbolToken>> {
    map(struct_end, |_end_marker| None)
        .or(map(struct_field_name, Some))
        .parse(input)
}

/// Matches any amount of whitespace/comments followed by either a delimiter (which is consumed)
/// or an end-of-container (which is not consumed).
pub(crate) fn struct_delimiter(input: &str) -> IonParseResult<()> {
    preceded(whitespace_or_comments, alt((tag(","), peek(struct_end))))
        // TODO: This parser discards the matched &str as a workaround to a limitation in RawTextReader.
        //       See: https://github.com/amazon-ion/ion-rust/issues/337
        .map(|_| ())
        .parse(input)
}

#[cfg(test)]
mod container_parsing_tests {
    use rstest::*;

    use crate::raw_symbol_token::{local_sid_token, text_token};
    use crate::text::parsers::unit_test_support::{parse_test_err, parse_test_ok};
    use crate::text::text_value::TextValue;
    use crate::types::{Decimal, Int};

    use super::*;

    #[rstest]
    #[case::start_of_struct("{", TextValue::StructStart)]
    #[case::start_of_list("[", TextValue::ListStart)]
    #[case::start_of_s_expression("(", TextValue::SExpStart)]
    fn test_parse_container_start_ok(#[case] text: &str, #[case] expected: TextValue) {
        parse_test_ok(container_start, text, expected)
    }

    #[rstest]
    #[case("5")]
    #[case("true")]
    #[case("foo")]
    #[case("foo::{")]
    #[case("\"hello\"")]
    #[case("<")]
    fn test_parse_container_start_err(#[case] text: &str) {
        parse_test_err(container_start, text)
    }

    #[rstest]
    #[case("5,", TextValue::Int(Int::I64(5)).without_annotations())]
    #[case("foo::bar::5,", TextValue::Int(Int::I64(5)).with_annotations(["foo", "bar"]))]
    #[case("foo::bar,", TextValue::Symbol(text_token("bar")).with_annotations("foo"))]
    #[case("bar]", TextValue::Symbol(text_token("bar")).without_annotations())]
    #[case("7.]", TextValue::Decimal(Decimal::new(7, 0)).without_annotations())]
    #[should_panic]
    //       v---- Missing trailing , or ]
    #[case("5 ", TextValue::String(String::from("<should panic>")).without_annotations())]
    #[should_panic]
    //      v--- No value, just a comma
    #[case(", ", TextValue::String(String::from("<should panic>")).without_annotations())]
    fn test_parse_list_values(#[case] text: &str, #[case] expected: AnnotatedTextValue) {
        parse_test_ok(list_value, text, expected);
    }

    #[rstest]
    #[case("'++',", Some(TextValue::Symbol(text_token("++")).without_annotations()))]
    #[case("foo::'++',", Some(TextValue::Symbol(text_token("++")).with_annotations("foo")))]
    #[case("5    ,", Some(TextValue::Int(Int::I64(5)).without_annotations()))]
    #[case("5]", Some(TextValue::Int(Int::I64(5)).without_annotations()))]
    #[case("]", None)]
    #[case("  ]", None)]
    #[case(" /*comment*/  ]", None)]
    fn test_parse_list_value_or_end(
        #[case] text: &str,
        #[case] expected: Option<AnnotatedTextValue>,
    ) {
        parse_test_ok(list_value_or_end, text, expected);
    }

    #[rstest]
    #[case("++ ", TextValue::Symbol(text_token("++")).without_annotations())]
    #[case("foo::++ ", TextValue::Symbol(text_token("++")).with_annotations("foo"))]
    #[case("5 ", TextValue::Int(Int::I64(5)).without_annotations())]
    #[case("5)", TextValue::Int(Int::I64(5)).without_annotations())]
    #[case("foo::bar::5 ", TextValue::Int(Int::I64(5)).with_annotations(["foo", "bar"]))]
    //               v--- This zero allows the parser to tell that the previous value is complete.
    #[case("foo::bar 0", TextValue::Symbol(text_token("bar")).with_annotations("foo"))]
    #[case("bar)", TextValue::Symbol(text_token("bar")).without_annotations())]
    #[case("7.)", TextValue::Decimal(Decimal::new(7, 0)).without_annotations())]
    #[should_panic]
    //       v---- Comma instead of whitespace
    #[case("5, ", TextValue::String(String::from("<should panic>")).without_annotations())]
    #[should_panic]
    //      v--- Wrong closing delimiter
    #[case("5]", TextValue::String(String::from("<should panic>")).without_annotations())]
    fn test_parse_s_expression_values(#[case] text: &str, #[case] expected: AnnotatedTextValue) {
        parse_test_ok(s_expression_value, text, expected);
    }

    #[rstest]
    #[case("++ ", Some(TextValue::Symbol(text_token("++")).without_annotations()))]
    #[case("foo::++ ", Some(TextValue::Symbol(text_token("++")).with_annotations("foo")))]
    #[case("5 ", Some(TextValue::Int(Int::I64(5)).without_annotations()))]
    #[case(")", None)]
    #[case("  )", None)]
    #[case(" /*comment*/  )", None)]
    fn test_parse_s_expression_value_or_end(
        #[case] text: &str,
        #[case] expected: Option<AnnotatedTextValue>,
    ) {
        parse_test_ok(s_expression_value_or_end, text, expected);
    }

    #[rstest]
    #[case("5,", TextValue::Int(Int::I64(5)).without_annotations())]
    #[case("5  ,", TextValue::Int(Int::I64(5)).without_annotations())]
    #[case("foo::bar::5,", TextValue::Int(Int::I64(5)).with_annotations(["foo", "bar"]))]
    #[case("foo::bar,", TextValue::Symbol(text_token("bar")).with_annotations("foo"))]
    #[case("bar}", TextValue::Symbol(text_token("bar")).without_annotations())]
    #[case("7.}", TextValue::Decimal(Decimal::new(7, 0)).without_annotations())]
    #[should_panic]
    //       v---- Missing trailing , or }
    #[case("5 ", TextValue::String(String::from("<should panic>")).without_annotations())]
    #[should_panic]
    //      v--- No value, just a comma
    #[case(", ", TextValue::String(String::from("<should panic>")).without_annotations())]
    fn test_parse_struct_field_values(#[case] text: &str, #[case] expected: AnnotatedTextValue) {
        parse_test_ok(struct_field_value, text, expected);
    }

    #[rstest]
    #[case("foo:", text_token("foo"))]
    #[case("  foo  :", text_token("foo"))]
    #[case(
        "/* Here's a field name */  foo // And here's a delimiter\n:",
        text_token("foo")
    )]
    #[case("'foo':", text_token("foo"))]
    #[case("  'foo'  :", text_token("foo"))]
    #[case("$10:", local_sid_token(10))]
    #[case("  $10  :", local_sid_token(10))]
    #[case("\"foo\":", text_token("foo"))]
    #[case("  \"foo\"  :", text_token("foo"))]
    fn test_parse_struct_field_name(#[case] text: &str, #[case] expected: RawSymbolToken) {
        parse_test_ok(struct_field_name, text, expected);
    }

    #[rstest]
    #[case("foo:", Some(text_token("foo")))]
    #[case("  foo  :", Some(text_token("foo")))]
    #[case("'foo':", Some(text_token("foo")))]
    #[case("}", None)]
    #[case("   }", None)]
    #[case("/*comment*/}", None)]
    fn test_parse_struct_field_name_or_end(
        #[case] text: &str,
        #[case] expected: Option<RawSymbolToken>,
    ) {
        parse_test_ok(struct_field_name_or_end, text, expected);
    }
}