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
|
/*
* $Id$
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2012 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
%option 8bit
%option never-interactive
%option nounput
%{
#include <ctype.h>
#include "Dk.h"
#include "numeric.h"
#include "sqlfn.h"
#include "json_p.h"
void jsonyyerror_impl(const char *s);
int jsonyy_string_input (char *buf, int max);
#undef YY_INPUT
#define YY_INPUT(buf, res, max) \
res = jsonyy_string_input (buf, max);
#define jsonyyerror(str) jsonyyerror_impl(str)
struct sparp_s; /* forward */
extern caddr_t spar_strliteral (struct sparp_s *sparp, const char *strg, int strg_is_long, int is_json);
extern int json_line;
%}
%x JSON_SQ
%x JSON_DQ
JSON_SQ_PLAIN ([^\\''\r\n\t])
JSON_DQ_PLAIN ([^\\""\r\n\t])
JSON_ECHAR ([\\]([bfnrt\\""''/]|("u"{HEX}{HEX}{HEX}{HEX})))
S_NL ((\r\n)|(\n\r)|\n|\r)
HEX ([0-9A-Fa-f])
%%
<INITIAL>"{" { return JSON_OBJ_BEGIN; }
<INITIAL>"}" { return JSON_OBJ_END; }
<INITIAL>"[" { return JSON_ARR_BEGIN; }
<INITIAL>"]" { return JSON_ARR_END; }
<INITIAL>":" { return JSON_COLON; }
<INITIAL>"," { return JSON_COMMA; }
<INITIAL>['']({JSON_SQ_PLAIN}*)[''] { jsonyylval.box = t_box_dv_short_nchars (jsonyytext + 1, jsonyyleng - 2); return JSON_SQSTRING; }
<INITIAL>[""]({JSON_DQ_PLAIN}*)[""] { jsonyylval.box = t_box_dv_short_nchars (jsonyytext + 1, jsonyyleng - 2); return JSON_DQSTRING; }
<INITIAL>['']({JSON_SQ_PLAIN}*) { yymore(); BEGIN(JSON_SQ); }
<INITIAL>[""]({JSON_DQ_PLAIN}*) { yymore(); BEGIN(JSON_DQ); }
<JSON_SQ>({JSON_SQ_PLAIN}*)[''] {
BEGIN(INITIAL);
jsonyylval.box = spar_strliteral (NULL /* no sparp for JSON_LITERAL */, jsonyytext, 0, 1);
return JSON_SQSTRING;
}
<JSON_DQ>({JSON_DQ_PLAIN}*)[""] {
BEGIN(INITIAL);
jsonyylval.box = spar_strliteral (NULL /* no sparp for JSON_LITERAL */, jsonyytext, 0, 1);
return JSON_DQSTRING;
}
<JSON_SQ>{JSON_SQ_PLAIN}+ { yymore (); }
<JSON_DQ>{JSON_DQ_PLAIN}+ { yymore (); }
<JSON_SQ,JSON_DQ>{JSON_ECHAR} { yymore (); }
<JSON_SQ,JSON_DQ>[\n\r] { jsonyyerror ("line break is not allowed in JSON strings"); }
<JSON_SQ,JSON_DQ>"\t" { jsonyyerror ("tab character is not allowed in JSON strings"); }
<JSON_SQ,JSON_DQ>"\\" { jsonyyerror ("invalid escaping sequence in a string"); }
<INITIAL>true { return JSON_TRUE_L; }
<INITIAL>false { return JSON_FALSE_L; }
<INITIAL>null { return JSON_NULL_L; }
<INITIAL>[A-Za-z_]([A-Za-z0-9_]*) { jsonyylval.box = t_box_dv_short_nchars (jsonyytext, jsonyyleng);
return JSON_NAME; }
<INITIAL>"-"?(([1-9][0-9]*)|"0") {
caddr_t err = NULL;
int64 n = safe_atoi (jsonyytext, &err);
if (err)
{
dk_free_tree (err);
jsonyyerror ("bad integer constant");
}
jsonyylval.box = t_box_num_and_zero (n);
return JSON_NUMBER;
}
<INITIAL>"-"?[0-9]+"."[0-9]* |
<INITIAL>"-"?"."[0-9]+ {
numeric_t num = t_numeric_allocate ();
int rc = numeric_from_string (num, jsonyytext);
if (NUMERIC_STS_SUCCESS == rc)
{
jsonyylval.box = (caddr_t) num;
return JSON_NUMBER;
}
jsonyylval.box = t_box_double (atof (jsonyytext));
return JSON_NUMBER;
}
<INITIAL>"-"?[0-9]+[eE][+-]?[0-9]+ |
<INITIAL>"-"?[0-9]+"."[0-9]+[eE][+-]?[0-9]+ |
<INITIAL>"-"?"."[0-9]+[eE][+-]?[0-9]+ {
jsonyylval.box = t_box_double (atof (jsonyytext));
return JSON_NUMBER;
}
<INITIAL>[+-]?[0-9.eE+-]+ { jsonyyerror ("syntax error in number"); }
<INITIAL>[ \t]+
<INITIAL>"#"([^\r\n]*){S_NL} { json_line++; }
<INITIAL>{S_NL} { json_line++; }
<INITIAL>. { jsonyyerror ("invalid character"); }
%%
void jsonyy_reset (void)
{
json_line = 1;
jsonyyrestart (NULL);
BEGIN INITIAL;
}
|