Method: JSON::Ext::Parser#parse

Defined in:
parser/parser.c

#parseObject

Parses the current JSON text source and returns the complete data

structure as a result.


1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
# File 'parser/parser.c', line 1868

static VALUE cParser_parse(VALUE self)
{
  char *p, *pe;
  int cs = EVIL;
  VALUE result = Qnil;
  GET_PARSER;


#line 1877 "parser.c"
  {
  cs = JSON_start;
  }

#line 776 "parser.rl"
  p = json->source;
  pe = p + json->len;

#line 1886 "parser.c"
  {
  if ( p == pe )
    goto _test_eof;
  switch ( cs )
  {
st1:
  if ( ++p == pe )
    goto _test_eof1;
case 1:
  switch( (*p) ) {
    case 13: goto st1;
    case 32: goto st1;
    case 34: goto tr2;
    case 45: goto tr2;
    case 47: goto st6;
    case 73: goto tr2;
    case 78: goto tr2;
    case 91: goto tr2;
    case 102: goto tr2;
    case 110: goto tr2;
    case 116: goto tr2;
    case 123: goto tr2;
  }
  if ( (*p) > 10 ) {
    if ( 48 <= (*p) && (*p) <= 57 )
      goto tr2;
  } else if ( (*p) >= 9 )
    goto st1;
  goto st0;
st0:
cs = 0;
  goto _out;
tr2:
#line 752 "parser.rl"
  {
        char *np = JSON_parse_value(json, p, pe, &result, 0);
        if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
    }
  goto st10;
st10:
  if ( ++p == pe )
    goto _test_eof10;
case 10:
#line 1930 "parser.c"
  switch( (*p) ) {
    case 13: goto st10;
    case 32: goto st10;
    case 47: goto st2;
  }
  if ( 9 <= (*p) && (*p) <= 10 )
    goto st10;
  goto st0;
st2:
  if ( ++p == pe )
    goto _test_eof2;
case 2:
  switch( (*p) ) {
    case 42: goto st3;
    case 47: goto st5;
  }
  goto st0;
st3:
  if ( ++p == pe )
    goto _test_eof3;
case 3:
  if ( (*p) == 42 )
    goto st4;
  goto st3;
st4:
  if ( ++p == pe )
    goto _test_eof4;
case 4:
  switch( (*p) ) {
    case 42: goto st4;
    case 47: goto st10;
  }
  goto st3;
st5:
  if ( ++p == pe )
    goto _test_eof5;
case 5:
  if ( (*p) == 10 )
    goto st10;
  goto st5;
st6:
  if ( ++p == pe )
    goto _test_eof6;
case 6:
  switch( (*p) ) {
    case 42: goto st7;
    case 47: goto st9;
  }
  goto st0;
st7:
  if ( ++p == pe )
    goto _test_eof7;
case 7:
  if ( (*p) == 42 )
    goto st8;
  goto st7;
st8:
  if ( ++p == pe )
    goto _test_eof8;
case 8:
  switch( (*p) ) {
    case 42: goto st8;
    case 47: goto st1;
  }
  goto st7;
st9:
  if ( ++p == pe )
    goto _test_eof9;
case 9:
  if ( (*p) == 10 )
    goto st1;
  goto st9;
  }
  _test_eof1: cs = 1; goto _test_eof;
  _test_eof10: cs = 10; goto _test_eof;
  _test_eof2: cs = 2; goto _test_eof;
  _test_eof3: cs = 3; goto _test_eof;
  _test_eof4: cs = 4; goto _test_eof;
  _test_eof5: cs = 5; goto _test_eof;
  _test_eof6: cs = 6; goto _test_eof;
  _test_eof7: cs = 7; goto _test_eof;
  _test_eof8: cs = 8; goto _test_eof;
  _test_eof9: cs = 9; goto _test_eof;

  _test_eof: {}
  _out: {}
  }

#line 779 "parser.rl"

  if (cs >= JSON_first_final && p == pe) {
    return result;
  } else {
    rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
    return Qnil;
  }
}