icu_provider_source 2.2.0

A data provider based on CLDR and ICU data.
Documentation
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
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

//! Functions for dealing with UTS-35 number patterns.
//!
//! Spec reference: <https://unicode.org/reports/tr35/tr35-numbers.html#Number_Format_Patterns>

use icu_provider::DataError;

#[cfg(test)]
use crate::cldr_serde::numbers::NumberPattern;
use crate::cldr_serde::numbers::NumberPatternItem;

/// Representation of a UTS-35 number subpattern (part of a number pattern between ';'s).
#[derive(Debug, PartialEq)]
pub(crate) struct DecimalSubPattern {
    pub(crate) prefix: String,
    pub(crate) suffix: String,
    pub(crate) primary_grouping: u8,
    pub(crate) secondary_grouping: u8,
    pub(crate) min_fraction_digits: u8,
    pub(crate) max_fraction_digits: u8,
}

impl DecimalSubPattern {
    pub fn try_from_items(items: &[NumberPatternItem]) -> Result<Self, DataError> {
        // Find the first body token (digit placeholder, separator)
        let body_start = items.iter().position(|item| {
            matches!(
                item,
                NumberPatternItem::MandatoryDigit
                    | NumberPatternItem::OptionalDigit
                    | NumberPatternItem::GroupingSeparator
                    | NumberPatternItem::DecimalSeparator
            )
        });

        let body_start = match body_start {
            Some(i) => i,
            None => return Err(DataError::custom("NoBodyInSubpattern")),
        };

        // Find the last body token
        let body_end = items.iter().rposition(|item| {
            matches!(
                item,
                NumberPatternItem::MandatoryDigit
                    | NumberPatternItem::OptionalDigit
                    | NumberPatternItem::GroupingSeparator
                    | NumberPatternItem::DecimalSeparator
            )
        });
        let body_end = body_end.unwrap_or(body_start);

        // Validate and extract prefix: must be literals or affix symbols (¤, %, ‰, +, -)
        let mut prefix = String::new();
        for item in &items[..body_start] {
            match item {
                NumberPatternItem::Literal(s) => prefix.push_str(s),
                _ => return Err(DataError::custom("InvalidAffixItem")),
            }
        }

        // Validate and extract suffix: same rules as prefix
        let mut suffix = String::new();
        for item in &items[body_end + 1..] {
            match item {
                NumberPatternItem::Literal(s) => suffix.push_str(s),
                _ => return Err(DataError::custom("InvalidAffixItem")),
            }
        }

        // Validate body: only digit placeholders and separators are allowed
        let body_items = &items[body_start..=body_end];
        for item in body_items {
            match item {
                NumberPatternItem::DecimalSeparator
                | NumberPatternItem::GroupingSeparator
                | NumberPatternItem::MandatoryDigit
                | NumberPatternItem::OptionalDigit => {}
                _ => return Err(DataError::custom("InvalidBodyItem")),
            }
        }

        // Find decimal separator position
        let decimal_pos = body_items
            .iter()
            .position(|item| matches!(item, NumberPatternItem::DecimalSeparator));

        // Calculate grouping sizes from the integer part
        let integer_items = if let Some(pos) = decimal_pos {
            &body_items[..pos]
        } else {
            body_items
        };

        // Find grouping positions (positions of GroupingSeparator)
        let grouping_positions: Vec<usize> = integer_items
            .iter()
            .enumerate()
            .filter_map(|(i, item)| {
                if matches!(item, NumberPatternItem::GroupingSeparator) {
                    Some(i)
                } else {
                    None
                }
            })
            .collect();

        // Reject if there are more than two grouping separators
        if grouping_positions.len() > 2 {
            return Err(DataError::custom("TooManyGroupingSeparators"));
        }

        // Count digits after each grouping separator to determine grouping sizes
        let (primary_grouping, secondary_grouping) = if grouping_positions.is_empty() {
            (0, 0)
        } else {
            // Primary grouping: digits from last separator to end of integer part
            let last_sep = grouping_positions.last().unwrap();
            let digits_after_last: u8 = integer_items[last_sep + 1..]
                .iter()
                .filter(|item| {
                    matches!(
                        item,
                        NumberPatternItem::MandatoryDigit | NumberPatternItem::OptionalDigit
                    )
                })
                .count() as u8;

            // Secondary grouping: if there's more than one separator, measure between them
            let secondary = if grouping_positions.len() > 1 {
                let second_last_sep = grouping_positions[grouping_positions.len() - 2];
                integer_items[second_last_sep + 1..*last_sep]
                    .iter()
                    .filter(|item| {
                        matches!(
                            item,
                            NumberPatternItem::MandatoryDigit | NumberPatternItem::OptionalDigit
                        )
                    })
                    .count() as u8
            } else {
                digits_after_last
            };

            (digits_after_last, secondary)
        };

        // Calculate fraction digits from the fractional part
        let (min_fraction_digits, max_fraction_digits) = if let Some(pos) = decimal_pos {
            let fraction_items = &body_items[pos + 1..];

            // Validate: mandatory digits must come before optional digits
            let mut seen_optional = false;
            for item in fraction_items {
                match item {
                    NumberPatternItem::MandatoryDigit => {
                        if seen_optional {
                            return Err(DataError::custom("MandatoryAfterOptional"));
                        }
                    }
                    NumberPatternItem::OptionalDigit => {
                        seen_optional = true;
                    }
                    _ => {}
                }
            }

            let mandatory: u8 = fraction_items
                .iter()
                .filter(|item| matches!(item, NumberPatternItem::MandatoryDigit))
                .count() as u8;
            let optional: u8 = fraction_items
                .iter()
                .filter(|item| matches!(item, NumberPatternItem::OptionalDigit))
                .count() as u8;
            (mandatory, mandatory + optional)
        } else {
            (0, 0)
        };

        Ok(DecimalSubPattern {
            prefix,
            suffix,
            primary_grouping,
            secondary_grouping,
            min_fraction_digits,
            max_fraction_digits,
        })
    }
}

