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
use std::fmt;

use crate::xfs::{
    value::XfsValue,
    xfs_struct::{XfsMember, XfsStruct},
};
use crate::{impl_xfs_i4, Error, Result};

mod mode;
mod status;

pub use mode::*;
pub use status::*;

/// The PCU [ThresholdStatus] becomes Full when the bill count is greater or equal to this value.
#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct ThresholdFull(u32);

impl ThresholdFull {
    /// Creates a new [ThresholdFull].
    pub const fn new() -> Self {
        Self(0)
    }

    /// Creates a new [ThresholdFull] from the provided parameter.
    pub const fn create(val: u32) -> Self {
        Self(val)
    }

    /// Gets the inner representation of [ThresholdFull].
    pub const fn inner(&self) -> u32 {
        self.0
    }

    /// Gets the inner representation of [ThresholdFull].
    pub fn set_inner(&mut self, val: u32) {
        self.0 = val;
    }
}

impl fmt::Display for ThresholdFull {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.inner())
    }
}

impl_xfs_i4!(ThresholdFull, "full");

/// The PCU [ThresholdStatus] becomes High when the bill count is greater than this value.
#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct ThresholdHigh(u32);

impl ThresholdHigh {
    /// Creates a new [ThresholdHigh].
    pub const fn new() -> Self {
        Self(0)
    }

    /// Creates a new [ThresholdHigh] from the provided parameter.
    pub const fn create(val: u32) -> Self {
        Self(val)
    }

    /// Gets the inner representation of [ThresholdHigh].
    pub const fn inner(&self) -> u32 {
        self.0
    }

    /// Gets the inner representation of [ThresholdHigh].
    pub fn set_inner(&mut self, val: u32) {
        self.0 = val;
    }
}

impl fmt::Display for ThresholdHigh {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.inner())
    }
}

impl_xfs_i4!(ThresholdHigh, "high");

/// The PCU [ThresholdStatus] becomes Low when the bill count is lower to this value.
#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct ThresholdLow(u32);

impl ThresholdLow {
    /// Creates a new [ThresholdLow].
    pub const fn new() -> Self {
        Self(0)
    }

    /// Creates a new [ThresholdLow] from the provided parameter.
    pub const fn create(val: u32) -> Self {
        Self(val)
    }

    /// Gets the inner representation of [ThresholdLow].
    pub const fn inner(&self) -> u32 {
        self.0
    }

    /// Gets the inner representation of [ThresholdLow].
    pub fn set_inner(&mut self, val: u32) {
        self.0 = val;
    }
}

impl fmt::Display for ThresholdLow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.inner())
    }
}

impl_xfs_i4!(ThresholdLow, "low");

/// The PCU [ThresholdStatus] becomes Empty when the bill count is lower or equal to this value.
#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct ThresholdEmpty(u32);

impl ThresholdEmpty {
    /// Creates a new [ThresholdEmpty].
    pub const fn new() -> Self {
        Self(0)
    }

    /// Creates a new [ThresholdEmpty] from the provided parameter.
    pub const fn create(val: u32) -> Self {
        Self(val)
    }

    /// Gets the inner representation of [ThresholdEmpty].
    pub const fn inner(&self) -> u32 {
        self.0
    }

    /// Gets the inner representation of [ThresholdEmpty].
    pub fn set_inner(&mut self, val: u32) {
        self.0 = val;
    }
}

impl fmt::Display for ThresholdEmpty {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.inner())
    }
}

impl_xfs_i4!(ThresholdEmpty, "empty");

/// Structure that defines the levels determining a physical cash unit [ThresholdStatus].
#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct Threshold {
    full: ThresholdFull,
    high: ThresholdHigh,
    low: ThresholdLow,
    empty: ThresholdEmpty,
}

impl Threshold {
    /// Creates a new [Threshold].
    pub const fn new() -> Self {
        Self {
            full: ThresholdFull::new(),
            high: ThresholdHigh::new(),
            low: ThresholdLow::new(),
            empty: ThresholdEmpty::new(),
        }
    }

