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
use crate::text::parse_result::{
    fatal_parse_error, IonParseResult, OrFatalParseError, UpgradeIResult,
};
use crate::text::parsers::numeric_support::base_10_integer_digits;
use crate::text::parsers::stop_character;
use crate::text::text_value::TextValue;
use crate::types::Int;
use nom::branch::alt;
use nom::bytes::streaming::{is_a, tag, take_while1};
use nom::character::streaming::char;
use nom::combinator::{opt, recognize};
use nom::multi::many0_count;
use nom::sequence::{pair, preceded, separated_pair, terminated};
use nom::Err;
use num_bigint::BigInt;
use num_traits::Num;
use std::num::IntErrorKind;

// This module uses the phrase "base 10" to avoid potentially confusing references to "decimal",
// a phrase which is heavily overloaded in the context of parsing Ion. It may refer to the Ion type
// decimal, the base-10 notation, or the fractional delimiter of a floating-point number.

/// Matches the text representation of an integer in any supported notation (base-2, base-10, or
/// base-16) and returns the resulting [i64] as a [TextValue::Int].
pub(crate) fn parse_integer(input: &str) -> IonParseResult<TextValue> {
    terminated(
        alt((base_16_integer, base_2_integer, base_10_integer)),
        stop_character,
    )(input)
}

/// Matches a base-16 notation integer (e.g. `0xCAFE`, `0Xcafe`, or `-0xCa_Fe`) and returns the
/// resulting [i64] as a [TextValue::Int].
fn base_16_integer(input: &str) -> IonParseResult<TextValue> {
    let (remaining, (maybe_sign, text_digits)) = separated_pair(
        opt(char('-')),
        alt((tag("0x"), tag("0X"))),
        base_16_integer_digits,
    )(input)?;
    let integer = parse_integer_with_radix(text_digits, 16)
        .map(|(_, i)| if maybe_sign.is_some() { -i } else { i })
        .map(TextValue::Int)
        .or_fatal_parse_error(input, "could not parse hex integer")?
        .1;
    Ok((remaining, integer))
}

/// Recognizes the digits that follow the '0x' or '0X' in a base-16 integer.
fn base_16_integer_digits(input: &str) -> IonParseResult<&str> {
    recognize(terminated(
        // Zero or more digits-followed-by-underscores
        many0_count(pair(take_base_16_digits1, char('_'))),
        // One or more digits
        take_base_16_digits1,
    ))(input)
}

/// Recognizes 1 or more consecutive base-16 digits.
// This function's "1" suffix is a style borrowed from `nom`.
fn take_base_16_digits1(input: &str) -> IonParseResult<&str> {
    take_while1(|c: char| c.is_ascii_hexdigit())(input).upgrade()
}

/// Matches a base-2 notation integer (e.g. `0b0`, `0B1`, or `-0b10_10`) and returns the resulting
/// [i64] as a [TextValue::Int].
fn base_2_integer(input: &str) -> IonParseResult<TextValue> {
    let (remaining, (maybe_sign, text_digits)) = separated_pair(
        opt(char('-')),
        alt((tag("0b"), tag("0B"))),
        base_2_integer_digits,
    )(input)?;
    let integer = parse_integer_with_radix(text_digits, 2)
        .map(|(_, i)| if maybe_sign.is_some() { -i } else { i })
        .map(TextValue::Int)
        .or_fatal_parse_error(input, "could not parse binary integer")?
        .1;
    Ok((remaining, integer))
}

/// Recognizes the digits that follow the '0b' or 'B' in a base-2 integer.
fn base_2_integer_digits(input: &str) -> IonParseResult<&str> {
    recognize(terminated(
        // Zero or more digits-followed-by-underscores
        many0_count(pair(is_a("01"), char('_'))),
        // One or more digits
        is_a("01"),
    ))(input)
    .upgrade()
}

/// Matches a base-10 notation integer (e.g. `0`, `255`, or `-1_024`) and returns the resulting
/// [i64] as a [TextValue::Int].
fn base_10_integer(input: &str) -> IonParseResult<TextValue> {
    let (remaining, int_text) = recognize(preceded(opt(char('-')), base_10_integer_digits))(input)?;
    let integer = parse_integer_with_radix(int_text, 10)
        .map(|(_, i)| TextValue::Int(i))
        .or_fatal_parse_error(input, "could not parse decimal integer")?
        .1;
    Ok((remaining, integer))
}

/// Strips any underscores out of the provided text and then parses it according to the specified
/// radix.
fn parse_integer_with_radix(text: &str, radix: u32) -> IonParseResult<Int> {
    if text.contains('_') {
        let sanitized = text.replace('_', "");
        // Construct a new IonParseResult with a lifetime tied to `text`, not `sanitized`
        return match parse_sanitized_text_with_radix(&sanitized, radix) {
            Ok((_, integer)) => Ok(("", integer)),
            Err(Err::Error(e)) => Err(Err::Error(e.replace_input(text))),
            Err(Err::Failure(e)) => Err(Err::Failure(e.replace_input(text))),
            Err(Err::Incomplete(needed)) => Err(Err::Incomplete(needed)),
        };
    }
    parse_sanitized_text_with_radix(text, radix)
}

