json_string 0.1.14

Format JSON string so that `serde_json` can understand it.
Documentation
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
use num::Zero;

use crate::public::{
    parse_json_string::parse_json_string,
    parse_stringified_json_string::parse_stringified_json_string,
};

pub(crate) fn json_context(trimmed_str: &str) -> JsonContext {
    let json_context = match trimmed_str {
        trimmed_str if trimmed_str.starts_with('{') && trimmed_str.ends_with('}') => {
            JsonContext::Object
        }
        trimmed_str if trimmed_str.starts_with('[') && trimmed_str.ends_with(']') => {
            JsonContext::Array
        }
        _ => JsonContext::Value,
    };

    json_context
}

pub(crate) fn ensure_array_wrapper(string: &str) -> String {
    let array_string = if string.starts_with('[') && string.ends_with(']') {
        string.to_string()
    } else {
        format!("[{string}]")
    };
    array_string
}

#[allow(clippy::needless_pass_by_value)]
pub(crate) fn content_str(json_context: JsonContext, trimmed_str: &str) -> String {
    let content_str = match json_context {
        JsonContext::Array | JsonContext::Object => {
            let mut content_str = trimmed_str[1..].to_string();
            content_str.pop();

            let trimmed_content_str = content_str
                .trim_matches([' ', '\n', '\t', ',', ';', ':'])
                .trim_start_matches("\\n")
                .trim_end_matches("\\n")
                .trim_start_matches("\\\\n")
                .trim_end_matches("\\\\n")
                .to_string();

            trimmed_content_str
        }
        JsonContext::Value => trimmed_str.to_string(),
    };

    content_str
}

#[allow(clippy::needless_pass_by_value)]
pub(crate) fn rewrap_string(parsed_json_string: &str, json_context: JsonContext) -> String {
    let rewrapped_string = match json_context {
        JsonContext::Array => {
            let rewrapped_string = format!("[{parsed_json_string}]");

            rewrapped_string
        }
        JsonContext::Object => {
            let rewrapped_string = format!("{{{parsed_json_string}}}");

            rewrapped_string
        }
        JsonContext::Value => parsed_json_string.to_string(),
    };

    rewrapped_string
}

#[derive(Clone, Debug, PartialEq, Eq)]
pub(crate) enum JsonContext {
    Array,
    Object,
    Value,
}

pub(crate) fn handle_object_w_wrapper(string: &str) -> String {
    let mut content_string = string[1..].to_string();
    content_string.pop();
    let content_string = content_string
        .trim_matches([' ', '\n', '\t', ','])
        .trim_start_matches("\\\\n")
        .trim_end_matches("\\\\n")
        .trim_start_matches("\\n")
        .trim_end_matches("\\n");

    let object_context = JsonContext::Object;

    let new_object_substance = parse_json_string(content_string, object_context);

    let new_with_braces = format!("{{{new_object_substance}}}");

    new_with_braces
}

pub(crate) fn handle_stringified_object_w_wrapper(string: &str) -> String {
    let mut content_string = string[1..].to_string();
    content_string.pop();
    let content_string = content_string
        .trim_matches([' ', '\n', '\t', ','])
        .trim_start_matches("\\\\n")
        .trim_end_matches("\\\\n")
        .trim_start_matches("\\n")
        .trim_end_matches("\\n");

    let object_context = JsonContext::Object;

    let new_object_substance = parse_stringified_json_string(content_string, object_context);

    let new_with_braces = format!("{{{new_object_substance}}}");

    new_with_braces
}

pub(crate) fn handle_stringified_array_content(string: &str) -> String {
    let mut array_elements = split_array_elements(string)
        .iter()
        .map(|element| {
            let value_context = JsonContext::Value;

            let new_element = parse_stringified_json_string(element, value_context);
            let formatted_element = format!("{new_element}, ");
            formatted_element
        })
        .collect::<String>();
    array_elements.pop();
    array_elements.pop();

    array_elements
}

pub(crate) fn handle_array_content(string: &str) -> String {
    let mut array_elements = split_array_elements(string)
        .iter()
        .map(|element| {
            let value_context = JsonContext::Value;

            let new_element = parse_json_string(element, value_context);
            let formatted_element = format!("{new_element}, ");
            formatted_element
        })
        .collect::<String>();
    array_elements.pop();
    array_elements.pop();

    array_elements
}

