123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- package json
- import "core:mem"
- import "core:unicode/utf8"
- import "core:strconv"
- Parser :: struct {
- tok: Tokenizer,
- prev_token: Token,
- curr_token: Token,
- spec: Specification,
- allocator: mem.Allocator,
- unmarshal_data: any,
- parse_integers: bool,
- }
- make_parser :: proc(data: []byte, spec := Specification.JSON, parse_integers := false, allocator := context.allocator) -> Parser {
- p: Parser;
- p.tok = make_tokenizer(data, spec, parse_integers);
- p.spec = spec;
- p.allocator = allocator;
- assert(p.allocator.procedure != nil);
- advance_token(&p);
- return p;
- }
- parse :: proc(data: []byte, spec := Specification.JSON, parse_integers := false, allocator := context.allocator) -> (Value, Error) {
- context.allocator = allocator;
- p := make_parser(data, spec, parse_integers, allocator);
- if p.spec == Specification.JSON5 {
- return parse_value(&p);
- }
- return parse_object(&p);
- }
- token_end_pos :: proc(tok: Token) -> Pos {
- end := tok.pos;
- end.offset += len(tok.text);
- return end;
- }
- advance_token :: proc(p: ^Parser) -> (Token, Error) {
- err: Error;
- p.prev_token = p.curr_token;
- p.curr_token, err = get_token(&p.tok);
- return p.prev_token, err;
- }
- allow_token :: proc(p: ^Parser, kind: Token_Kind) -> bool {
- if p.curr_token.kind == kind {
- advance_token(p);
- return true;
- }
- return false;
- }
- expect_token :: proc(p: ^Parser, kind: Token_Kind) -> Error {
- prev := p.curr_token;
- advance_token(p);
- if prev.kind == kind {
- return .None;
- }
- return .Unexpected_Token;
- }
- parse_value :: proc(p: ^Parser) -> (value: Value, err: Error) {
- value.pos = p.curr_token.pos;
- defer value.end = token_end_pos(p.prev_token);
- token := p.curr_token;
- #partial switch token.kind {
- case .Null:
- value.value = Null{};
- advance_token(p);
- return;
- case .False:
- value.value = Boolean(false);
- advance_token(p);
- return;
- case .True:
- value.value = Boolean(true);
- advance_token(p);
- return;
- case .Integer:
- i, _ := strconv.parse_i64(token.text);
- value.value = Integer(i);
- advance_token(p);
- return;
- case .Float:
- f, _ := strconv.parse_f64(token.text);
- value.value = Float(f);
- advance_token(p);
- return;
- case .String:
- value.value = String(unquote_string(token, p.spec, p.allocator));
- advance_token(p);
- return;
- case .Open_Brace:
- return parse_object(p);
- case .Open_Bracket:
- return parse_array(p);
- case:
- if p.spec == Specification.JSON5 {
- #partial switch token.kind {
- case .Infinity:
- inf: u64 = 0x7ff0000000000000;
- if token.text[0] == '-' {
- inf = 0xfff0000000000000;
- }
- value.value = transmute(f64)inf;
- advance_token(p);
- return;
- case .NaN:
- nan: u64 = 0x7ff7ffffffffffff;
- if token.text[0] == '-' {
- nan = 0xfff7ffffffffffff;
- }
- value.value = transmute(f64)nan;
- advance_token(p);
- return;
- }
- }
- }
- err = .Unexpected_Token;
- advance_token(p);
- return;
- }
- parse_array :: proc(p: ^Parser) -> (value: Value, err: Error) {
- value.pos = p.curr_token.pos;
- defer value.end = token_end_pos(p.prev_token);
- if err = expect_token(p, .Open_Bracket); err != .None {
- return;
- }
- array: Array;
- array.allocator = p.allocator;
- defer if err != .None {
- for elem in array {
- destroy_value(elem);
- }
- delete(array);
- }
- for p.curr_token.kind != .Close_Bracket {
- elem, elem_err := parse_value(p);
- if elem_err != .None {
- err = elem_err;
- return;
- }
- append(&array, elem);
- // Disallow trailing commas for the time being
- if allow_token(p, .Comma) {
- continue;
- } else {
- break;
- }
- }
- if err = expect_token(p, .Close_Bracket); err != .None {
- return;
- }
- value.value = array;
- return;
- }
- clone_string :: proc(s: string, allocator: mem.Allocator) -> string {
- n := len(s);
- b := make([]byte, n+1, allocator);
- copy(b, s);
- b[n] = 0;
- return string(b[:n]);
- }
- parse_object_key :: proc(p: ^Parser) -> (key: string, err: Error) {
- tok := p.curr_token;
- if p.spec == Specification.JSON5 {
- if tok.kind == .String {
- expect_token(p, .String);
- key = unquote_string(tok, p.spec, p.allocator);
- return;
- } else if tok.kind == .Ident {
- expect_token(p, .Ident);
- key = clone_string(tok.text, p.allocator);
- return;
- }
- }
- if tok_err := expect_token(p, .String); tok_err != .None {
- err = .Expected_String_For_Object_Key;
- return;
- }
- key = unquote_string(tok, p.spec, p.allocator);
- return;
- }
- parse_object :: proc(p: ^Parser) -> (value: Value, err: Error) {
- value.pos = p.curr_token.pos;
- defer value.end = token_end_pos(p.prev_token);
- if err = expect_token(p, .Open_Brace); err != .None {
- value.pos = p.curr_token.pos;
- return;
- }
- obj: Object;
- obj.allocator = p.allocator;
- defer if err != .None {
- for key, elem in obj {
- delete(key, p.allocator);
- destroy_value(elem);
- }
- delete(obj);
- }
- for p.curr_token.kind != .Close_Brace {
- key: string;
- key, err = parse_object_key(p);
- if err != .None {
- delete(key, p.allocator);
- value.pos = p.curr_token.pos;
- return;
- }
- if colon_err := expect_token(p, .Colon); colon_err != .None {
- err = .Expected_Colon_After_Key;
- value.pos = p.curr_token.pos;
- return;
- }
- elem, elem_err := parse_value(p);
- if elem_err != .None {
- err = elem_err;
- value.pos = p.curr_token.pos;
- return;
- }
- if key in obj {
- err = .Duplicate_Object_Key;
- value.pos = p.curr_token.pos;
- delete(key, p.allocator);
- return;
- }
- obj[key] = elem;
- if p.spec == Specification.JSON5 {
- // Allow trailing commas
- if allow_token(p, .Comma) {
- continue;
- }
- } else {
- // Disallow trailing commas
- if allow_token(p, .Comma) {
- continue;
- } else {
- break;
- }
- }
- }
- if err = expect_token(p, .Close_Brace); err != .None {
- value.pos = p.curr_token.pos;
- return;
- }
- value.value = obj;
- return;
- }
- // IMPORTANT NOTE(bill): unquote_string assumes a mostly valid string
- unquote_string :: proc(token: Token, spec: Specification, allocator := context.allocator) -> string {
- get_u2_rune :: proc(s: string) -> rune {
- if len(s) < 4 || s[0] != '\\' || s[1] != 'x' {
- return -1;
- }
- r: rune;
- for c in s[2:4] {
- x: rune;
- switch c {
- case '0'..'9': x = c - '0';
- case 'a'..'f': x = c - 'a' + 10;
- case 'A'..'F': x = c - 'A' + 10;
- case: return -1;
- }
- r = r*16 + x;
- }
- return r;
- }
- get_u4_rune :: proc(s: string) -> rune {
- if len(s) < 6 || s[0] != '\\' || s[1] != 'u' {
- return -1;
- }
- r: rune;
- for c in s[2:6] {
- x: rune;
- switch c {
- case '0'..'9': x = c - '0';
- case 'a'..'f': x = c - 'a' + 10;
- case 'A'..'F': x = c - 'A' + 10;
- case: return -1;
- }
- r = r*16 + x;
- }
- return r;
- }
- if token.kind != .String {
- return "";
- }
- s := token.text;
- if len(s) <= 2 {
- return "";
- }
- quote := s[0];
- if s[0] != s[len(s)-1] {
- // Invalid string
- return "";
- }
- s = s[1:len(s)-1];
- i := 0;
- for i < len(s) {
- c := s[i];
- if c == '\\' || c == quote || c < ' ' {
- break;
- }
- if c < utf8.RUNE_SELF {
- i += 1;
- continue;
- }
- r, w := utf8.decode_rune_in_string(s);
- if r == utf8.RUNE_ERROR && w == 1 {
- break;
- }
- i += w;
- }
- if i == len(s) {
- return clone_string(s, allocator);
- }
- b := make([]byte, len(s) + 2*utf8.UTF_MAX, allocator);
- w := copy(b, s[0:i]);
- loop: for i < len(s) {
- c := s[i];
- switch {
- case c == '\\':
- i += 1;
- if i >= len(s) {
- break loop;
- }
- switch s[i] {
- case: break loop;
- case '"', '\'', '\\', '/':
- b[w] = s[i];
- i += 1;
- w += 1;
- case 'b':
- b[w] = '\b';
- i += 1;
- w += 1;
- case 'f':
- b[w] = '\f';
- i += 1;
- w += 1;
- case 'r':
- b[w] = '\r';
- i += 1;
- w += 1;
- case 't':
- b[w] = '\t';
- i += 1;
- w += 1;
- case 'n':
- b[w] = '\n';
- i += 1;
- w += 1;
- case 'u':
- i -= 1; // Include the \u in the check for sanity sake
- r := get_u4_rune(s[i:]);
- if r < 0 {
- break loop;
- }
- i += 6;
- buf, buf_width := utf8.encode_rune(r);
- copy(b[w:], buf[:buf_width]);
- w += buf_width;
- case '0':
- if spec == Specification.JSON5 {
- b[w] = '\x00';
- i += 1;
- w += 1;
- } else {
- break loop;
- }
- case 'v':
- if spec == Specification.JSON5 {
- b[w] = '\v';
- i += 1;
- w += 1;
- } else {
- break loop;
- }
- case 'x':
- if spec == Specification.JSON5 {
- i -= 1; // Include the \x in the check for sanity sake
- r := get_u2_rune(s[i:]);
- if r < 0 {
- break loop;
- }
- i += 4;
- buf, buf_width := utf8.encode_rune(r);
- copy(b[w:], buf[:buf_width]);
- w += buf_width;
- } else {
- break loop;
- }
- }
- case c == quote, c < ' ':
- break loop;
- case c < utf8.RUNE_SELF:
- b[w] = c;
- i += 1;
- w += 1;
- case:
- r, width := utf8.decode_rune_in_string(s[i:]);
- i += width;
- buf, buf_width := utf8.encode_rune(r);
- assert(buf_width <= width);
- copy(b[w:], buf[:buf_width]);
- w += buf_width;
- }
- }
- return string(b[:w]);
- }
|