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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLParser.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkXMLParser.h"
#include "vtkObjectFactory.h"
#include "vtk_expat.h"
#include <cctype>
#include <sys/stat.h>
vtkStandardNewMacro(vtkXMLParser);
//----------------------------------------------------------------------------
vtkXMLParser::vtkXMLParser()
{
this->Stream = 0;
this->Parser = 0;
this->FileName = 0;
this->Encoding = 0;
this->InputString = 0;
this->InputStringLength = 0;
this->ParseError = 0;
this->IgnoreCharacterData = 0;
}
//----------------------------------------------------------------------------
vtkXMLParser::~vtkXMLParser()
{
this->SetStream(0);
this->SetFileName(0);
this->SetEncoding(0);
}
//----------------------------------------------------------------------------
void vtkXMLParser::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
if(this->Stream)
{
os << indent << "Stream: " << this->Stream << "\n";
}
else
{
os << indent << "Stream: (none)\n";
}
os << indent << "FileName: " << (this->FileName? this->FileName : "(none)")
<< "\n";
os << indent << "IgnoreCharacterData: "
<< (this->IgnoreCharacterData?"On":"Off")
<< endl;
os << indent << "Encoding: " << (this->Encoding? this->Encoding : "(none)")
<< "\n";
}
//----------------------------------------------------------------------------
static int vtkXMLParserFail(istream* stream)
{
// The fail() method returns true if either the failbit or badbit is set.
#if defined(__HP_aCC)
// The HP compiler sets the badbit too often, so we ignore it.
return (stream->rdstate() & ios::failbit)? 1:0;
#else
return stream->fail()? 1:0;
#endif
}
//----------------------------------------------------------------------------
vtkTypeInt64 vtkXMLParser::TellG()
{
// Standard tellg returns -1 if fail() is true.
if(!this->Stream || vtkXMLParserFail(this->Stream))
{
return -1;
}
return this->Stream->tellg();
}
//----------------------------------------------------------------------------
void vtkXMLParser::SeekG(vtkTypeInt64 position)
{
// Standard seekg does nothing if fail() is true.
if(!this->Stream || vtkXMLParserFail(this->Stream))
{
return;
}
this->Stream->seekg(std::streampos(position));
}
//----------------------------------------------------------------------------
int vtkXMLParser::Parse(const char* inputString)
{
this->InputString = inputString;
this->InputStringLength = -1;
int result = this->Parse();
this->InputString = 0;
return result;
}
//----------------------------------------------------------------------------
int vtkXMLParser::Parse(const char* inputString, unsigned int length)
{
this->InputString = inputString;
this->InputStringLength = length;
int result = this->Parse();
this->InputString = 0;
this->InputStringLength = -1;
return result;
}
//----------------------------------------------------------------------------
int vtkXMLParser::Parse()
{
// Select source of XML
ifstream ifs;
if ( !this->InputString && !this->Stream && this->FileName )
{
// If it is file, open it and set the appropriate stream
struct stat fs;
if (stat(this->FileName, &fs) != 0)
{
vtkErrorMacro("Cannot open XML file: " << this->FileName);
return 0;
}
#ifdef _WIN32
ifs.open(this->FileName, ios::binary | ios::in);
#else
ifs.open(this->FileName, ios::in);
#endif
if ( !ifs )
{
vtkErrorMacro("Cannot open XML file: " << this->FileName);
return 0;
}
this->Stream = &ifs;
}
// Create the expat XML parser.
this->CreateParser();
XML_SetElementHandler(static_cast<XML_Parser>(this->Parser),
&vtkXMLParserStartElement,
&vtkXMLParserEndElement);
if (!this->IgnoreCharacterData)
{
XML_SetCharacterDataHandler(static_cast<XML_Parser>(this->Parser),
&vtkXMLParserCharacterDataHandler);
}
else
{
XML_SetCharacterDataHandler(static_cast<XML_Parser>(this->Parser), NULL);
}
XML_SetUserData(static_cast<XML_Parser>(this->Parser), this);
// Parse the input.
int result = this->ParseXML();
if(result)
{
// Tell the expat XML parser about the end-of-input.
if(!XML_Parse(static_cast<XML_Parser>(this->Parser), "", 0, 1))
{
this->ReportXmlParseError();
result = 0;
}
}
// Clean up the parser.
XML_ParserFree(static_cast<XML_Parser>(this->Parser));
this->Parser = 0;
// If the source was a file, reset the stream
if ( this->Stream == &ifs )
{
this->Stream = 0;
}
return result;
}
//----------------------------------------------------------------------------
int vtkXMLParser::CreateParser()
{
if (this->Parser)
{
vtkErrorMacro("Parser already created");
return 0;
}
// Create the expat XML parser.
this->Parser = XML_ParserCreate(this->Encoding);
return this->Parser ? 1 : 0;
}
//----------------------------------------------------------------------------
int vtkXMLParser::InitializeParser()
{
// Create the expat XML parser.
if (!this->CreateParser())
{
vtkErrorMacro("Parser already initialized");
this->ParseError = 1;
return 0;
}
XML_SetElementHandler(static_cast<XML_Parser>(this->Parser),
&vtkXMLParserStartElement,
&vtkXMLParserEndElement);
if (!this->IgnoreCharacterData)
{
XML_SetCharacterDataHandler(static_cast<XML_Parser>(this->Parser),
&vtkXMLParserCharacterDataHandler);
}
else
{
XML_SetCharacterDataHandler(static_cast<XML_Parser>(this->Parser), NULL);
}
XML_SetUserData(static_cast<XML_Parser>(this->Parser), this);
this->ParseError = 0;
return 1;
}
//----------------------------------------------------------------------------
int vtkXMLParser::ParseChunk(const char* inputString, unsigned int length)
{
if ( !this->Parser )
{
vtkErrorMacro("Parser not initialized");
this->ParseError = 1;
return 0;
}
int res;
res = this->ParseBuffer(inputString, length);
if ( res == 0 )
{
this->ParseError = 1;
}
return res;
}
//----------------------------------------------------------------------------
int vtkXMLParser::CleanupParser()
{
if ( !this->Parser )
{
vtkErrorMacro("Parser not initialized");
this->ParseError = 1;
return 0;
}
int result = !this->ParseError;
if(result)
{
// Tell the expat XML parser about the end-of-input.
if(!XML_Parse(static_cast<XML_Parser>(this->Parser), "", 0, 1))
{
this->ReportXmlParseError();
result = 0;
}
}
// Clean up the parser.
XML_ParserFree(static_cast<XML_Parser>(this->Parser));
this->Parser = 0;
return result;
}
//----------------------------------------------------------------------------
int vtkXMLParser::ParseXML()
{
// Parsing of message
if ( this->InputString )
{
if ( this->InputStringLength >= 0 )
{
return this->ParseBuffer(this->InputString, this->InputStringLength);
}
else
{
return this->ParseBuffer(this->InputString);
}
}
// Make sure we have input.
if(!this->Stream)
{
vtkErrorMacro("Parse() called with no Stream set.");
return 0;
}
// Default stream parser just reads a block at a time.
istream& in = *(this->Stream);
const int bufferSize = 4096;
char buffer[bufferSize];
// Read in the stream and send its contents to the XML parser. This
// read loop is very sensitive on certain platforms with slightly
// broken stream libraries (like HPUX). Normally, it is incorrect
// to not check the error condition on the fin.read() before using
// the data, but the fin.gcount() will be zero if an error occurred.
// Therefore, the loop should be safe everywhere.
while(!this->ParseError && !this->ParsingComplete() && in)
{
in.read(buffer, bufferSize);
if(in.gcount())
{
if(!this->ParseBuffer(buffer, in.gcount()))
{
return 0;
}
}
}
// Clear the fail and eof bits on the input stream so we can later
// seek back to read data.
this->Stream->clear(this->Stream->rdstate() & ~ios::eofbit);
this->Stream->clear(this->Stream->rdstate() & ~ios::failbit);
return 1;
}
//----------------------------------------------------------------------------
int vtkXMLParser::ParsingComplete()
{
// Default behavior is to parse to end of stream.
return 0;
}
//----------------------------------------------------------------------------
void vtkXMLParser::StartElement(const char *name,
const char ** vtkNotUsed(atts))
{
this->ReportUnknownElement(name);
}
//----------------------------------------------------------------------------
void vtkXMLParser::EndElement(const char * vtkNotUsed(name))
{
}
//----------------------------------------------------------------------------
void vtkXMLParser::CharacterDataHandler(const char* vtkNotUsed(inData),
int vtkNotUsed(inLength))
{
}
//----------------------------------------------------------------------------
void vtkXMLParser::ReportStrayAttribute(const char* element, const char* attr,
const char* value)
{
vtkWarningMacro("Stray attribute in XML stream: Element " << element
<< " has " << attr << "=\"" << value << "\"");
}
//----------------------------------------------------------------------------
void vtkXMLParser::ReportMissingAttribute(const char* element,
const char* attr)
{
vtkErrorMacro("Missing attribute in XML stream: Element " << element
<< " is missing " << attr);
}
//----------------------------------------------------------------------------
void vtkXMLParser::ReportBadAttribute(const char* element, const char* attr,
const char* value)
{
vtkErrorMacro("Bad attribute value in XML stream: Element " << element
<< " has " << attr << "=\"" << value << "\"");
}
//----------------------------------------------------------------------------
void vtkXMLParser::ReportUnknownElement(const char* element)
{
vtkErrorMacro("Unknown element in XML stream: " << element);
}
//----------------------------------------------------------------------------
void vtkXMLParser::ReportXmlParseError()
{
vtkErrorMacro(
"Error parsing XML in stream at line "
<< XML_GetCurrentLineNumber(static_cast<XML_Parser>(this->Parser))
<< ", column "
<< XML_GetCurrentColumnNumber(static_cast<XML_Parser>(this->Parser))
<< ", byte index "
<< XML_GetCurrentByteIndex(static_cast<XML_Parser>(this->Parser))
<< ": "
<< XML_ErrorString(XML_GetErrorCode(static_cast<XML_Parser>(this->Parser))));
}
//----------------------------------------------------------------------------
vtkTypeInt64 vtkXMLParser::GetXMLByteIndex()
{
return XML_GetCurrentByteIndex(static_cast<XML_Parser>(this->Parser));
}
//----------------------------------------------------------------------------
int vtkXMLParser::ParseBuffer(const char* buffer, unsigned int count)
{
// Pass the buffer to the expat XML parser.
if(!XML_Parse(static_cast<XML_Parser>(this->Parser), buffer, count, 0))
{
this->ReportXmlParseError();
return 0;
}
return 1;
}
//----------------------------------------------------------------------------
int vtkXMLParser::ParseBuffer(const char* buffer)
{
return this->ParseBuffer(buffer, static_cast<int>(strlen(buffer)));
}
//----------------------------------------------------------------------------
int vtkXMLParser::IsSpace(char c)
{
return isspace(c);
}
//----------------------------------------------------------------------------
void vtkXMLParserStartElement(void* parser, const char *name,
const char **atts)
{
// Begin element handler that is registered with the XML_Parser.
// This just casts the user data to a vtkXMLParser and calls
// StartElement.
static_cast<vtkXMLParser*>(parser)->StartElement(name, atts);
}
//----------------------------------------------------------------------------
void vtkXMLParserEndElement(void* parser, const char *name)
{
// End element handler that is registered with the XML_Parser. This
// just casts the user data to a vtkXMLParser and calls EndElement.
static_cast<vtkXMLParser*>(parser)->EndElement(name);
}
|