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
// 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 ).

#[cfg(feature = "serde")]
use super::super::runtime;
use super::{
    super::{PatternError, PatternItem, TimeGranularity},
    Parser,
};
use alloc::vec::Vec;
use core::str::FromStr;

/// A fully-owned, non-zero-copy type corresponding to [`Pattern`](super::super::runtime::Pattern).
///
/// <div class="stab unstable">
/// 🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
/// including in SemVer minor releases. While the serde representation of data structs is guaranteed
/// to be stable, their Rust representation might not be. Use with caution.
/// </div>
#[derive(Debug, Default, Clone, PartialEq)]
pub struct Pattern {
    pub(crate) items: Vec<PatternItem>,
    pub(crate) time_granularity: TimeGranularity,
}

impl Pattern {
    #[cfg(feature = "datagen")]
    pub(crate) fn items(&self) -> &[PatternItem] {
        &self.items
    }

    #[cfg(feature = "datagen")]
    pub(crate) fn items_mut(&mut self) -> &mut [PatternItem] {
        &mut self.items
    }

    #[cfg(feature = "serde")]
    pub(crate) fn to_runtime_pattern(&self) -> runtime::Pattern<'static> {
        runtime::Pattern::from(self)
    }
}

impl From<Vec<PatternItem>> for Pattern {
    fn from(items: Vec<PatternItem>) -> Self {
        Self {
            time_granularity: items
                .iter()
                .copied()
                .map(Into::into)
                .max()
                .unwrap_or_default(),
            items,
        }
    }
}

impl From<&str> for Pattern {
    fn from(items: &str) -> Self {
        Self {
            time_granularity: TimeGranularity::default(),
            items: items.chars().map(|ch| ch.into()).collect(),
        }
    }
}

impl FromStr for Pattern {
    type Err = PatternError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Parser::new(s).parse().map(Self::from)
    }
}