#[test]
fn test_basic() {
    #[derive(PartialEq, Debug)]
    struct DecimalPattern {
        positive: DecimalSubPattern,
        negative: Option<DecimalSubPattern>,
    }

    #[derive(Debug)]
    struct TestCase<'s> {
        pub(crate) pattern: &'s str,
        pub(crate) expected: Result<DecimalPattern, DataError>,
    }
    let cases = [
        TestCase {
            pattern: "#,##0.###",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "".into(),
                    suffix: "".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: None,
            }),
        },
        TestCase {
            pattern: "a#,##0.###",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "a".into(),
                    suffix: "".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: None,
            }),
        },
        TestCase {
            pattern: "#,##0.###b",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "".into(),
                    suffix: "b".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: None,
            }),
        },
        TestCase {
            pattern: "aaa#,##0.###bbb",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "aaa".into(),
                    suffix: "bbb".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: None,
            }),
        },
        TestCase {
            pattern: "aaa#,##0.###bbb;ccc#,##0.###ddd",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "aaa".into(),
                    suffix: "bbb".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: Some(DecimalSubPattern {
                    prefix: "ccc".into(),
                    suffix: "ddd".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                }),
            }),
        },
        TestCase {
            pattern: "xyz",
            expected: Err(DataError::custom("NoBodyInSubpattern")),
        },
        TestCase {
            pattern: "xyz;abc",
            expected: Err(DataError::custom("NoBodyInSubpattern")),
        },
        // Test quoted literals
        TestCase {
            pattern: "'Prefix'#,##0.###",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "Prefix".into(),
                    suffix: "".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: None,
            }),
        },
        // Test Indic grouping pattern
        TestCase {
            pattern: "#,##,##0.###",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "".into(),
                    suffix: "".into(),
                    primary_grouping: 3,
                    secondary_grouping: 2,
                    min_fraction_digits: 0,
                    max_fraction_digits: 3,
                },
                negative: None,
            }),
        },
        // Test fixed fraction digits
        TestCase {
            pattern: "#,##0.00",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "".into(),
                    suffix: "".into(),
                    primary_grouping: 3,
                    secondary_grouping: 3,
                    min_fraction_digits: 2,
                    max_fraction_digits: 2,
                },
                negative: None,
            }),
        },
        // Test no grouping
        TestCase {
            pattern: "0.######",
            expected: Ok(DecimalPattern {
                positive: DecimalSubPattern {
                    prefix: "".into(),
                    suffix: "".into(),
                    primary_grouping: 0,
                    secondary_grouping: 0,
                    min_fraction_digits: 0,
                    max_fraction_digits: 6,
                },
                negative: None,
            }),
        },
    ];
    for cas in &cases {
        let actual = NumberPattern::try_from_str(cas.pattern).and_then(|a| {
            Ok(DecimalPattern {
                positive: DecimalSubPattern::try_from_items(&a.positive)?,
                negative: a
                    .negative
                    .as_ref()
                    .map(|n| DecimalSubPattern::try_from_items(n))
                    .transpose()?,
            })
        });
        assert_eq!(cas.expected, actual, "Pattern: {}", cas.pattern);
    }
}

#[test]
fn test_quoted_literals() {
    // Test escaped quote
    let pattern = NumberPattern::try_from_str("'O''clock'#,##0.###").unwrap();
    assert_eq!(
        pattern.positive[0],
        NumberPatternItem::Literal("O'clock".into())
    );

    // Test quoted special characters
    let pattern = NumberPattern::try_from_str("'#'#,##0.###").unwrap();
    assert_eq!(pattern.positive[0], NumberPatternItem::Literal("#".into()));
}

#[test]
fn test_reject_three_grouping_separators() {
    // Three grouping separators should be rejected
    let result = DecimalSubPattern::try_from_items(
        &NumberPattern::try_from_str("#,##,##,##0").unwrap().positive,
    );
    assert_eq!(result, Err(DataError::custom("TooManyGroupingSeparators")));
}

#[test]
fn test_reject_mandatory_after_optional_in_fraction() {
    // Pattern like #,##0.#0 is invalid (mandatory after optional)
    let result = DecimalSubPattern::try_from_items(
        &NumberPattern::try_from_str("#,##0.#0").unwrap().positive,
    );
    assert_eq!(result, Err(DataError::custom("MandatoryAfterOptional")));

    // Valid: mandatory then optional
    let result = DecimalSubPattern::try_from_items(
        &NumberPattern::try_from_str("#,##0.00##").unwrap().positive,
    );
    assert!(result.is_ok());
    let pattern = result.unwrap();
    assert_eq!(pattern.min_fraction_digits, 2);
    assert_eq!(pattern.max_fraction_digits, 4);
}

#[test]
fn test_reject_invalid_body_item() {
    // A literal inside the body should be rejected
    // This would happen if someone wrote something like #,##0a.### where 'a' is between digits
    // However, our tokenizer treats unquoted 'a' as a literal, and body detection
    // considers it as ending the body. So let's test a quoted literal in the body.
    // Actually, the current logic defines body as the span from first to last body token,
    // so a literal in between would be caught.

    // Test: pattern with percent in the body (not allowed)
    let result = DecimalSubPattern::try_from_items(
        &NumberPattern::try_from_str("#,##0%0.###").unwrap().positive,
    );
    assert_eq!(result, Err(DataError::custom("InvalidBodyItem")));
}