pub(crate) fn handle_stringified_array_w_wrapper(string: &str) -> String {
    let mut content_str = string[1..].to_string();
    content_str.pop();
    let content_str = content_str.trim();

    let mut array_str = split_array_elements(content_str)
        .iter()
        .map(|element| {
            let value_context = JsonContext::Value;

            let new_element = parse_stringified_json_string(element, value_context);
            let formatted_element = format!("{new_element}, ");
            formatted_element
        })
        .collect::<String>();
    array_str.pop();
    array_str.pop();

    let add_the_brackets_back = format!("[{array_str}]");

    add_the_brackets_back
}

pub(crate) fn handle_array_w_wrapper(string: &str) -> String {
    let mut content_str = string[1..].to_string();
    content_str.pop();
    let content_str = content_str.trim();

    let mut array_str = split_array_elements(content_str)
        .iter()
        .map(|element| {
            let value_context = JsonContext::Value;

            let new_element = parse_json_string(element, value_context);
            let formatted_element = format!("{new_element}, ");
            formatted_element
        })
        .collect::<String>();
    array_str.pop();
    array_str.pop();

    let add_the_brackets_back = format!("[{array_str}]");

    add_the_brackets_back
}

pub(crate) fn handle_stringified_object_content(string: &str) -> String {
    let mut key_value_pairs = split_object_elements(string)
        .iter()
        .filter_map(|kv_pair| {
            let (key, value) = kv_pair.split_once(':')?;

            let trimmed_key = key.trim();

            let new_key = if trimmed_key.starts_with('\"') && trimmed_key.ends_with('\"') {
                trimmed_key.to_string()
            } else {
                format!("\"{trimmed_key}\"")
            };

            let trimmed_value = value
                .trim_matches([' ', '\n', '\t', ','])
                .trim_start_matches("\\\\n")
                .trim_end_matches("\\\\n")
                .trim_start_matches("\\n")
                .trim_end_matches("\\n");

            let value_context = JsonContext::Value;

            let new_value = parse_stringified_json_string(trimmed_value, value_context);

            let new_kv_pair = format!("{new_key}: {new_value}, ");

            Some(new_kv_pair)
        })
        .collect::<String>();
    key_value_pairs.pop();
    key_value_pairs.pop();

    key_value_pairs
}

pub(crate) fn handle_object_content(string: &str) -> String {
    let mut key_value_pairs = split_object_elements(string)
        .iter()
        .filter_map(|kv_pair| {
            let (key, value) = kv_pair.split_once(':')?;

            let trimmed_key = key.trim();

            let new_key = if trimmed_key.starts_with('\"') && trimmed_key.ends_with('\"') {
                trimmed_key.to_string()
            } else {
                format!("\"{trimmed_key}\"")
            };

            let trimmed_value = value
                .trim_matches([' ', '\n', '\t', ','])
                .trim_start_matches("\\\\n")
                .trim_end_matches("\\\\n")
                .trim_start_matches("\\n")
                .trim_end_matches("\\n");

            let value_context = JsonContext::Value;

            let new_value = parse_json_string(trimmed_value, value_context);

            let new_kv_pair = format!("{new_key}: {new_value}, ");

            Some(new_kv_pair)
        })
        .collect::<String>();
    key_value_pairs.pop();
    key_value_pairs.pop();

    key_value_pairs
}

