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 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
|
/*
* $Id$
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2018 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 case-sensitive
%option never-interactive
%option noyyalloc
%option noyyrealloc
%option noyyfree
%option noyywrap
%option nounput
%option reentrant
%option bison-bridge
%option stack
%{
#include "Dk.h"
#include "xmltree.h"
#include "rdf_core.h"
#include "turtle_p.h"
#include "numeric.h"
#include "turtle_p.h"
#include "nquad_p.h"
#include "security.h"
#include "sqlbif.h"
#if (__NQUAD_NONPUNCT_END != __TTL_NONPUNCT_END)
Sources of parsers are out of sync: mismatch between token declarations in nquad_p.y and turtle_p.y
#endif
#ifdef DEBUG
typedef struct ttl_lexem_descr_s
{
int ld_val;
const char *ld_yname;
char ld_fmttype;
const char * ld_fmt;
caddr_t *ld_tests;
} ttl_lexem_descr_t;
ttl_lexem_descr_t ttl_lexem_descrs[__TTL_NONPUNCT_END+1];
#define LEX_PROPS ttl_lex_props
#define PUNCT(x) 'P', (x)
#define LITERAL(x) 'L', (x)
#define FAKE(x) 'F', (x)
#define TTL "s"
#define TRIG "t"
#define LAST(x) "L", (x)
#define LAST1(x) "K", (x)
#define MISS(x) "M", (x)
#define ERR(x) "E", (x)
#define PUNCT_TTL_LAST(x) PUNCT(x), TTL, LAST(x)
#define PUNCT_TRIG_LAST(x) PUNCT(x), TRIG, LAST(x)
extern void ttl_lexem_descrs_fill (void);
#endif
#ifdef TTLYYDEBUG
#define ttlyy_dbg_printf(x) do { printf x; fflush (stdout); } while (0)
#define TTLYYBEGIN(x) do { ttlyy_dbg_printf (("{MODE %d}", (x))); BEGIN((x)); } while (0)
#else
#define ttlyy_dbg_printf(x)
#define TTLYYBEGIN(x) BEGIN((x))
#endif
#define YY_EXTRA_TYPE ttlp_t *
#define ttlyyerror(strg) ttlyyerror_impl(ttlp_arg, yytext, (strg))
#define YY_FATAL_ERROR(err) ttlyyerror_impl(NULL, NULL, (err))
#define TTLYYERROR_OR_REPORT(strg) do { \
if (!(ttlp_arg[0].ttlp_flags & TTLP_ERROR_RECOVERY)) \
ttlyyerror (strg); \
else if (TTLP_SNIFFER & ttlp_arg[0].ttlp_flags) \
{ ttlp_reset_stacks(ttlp_arg); TTLYYBEGIN(GARBAGE); } \
else tf_report (ttlp_arg[0].ttlp_tf, 'E', NULL, NULL, (strg)); } while (0)
#define TTLYYERROR_OR_RECOVER(strg) do { \
TTLYYERROR_OR_REPORT(strg); \
return TTL_RECOVERABLE_ERROR; } while (0)
#define ttlyylval (((YYSTYPE *)(yylval_param))[0])
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
do \
{ \
ttlp_t *ttlp_arg = ttlyyget_extra (yyscanner); \
int rest_len = ttlp_arg[0].ttlp_text_len - ttlp_arg[0].ttlp_text_ofs; \
int get_len = (max_size); \
if (rest_len > 0) \
{ \
if (get_len > rest_len) \
get_len = rest_len; \
memcpy ((buf), (ttlp_arg[0].ttlp_text + ttlp_arg[0].ttlp_text_ofs), get_len); \
(result) = get_len; \
ttlp_arg[0].ttlp_text_ofs += get_len; \
break; \
} \
if (NULL != ttlp_arg[0].ttlp_iter) \
{ \
(result) = ttlp_arg[0].ttlp_iter (ttlp_arg[0].ttlp_iter_data, buf, max_size); \
break; \
} \
(result) = 0; \
} while (0);
int ttl_yy_null = YY_NULL;
struct yyguts_t;
/*! Signals an error (or return TTL_RECOVERABLE_ERROR) if \c box is too long. In case of troubles the box is freed. */
extern int ttlyyerror_if_long_qname (ttlp_t *ttlp_arg, int lexcode, caddr_t box, const char *lex_type_descr, struct yyguts_t * yyg);
#define TTL_TOKBOX_Q_FINAL(lexcode,lex_type_descr) \
if (box_length (ttlyylval.box) > MAX_XML_LNAME_LENGTH) \
return ttlyyerror_if_long_qname (ttlp_arg, (lexcode), ttlyylval.box, lex_type_descr , yyg); \
return (lexcode);
#define TTL_TOKBOX_Q(n,lexcode,lex_type_descr) { \
ttlyylval.box = box_dv_short_string (yytext+(n)); \
TTL_TOKBOX_Q_FINAL(lexcode,lex_type_descr) }
#define TTL_TOKBOX_Q_SAVE(n,lexcode,lex_type_descr) { \
ttlp_arg->ttlp_last_q_save = ttlyylval.box = box_dv_short_string (yytext+(n)); \
TTL_TOKBOX_Q_FINAL(lexcode,lex_type_descr) }
#define TTL_TOKBOX_BNODE(n,lexcode,lex_type_descr) { \
int slen = strlen (yytext+(n)); \
if (slen > 1+MAX_XML_LNAME_LENGTH) { \
if (!(ttlp_arg[0].ttlp_flags & TTLP_ACCEPT_DIRTY_NAMES)) \
TTLYYERROR_OR_RECOVER ("Blank node label is abnormally long; this error can be suppressed by parser flags"); \
else \
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Blank node label is abnormally long"); \
} \
ttlyylval.box = box_dv_short_string (yytext+(n)); \
return (lexcode); }
#define TTL_SPECIAL_QNAME(bit,id) \
if (!(ttlp_arg[0].ttlp_special_qnames & bit)) \
return id; \
ttlyylval.box = box_dv_short_string (yytext); \
return QNAME;
#define TTL_ONE_CR ttlp_arg[0].ttlp_lexlineno++
#define TTL_TWO_CRS do { \
ttlp_arg[0].ttlp_lexlineno += 2; \
if (TTLP_SNIFFER & ttlp_arg[0].ttlp_flags) { TTLYYBEGIN(TWO_CRS); } \
} while (0);
extern int ttlp_NUMBER_int (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, struct yyguts_t * yyg);
extern int ttlp_NUMBER_decimal (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, struct yyguts_t * yyg);
extern int ttlp_NUMBER_double (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, struct yyguts_t * yyg);
extern int ttlyylex (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, yyscan_t yyscanner);
#define YY_DECL int ttlyylex (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, yyscan_t yyscanner)
extern int ttlyydebug;
void *
ttlyyalloc (yy_size_t size, yyscan_t yyscanner)
{
return (void *) malloc( size );
}
void *
ttlyyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
{
if (NULL == ptr)
return ttlyyalloc (size, yyscanner);
return (void *) realloc( (char *) ptr, size );
}
void
ttlyyfree (void * ptr , yyscan_t yyscanner)
{
if (NULL != ptr)
free( (char *) ptr );
}
%}
/* Top-level INITIAL state */
/*%x INITIAL */
/* Initial state of "Turtle sniffer" parser: beginning of line that is probably garbage */
%x GARBAGE_BOL
/* State of "Turtle sniffer" parser in the middle of a line that is probably garbage */
%x GARBAGE
/* State for empty lines after a sniffed fragment, parser can transit to INITIAL without CRs before braces or transit to GARBAGE */
%x TWO_CRS
/* Internals of single-quoted INITIAL string lit */
%x TURTLE_SQ
/* Internals of double-quoted INITIAL string lit */
%x TURTLE_DQ
/* Internals of invalid single-quoted INITIAL string lit */
%x TURTLE_BAD_SQ
/* Internals of invalid double-quoted INITIAL string lit */
%x TURTLE_BAD_DQ
/* Internals of triple-single-quoted INITIAL string lit */
%x TURTLE_SSSQ
/* Internals of triple-double-quoted INITIAL string lit */
%x TURTLE_DDDQ
/* State after '@' right after quoted string */
%x TURTLE_AT_AFTER_QUOTED
/* State after _really_ unexpected character, to skip to the dot and whitespace */
%x TURTLE_SKIP_TO_DOT_WS
/* Special unreacheable state to fill the first item of ttlp_arg[0].ttlp_lexstates */
%x UNREACHEABLE
INTEGER_LITERAL ([0-9]+)
DECIMAL_LITERAL (([0-9]+"."[0-9]*)|("."[0-9]+))
DOUBLE_LITERAL (({INTEGER_LITERAL}|{DECIMAL_LITERAL})[eE][+-]?[0-9]+)
TTL_CR_IRIREF ([^\x00-\x20<>\\""{}|^`]|{TTL_CR_UCHAR})
TTL_CR_PN_PREFIX ({SPAR_NCCHAR1p}(({SPAR_NCCHAR}|[.])*{SPAR_NCCHAR})?)
TTL_CR_PN_LOCAL (({SPAR_NCCHAR1}|[0-9:]|{TTL_CR_PLX})(({SPAR_NCCHAR}|[.:]|{TTL_CR_PLX})*({SPAR_NCCHAR}|[:]|{TTL_CR_PLX}))?)
TTL_CR_UCHAR ([\\](("u"{HEX}{HEX}{HEX}{HEX})|("U"{HEX}{HEX}{HEX}{HEX}{HEX}{HEX}{HEX}{HEX})))
TTL_CR_PLX (([%]{HEX}{HEX})|([\\][_~.!$&''()*+,;=/?#@%-]))
SPAR_SQ_PLAIN ([^\x00-\x1f\\''\r\n]|[\t])
SPAR_DQ_PLAIN ([^\x00-\x1f\\""\r\n]|[\t])
SPAR_ECHAR ([\\]([atbvnrf\\""'']|("u"{HEX}{HEX}{HEX}{HEX})|("U"{HEX}{HEX}{HEX}{HEX}{HEX}{HEX}{HEX}{HEX})))
SPAR_LANGTAG ([a-zA-Z]+)(("-"([a-zA-Z0-9]+))*)
SPAR_OLD_LANGTAG ([a-z]+)"_"([a-zA-Z0-9]+)
S_NL ((\r\n)|(\n\r)|\n|\r)
S_NLNL ((\r\n([ \t]*)\r\n)|(\n\r([ \t]*)\n\r)|(\n([ \t]*)\n)|(\r([ \t]*)\r))
HEX ([0-9A-Fa-f])
PN_CHARS_BASE ([A-Za-z\x7f-\xfe])
PN_CHARS_U ([A-Za-z\x7f-\xfe]_)
PN_CHARS_UC ([A-Za-z\x7f-\xfe]_:)
PN_CHARS_U_09 ([A-Za-z\x7f-\xfe0-9_])
PN_CHARS_UC_09 ([A-Za-z\x7f-\xfe0-9_:])
PN_CHARS_UM_09 ([A-Za-z\x7f-\xfe0-9_-])
PN_CHARS_UMC_09 ([A-Za-z\x7f-\xfe0-9_:-])
PN_PREFIX ({PN_CHARS_BASE}(([.]*{PN_CHARS_UM_09})*))
PN_LOCAL_NQ (({PN_CHARS_UMC_09})(([.]*({PN_CHARS_UMC_09}))*))
PN_LOCAL_TTL (({PN_CHARS_UMC_09}|{PLX})(([.]*({PN_CHARS_UMC_09}|{PLX}))*))
PLX ({PERCENT}|{TTL_CR_PLX})
PERCENT ([%]{HEX}{HEX})
SPAR_NCCHAR1p ([A-Za-z\x7f-\xfe])
SPAR_NCCHAR1 ([A-Za-z\x7f-\xfe_])
SPAR_VARNAME ([A-Za-z0-9\x7f-\xfe_]+)
SPAR_NCCHAR ([A-Za-z0-9_\x7f-\xfe-])
SPAR_NCCHAR_X ([A-Za-z0-9_#%?&=*\x7f-\xfe-])
SPAR_NCNAME_PREFIX ({SPAR_NCCHAR1p}([A-Za-z0-9_.\x7f-\xfe-]*{SPAR_NCCHAR})?)
SPAR_NCNAME ({SPAR_NCCHAR1}([A-Za-z0-9_.\x7f-\xfe-]*{SPAR_NCCHAR})?)
SPAR_NCNAME_X (([A-Za-z0-9_./#%+?&=@*:\x7f-\xfe-]*[A-Za-z0-9_/#%+?&=@*:\x7f-\xfe-]+)|([A-Za-z0-9_./#%+?&=@*:\x7f-\xfe-]*[./#%+?&=@*:][A-Za-z0-9_./#%+?&=@*:\x7f-\xfe-]*[.]))
%%
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>[\xef][\xbb][\xbf] { }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>(([\xfe][\xff])|([\xff][\xfe])) { TTLYYERROR_OR_REPORT ("The document contains the BOM (Byte Order Mark) of the UTF-16 encoding but it is supposed to be UTF-8"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>[\xf7][\x64][\x4c] { TTLYYERROR_OR_REPORT ("The document contains the BOM (Byte Order Mark) of the UTF-1 encoding but it is supposed to be UTF-8"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>[\xdd][\x73][\x66][\x73] { TTLYYERROR_OR_REPORT ("The document contains the BOM (Byte Order Mark) of the UTF-EBCDIC encoding but it is supposed to be UTF-8"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>[\x0e][\xfe][\xff] { TTLYYERROR_OR_REPORT ("The document contains the BOM (Byte Order Mark) of the SCSU encoding but it is supposed to be UTF-8"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>[\xfb][\xee][\x28] { TTLYYERROR_OR_REPORT ("The document contains the BOM (Byte Order Mark) of the BOCU-1 encoding but it is supposed to be UTF-8"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>[\x84][\x31][\x95][\x33] { TTLYYERROR_OR_REPORT ("The document contains the BOM (Byte Order Mark) of the GB-18030 encoding but it is supposed to be UTF-8"); }
<INITIAL>"^"[ \t] { return _CARET_WS; }
<INITIAL>"^"{S_NLNL} { TTL_TWO_CRS; return _CARET_WS; }
<INITIAL>"^"{S_NL} { TTL_ONE_CR; return _CARET_WS; }
<INITIAL>"^" { return _CARET_NOWS ; }
<INITIAL>"^^" { return _CARET_CARET ; }
<INITIAL>"," { return _COMMA; }
<INITIAL>"."[ \t] { return _DOT_WS; }
<INITIAL>"."{S_NLNL} { TTL_TWO_CRS; return _DOT_WS; }
<INITIAL>"."{S_NL} { TTL_ONE_CR; return _DOT_WS; }
<INITIAL>"."[^0-9\[\](){}] { TTLYYERROR_OR_RECOVER ("Whitespace is required after dot if dot is not inside decimal number, string or IRI"); }
<INITIAL>"." { return _DOT_WS; }
<INITIAL>":" { return _COLON; }
<INITIAL>";" { return _SEMI; }
<INITIAL>"=" { return (((0 == ttlp_arg[0].ttlp_lexdepth) && (ttlp_arg[0].ttlp_flags & TTLP_ALLOW_TRIG)) ? _EQ_TOP_TRIG : _EQ); }
<INITIAL>"=>" { return _EQ_GT; }
<INITIAL>"<=" { return _LT_EQ; }
<INITIAL>"!" { return _BANG; }
<INITIAL>"@a" { return _AT_a_L; }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"@base" { TTLYYBEGIN(INITIAL); return _AT_base_L; }
<INITIAL>"@has" { return _AT_has_L; }
<INITIAL>"@is" { return _AT_is_L; }
<INITIAL>"@of" { return _AT_of_L; }
<INITIAL>"@this" { return _AT_this_L; }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"@keywords" { TTLYYBEGIN(INITIAL); return _AT_keywords_L; }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"@prefix" { TTLYYBEGIN(INITIAL); return _AT_prefix_L; }
<INITIAL>"@forAll" { ttlyyerror ("Current version of Virtuoso does not support @forAll keyword"); }
<INITIAL>"@forSome" { ttlyyerror ("Current version of Virtuoso does not support @forSome keyword"); }
<INITIAL>"-INF" { return _MINUS_INF_L; }
<INITIAL>[+]?"INF" { return INF_L; }
<INITIAL>[+-]?"NaN" { return NaN_L; }
<INITIAL>"false" { return false_L; }
<INITIAL>"true" { return true_L; }
<INITIAL,TWO_CRS>[Bb][Aa][Ss][Ee] { TTLYYBEGIN(INITIAL); return BASE_L; }
<INITIAL,TWO_CRS>[Pp][Rr][Ee][Ff][Ii][Xx] { TTLYYBEGIN(INITIAL); return PREFIX_L; }
<INITIAL>"a" { TTL_SPECIAL_QNAME (TTLP_ALLOW_QNAME_A, _AT_a_L) }
<INITIAL>"has" { TTL_SPECIAL_QNAME (TTLP_ALLOW_QNAME_HAS, _AT_has_L) }
<INITIAL>"is" { TTL_SPECIAL_QNAME (TTLP_ALLOW_QNAME_IS, _AT_is_L) }
<INITIAL>"of" { TTL_SPECIAL_QNAME (TTLP_ALLOW_QNAME_OF, _AT_of_L) }
<INITIAL>"this" { TTL_SPECIAL_QNAME (TTLP_ALLOW_QNAME_THIS, _AT_this_L) }
<INITIAL>"(" { ttlp_arg[0].ttlp_lexdepth++; return _LPAR; }
<GARBAGE_BOL>"(" { TTLYYBEGIN(INITIAL); ttlp_arg[0].ttlp_lexdepth++; return _LPAR; }
<TWO_CRS>"(" { TTLYYBEGIN(INITIAL); ttlp_arg[0].ttlp_lexdepth++; return _LPAR; }
<INITIAL>")" { ttlp_arg[0].ttlp_lexdepth--; return _RPAR; }
<INITIAL>"[" { ttlp_arg[0].ttlp_lexdepth++; return _LSQBRA; }
<GARBAGE_BOL>"[" { TTLYYBEGIN(INITIAL); ttlp_arg[0].ttlp_lexdepth++; return _LSQBRA; }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"[]" { TTLYYBEGIN(INITIAL); return _LSQBRA_RSQBRA; }
<INITIAL>"]" { ttlp_arg[0].ttlp_lexdepth--; return _RSQBRA; }
<INITIAL>"{" {
int depth = ttlp_arg[0].ttlp_lexdepth++;
return (((0 == depth) && (ttlp_arg[0].ttlp_flags & TTLP_ALLOW_TRIG)) ? _LBRA_TOP_TRIG : _LBRA);
}
<GARBAGE_BOL>"{" { TTLYYBEGIN(INITIAL); ttlp_arg[0].ttlp_lexdepth++; return _LBRA; }
<INITIAL>"}" { ttlp_arg[0].ttlp_lexdepth--; return _RBRA; }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"<"([^\\>\001-\040])*">" {
if (TTL_MAX_IRI_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The \"relative IRI\" (angle-bracketed) notation is too long");
TTLYYBEGIN(INITIAL);
ttlyylval.box = box_dv_short_nchars (yytext + 1, yyleng - 2);
return Q_IRI_REF;
}
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"<"{TTL_CR_IRIREF}">" {
if (TTL_MAX_IRI_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The \"relative IRI\" (angle-bracketed) notation is too long");
TTLYYBEGIN(INITIAL);
ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_LTGT, '>');
return Q_IRI_REF;
}
<INITIAL>"<"(([^\\>\001-\040])|{SPAR_ECHAR}|"\\>")*">" {
if (TTL_MAX_IRI_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The \"relative IRI\" (angle-bracketed) notation is too long");
ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_LTGT, '>');
return Q_IRI_REF;
}
<INITIAL>"<"([^<>\001-\037]|"\t")*">" {
if (!(ttlp_arg[0].ttlp_flags & TTLP_ACCEPT_DIRTY_NAMES))
TTLYYERROR_OR_RECOVER ("Invalid characters in angle-bracketed name; this error can be suppressed by parser flags");
if (TTL_MAX_IRI_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The \"relative IRI\" (angle-bracketed) notation is too long");
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Invalid characters in angle-bracketed name");
ttlyylval.box = box_dv_short_nchars (yytext + 1, yyleng - 2);
return Q_IRI_REF;
}
<INITIAL>"<"([^<>\001-\037]|"\t")+{S_NL}([^<>.;,\[\]{}\'\"\\\001-\037]|"\t")*">" {
if (!(ttlp_arg[0].ttlp_flags & TTLP_ACCEPT_DIRTY_NAMES))
TTLYYERROR_OR_RECOVER ("Line break in angle-bracketed name; this error can be suppressed by parser flags");
if (TTL_MAX_IRI_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The \"relative IRI\" (angle-bracketed) notation is too long");
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Line break in angle-bracketed name");
ttlyylval.box = box_dv_short_nchars (yytext + 1, yyleng - 2);
TTL_ONE_CR;
return Q_IRI_REF;
}
<INITIAL>"<"([^<>\001-\037]|"\t")* {
TTLYYERROR_OR_REPORT ("Invalid characters in angle-bracketed name");
TTLYYBEGIN (TURTLE_SKIP_TO_DOT_WS); yymore (); }
<INITIAL>({SPAR_NCNAME_PREFIX}?)":"{SPAR_NCNAME} { TTL_TOKBOX_Q(0,QNAME,"qualified URI"); }
<INITIAL>({TTL_CR_PN_PREFIX}?)":"{TTL_CR_PN_LOCAL} { TTL_TOKBOX_Q(0,QNAME,"qualified URI"); }
<GARBAGE_BOL,GARBAGE,TWO_CRS>({SPAR_NCNAME_PREFIX}?)":"{SPAR_NCNAME} { if (ttlp_qname_prefix_is_explicit_and_valid (ttlp_arg, yytext)) { TTLYYBEGIN(INITIAL); TTL_TOKBOX_Q(0,QNAME,"qualified URI"); } }
<GARBAGE_BOL,GARBAGE,TWO_CRS>({TTL_CR_PN_PREFIX}?)":"{TTL_CR_PN_LOCAL} { if (ttlp_qname_prefix_is_explicit_and_valid (ttlp_arg, yytext)) { TTLYYBEGIN(INITIAL); TTL_TOKBOX_Q(0,QNAME,"qualified URI"); } }
<INITIAL>({SPAR_NCNAME_PREFIX}?)":"{SPAR_NCNAME_X} {
if (!(ttlp_arg[0].ttlp_flags & TTLP_NAME_MAY_CONTAIN_PATH))
TTLYYERROR_OR_RECOVER ("Invalid characters in local part of QName; this error can be suppressed by parser flags");
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Invalid characters in local part of QName");
TTL_TOKBOX_Q(0,QNAME,"qualified URI"); }
<INITIAL>{PN_PREFIX}":" { TTL_TOKBOX_Q_SAVE(0,QNAME_NS,"namespace"); }
<GARBAGE_BOL,GARBAGE,TWO_CRS>{SPAR_NCNAME_PREFIX}":" { if (ttlp_qname_prefix_is_explicit_and_valid (ttlp_arg, yytext)) { TTLYYBEGIN(INITIAL); TTL_TOKBOX_Q(0,QNAME_NS,"namespace"); } }
<INITIAL>{SPAR_NCNAME} {
if ((TTLP_SNIFFER & ttlp_arg[0].ttlp_flags) && ((NULL == ttlp_arg[0].ttlp_base_uri) || ('\0' == ttlp_arg[0].ttlp_base_uri[0])))
TTLYYBEGIN (GARBAGE);
else
TTL_TOKBOX_Q(0,QNAME,"name without prefix"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"_:"({PN_LOCAL_NQ}) { TTLYYBEGIN(INITIAL); TTL_TOKBOX_BNODE(0,BLANK_NODE_LABEL_NQ,"NQuads-compatible blank node label"); }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>"_:"({PN_LOCAL_TTL}) { TTLYYBEGIN(INITIAL); TTL_TOKBOX_BNODE(0,BLANK_NODE_LABEL_TTL,"Turtle-specific blank node label"); }
<INITIAL>"_:"{SPAR_NCCHAR_X}+ {
if (!(ttlp_arg[0].ttlp_flags & TTLP_ACCEPT_DIRTY_NAMES))
TTLYYERROR_OR_RECOVER ("Ill formed blank node label; this error can be suppressed by parser flags");
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Ill formed blank node label");
TTL_TOKBOX_BNODE(0,BLANK_NODE_LABEL_TTL,"ill formed blank node label"); }
<INITIAL>"?"{SPAR_NCNAME} {
if (!(ttlp_arg[0].ttlp_flags & TTLP_ACCEPT_VARIABLES))
TTLYYERROR_OR_RECOVER ("Full N3 syntax allow variables, TURTLE does not; this error can be suppressed by parser flags");
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Full N3 syntax allow variables, TURTLE does not");
TTL_TOKBOX_Q(0,VARIABLE,"variable name"); }
<INITIAL>"@"([a-zA-Z]+)(("-"([a-zA-Z0-9]+))*) {
if (TTL_MAX_KEYWORD_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The @-keyword is too long");
ttlyylval.box = box_dv_short_nchars (yytext + 1, yyleng - 1);
return KEYWORD;
}
<TURTLE_AT_AFTER_QUOTED>{SPAR_LANGTAG} {
TTLYYBEGIN (INITIAL);
if (TTL_MAX_LANGNAME_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The language identifier after \"@\" mark is too long");
ttlyylval.box = box_dv_short_nchars (yytext, yyleng);
return LANGTAG;
}
<TURTLE_AT_AFTER_QUOTED>{SPAR_OLD_LANGTAG} {
char *tail;
TTLYYBEGIN (INITIAL);
if (!(ttlp_arg[0].ttlp_flags & TTLP_ACCEPT_DIRTY_NAMES))
TTLYYERROR_OR_RECOVER ("Obsolete format of language; this error can be recovered if proper parser flags are set");
if (TTL_MAX_LANGNAME_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The language identifier after \"@\" mark is too long");
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "Obsolete format of language");
ttlyylval.box = box_dv_short_nchars (yytext, yyleng);
for (tail = ttlyylval.box + (yyleng); tail >= ttlyylval.box; tail--)
if ('_' == tail[0])
tail[0] = '-';
return LANGTAG;
}
<TURTLE_AT_AFTER_QUOTED>([a-zA-Z0-9-]+) { TTLYYERROR_OR_RECOVER ("The identifier after '@' at the end of quoted literal is not a valid language id"); }
<TURTLE_AT_AFTER_QUOTED><<EOF>> { TTLYYERROR_OR_RECOVER ("Missing language id after '@' at the end of quoted literal"); }
<TURTLE_AT_AFTER_QUOTED>. { TTLYYERROR_OR_RECOVER ("Bad character instead of language id after '@' at the end of quoted literal"); }
<INITIAL>([""][^""\\\r\n]*[""])|([''][^''\\\r\n]*['']) {
if (TTL_MAX_LITERAL_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The double-quoted string is too long");
ttlyylval.box = box_dv_short_nchars (yytext+1, yyleng - 2);
return TURTLE_STRING;
}
<INITIAL>(([""][^""\\\r\n]*[""])|([''][^''\\\r\n]*['']))"@" {
if (TTL_MAX_LITERAL_LEN <= yyleng)
TTLYYERROR_OR_RECOVER("The double-quoted string is too long");
ttlyylval.box = box_dv_short_nchars (yytext+1, yyleng - 3);
TTLYYBEGIN (TURTLE_AT_AFTER_QUOTED);
return TURTLE_STRING;
}
<INITIAL>[''][''][''] { yymore(); TTLYYBEGIN (TURTLE_SSSQ); }
<INITIAL>[""][""][""] { yymore(); TTLYYBEGIN (TURTLE_DDDQ); }
<TURTLE_SSSQ>[''][''](['']+) { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The triple-single-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_3QUOT, '\''); TTLYYBEGIN (INITIAL); return TURTLE_STRING; }
<TURTLE_DDDQ>[""][""]([""]+) { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The triple-double-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_3QUOT, '\"'); TTLYYBEGIN (INITIAL); return TURTLE_STRING; }
<TURTLE_SSSQ>['']['']['']"@" { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The triple-single-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_3QUOT_AT, '\''); TTLYYBEGIN (TURTLE_AT_AFTER_QUOTED); return TURTLE_STRING; }
<TURTLE_DDDQ>[""][""][""]"@" { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The triple-double-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_3QUOT_AT, '\"'); TTLYYBEGIN (TURTLE_AT_AFTER_QUOTED); return TURTLE_STRING; }
<TURTLE_SSSQ>(([''](['']?))?{S_NL}) { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The triple-single-quoted string is too long"); TTL_ONE_CR; yymore(); }
<TURTLE_DDDQ>(([""]([""]?))?{S_NL}) { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The triple-double-quoted string is too long"); TTL_ONE_CR; yymore(); }
<TURTLE_SSSQ>((([''](['']?))?({SPAR_SQ_PLAIN}|{SPAR_ECHAR}))+) { yymore(); }
<TURTLE_DDDQ>((([""]([""]?))?({SPAR_DQ_PLAIN}|{SPAR_ECHAR}))+) { yymore(); }
<TURTLE_SSSQ>[\\] { ttlyyerror ("Bad escape sequence in a long single-quoted string"); }
<TURTLE_DDDQ>[\\] { ttlyyerror ("Bad escape sequence in a long double-quoted string"); }
<TURTLE_SSSQ>. { ttlyyerror ("Bad character in a long single-quoted string"); }
<TURTLE_DDDQ>. { ttlyyerror ("Bad character in a long double-quoted string"); }
<TURTLE_SSSQ><<EOF>> { ttlp_arg[0].ttlp_flags |= TTLP_SNIFFER_COMPLETE; ttlyyerror ("Unterminated long single-quoted string"); }
<TURTLE_DDDQ><<EOF>> { ttlp_arg[0].ttlp_flags |= TTLP_SNIFFER_COMPLETE; ttlyyerror ("Unterminated long double-quoted string"); }
<INITIAL>[''] { yymore(); TTLYYBEGIN (TURTLE_SQ); }
<INITIAL>[""] { yymore(); TTLYYBEGIN (TURTLE_DQ); }
<TURTLE_SQ>[''] { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The single-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_QUOT, '\''); TTLYYBEGIN (INITIAL); return TURTLE_STRING; }
<TURTLE_DQ>[""] { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The double-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_QUOT, '\"'); TTLYYBEGIN (INITIAL); return TURTLE_STRING; }
<TURTLE_SQ>['']"@" { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The single-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_QUOT_AT, '\''); TTLYYBEGIN (TURTLE_AT_AFTER_QUOTED); return TURTLE_STRING; }
<TURTLE_DQ>[""]"@" { if (TTL_MAX_LITERAL_LEN <= yyleng) TTLYYERROR_OR_RECOVER("The double-quoted string is too long"); ttlyylval.box = ttlp_strliteral (ttlp_arg, yytext, TTLP_STRLITERAL_QUOT_AT, '\"'); TTLYYBEGIN (TURTLE_AT_AFTER_QUOTED); return TURTLE_STRING; }
<TURTLE_SQ>{S_NL} {
if (!(TTLP_STRING_MAY_CONTAIN_CRLF & ttlp_arg[0].ttlp_flags))
{
TTLYYERROR_OR_REPORT ("End-of-line in a short single-quoted string; this error can be suppressed by parser flags");
TTLYYBEGIN (TURTLE_BAD_SQ);
}
else
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "End-of-line in a short single-quoted string");
TTL_ONE_CR; yymore(); }
<TURTLE_DQ>{S_NL} {
if (!(TTLP_STRING_MAY_CONTAIN_CRLF & ttlp_arg[0].ttlp_flags))
{
TTLYYERROR_OR_REPORT ("End-of-line in a short double-quoted string; this error can be suppressed by parser flags");
TTLYYBEGIN (TURTLE_BAD_DQ);
}
else
tf_report (ttlp_arg[0].ttlp_tf, 'W', NULL, NULL, "End-of-line in a short double-quoted string");
TTL_ONE_CR; yymore(); }
<TURTLE_SQ>[\\]{S_NL} {
if (!(TTLP_STRING_MAY_CONTAIN_CRLF & ttlp_arg[0].ttlp_flags))
{
TTLYYERROR_OR_REPORT ("End-of-line escape sequence in a single-quoted string is not permitted by strict TURTLE; this error can be suppressed by parser flags");
TTLYYBEGIN (TURTLE_BAD_SQ);
}
TTL_ONE_CR; yymore(); }
<TURTLE_DQ>[\\]{S_NL} {
if (!(TTLP_STRING_MAY_CONTAIN_CRLF & ttlp_arg[0].ttlp_flags))
{
TTLYYERROR_OR_REPORT ("End-of-line escape sequence in a double-quoted string is not permitted by strict TURTLE; this error can be suppressed by parser flags");
TTLYYBEGIN (TURTLE_BAD_DQ);
}
TTL_ONE_CR; yymore(); }
<TURTLE_SQ>(({SPAR_SQ_PLAIN}|{SPAR_ECHAR})+) { yymore(); }
<TURTLE_DQ>(({SPAR_DQ_PLAIN}|{SPAR_ECHAR})+) { yymore(); }
<TURTLE_SQ>[\\] {
TTLYYERROR_OR_REPORT ("Bad escape sequence in a short single-quoted string");
TTLYYBEGIN (TURTLE_BAD_SQ); yymore(); }
<TURTLE_DQ>[\\] {
TTLYYERROR_OR_REPORT ("Bad escape sequence in a short double-quoted string");
TTLYYBEGIN (TURTLE_BAD_DQ); yymore(); }
<TURTLE_BAD_SQ>(({SPAR_SQ_PLAIN}|{SPAR_ECHAR})+) {}
<TURTLE_BAD_DQ>(({SPAR_DQ_PLAIN}|{SPAR_ECHAR})+) {}
<TURTLE_BAD_SQ>{S_NL} { TTL_ONE_CR; yymore(); }
<TURTLE_BAD_DQ>{S_NL} { TTL_ONE_CR; yymore(); }
<TURTLE_BAD_SQ>[^''] {}
<TURTLE_BAD_DQ>[^""] {}
<TURTLE_BAD_SQ>['']("@"{SPAR_LANGTAG})? { TTLYYBEGIN (INITIAL); return TTL_RECOVERABLE_ERROR; }
<TURTLE_BAD_DQ>[""]("@"{SPAR_LANGTAG})? { TTLYYBEGIN (INITIAL); return TTL_RECOVERABLE_ERROR; }
<TURTLE_SQ,TURTLE_BAD_SQ><<EOF>> { ttlp_arg[0].ttlp_flags |= TTLP_SNIFFER_COMPLETE; ttlyyerror ("Unterminated short single-quoted string"); }
<TURTLE_DQ,TURTLE_BAD_DQ><<EOF>> { ttlp_arg[0].ttlp_flags |= TTLP_SNIFFER_COMPLETE; ttlyyerror ("Unterminated short double-quoted string"); }
<INITIAL>[+-]?{INTEGER_LITERAL} { return ttlp_NUMBER_int (yylval, ttlp_arg, yyg); }
<INITIAL>[+-]?{DECIMAL_LITERAL} { return ttlp_NUMBER_decimal (yylval, ttlp_arg, yyg); }
<INITIAL>[+-]?{DOUBLE_LITERAL} { return ttlp_NUMBER_double (yylval, ttlp_arg, yyg); }
<INITIAL>("#"(.*))?{S_NLNL}[ \t]* { TTL_TWO_CRS; }
<INITIAL,GARBAGE_BOL,GARBAGE,TWO_CRS>("#"(.*))?{S_NL} { TTL_ONE_CR; }
<INITIAL,TWO_CRS>"#"(.*) { }
<INITIAL,TWO_CRS>[ \t]+ { }
<INITIAL,TWO_CRS>. {
char buf[100]; sprintf (buf, "Unexpected character '%c'", yytext[yyleng-1]);
TTLYYERROR_OR_REPORT (buf);
TTLYYBEGIN (TURTLE_SKIP_TO_DOT_WS); yymore(); }
<TURTLE_SKIP_TO_DOT_WS>"."[ \t] { TTLYYBEGIN (INITIAL); yyless (yyleng-2); return _GARBAGE_BEFORE_DOT_WS; }
<TURTLE_SKIP_TO_DOT_WS>"."{S_NL} { TTLYYBEGIN (INITIAL); yyless (('.' == yytext[yyleng-2]) ? yyleng-2 : yyleng-3); TTL_ONE_CR; return _GARBAGE_BEFORE_DOT_WS; }
<TURTLE_SKIP_TO_DOT_WS>. {
if (yyleng > 8000)
{ char buf[100]; sprintf (buf, "Failed to recover syntax error at \"%.50s...\"", yytext); ttlyyerror (buf); }
yymore(); }
<GARBAGE,GARBAGE_BOL><<EOF>> { return 0; }
<GARBAGE>([^_<@# \t\:\r\n][^: \t\r\n]*[ \t]+)+ { ttlyy_dbg_printf(("{Garbage 1 %s}", yytext)); }
<GARBAGE>[^ \t\r\n]+ { ttlyy_dbg_printf(("{Garbage 2 %s}", yytext)); }
<GARBAGE>[ \t]+ { }
<GARBAGE_BOL>([^_<@# \t\:\r\n][^: \t\r\n]*[ \t]+)+ { ttlyy_dbg_printf(("{Garbage_BOL 1 %s}", yytext)); TTLYYBEGIN(GARBAGE); }
<GARBAGE_BOL>[^ \t\r\n]+ { ttlyy_dbg_printf(("{Garbage_BOL 2 %s}", yytext)); TTLYYBEGIN(GARBAGE); }
<GARBAGE,GARBAGE_BOL>{S_NL}[ \t]* { TTLYYBEGIN(GARBAGE_BOL); TTL_ONE_CR; }
<TWO_CRS>("#"(.*))?{S_NL}[ \t]* { TTL_ONE_CR; }
<GARBAGE,GARBAGE_BOL>. { }
%%
int
ttlyyerror_if_long_qname (ttlp_t *ttlp_arg, int lexcode, caddr_t box, const char *lex_type_descr, struct yyguts_t * yyg)
{
size_t boxlen = box_length (box);
char buf[100];
char *colon;
if (boxlen > MAX_XML_QNAME_LENGTH)
{
snprintf (buf, sizeof (buf), "%.90s is too long", lex_type_descr);
goto err; /* see below */
}
colon = strrchr (box, ':');
if (NULL == colon)
{
if (boxlen > MAX_XML_LNAME_LENGTH)
{
snprintf (buf, sizeof (buf), "%.90s is too long", lex_type_descr);
goto err; /* see below */
}
return lexcode;
}
if (colon+1-box > MAX_XML_LNAME_LENGTH)
{
snprintf (buf, sizeof (buf), "%.90s contains abnormally long namespace prefix", lex_type_descr);
goto err; /* see below */
}
if (boxlen-(colon-box) > MAX_XML_LNAME_LENGTH)
{
snprintf (buf, sizeof (buf), "%.90s contains abnormally long 'local part' after the colon", lex_type_descr);
goto err; /* see below */
}
return lexcode;
err:
if (box == ttlp_arg->ttlp_last_q_save)
ttlp_arg->ttlp_last_q_save = NULL;
dk_free_box (box);
TTLYYERROR_OR_RECOVER (buf);
return 0; /* Never reached */
}
int
ttlp_NUMBER_int (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, struct yyguts_t * yyg)
{
int l = strlen (yytext);
int has_sign = ((('-' == yytext[0]) || ('+' == yytext[0])) ? 1 : 0);
int is_negative = ('-' == yytext[0]);
if (((18+has_sign) > l) ||
(((18+has_sign) == l) &&
(0 >= strcmp (yytext + has_sign, /* 0123456789012345678 */
(is_negative ? "223372036854775808" : "223372036854775807") ) ) ) )
{
ttlyylval.box = box_num_nonull (atol (yytext));
return TURTLE_INTEGER;
}
else
{
numeric_t num = numeric_allocate ();
int rc = numeric_from_string (num, yytext);
ttlyylval.box = (caddr_t) num;
if (NULL == ttlyylval.box)
ttlyylval.box = box_num_nonull (0);
if(rc != NUMERIC_STS_SUCCESS)
TTLYYERROR_OR_RECOVER ("The absolute value of numeric constant is too large");
return TURTLE_INTEGER;
}
}
int
ttlp_NUMBER_decimal (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, struct yyguts_t * yyg)
{
numeric_t num = numeric_allocate ();
int rc = numeric_from_string (num, yytext);
if (NUMERIC_STS_SUCCESS == rc)
{
ttlyylval.box = (caddr_t) num;
if (NULL == ttlyylval.box)
ttlyylval.box = box_num_nonull (0);
return TURTLE_DECIMAL;
}
numeric_free (num);
ttlyylval.box = box_double (atof (yytext));
return TURTLE_DECIMAL;
}
int
ttlp_NUMBER_double (YYSTYPE *yylval_param, ttlp_t *ttlp_arg, struct yyguts_t * yyg)
{
ttlyylval.box = box_double (atof (yytext));
return TURTLE_DOUBLE;
}
caddr_t
ttl_lex_analyze (caddr_t str, int flags, wcharset_t *query_charset)
{
#ifdef TTLYYDEBUG
int last_reported_line = -1;
#endif
dk_set_t lexems = NULL;
caddr_t result_array;
ttlp_t *ttlp;
yyscan_t scanner;
int sniffer_recovery = 0;
if (!DV_STRINGP(str))
{
return list (1, list (3, (ptrlong)0, (ptrlong)0, box_dv_short_string ("TURTLE parser: input text is not a string")));
}
#ifdef DEBUG
ttl_lexem_descrs_fill ();
#endif
ttlp = ttlp_alloc ();
ttlp->ttlp_flags = flags;
ttlp->ttlp_text = str;
ttlp->ttlp_text_len = strlen (str);
ttlp->ttlp_err_hdr = ((flags & TTLP_ALLOW_NQUAD) ? "NQuads lexical analyzer" : ((flags & TTLP_ALLOW_TRIG) ? "TriG lexical analyzer" : "TURTLE lexical analyzer"));
if (NULL == query_charset)
query_charset = default_charset;
if (NULL == query_charset)
ttlp->ttlp_enc = &eh__ISO8859_1;
else
{
ttlp->ttlp_enc = eh_get_handler (CHARSET_NAME (query_charset, NULL));
if (NULL == ttlp->ttlp_enc)
ttlp->ttlp_enc = &eh__ISO8859_1;
}
ttlyylex_init (&scanner);
ttlyyset_extra (ttlp, scanner);
if (flags & TTLP_SNIFFER)
yy_push_state (GARBAGE_BOL, scanner);
else
{
#ifdef MALLOC_DEBUG
yy_push_state (INITIAL, scanner);
#endif
}
resume_sniffing:
QR_RESET_CTX
{
if (sniffer_recovery)
yy_push_state (GARBAGE, scanner);
for (;;)
{
caddr_t lex_value = NULL;
int lexem;
const char *ld_txt = NULL;
lexem = ttlyylex ((YYSTYPE *)(&lex_value), ttlp, scanner);
if (0 == lexem)
{
#ifdef TTLYYDEBUG
ttlyy_dbg_printf (("{END}"));
#endif
break;
}
#ifdef DEBUG
if (lexem <= __TTL_NONPUNCT_END)
{
ttl_lexem_descr_t *lexem_descr = ttl_lexem_descrs + lexem;
ld_txt = lexem_descr->ld_yname;
}
#endif
#ifdef TTLYYDEBUG
while (last_reported_line < ttlp->ttlp_lexlineno)
{
last_reported_line++;
ttlyy_dbg_printf (("\n%05d:\t", last_reported_line)); /* Not a single ttlyy_dbg_printf (("\n%05d:\t", last_reported_line++)); because that would hang on empty ttlyy_dbg_printf definition */
}
if (NULL != ttlp->ttlp_raw_text)
ttlyy_dbg_printf (("{Traw %d %s %s} ", lexem, ((NULL == ld_txt) ? "?" : ld_txt), ttlp->ttlp_raw_text));
else if (DV_STRING == DV_TYPE_OF (lex_value))
ttlyy_dbg_printf (("{Tstrg %d %s %s} ", lexem, ((NULL == ld_txt) ? "?" : ld_txt), lex_value));
else if (DV_UNAME == DV_TYPE_OF (lex_value))
ttlyy_dbg_printf (("{Tuname %d %s %s} ", lexem, ((NULL == ld_txt) ? "?" : ld_txt), lex_value));
else if (DV_LONG_INT == DV_TYPE_OF (lex_value))
ttlyy_dbg_printf (("{Tint %d %s " BOXINT_FMT "} ", lexem, ((NULL == ld_txt) ? "?" : ld_txt), unbox (lex_value)));
else
ttlyy_dbg_printf (("{Tint %d %s ???} ", lexem, ((NULL == ld_txt) ? "?" : ld_txt)));
#endif
dk_check_tree (lex_value);
dk_set_push (&lexems, list (6,
box_num (ttlp->ttlp_lexlineno),
box_num (ttlp->ttlp_lexdepth),
((NULL != ttlp->ttlp_raw_text) ? box_copy (ttlp->ttlp_raw_text) : ((NULL == ld_txt) ? NEW_DB_NULL : box_dv_short_string (ld_txt))),
box_num (lexem), lex_value,
(ptrlong)yy_top_state (scanner) ) );
}
yy_pop_state (scanner);
}
QR_RESET_CODE
{
du_thread_t *self = THREAD_CURRENT_THREAD;
caddr_t *err = (caddr_t *)thr_get_error_code (self);
#ifdef TTLYYDEBUG
ttlyy_dbg_printf (("{ERROR %s %s}", ERR_STATE(err), ERR_MESSAGE(err)));
#endif
thr_set_error_code (self, NULL);
if ((flags & TTLP_SNIFFER) && (NULL == strstr (ERR_MESSAGE (err), "nternal error")))
{
dk_free_tree (err);
yy_pop_state (scanner);
ttlp_reset_stacks (ttlp);
if (!(ttlp->ttlp_flags & TTLP_SNIFFER_COMPLETE)) /* Note that \c ttlp->ttlp_flags might differ from \c flags in this bit. */
sniffer_recovery = 2;
}
else
{
/* ttlyydebug = 0; */
ttlp->ttlp_catched_error = err;
}
/*no POP_QR_RESET*/;
}
END_QR_RESET
if (2 == sniffer_recovery)
{
sniffer_recovery = 1;
goto resume_sniffing;
}
ttlyylex_destroy (scanner);
if (NULL != ttlp->ttlp_catched_error)
{
dk_set_push (&lexems, list (3,
box_num (ttlp->ttlp_lexlineno),
ttlp->ttlp_lexdepth,
box_copy (ERR_MESSAGE (ttlp->ttlp_catched_error)) ) );
}
ttlp_free (ttlp);
result_array = revlist_to_array (lexems);
return result_array;
}
caddr_t
rdf_load_turtle (
caddr_t text_or_filename, int arg1_is_filename, caddr_t base_uri, caddr_t graph_uri, long flags,
ccaddr_t *cbk_names, caddr_t *app_env,
query_instance_t *qi, wcharset_t *query_charset, caddr_t *err_ret )
{
FILE *srcfile = NULL;
bh_from_client_fwd_iter_t bcfi;
bh_from_disk_fwd_iter_t bdfi;
dk_session_fwd_iter_t dsfi;
int sniffer_recovery = 0;
/* !!!TBD: add wide support: int text_strg_is_wide = 0; */
dtp_t dtp_of_text = (arg1_is_filename ? 0 : DV_TYPE_OF (text_or_filename));
caddr_t res;
ttlp_t *ttlp;
yyscan_t scanner;
triple_feed_t *tf;
if (arg1_is_filename)
sec_check_dba (qi, "<creading TURTLE from local file>");
if (DV_BLOB_XPER_HANDLE == dtp_of_text)
sqlr_new_error ("42000", "SP036", "Unable to parse TURTLE from persistent XML object");
ttlp = ttlp_alloc ();
ttlp->ttlp_flags = flags;
tf = ttlp->ttlp_tf;
tf->tf_qi = qi;
tf->tf_app_env = app_env;
QR_RESET_CTX
{
tf_set_cbk_names (tf, (ccaddr_t *)cbk_names);
}
QR_RESET_CODE
{
du_thread_t *self = THREAD_CURRENT_THREAD;
err_ret[0] = thr_get_error_code (self);
thr_set_error_code (self, NULL);
POP_QR_RESET;
ttlp_free (ttlp);
return NULL;
}
END_QR_RESET
if (arg1_is_filename)
{
sec_check_dba (qi, "<read XML from URL of type file://...>");
tf->tf_boxed_input_name = file_native_name_from_iri_path_nchars (text_or_filename, strlen (text_or_filename));
file_path_assert (tf->tf_boxed_input_name, NULL, 1);
srcfile = fopen (tf->tf_boxed_input_name, "rb");
if (NULL == srcfile)
{
ttlp_free (ttlp);
sqlr_new_error ("42000", "SR598", "TURTLE parser has failed to open file '%s' for reading", tf->tf_boxed_input_name);
}
ttlp->ttlp_iter = file_read;
ttlp->ttlp_iter_data = srcfile;
goto iter_is_set;
}
if ((DV_BLOB_HANDLE == dtp_of_text) /* !!!TBD: add wide support: || (DV_BLOB_WIDE_HANDLE == dtp_of_text)*/ )
{
blob_handle_t *bh = (blob_handle_t *) text_or_filename;
#if 0 /* !!!TBD: add wide support: */
text_strg_is_wide = ((DV_BLOB_WIDE_HANDLE == dtp_of_text) ? 1 : 0);
#endif
if (bh->bh_ask_from_client)
{
bcfi_reset (&bcfi, bh, qi->qi_client);
ttlp->ttlp_iter = bcfi_read;
ttlp->ttlp_iter_abend = bcfi_abend;
ttlp->ttlp_iter_data = &bcfi;
goto iter_is_set;
}
bdfi_reset (&bdfi, bh, qi);
ttlp->ttlp_iter = bdfi_read;
ttlp->ttlp_iter_data = &bdfi;
goto iter_is_set;
}
if (DV_STRING_SESSION == dtp_of_text)
{
dk_session_t *ses = (dk_session_t *) text_or_filename;
dsfi_reset (&dsfi, ses);
ttlp->ttlp_iter = dsfi_read;
ttlp->ttlp_iter_data = &dsfi;
goto iter_is_set;
}
#if 0 /* !!!TBD: add wide support: */
if (IS_WIDE_STRING_DTP (dtp_of_text))
{
text_len = (s_size_t) (box_length(text_or_filename)-sizeof(wchar_t));
text_strg_is_wide = 1;
goto iter_is_set;
}
#endif
if (IS_STRING_DTP (dtp_of_text))
{
ttlp->ttlp_text = text_or_filename;
ttlp->ttlp_text_len = box_length(text_or_filename) - 1;
goto iter_is_set;
}
ttlp_free (ttlp);
sqlr_new_error ("42000", "SP037",
"Unable to parse TURTLE from data of type %s (%d)", dv_type_title (dtp_of_text), dtp_of_text);
iter_is_set:
tf->tf_default_graph_uri = box_copy (graph_uri);
ttlp->ttlp_err_hdr = ((flags & TTLP_ALLOW_NQUAD) ? "NQuads RDF loader" : ((flags & TTLP_ALLOW_TRIG) ? "TriG RDF loader" : "TURTLE RDF loader"));
if (NULL == query_charset)
query_charset = default_charset;
if (NULL == query_charset)
ttlp->ttlp_enc = &eh__ISO8859_1;
else
{
ttlp->ttlp_enc = eh_get_handler (CHARSET_NAME (query_charset, NULL));
if (NULL == ttlp->ttlp_enc)
ttlp->ttlp_enc = &eh__ISO8859_1;
}
if (box_length (base_uri) > 1)
tf->tf_base_uri = box_copy (base_uri);
tf->tf_line_no_ptr = &(ttlp->ttlp_lexlineno);
ttlyylex_init (&scanner);
ttlyyset_extra (ttlp, scanner);
if ((ttlp->ttlp_iter == file_read) && !lite_mode && (YY_BUF_SIZE < 0x10000))
ttlyypush_buffer_state (ttlyy_create_buffer (NULL, (YY_BUF_SIZE > 0x2000) ? (YY_BUF_SIZE * 8) : 0x10000, scanner), scanner);
if (flags & TTLP_SNIFFER)
yy_push_state (GARBAGE_BOL, scanner);
else
{
#ifdef MALLOC_DEBUG
yy_push_state (INITIAL, scanner);
#endif
}
TF_CHANGE_GRAPH_TO_DEFAULT (tf);
/* ttlyydebug = 1; */
resume_sniffing:
QR_RESET_CTX
{
if (sniffer_recovery)
yy_push_state (GARBAGE, scanner);
if (flags & TTLP_SNIFFER)
ttlyyparse (ttlp, scanner);
if (flags & TTLP_ALLOW_NQUAD)
nqyyparse (ttlp, scanner);
else
ttlyyparse (ttlp, scanner);
/* ttlyydebug = 0; */
tf_commit (tf);
}
QR_RESET_CODE
{
du_thread_t *self = THREAD_CURRENT_THREAD;
caddr_t err = thr_get_error_code (self);
thr_set_error_code (self, NULL);
if ((flags & TTLP_SNIFFER) && (NULL == strstr (ERR_MESSAGE (err), "nternal error")))
{
dk_free_tree (err);
yy_pop_state (scanner);
ttlp_reset_stacks (ttlp);
if (!(ttlp->ttlp_flags & TTLP_SNIFFER_COMPLETE)) /* Note that \c ttlp->ttlp_flags might differ from \c flags in this bit. */
sniffer_recovery = 2;
}
else
{
/* ttlyydebug = 0; */
ttlp->ttlp_catched_error = err;
if (NULL != ttlp->ttlp_iter_abend)
{
ttlp->ttlp_iter_abend (ttlp->ttlp_iter_data);
ttlp->ttlp_iter_abend = NULL;
}
}
/*no POP_QR_RESET*/;
}
END_QR_RESET
if (2 == sniffer_recovery)
{
sniffer_recovery = 1;
goto resume_sniffing;
}
if (NULL != srcfile)
fclose (srcfile);
#ifdef MALLOC_DEBUG_1
dbg_allows_free_nulls++;
#endif
ttlyylex_destroy (scanner);
#ifdef MALLOC_DEBUG_1
dbg_allows_free_nulls--;
#endif
err_ret[0] = ttlp->ttlp_catched_error;
ttlp->ttlp_catched_error = NULL;
res = box_copy (graph_uri);
ttlp_free (ttlp);
return res;
}
#ifdef DEBUG
static void ttl_lex_props (int val, const char *yname, char fmttype, const char *fmt, ...)
{
va_list tail;
const char *cmd;
dk_set_t tests = NULL;
ttl_lexem_descr_t *ld = ttl_lexem_descrs + val;
if (0 != ld->ld_val)
GPF_T;
ld->ld_val = val;
ld->ld_yname = yname;
ld->ld_fmttype = fmttype;
ld->ld_fmt = fmt;
va_start (tail, fmt);
for (;;)
{
cmd = va_arg (tail, const char *);
if (NULL == cmd)
break;
dk_set_push (&tests, box_dv_short_string (cmd));
}
va_end (tail);
ld->ld_tests = (caddr_t *)revlist_to_array (tests);
}
void
ttl_lexem_descrs_fill (void)
{
static int first_run = 1;
if (!first_run)
return;
first_run = 0;
#include "turtle_lex_props.c"
}
caddr_t
bif_turtle_lex_test (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
dk_set_t report = NULL;
int tested_lex_val = 0;
ttl_lexem_descrs_fill ();
for (tested_lex_val = 0; tested_lex_val < __TTL_NONPUNCT_END; tested_lex_val++)
{
char cmd;
caddr_t **lexems;
unsigned lex_count;
unsigned cmd_idx = 0;
int mode_bits = 0, last_lval, last1_lval;
ttl_lexem_descr_t *ld = ttl_lexem_descrs + tested_lex_val;
if (0 == ld->ld_val)
continue;
dk_set_push (&report, box_dv_short_string (""));
dk_set_push (&report,
box_sprintf (0x100, "#define % 25s %d /* '%s' (%c) */",
ld->ld_yname, ld->ld_val, ld->ld_fmt, ld->ld_fmttype ) );
for (cmd_idx = 0; cmd_idx < BOX_ELEMENTS(ld->ld_tests); cmd_idx++)
{
cmd = ld->ld_tests[cmd_idx][0];
switch (cmd)
{
case 's': mode_bits = 0; break;
case 't': mode_bits = TTLP_ALLOW_TRIG; break;
case 'K': case 'L': case 'M': case 'E':
cmd_idx++;
lexems = (caddr_t **) ttl_lex_analyze (ld->ld_tests[cmd_idx], mode_bits, QST_CHARSET(qst));
dk_set_push (&report, box_dv_short_string (ld->ld_tests[cmd_idx]));
lex_count = BOX_ELEMENTS (lexems);
if (0 == lex_count)
{
dk_set_push (&report, box_dv_short_string ("FAILED: no lexems parsed and no error reported!"));
goto end_of_test;
}
{ char buf[0x1000]; char *buf_tail = buf;
unsigned lctr = 0;
for (lctr = 0; lctr < lex_count && (5 == BOX_ELEMENTS(lexems[lctr])); lctr++)
{
ptrlong *ldata = ((ptrlong *)(lexems[lctr]));
int lval = ldata[3];
ttl_lexem_descr_t *ld = ttl_lexem_descrs + lval;
if (ld->ld_val)
buf_tail += sprintf (buf_tail, " %s", ld->ld_yname);
else if (lval < 0x100)
buf_tail += sprintf (buf_tail, " '%c'", lval);
else GPF_T;
buf_tail += sprintf (buf_tail, " %ld ", (long)(ldata[4]));
}
buf_tail[0] = '\0';
dk_set_push (&report, box_dv_short_string (buf));
}
if (3 == BOX_ELEMENTS(lexems[lex_count-1])) /* lexical error */
{
dk_set_push (&report,
box_sprintf (0x1000, "%s: ERROR %s",
('E' == cmd) ? "PASSED": "FAILED", lexems[lex_count-1][2] ) );
goto end_of_test;
}
/*
if (END_OF_TURTLE_TEXT != ((ptrlong *)(lexems[lex_count-1]))[3])
{
dk_set_push (&report, box_dv_short_string ("FAILED: end of source is not reached and no error reported!"));
goto end_of_test;
}
*/
if (0 /*1*/ == lex_count)
{
dk_set_push (&report, box_dv_short_string ("FAILED: no lexems parsed and only end of source has found!"));
goto end_of_test;
}
last_lval = ((ptrlong *)(lexems[lex_count-/*2*/1]))[3];
if ('E' == cmd)
{
dk_set_push (&report,
box_sprintf (0x1000, "FAILED: %d lexems found, last lexem is %d, must be error",
lex_count, last_lval) );
goto end_of_test;
}
if ('K' == cmd)
{
if (/*4*/2 > lex_count)
{
dk_set_push (&report,
box_sprintf (0x1000, "FAILED: %d lexems found, the number of actual lexems is less than two",
lex_count ) );
goto end_of_test;
}
last1_lval = ((ptrlong *)(lexems[lex_count-/*3*/2]))[3];
dk_set_push (&report,
box_sprintf (0x1000, "%s: %d lexems found, one-before-last lexem is %d, must be %d",
(last1_lval == tested_lex_val) ? "PASSED": "FAILED", lex_count, last1_lval, tested_lex_val) );
goto end_of_test;
}
if ('L' == cmd)
{
dk_set_push (&report,
box_sprintf (0x1000, "%s: %d lexems found, last lexem is %d, must be %d",
(last_lval == tested_lex_val) ? "PASSED": "FAILED", lex_count, last_lval, tested_lex_val) );
goto end_of_test;
}
if ('M' == cmd)
{
unsigned lctr;
for (lctr = 0; lctr < lex_count; lctr++)
{
int lval = ((ptrlong *)(lexems[lctr]))[3];
if (lval == tested_lex_val)
{
dk_set_push (&report,
box_sprintf (0x1000, "FAILED: %d lexems found, lexem %d is found but it should not occur",
lex_count, tested_lex_val) );
goto end_of_test;
}
}
dk_set_push (&report,
box_sprintf (0x1000, "PASSED: %d lexems found, lexem %d is not found and it should not occur",
lex_count, tested_lex_val) );
goto end_of_test;
}
GPF_T;
end_of_test:
dk_free_tree (lexems);
break;
default: GPF_T;
}
}
}
return revlist_to_array (report);
}
#endif
|