    /// Gets the [XfsMember] name.
    pub const fn xfs_name() -> &'static str {
        "threshold"
    }

    /// Gets the full threshold limit.
    pub const fn full(&self) -> u32 {
        self.full.inner()
    }

    /// Sets the full threshold limit.
    pub fn set_full(&mut self, val: u32) {
        self.full.set_inner(val);
    }

    /// Builder function that sets the full threshold limit.
    pub fn with_full(mut self, val: u32) -> Self {
        self.set_full(val);
        self
    }

    /// Gets the high threshold limit.
    pub const fn high(&self) -> u32 {
        self.high.inner()
    }

    /// Sets the high threshold limit.
    pub fn set_high(&mut self, val: u32) {
        self.high.set_inner(val);
    }

    /// Builder function that sets the high threshold limit.
    pub fn with_high(mut self, val: u32) -> Self {
        self.set_high(val);
        self
    }

    /// Gets the low threshold limit.
    pub const fn low(&self) -> u32 {
        self.low.inner()
    }

    /// Sets the low threshold limit.
    pub fn set_low(&mut self, val: u32) {
        self.low.set_inner(val);
    }

    /// Builder function that sets the low threshold limit.
    pub fn with_low(mut self, val: u32) -> Self {
        self.set_low(val);
        self
    }

    /// Gets the empty threshold limit.
    pub const fn empty(&self) -> u32 {
        self.empty.inner()
    }

    /// Sets the empty threshold limit.
    pub fn set_empty(&mut self, val: u32) {
        self.empty.set_inner(val);
    }

    /// Builder function that sets the empty threshold limit.
    pub fn with_empty(mut self, val: u32) -> Self {
        self.set_empty(val);
        self
    }
}

impl From<&Threshold> for XfsStruct {
    fn from(val: &Threshold) -> Self {
        Self::create([
            val.full.into(),
            val.high.into(),
            val.low.into(),
            val.empty.into(),
        ])
    }
}

impl From<Threshold> for XfsStruct {
    fn from(val: Threshold) -> Self {
        (&val).into()
    }
}

impl From<&Threshold> for XfsValue {
    fn from(val: &Threshold) -> Self {
        Self::new().with_xfs_struct(val.into())
    }
}

impl From<Threshold> for XfsValue {
    fn from(val: Threshold) -> Self {
        (&val).into()
    }
}

impl From<&Threshold> for XfsMember {
    fn from(val: &Threshold) -> Self {
        Self::create(Threshold::xfs_name(), val.into())
    }
}

impl From<Threshold> for XfsMember {
    fn from(val: Threshold) -> Self {
        (&val).into()
    }
}

impl TryFrom<&XfsValue> for Threshold {
    type Error = Error;

    fn try_from(val: &XfsValue) -> Result<Self> {
        val.xfs_struct()
            .ok_or(Error::Xfs(format!(
                "Expected Threshold XfsValue, have: {val}"
            )))?
            .try_into()
    }
}

impl TryFrom<XfsValue> for Threshold {
    type Error = Error;

    fn try_from(val: XfsValue) -> Result<Self> {
        (&val).try_into()
    }
}

impl TryFrom<&XfsMember> for Threshold {
    type Error = Error;

    fn try_from(val: &XfsMember) -> Result<Self> {
        match (val.name(), val.value().xfs_struct()) {
            (n, Some(s)) if n == Self::xfs_name() => s.try_into(),
            _ => Err(Error::Xfs(format!(
                "Expected Threshold XfsMember, have: {val}"
            ))),
        }
    }
}

impl TryFrom<XfsMember> for Threshold {
    type Error = Error;

    fn try_from(val: XfsMember) -> Result<Self> {
        (&val).try_into()
    }
}

impl TryFrom<&XfsStruct> for Threshold {
    type Error = Error;

    fn try_from(val: &XfsStruct) -> Result<Self> {
        let full: ThresholdFull = val.find_member(ThresholdFull::xfs_name())?.try_into()?;
        let high: ThresholdHigh = val.find_member(ThresholdHigh::xfs_name())?.try_into()?;
        let low: ThresholdLow = val.find_member(ThresholdLow::xfs_name())?.try_into()?;
        let empty: ThresholdEmpty = val.find_member(ThresholdEmpty::xfs_name())?.try_into()?;

        Ok(Self {
            full,
            high,
            low,
            empty,
        })
    }
}

impl TryFrom<XfsStruct> for Threshold {
    type Error = Error;

    fn try_from(val: XfsStruct) -> Result<Self> {
        (&val).try_into()
    }
}

impl fmt::Display for Threshold {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{{")?;
        write!(f, r#""full":{},"#, self.full)?;
        write!(f, r#""high":{},"#, self.high)?;
        write!(f, r#""low":{},"#, self.low)?;
        write!(f, r#""empty":{}"#, self.empty)?;
        write!(f, "}}")
    }
}