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
#![deny(missing_debug_implementations)]
//! Module for value

use chrono::{NaiveDate, NaiveDateTime, NaiveTime};
use rt_format::{Format, FormatArgument, NoNamedArguments, ParsedFormat, Specifier};
use std::collections::BTreeMap;
use std::fmt;
use std::fmt::{Debug, Formatter};

use serde::de::{Error, Unexpected, Visitor};
use serde::{Deserialize, Deserializer, Serialize, Serializer};

/// KVS for this crate
pub type ValueMap<K, S> = BTreeMap<K, S>;
/// KVS for [`DataValue`]
///
/// [`DataValue`]: ./enum.DataValue.html
pub type DataValueMap<K> = ValueMap<K, DataValue>;

/// Integer type for this crate
pub type SbrdInt = i32;
/// Real type for this crate
pub type SbrdReal = f32;
/// Boolean type for this crate
pub type SbrdBool = bool;
/// String type for this crate
pub type SbrdString = String;
/// DateTime type for this crate
pub type SbrdDateTime = NaiveDateTime;
/// Date type for this crate
pub type SbrdDate = NaiveDate;
/// Time type for this crate
pub type SbrdTime = NaiveTime;

/// Default format string for [`SbrdDateTime`]
///
/// [`SbrdDateTime`]: ./type.SbrdDateTime.html
pub const DATE_TIME_DEFAULT_FORMAT: &str = "%Y-%m-%d %H:%M:%S";
/// Default format string for [`SbrdDate`]
///
/// [`SbrdDate`]: ./type.SbrdDate.html
pub const DATE_DEFAULT_FORMAT: &str = "%Y-%m-%d";
/// Default format string for [`SbrdTime`]
///
/// [`SbrdTime`]: ./type.SbrdTime.html
pub const TIME_DEFAULT_FORMAT: &str = "%H:%M:%S";

/// Value for [`Schema`]
///
/// [`Schema`]: ../schema/struct.Schema.html
#[derive(Debug, PartialEq, Clone)]
pub enum DataValue {
    /// Integer
    Int(SbrdInt),
    /// Real
    Real(SbrdReal),
    /// Boolean
    Bool(SbrdBool),
    /// String
    String(String),
    /// Null
    Null,
}

impl From<SbrdInt> for DataValue {
    fn from(v: SbrdInt) -> Self {
        Self::Int(v)
    }
}

impl From<SbrdReal> for DataValue {
    fn from(v: SbrdReal) -> Self {
        Self::Real(v)
    }
}

impl From<SbrdBool> for DataValue {
    fn from(v: SbrdBool) -> Self {
        Self::Bool(v)
    }
}

impl From<String> for DataValue {
    fn from(v: String) -> Self {
        Self::String(v)
    }
}

impl From<SbrdDateTime> for DataValue {
    fn from(v: SbrdDateTime) -> Self {
        Self::String(v.format(DATE_TIME_DEFAULT_FORMAT).to_string())
    }
}

impl From<SbrdDate> for DataValue {
    fn from(v: SbrdDate) -> Self {
        Self::String(v.format(DATE_DEFAULT_FORMAT).to_string())
    }
}

impl From<SbrdTime> for DataValue {
    fn from(v: SbrdTime) -> Self {
        Self::String(v.format(TIME_DEFAULT_FORMAT).to_string())
    }
}

struct DataValueVisitor;
impl<'de> Visitor<'de> for DataValueVisitor {
    type Value = DataValue;

    fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
        formatter.write_str("null or string for value parameter.")
    }

    fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>
    where
        E: Error,
    {
        let i = SbrdInt::try_from(v);
        match i {
            Err(_) => Err(Error::invalid_value(Unexpected::Signed(v), &self)),
            Ok(parsed) => Ok(DataValue::Int(parsed)),
        }
    }

    fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E>
    where
        E: Error,
    {
        let i = SbrdInt::try_from(v);
        match i {
            Err(_) => Err(Error::invalid_value(Unexpected::Unsigned(v as u64), &self)),
            Ok(parsed) => Ok(DataValue::Int(parsed)),
        }
    }

    fn visit_f64<E>(self, v: f64) -> Result<Self::Value, E>
    where
        E: Error,
    {
        Ok(DataValue::Real(v as SbrdReal))
    }

    fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
    where
        E: Error,
    {
        Ok(DataValue::String(v.to_string()))
    }

    fn visit_string<E>(self, v: String) -> Result<Self::Value, E>
    where
        E: Error,
    {
        Ok(DataValue::String(v))
    }

    fn visit_none<E>(self) -> Result<Self::Value, E>
    where
        E: Error,
    {
        Ok(DataValue::Null)
    }

    fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
    where
        D: Deserializer<'de>,
    {
        deserializer.deserialize_any(Self)
    }
}

impl<'de> Deserialize<'de> for DataValue {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        deserializer.deserialize_option(DataValueVisitor)
    }
}

impl Serialize for DataValue {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        match &self {
            DataValue::Int(v) => serializer.serialize_i32(*v),
            DataValue::Real(v) => serializer.serialize_f32(*v),
            DataValue::Bool(v) => serializer.serialize_bool(*v),
            DataValue::String(v) => serializer.serialize_str(v),
            DataValue::Null => serializer.serialize_unit(),
        }
    }
}

impl std::fmt::Display for DataValue {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            DataValue::Int(v) => fmt::Display::fmt(v, f),
            DataValue::Real(v) => fmt::Display::fmt(v, f),
            DataValue::Bool(v) => fmt::Display::fmt(v, f),
            DataValue::String(v) => fmt::Display::fmt(v, f),
            DataValue::Null => write!(f, "null"),
        }
    }
}

impl FormatArgument for DataValue {
    fn supports_format(&self, specifier: &Specifier) -> bool {
        <&DataValue as FormatArgument>::supports_format(&self, specifier)
    }

    fn fmt_display(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_display(&self, f)
    }

    fn fmt_debug(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_debug(&self, f)
    }

    fn fmt_octal(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_octal(&self, f)
    }

    fn fmt_lower_hex(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_lower_hex(&self, f)
    }

    fn fmt_upper_hex(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_upper_exp(&self, f)
    }

    fn fmt_binary(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_binary(&self, f)
    }

    fn fmt_lower_exp(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_lower_exp(&self, f)
    }

    fn fmt_upper_exp(&self, f: &mut Formatter) -> fmt::Result {
        <&DataValue as FormatArgument>::fmt_upper_exp(&self, f)
    }

    fn to_usize(&self) -> Result<usize, ()> {
        <&DataValue as FormatArgument>::to_usize(&self)
    }
}

impl<'a> FormatArgument for &'a DataValue {
    fn supports_format(&self, specifier: &Specifier) -> bool {
        // Not support debug format in release build.
        if !cfg!(debug_assertions) && specifier.format == Format::Debug {
            return false;
        }

        match self {
            DataValue::Int(_) | DataValue::Null => true,
            DataValue::Real(_) => matches!(
                specifier.format,
                Format::Display | Format::Debug | Format::LowerExp | Format::UpperExp
            ),
            DataValue::Bool(_) | DataValue::String(_) => {
                matches!(specifier.format, Format::Display | Format::Debug)
            }
        }
    }

    fn fmt_display(&self, f: &mut Formatter) -> fmt::Result {
        fmt::Display::fmt(*self, f)
    }

    fn fmt_debug(&self, f: &mut Formatter) -> fmt::Result {
        fmt::Debug::fmt(*self, f)
    }

    fn fmt_octal(&self, f: &mut Formatter) -> fmt::Result {
        match self {
            DataValue::Int(v) => fmt::Octal::fmt(v, f),
            DataValue::Null => {
                // not format null value
                self.fmt_display(f)
            }
            _ => Err(fmt::Error),
        }
    }

    fn fmt_lower_hex(&self, f: &mut Formatter) -> fmt::Result {
        match self {
            DataValue::Int(v) => fmt::LowerHex::fmt(v, f),
            DataValue::Null => {
                // not format null value
                self.fmt_display(f)
            }
            _ => Err(fmt::Error),
        }
    }

