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
pub mod deserializers;
pub mod serializers;

pub use crate::lexer::{Lexer, LexerError, Token};
pub use crate::mapper::{Mapper, MapperError, Value};
use alloc::format;
use alloc::string::String;
use core::str::FromStr;

pub trait Deserialize: Sized {
    fn deserialize(value: Option<&Value>) -> Result<Self, DecodeError>;
}

pub trait Serialize: Sized {
    fn serialize(&self) -> Value;
}

#[derive(Debug)]
pub enum DecodeError {
    MapperError(MapperError),
    LexerError(LexerError),
    UnexpectedType,
    ParseError,
}

impl From<MapperError> for DecodeError {
    fn from(error: MapperError) -> Self {
        DecodeError::MapperError(error)
    }
}

impl From<LexerError> for DecodeError {
    fn from(error: LexerError) -> Self {
        DecodeError::LexerError(error)
    }
}

impl Token {
    pub fn to<T>(&self) -> Result<T, DecodeError>
    where
        T: FromStr,
    {
        T::from_str(&self.literal).map_err(|_| DecodeError::ParseError)
    }
}

impl Value {
    pub fn get_value<T>(&self, key: &str) -> Result<T, DecodeError>
    where
        T: Deserialize,
    {
        let option_val = match self {
            Value::Object(object) => object.get(key),
            _ => None,
        };

        let res = T::deserialize(option_val)?;

        Ok(res)
    }

    pub fn encode_json(&self) -> String {
        let mut output = String::new();
        match self {
            Value::Object(object) => {
                output += "{";
                let mut first = true;
                for (key, value) in object {
                    if !first {
                        output += ",";
                    }
                    first = false;
                    output += &format!("\"{}\":{}", key, value.encode_json());
                }
                output += "}";
            }
            Value::Token(t) => match t.token_type {
                crate::lexer::TokenType::String(_) => {
                    output += &format!("\"{}\"", t.literal);
                }
                _ => {
                    output += &format!("{}", t.literal);
                }
            },
            Value::Array(a) => {
                output += "[";
                let mut first = true;
                for value in a {
                    if !first {
                        output += ",";
                    }
                    first = false;
                    output += &format!("{}", value.encode_json());
                }
                output += "]";
            }
        }

        output
    }
}

pub fn decode<T>(input_str: String) -> Result<T, DecodeError>
where
    T: Deserialize,
{
    let mut lexer = Lexer::new(input_str);
    let tokens = lexer.tokenize()?;
    let mut mapper = Mapper::new(tokens);
    let object = mapper.parse_object()?;
    let value = Value::Object(object);
    Ok(T::deserialize(Some(&value))?)
}

pub fn encode<T>(input: T) -> String
where
    T: Serialize,
{
    input.serialize().encode_json()
}

#[cfg(test)]
pub mod test {
    use alloc::string::{String, ToString};
    use alloc::vec::Vec;
    use crate::{Deserialize, Serialize};

    use crate::alloc::borrow::ToOwned;
    use crate::mapper;
    use crate::serializer;

    #[derive(Debug, PartialEq, Deserialize, Serialize)]
    pub struct A {
        #[Rename = "aJson"]
        pub a: i32,
        pub b: String,
    }

    #[derive(Debug, PartialEq, Deserialize, Serialize)]
    pub struct B {
        pub a: i32,
        pub b: Vec<String>,
    }

    #[derive(Debug, PartialEq, Deserialize, Serialize)]
    pub struct C {
        pub a: i32,
        pub b: Vec<A>,
    }

    #[test]
    pub fn test_deserialize() {
        const JSON: &str = r#"
        {
            "aJson": 1,
            "b": "Hello"
        }"#;

        let a: A = super::decode(JSON.to_string()).unwrap();
        assert_eq!(a.a, 1);
        assert_eq!(a.b, "Hello");
    }

    #[test]
    pub fn test_desserialize_vec() {
        const JSON: &str = r#"
        {
            "a": 1,
            "b": ["Hello","world"]
        }"#;

        let a: B = super::decode(JSON.to_string()).unwrap();
        assert_eq!(a.a, 1);
        assert_eq!(a.b.len(), 2);
        assert_eq!(a.b[0], "Hello");
        assert_eq!(a.b[1], "world");
    }

    #[test]
    pub fn test_encode_json() {
        let a = A {
            a: 1,
            b: "Hello".to_string(),
        };

        let json = super::encode(a);
        assert_eq!(json, r#"{"aJson":1,"b":"Hello"}"#);
    }

    #[test]
    pub fn test_nested() {
        const JSON: &str = r#"
        {
            "a": 1,
            "b": [
                {
                    "aJson": 1,
                    "b": "Hello"
                },
                {
                    "aJson": 2,
                    "b": "World"
                }
            ]
        }"#;

        let a: C = super::decode(JSON.to_string()).unwrap();
        assert_eq!(a.a, 1);
        assert_eq!(a.b.len(), 2);
        assert_eq!(a.b[0].a, 1);
        assert_eq!(a.b[0].b, "Hello");
        assert_eq!(a.b[1].a, 2);
        assert_eq!(a.b[1].b, "World");
    }
}