/*********************************************************************** created: Sun Mar 13 2005 author: Paul D Turner *************************************************************************/ /*************************************************************************** * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. ***************************************************************************/ #include "XMLParser.h" #include #include #include #include #include #include #include "tinyxml/tinyxml.h" //---------------------------------------------------------------------------// // These are to support the <=2.5 and >=2.6 API versions #ifdef CEGUI_TINYXML_HAS_2_6_API # define CEGUI_TINYXML_ELEMENT TINYXML_ELEMENT # define CEGUI_TINYXML_TEXT TINYXML_TEXT #else # define CEGUI_TINYXML_ELEMENT ELEMENT # define CEGUI_TINYXML_TEXT TEXT #endif // Start of CEGUI namespace section namespace CEGUI { class TinyXMLDocument : public TiXmlDocument { public: TinyXMLDocument(XMLHandler& handler, const RawDataContainer& source, const String& schemaName); ~TinyXMLDocument() {} protected: void processElement(const TiXmlElement* element); private: XMLHandler* d_handler; }; TinyXMLDocument::TinyXMLDocument(XMLHandler& handler, const RawDataContainer& source, const String& /*schemaName*/) { d_handler = &handler; // Create a buffer with extra bytes for a newline and a terminating null size_t size = source.getSize(); char* buf = new char[size + 2]; memcpy(buf, source.getDataPtr(), size); // PDT: The addition of the newline is a kludge to resolve an issue // whereby parse returns 0 if the xml file has no newline at the end but // is otherwise well formed. buf[size] = '\n'; buf[size+1] = 0; // Parse the document TiXmlDocument doc; if (!doc.Parse((const char*)buf)) { // error detected, cleanup out buffers delete[] buf; // throw exception CEGUI_THROW(FileIOException("an error occurred while " "parsing the XML document - check it for potential errors!.")); } const TiXmlElement* currElement = doc.RootElement(); if (currElement) { CEGUI_TRY { // function called recursively to parse xml data processElement(currElement); } CEGUI_CATCH(...) { delete [] buf; CEGUI_RETHROW; } } // if (currElement) // Free memory delete [] buf; } void TinyXMLDocument::processElement(const TiXmlElement* element) { // build attributes block for the element XMLAttributes attrs; const TiXmlAttribute *currAttr = element->FirstAttribute(); while (currAttr) { attrs.add((encoded_char*)currAttr->Name(), (encoded_char*)currAttr->Value()); currAttr = currAttr->Next(); } // start element d_handler->elementStart((encoded_char*)element->Value(), attrs); // do children const TiXmlNode* childNode = element->FirstChild(); while (childNode) { switch(childNode->Type()) { case TiXmlNode::CEGUI_TINYXML_ELEMENT: processElement(childNode->ToElement()); break; case TiXmlNode::CEGUI_TINYXML_TEXT: if (childNode->ToText()->Value() != nullptr) d_handler->text((encoded_char*)childNode->ToText()->Value()); break; // Silently ignore unhandled node type }; childNode = childNode->NextSibling(); } // end element d_handler->elementEnd((encoded_char*)element->Value()); } TinyXMLParser::TinyXMLParser(void) { // set ID string d_identifierString = "CEGUI::TinyXMLParser - Official tinyXML based parser module for CEGUI"; } TinyXMLParser::~TinyXMLParser(void) {} void TinyXMLParser::parseXML(XMLHandler& handler, const RawDataContainer& source, const String& schemaName) { TinyXMLDocument doc(handler, source, schemaName); } bool TinyXMLParser::initialiseImpl(void) { // This used to prevent deletion of line ending in the middle of a text. // WhiteSpace cleaning will be available throught the use of String methods directly //TiXmlDocument::SetCondenseWhiteSpace(false); return true; } void TinyXMLParser::cleanupImpl(void) {} } // End of CEGUI namespace section