    fn fmt_upper_hex(&self, f: &mut Formatter) -> fmt::Result {
        match self {
            DataValue::Int(v) => fmt::UpperHex::fmt(v, f),
            DataValue::Null => {
                // not format null value
                self.fmt_display(f)
            }
            _ => Err(fmt::Error),
        }
    }

    fn fmt_binary(&self, f: &mut Formatter) -> fmt::Result {
        match self {
            DataValue::Int(v) => fmt::Binary::fmt(v, f),
            DataValue::Null => {
                // not format null value
                self.fmt_display(f)
            }
            _ => Err(fmt::Error),
        }
    }

    fn fmt_lower_exp(&self, f: &mut Formatter) -> fmt::Result {
        match self {
            DataValue::Int(v) => fmt::LowerExp::fmt(v, f),
            DataValue::Real(v) => fmt::LowerExp::fmt(v, f),
            DataValue::Null => {
                // not format null value
                self.fmt_display(f)
            }
            _ => Err(fmt::Error),
        }
    }

    fn fmt_upper_exp(&self, f: &mut Formatter) -> fmt::Result {
        match self {
            DataValue::Int(v) => fmt::UpperExp::fmt(v, f),
            DataValue::Real(v) => fmt::UpperExp::fmt(v, f),
            DataValue::Null => {
                // not format null value
                self.fmt_display(f)
            }
            _ => Err(fmt::Error),
        }
    }

    fn to_usize(&self) -> Result<usize, ()> {
        // Not support
        Err(())
    }
}

impl DataValue {
    /// Convert to String to use when permute with other Strings
    pub fn to_permutation_string(&self) -> String {
        match self {
            DataValue::Int(v) => v.to_string(),
            DataValue::Real(v) => v.to_string(),
            DataValue::Bool(v) => v.to_string(),
            DataValue::String(v) => v.to_string(),
            DataValue::Null => "".to_string(),
        }
    }

    /// Convert to String to use parse
    pub fn to_parse_string(&self) -> String {
        match self {
            DataValue::Int(v) => v.to_string(),
            DataValue::Real(v) => v.to_string(),
            DataValue::Bool(v) => v.to_string(),
            DataValue::String(v) => v.to_string(),
            DataValue::Null => "".to_string(),
        }
    }

    /// Format this value
    ///
    /// Support [`Rust-format syntax`]. But not support position, variable, padding with character and [`Pointer`] format (`{:p}`).
    /// [`Debug`] format is not supported in release build.
    ///
    /// # Examples
    /// ```
    /// fn main(){
    ///     use sbrd_gen::value::DataValue;
    ///
    ///     assert_eq!(Some("ignore value".to_string()), DataValue::Int(12).format("ignore value"));
    ///     assert_eq!(Some("12".to_string()), DataValue::Int(12).format("{}"));
    ///     assert_eq!(Some("{}".to_string()), DataValue::Int(12).format("{{}}"));
    ///     assert_eq!(Some("Rate= +12.35".to_string()), DataValue::Real(12.345).format("Rate={:+7.2}"));
    ///     assert_eq!(Some("Rate=+012.35".to_string()), DataValue::Real(12.345).format("Rate={:+07.2}"));
    ///     assert_eq!(Some(" aiueoあいうえお ".to_string()), DataValue::String("aiueoあいうえお".to_string()).format("{:^12}"));
    ///     assert_eq!(Some("true    ".to_string()), DataValue::Bool(true).format("{:<8}"));
    ///     assert_eq!(Some("null".to_string()), DataValue::Null.format("{:<10}"));
    /// }
    /// ```
    ///
    /// [`Rust-format syntax`]: https://doc.rust-lang.org/std/fmt/index.html#syntax
    /// [`Pointer`]: https://doc.rust-lang.org/std/fmt/trait.Pointer.html
    /// [`Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html
    pub fn format(&self, format: &str) -> Option<String> {
        let pos_args = [self];
        let parsed_args = ParsedFormat::parse(format, &pos_args, &NoNamedArguments);
        match parsed_args {
            Ok(args) => Some(format!("{}", args)),
            Err(_) => None,
        }
    }
}