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
/// Container for Ruby VM-level Regexp engine state.
///
/// Using [`Regexp`]s in Ruby code can set [regexp global variables]:
///
/// - `$~` is equivalent to `Regexp.last_match`.
/// - `$&` contains the complete matched text.
/// - `` $` `` contains string before match.
/// - `$'` contains string after match.
/// - `$1`, `$2` and so on contain text matching first, second, etc capture group.
/// - `$+` contains last capture group.
///
/// This struct is used by the implementation of `Regexp` in Artichoke's Ruby
/// Core to track this global state.
///
/// [`Regexp`]: https://ruby-doc.org/3.2.2/Regexp.html
/// [regexp global variables]: https://ruby-doc.org/3.2.2/Regexp.html#class-Regexp-label-Regexp+Global+Variables
#[allow(missing_copy_implementations)] // this is a mutable container
#[derive(Default, Debug, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct State {
    capture_group_globals: usize,
}

impl State {
    /// Constructs a new, empty `Regexp` state.
    ///
    /// # Examples
    ///
    /// ```
    /// use spinoso_regexp::State;
    /// let state = State::new();
    /// ```
    #[inline]
    #[must_use]
    pub const fn new() -> Self {
        Self {
            capture_group_globals: 0,
        }
    }

    /// Reset the state to empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use spinoso_regexp::State;
    /// let mut state = State::new();
    /// state.clear();
    /// ```
    #[inline]
    pub fn clear(&mut self) {
        *self = Self::new();
    }

    /// Retrieve the count of currently active `Regexp` capture group globals.
    ///
    /// This count is used to track how many `$1`, `$2`, etc. variables are set
    /// to non-nil values.
    ///
    /// # Examples
    ///
    /// ```
    /// use spinoso_regexp::State;
    ///
    /// let mut state = State::new();
    /// assert_eq!(state.capture_group_globals(), 0);
    ///
    /// state.set_capture_group_globals(7);
    /// assert_eq!(state.capture_group_globals(), 7);
    /// ```
    #[inline]
    #[must_use]
    pub const fn capture_group_globals(&self) -> usize {
        self.capture_group_globals
    }

    /// Set the count of currently active `Regexp` capture group globals.
    ///
    /// This count is used to track how many `$1`, `$2`, etc. variables are set
    /// to non-nil values.
    ///
    /// # Examples
    ///
    /// ```
    /// use spinoso_regexp::State;
    ///
    /// let mut state = State::new();
    /// assert_eq!(state.capture_group_globals(), 0);
    ///
    /// state.set_capture_group_globals(7);
    /// assert_eq!(state.capture_group_globals(), 7);
    /// ```
    #[inline]
    pub fn set_capture_group_globals(&mut self, count: usize) {
        self.capture_group_globals = count;
    }
}

#[cfg(test)]
mod tests {
    use std::fmt::Write;

    use super::State;

    #[test]
    fn new_is_const() {
        const _: State = State::new();
    }

    #[test]
    fn new_is_empty() {
        let state = State::new();
        assert_eq!(state.capture_group_globals(), 0);
    }

    #[test]
    fn default_is_empty() {
        let state = State::default();
        assert_eq!(state.capture_group_globals(), 0);
    }

    #[test]
    fn clear_sets_capture_group_globals_to_zero() {
        let mut state = State::new();
        state.clear();
        assert_eq!(state.capture_group_globals(), 0);

        state.set_capture_group_globals(9);
        state.clear();
        assert_eq!(state.capture_group_globals(), 0);
    }

    #[test]
    fn set_get_capture_group_globals() {
        let test_cases = [
            0,
            1,
            2,
            3,
            4,
            6,
            6,
            7,
            8,
            9,
            10,
            99,
            1024,
            usize::try_from(i32::MAX).unwrap(),
            usize::MAX,
        ];
        for count in test_cases {
            let mut state = State::new();
            state.set_capture_group_globals(count);
            assert_eq!(state.capture_group_globals(), count);
        }
    }

    #[test]
    fn debug_is_not_empty() {
        let state = State::new();
        let mut s = String::new();
        write!(&mut s, "{state:?}").unwrap();
        assert!(!s.is_empty());
    }

    #[test]
    fn clone_preserves_state() {
        let mut state = State::new();
        assert_eq!(state.capture_group_globals(), state.clone().capture_group_globals());

        state.set_capture_group_globals(29);
        assert_eq!(state.capture_group_globals(), state.clone().capture_group_globals());
    }

    #[test]
    fn partial_eq_is_reflexive() {
        let mut state = State::new();
        assert_eq!(&state, &state);

        state.set_capture_group_globals(17);
        assert_eq!(&state, &state);
    }

    #[test]
    fn partial_eq_not_eq() {
        let mut left = State::new();
        left.set_capture_group_globals(56);

        let mut right = State::new();
        right.set_capture_group_globals(35);

        assert_ne!(left, right);
        assert_ne!(right, left);
    }
}