use oni_comb_parser_rs::prelude::*;
use std::char::{decode_utf16, REPLACEMENT_CHARACTER};
use std::collections::HashMap;
use std::str::FromStr;
#[derive(Clone, Debug, PartialEq)]
pub enum JsonValue {
Null,
Bool(bool),
Str(String),
Num(f64),
Array(Vec<JsonValue>),
Object(HashMap<String, JsonValue>),
}
fn space<'a>() -> Parser<'a, u8, ()> {
elm_of(b" \t\r\n").of_many0().discard()
}
fn number<'a>() -> Parser<'a, u8, f64> {
let integer = elm_digit_1_9_ref() - elm_digit_ref().of_many0() | elm_ref(b'0');
let frac = elm_ref(b'.') + elm_digit_ref().of_many1();
let exp = elm_of(b"eE") + elm_of(b"+-").opt() + elm_digit_ref().of_many1();
let number = elm_ref(b'-').opt() + integer + frac.opt() + exp.opt();
number.collect().map_res(std::str::from_utf8).map_res(f64::from_str)
}
fn string<'a>() -> Parser<'a, u8, String> {
let special_char = elm_ref(b'\\')
| elm_ref(b'/')
| elm_ref(b'"')
| elm_ref(b'b').map(|_| &b'\x08')
| elm_ref(b'f').map(|_| &b'\x0C')
| elm_ref(b'n').map(|_| &b'\n')
| elm_ref(b'r').map(|_| &b'\r')
| elm_ref(b't').map(|_| &b'\t');
let escape_sequence = elm_ref(b'\\') * special_char;
let char_string = (none_ref_of(b"\\\"") | escape_sequence)
.map(Clone::clone)
.of_many1()
.map_res(String::from_utf8);
let utf16_char = seq(b"\\u")
* elm_hex_digit()
.of_count(4)
.map_res(String::from_utf8)
.map_res(|digits| u16::from_str_radix(&digits, 16));
let utf16_string = utf16_char.of_many1().map(|chars| {
decode_utf16(chars)
.map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))
.collect::<String>()
});
let string = surround(elm_ref(b'"'), (char_string | utf16_string).of_many0(), elm_ref(b'"'));
string.map(|strings| strings.concat())
}
fn array<'a>() -> Parser<'a, u8, Vec<JsonValue>> {
let elems = lazy(value).of_many0_sep(space() + elm_ref(b',') + space());
surround(elm_ref(b'[') + space(), elems, space() + elm_ref(b']'))
}
fn object<'a>() -> Parser<'a, u8, HashMap<String, JsonValue>> {
let member = string() - space() - elm_ref(b':') - space() + lazy(value);
let members = member.of_many0_sep(space() + elm_ref(b',') + space());
let obj = surround(elm_ref(b'{') + space(), members, space() + elm_ref(b'}'));
obj.map(|members| members.into_iter().collect::<HashMap<_, _>>())
}
fn value<'a>() -> Parser<'a, u8, JsonValue> {
(seq(b"null").map(|_| JsonValue::Null)
| seq(b"true").map(|_| JsonValue::Bool(true))
| seq(b"false").map(|_| JsonValue::Bool(false))
| number().map(|num| JsonValue::Num(num))
| string().map(|text| JsonValue::Str(text))
| array().map(|arr| JsonValue::Array(arr))
| object().map(|obj| JsonValue::Object(obj)))
- space()
}
pub fn json<'a>() -> Parser<'a, u8, JsonValue> {
space() * value() - end()
}
#[allow(dead_code)]
fn main() {
let input = br#"
{
"Image": {
"Width": 800,
"Height": 600,
"Title": "View from 15th Floor",
"Thumbnail": {
"Url": "http://www.example.com/image/481989943",
"Height": 125,
"Width": 100
},
"Animated" : false,
"IDs": [116, 943, 234, 38793]
},
"escaped characters": "\u2192\uD83D\uDE00\"\t\uD834\uDD1E"
}"#;
println!("{:?}", json().parse(input));
}