/// Parses the provided text according to the specified radix.
fn parse_sanitized_text_with_radix(text: &str, radix: u32) -> IonParseResult<Int> {
    // Try to parse it as an i64...
    match i64::from_str_radix(text, radix) {
        Ok(integer) => Ok(("", Int::I64(integer))),
        Err(e)
            if e.kind() == &IntErrorKind::NegOverflow || e.kind() == &IntErrorKind::PosOverflow =>
        {
            // The text is ok, but the magnitude of the integer it represents is too large to
            // represent using an i64. Try again with BigInt.
            BigInt::from_str_radix(text, radix)
                .map(Int::BigInt)
                .or_fatal_parse_error(text, "found big integer with invalid text")
        }
        Err(e) => {
            // Something else was wrong with the text, but our parser still matched on it for
            // some reason.
            fatal_parse_error(text, format!("found integer with invalid text: {e:?}"))
        }
    }
}

#[cfg(test)]
mod integer_parsing_tests {
    use super::*;
    use crate::text::parsers::integer::parse_integer;
    use crate::text::parsers::unit_test_support::{parse_test_err, parse_test_ok};
    use crate::text::text_value::TextValue;

    fn parse_equals_i64(text: &str, expected: i64) {
        parse_test_ok(parse_integer, text, TextValue::Int(Int::I64(expected)))
    }

    fn parse_fails(text: &str) {
        parse_test_err(parse_integer, text)
    }

    #[test]
    fn test_parse_base_10_integers() {
        parse_equals_i64("1 ", 1);
        parse_equals_i64("305 ", 305);
        parse_equals_i64("-279 ", -279);

        // Doesn't consume leading whitespace
        parse_fails(" 305 ");
        // Doesn't accept leading plus sign
        parse_fails("+305 ");
        // Doesn't accept multiple negative signs
        parse_fails("--305 ");
        // Doesn't accept a number if it's the last thing in the input (might be incomplete stream)
        parse_fails("305");
    }

    #[test]
    fn test_parse_base_10_integers_with_underscores() {
        parse_equals_i64("111_111_222 ", 111_111_222);
        parse_equals_i64("-999_999 ", -999_999);
        parse_equals_i64("1_2_3_4_5_6 ", 123456);

        // Doesn't accept leading underscores
        parse_fails("_111_111_222 ");
        // Doesn't accept trailing underscores
        parse_fails("111_111_222_ ");
        // Doesn't accept multiple contiguous underscores
        parse_fails("111__111_222 ");
    }

    #[test]
    fn test_parse_base_2_integers() {
        parse_equals_i64("0b1 ", 1);
        parse_equals_i64("0b101 ", 5);
        parse_equals_i64("0B101 ", 5);
        parse_equals_i64("0b11110000 ", 240);
        parse_equals_i64("-0b11110000 ", -240);
        parse_equals_i64("0B11111111 ", 255);
        parse_equals_i64("-0B11111111 ", -255);

        // Doesn't consume leading whitespace
        parse_fails(" 0b0011_0001 ");
        // Doesn't accept leading plus sign
        parse_fails("+0b0011_0001 ");
        // Doesn't accept multiple negative signs
        parse_fails("--0b0011_0001 ");
        // Doesn't accept a number if it's the last thing in the input (might be incomplete stream)
        parse_fails("0b0011_0001");
    }

    #[test]
    fn test_parse_base_2_integers_with_underscores() {
        parse_equals_i64("0b1_0_1 ", 5);
        parse_equals_i64("-0b111 ", -7);

        parse_equals_i64("-0b1111_0000 ", -240);

        // Doesn't accept leading underscores
        parse_fails("0b_0011_0001 ");
        parse_fails("_0b_0011_0001 ");
        // Doesn't accept trailing underscores
        parse_fails("0b0011_0001_ ");
        // Doesn't accept multiple consecutive underscores
        parse_fails("0b0011__0001 ");
    }

    #[test]
    fn test_parse_base_16_integers() {
        parse_equals_i64("0x1 ", 1);
        parse_equals_i64("0xA ", 10);
        parse_equals_i64("0xFF ", 255);
        parse_equals_i64("0xff ", 255);
        parse_equals_i64("0XfF ", 255);
        parse_equals_i64("-0xDECAF ", -912559);

        // Doesn't consume leading whitespace
        parse_fails(" 0xCAFE ");
        // Doesn't accept leading plus sign
        parse_fails("+0xCAFE ");
        // Doesn't accept multiple negative signs
        parse_fails("--0xCAFE ");
        // Doesn't accept a number if it's the last thing in the input (might be incomplete stream)
        parse_fails("0xCAFE");
    }

    #[test]
    fn test_parse_base_16_integers_with_underscores() {
        parse_equals_i64("0xFA_CE ", 64_206);
        parse_equals_i64("0xF_A_C_E ", 64_206);

        // Doesn't accept leading underscores
        parse_fails("0x_CAFE ");
        parse_fails("_0xCAFE ");
        // Doesn't accept trailing underscores
        parse_fails("0xCAFE_ ");
        // Doesn't accept multiple consecutive underscores
        parse_fails("0xCA__FE ");
    }

    // TODO: Parse BigInts
}