pub(crate) fn split_array_elements(string: &str) -> Vec<String> {
    let mut all_elements = Vec::new();
    let mut current_element = String::default();
    let mut array_lefts = 0;
    let mut object_lefts = 0;

    for ch in string.chars() {
        let is_separator = ch == ',' || ch == ';';

        if is_separator && array_lefts.is_zero() && object_lefts.is_zero() {
            let trimmed_current_element = current_element
                .trim_matches([' ', '\n', '\t', ',', ';'])
                .trim_start_matches("\\\\n")
                .trim_end_matches("\\\\n")
                .trim_start_matches("\\n")
                .trim_end_matches("\\n")
                .to_string();
            all_elements.push(trimmed_current_element.clone());
            current_element.clear();
        }

        if ch == '{' && array_lefts.is_zero() {
            object_lefts += 1;
        }

        if ch == '[' && object_lefts.is_zero() {
            array_lefts += 1;
        }

        if ch == ']' && !array_lefts.is_zero() {
            array_lefts -= 1;
        }

        if ch == '}' && !object_lefts.is_zero() {
            object_lefts -= 1;
        }
        current_element.push(ch);
    }

    let trimmed_current_element = current_element
        .trim_matches([' ', '\n', '\t', ',', ';'])
        .trim_start_matches("\\\\n")
        .trim_end_matches("\\\\n")
        .trim_start_matches("\\n")
        .trim_end_matches("\\n")
        .to_string();
    all_elements.push(trimmed_current_element.clone());
    current_element.clear();

    all_elements
}

pub(crate) fn split_object_elements(object_str: &str) -> Vec<String> {
    let mut all_elements = Vec::new();
    let mut current_element = String::default();
    let mut array_lefts = 0;
    let mut object_lefts = 0;
    let mut double_quote_lefts = 0;

    for ch in object_str.chars() {
        let is_separator = ch == ',' || ch == ';';
        if is_separator
            && array_lefts.is_zero()
            && object_lefts.is_zero()
            && double_quote_lefts.is_zero()
        {
            let trimmed_element = current_element
                .trim_matches([' ', '\n', '\t', ','])
                .trim_start_matches("\\\\n")
                .trim_end_matches("\\\\n")
                .trim_start_matches("\\n")
                .trim_end_matches("\\n")
                .to_string();
            all_elements.push(trimmed_element);
            current_element.clear();
        }

        if ch == '{' && array_lefts.is_zero() && double_quote_lefts.is_zero() {
            object_lefts += 1;
        }

        if ch == '[' && object_lefts.is_zero() && double_quote_lefts.is_zero() {
            array_lefts += 1;
        }

        if ch == '\"' && object_lefts.is_zero() && array_lefts.is_zero() {
            if double_quote_lefts.is_zero() {
                double_quote_lefts += 1;
            } else {
                double_quote_lefts -= 1;
            };
        }

        if ch == ']' && !array_lefts.is_zero() && double_quote_lefts.is_zero() {
            array_lefts -= 1;
        }

        if ch == '}' && !object_lefts.is_zero() && double_quote_lefts.is_zero() {
            object_lefts -= 1;
        }

        current_element.push(ch);
    }

    let trimmed_element = current_element
        .trim_matches([' ', '\n', '\t', ','])
        .trim_start_matches("\\\\n")
        .trim_end_matches("\\\\n")
        .trim_start_matches("\\n")
        .trim_end_matches("\\n")
        .to_string();
    all_elements.push(trimmed_element);
    current_element.clear();

    all_elements
}

pub(crate) fn format_stringified_value(value_str: &str) -> String {
    if value_str.is_empty() {
        return String::default();
    }

    let without_quotes = value_str
        .trim_matches('\"')
        .trim_start_matches("\\\\n")
        .trim_end_matches("\\\\n")
        .trim_start_matches("\\n")
        .trim_end_matches("\\n");
    let formatted_value = format!("\"{without_quotes}\"");

    formatted_value
}

pub(crate) fn format_value(value_str: &str) -> String {
    let formatted_value = match value_str.to_lowercase().as_str() {
        value_str
            if value_str.parse::<bool>().is_ok()
                || value_str.parse::<f64>().is_ok()
                || value_str.parse::<u64>().is_ok()
                || value_str.parse::<i64>().is_ok()
                || value_str.starts_with('[') && value_str.ends_with(']')
                || value_str.starts_with('{') && value_str.ends_with('}')
                || value_str.is_empty() =>
        {
            value_str.to_string()
        }
        "none" => "None".to_string(),
        _ => {
            let without_quotes = value_str
                .trim_matches('\"')
                .trim_start_matches("\\\\n")
                .trim_end_matches("\\\\n")
                .trim_start_matches("\\n")
                .trim_end_matches("\\n");

            let with_quotes = format!("\"{without_quotes}\"");
            with_quotes
        }
    };

    formatted_value
}