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
|
/******************************************************************************
*
* Copyright (C) 1997-2020 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
* Documents produced by Doxygen are derivative works derived from the
* input used in their production; they are not affected by this license.
*
*/
/******************************************************************************
* Minimal flex based parser for XML
******************************************************************************/
%option never-interactive
%option prefix="xmlYY"
%option reentrant
%option extra-type="struct xmlYY_state *"
%option 8bit noyywrap
%top{
#include <stdint.h>
}
%{
#include <ctype.h>
#include <vector>
#include <stdio.h>
#include "xml.h"
#define YY_NEVER_INTERACTIVE 1
#define YY_NO_INPUT 1
#define YY_NO_UNISTD_H 1
struct xmlYY_state
{
std::string fileName;
int lineNr = 1;
const char * inputString = 0; //!< the code fragment as text
int inputPosition = 0; //!< read offset during parsing
std::string name;
bool isEnd = false;
bool selfClose = false;
std::string data;
std::string attrValue;
std::string attrName;
XMLHandlers::Attributes attrs;
XMLHandlers handlers;
int cdataContext;
int commentContext;
char stringChar;
std::string encoding;
std::vector<std::string> xpath;
std::function<XMLParser::Transcode> transcodeFunc;
};
#if USE_STATE2STRING
static const char *stateToString(int state);
#endif
static int yyread(yyscan_t yyscanner,char *buf,int max_size);
static void initElement(yyscan_t yyscanner);
static void addCharacters(yyscan_t yyscanner);
static void addElement(yyscan_t yyscanner);
static void addAttribute(yyscan_t yyscanner);
static void countLines(yyscan_t yyscanner, const char *txt,yy_size_t len);
static void reportError(yyscan_t yyscanner, const std::string &msg);
static std::string processData(yyscan_t yyscanner,const char *txt,yy_size_t len);
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) result=yyread(yyscanner,buf,max_size);
%}
NL (\r\n|\r|\n)
SP [ \t\r\n]+
OPEN {SP}?"<"
OPENSPECIAL {SP}?"<?"
CLOSE ">"{NL}?
CLOSESPECIAL "?>"{NL}?
NAMESTART [:A-Za-z\200-\377_]
NAMECHAR [:A-Za-z\200-\377_0-9.-]
NAME {NAMESTART}{NAMECHAR}*
ESC "&#"[0-9]+";"|"&#x"[0-9a-fA-F]+";"
COLON ":"
PCDATA [^<]+
COMMENT {OPEN}"!--"
COMMENTEND "--"{CLOSE}
STRING \"([^"&]|{ESC})*\"|\'([^'&]|{ESC})*\'
DOCTYPE {SP}?"<!DOCTYPE"{SP}
CDATA {SP}?"<![CDATA["
ENDCDATA "]]>"
%option noyywrap
%s Initial
%s Content
%s CDataSection
%s Element
%s Attributes
%s AttributeValue
%s AttrValueStr
%s Prolog
%s Comment
%%
<Initial>{
{SP} { countLines(yyscanner,yytext,yyleng); }
{DOCTYPE} { countLines(yyscanner,yytext,yyleng); }
{OPENSPECIAL} { countLines(yyscanner,yytext,yyleng); BEGIN(Prolog); }
{OPEN} { countLines(yyscanner,yytext,yyleng);
initElement(yyscanner);
BEGIN(Element); }
{COMMENT} { yyextra->commentContext = YY_START;
BEGIN(Comment);
}
}
<Content>{
{CDATA} { countLines(yyscanner,yytext,yyleng);
yyextra->cdataContext = YY_START;
BEGIN(CDataSection);
}
{PCDATA} { yyextra->data += processData(yyscanner,yytext,yyleng); }
{OPEN} { countLines(yyscanner,yytext,yyleng);
addCharacters(yyscanner);
initElement(yyscanner);
BEGIN(Element);
}
{COMMENT} { yyextra->commentContext = YY_START;
countLines(yyscanner,yytext,yyleng);
BEGIN(Comment);
}
}
<Element>{
"/" { yyextra->isEnd = true; }
{NAME} { yyextra->name = yytext;
BEGIN(Attributes); }
{CLOSE} { addElement(yyscanner);
countLines(yyscanner,yytext,yyleng);
yyextra->data = "";
BEGIN(Content);
}
{SP} { countLines(yyscanner,yytext,yyleng); }
}
<Attributes>{
"/" { yyextra->selfClose = true; }
{NAME} { yyextra->attrName = yytext; }
"=" { BEGIN(AttributeValue); }
{CLOSE} { addElement(yyscanner);
countLines(yyscanner,yytext,yyleng);
yyextra->data = "";
BEGIN(Content);
}
{SP} { countLines(yyscanner,yytext,yyleng); }
}
<AttributeValue>{
{SP} { countLines(yyscanner,yytext,yyleng); }
['"] { yyextra->stringChar = *yytext;
yyextra->attrValue = "";
BEGIN(AttrValueStr);
}
. { std::string msg = std::string("Missing attribute value. Unexpected character `")+yytext+"` found";
reportError(yyscanner,msg);
unput(*yytext);
BEGIN(Attributes);
}
}
<AttrValueStr>{
[^'"\n]+ { yyextra->attrValue += processData(yyscanner,yytext,yyleng); }
['"] { if (*yytext==yyextra->stringChar)
{
addAttribute(yyscanner);
BEGIN(Attributes);
}
else
{
yyextra->attrValue += processData(yyscanner,yytext,yyleng);
}
}
\n { yyextra->lineNr++; yyextra->attrValue+=' '; }
}
<CDataSection>{
{ENDCDATA} { BEGIN(yyextra->cdataContext); }
[^]\n]+ { yyextra->data += yytext; }
\n { yyextra->data += yytext;
yyextra->lineNr++;
}
. { yyextra->data += yytext; }
}
<Prolog>{
"encoding"\s*=\s*\"[^\"]*\" {
std::string encoding=yytext;
size_t i=encoding.find('"');
encoding=encoding.substr(i+1,yyleng-i-2);
if (encoding!="UTF-8") // need to transcode to UTF-8
{
yyextra->encoding=encoding;
}
}
{CLOSESPECIAL} { countLines(yyscanner,yytext,yyleng);
BEGIN(Initial);
}
\n { yyextra->lineNr++; }
. { }
}
<Comment>{
{COMMENTEND} { countLines(yyscanner,yytext,yyleng);
BEGIN(yyextra->commentContext);
}
[^\n-]+ { }
\n { yyextra->lineNr++; }
. { }
}
\n { yyextra->lineNr++; }
. { std::string msg = "Unexpected character `";
msg+=yytext;
msg+="` found";
reportError(yyscanner,msg);
}
%%
//----------------------------------------------------------------------------------------
static int yyread(yyscan_t yyscanner,char *buf,int max_size)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
int inputPosition = yyextra->inputPosition;
const char *s = yyextra->inputString + inputPosition;
int c=0;
while( c < max_size && *s)
{
*buf++ = *s++;
c++;
}
yyextra->inputPosition += c;
return c;
}
static void countLines(yyscan_t yyscanner, const char *txt,yy_size_t len)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
for (yy_size_t i=0;i<len;i++)
{
if (txt[i]=='\n') yyextra->lineNr++;
}
}
static void initElement(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
yyextra->isEnd = false; // true => </tag>
yyextra->selfClose = false; // true => <tag/>
yyextra->name = "";
yyextra->attrs.clear();
}
static void checkAndUpdatePath(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
if (yyextra->xpath.empty())
{
std::string msg = "found closing tag '"+yyextra->name+"' without matching opening tag";
reportError(yyscanner,msg);
}
else
{
std::string expectedTagName = yyextra->xpath.back();
if (expectedTagName!=yyextra->name)
{
std::string msg = "Found closing tag '"+yyextra->name+"' that does not match the opening tag '"+expectedTagName+"' at the same level";
reportError(yyscanner,msg);
}
else // matching end tag
{
yyextra->xpath.pop_back();
}
}
}
static void addElement(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
if (!yyextra->isEnd)
{
yyextra->xpath.push_back(yyextra->name);
if (yyextra->handlers.startElement)
{
yyextra->handlers.startElement(yyextra->name,yyextra->attrs);
}
if (yy_flex_debug)
{
fprintf(stderr,"%d: startElement(%s,attr=[",yyextra->lineNr,yyextra->name.data());
for (auto attr : yyextra->attrs)
{
fprintf(stderr,"%s='%s' ",attr.first.c_str(),attr.second.c_str());
}
fprintf(stderr,"])\n");
}
}
if (yyextra->isEnd || yyextra->selfClose)
{
if (yy_flex_debug)
{
fprintf(stderr,"%d: endElement(%s)\n",yyextra->lineNr,yyextra->name.data());
}
checkAndUpdatePath(yyscanner);
if (yyextra->handlers.endElement)
{
yyextra->handlers.endElement(yyextra->name);
}
}
}
static std::string trimSpaces(const std::string &str)
{
const int l = static_cast<int>(str.length());
int s=0, e=l-1;
while (s<l && isspace(str.at(s))) s++;
while (e>s && isspace(str.at(e))) e--;
return str.substr(s,1+e-s);
}
static void addCharacters(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
std::string data = trimSpaces(yyextra->data);
if (!yyextra->encoding.empty() && !yyextra->transcodeFunc(data,yyextra->encoding.c_str()))
{
reportError(yyscanner,"failed to transcode string '"+data+"' from encoding '"+yyextra->encoding+"' to UTF-8");
}
if (yyextra->handlers.characters)
{
yyextra->handlers.characters(data);
}
if (!data.empty())
{
if (yy_flex_debug)
{
fprintf(stderr,"characters(%s)\n",data.c_str());
}
}
}
static void addAttribute(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
std::string val = yyextra->attrValue;
if (!yyextra->encoding.empty() && !yyextra->transcodeFunc(val,yyextra->encoding.c_str()))
{
reportError(yyscanner,"failed to transcode string '"+val+"' from encoding '"+yyextra->encoding+"' to UTF-8");
}
yyextra->attrs.insert(std::make_pair(yyextra->attrName,val));
}
static void reportError(yyscan_t yyscanner,const std::string &msg)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
if (yy_flex_debug)
{
fprintf(stderr,"%s:%d: Error '%s'\n",yyextra->fileName.c_str(),yyextra->lineNr,msg.c_str());
}
if (yyextra->handlers.error)
{
yyextra->handlers.error(yyextra->fileName,yyextra->lineNr,msg);
}
}
static const char *entities_enc[] = { "amp", "quot", "gt", "lt", "apos" };
static const char entities_dec[] = { '&', '"', '>', '<', '\'' };
static const int num_entities = 5;
// replace character entities such as & in txt and return the string where entities
// are replaced
static std::string processData(yyscan_t yyscanner,const char *txt,yy_size_t len)
{
std::string result;
result.reserve(len);
for (yy_size_t i=0; i<len; i++)
{
char c = txt[i];
if (c=='&')
{
const int maxEntityLen = 10;
char entity[maxEntityLen+1];
entity[maxEntityLen]='\0';
for (yy_size_t j=0; j<maxEntityLen && i+j+1<len; j++)
{
if (txt[i+j+1]!=';')
{
entity[j]=txt[i+j+1];
}
else
{
entity[j]=0;
break;
}
}
bool found=false;
for (int e=0; !found && e<num_entities; e++)
{
if (strcmp(entity,entities_enc[e])==0)
{
result+=entities_dec[e];
i+=strlen(entities_enc[e])+1;
found=true;
}
}
if (!found)
{
std::string msg = std::string("Invalid character entity '&") + entity + ";' found\n";
reportError(yyscanner,msg);
}
}
else
{
result+=c;
}
}
return result;
}
//--------------------------------------------------------------
struct XMLParser::Private
{
yyscan_t yyscanner;
struct xmlYY_state xmlYY_extra;
};
XMLParser::XMLParser(const XMLHandlers &handlers) : p(new Private)
{
xmlYYlex_init_extra(&p->xmlYY_extra,&p->yyscanner);
p->xmlYY_extra.handlers = handlers;
}
XMLParser::~XMLParser()
{
xmlYYlex_destroy(p->yyscanner);
}
void XMLParser::parse(const char *fileName,
const char *inputStr,
bool debugEnabled,
std::function<void()> debugStart,
std::function<void()> debugEnd,
std::function<Transcode> transcodeFunc)
{
yyscan_t yyscanner = p->yyscanner;
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
#ifdef FLEX_DEBUG
xmlYYset_debug(debugEnabled?1:0,p->yyscanner);
#endif
if (inputStr==nullptr || inputStr[0]=='\0') return; // empty input
debugStart();
BEGIN(Initial);
yyextra->fileName = fileName;
yyextra->lineNr = 1;
yyextra->inputString = inputStr;
yyextra->inputPosition = 0;
yyextra->transcodeFunc = transcodeFunc;
if (static_cast<unsigned char>(inputStr[0])==0xEF &&
static_cast<unsigned char>(inputStr[1])==0xBB &&
static_cast<unsigned char>(inputStr[2])==0xBF)
{
yyextra->inputPosition = 3; // remove UTF-8 BOM
}
xmlYYrestart( 0, yyscanner );
if (yyextra->handlers.startDocument)
{
yyextra->handlers.startDocument();
}
xmlYYlex(yyscanner);
if (yyextra->handlers.endDocument)
{
yyextra->handlers.endDocument();
}
if (!yyextra->xpath.empty())
{
std::string tagName = yyextra->xpath.back();
std::string msg = "End of file reached while expecting closing tag '"+tagName+"'";
reportError(yyscanner,msg);
}
debugEnd();
}
int XMLParser::lineNr() const
{
struct yyguts_t *yyg = (struct yyguts_t*)p->yyscanner;
return yyextra->lineNr;
}
std::string XMLParser::fileName() const
{
struct yyguts_t *yyg = (struct yyguts_t*)p->yyscanner;
return yyextra->fileName;
}
#if USE_STATE2STRING
#include "xml.l.h"
#endif
|