// // VSXMLWriter.cpp // // $Id: //poco/1.4/ProGen/src/VSXMLWriter.cpp#1 $ // // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // // Permission is hereby granted, free of charge, to any person or organization // obtaining a copy of the software and accompanying documentation covered by // this license (the "Software") to use, reproduce, display, distribute, // execute, and transmit the Software, and to prepare derivative works of the // Software, and to permit third-parties to whom the Software is furnished to // do so, all subject to the following: // // The copyright notices in the Software and this entire statement, including // the above license grant, this restriction and the following disclaimer, // must be included in all copies of the Software, in whole or in part, and // all derivative works of the Software, unless such copies or derivative // works are solely in the form of machine-executable object code generated by // a source language processor. // // 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. // #include "VSXMLWriter.h" #include "Poco/SAX/AttributesImpl.h" #include "Poco/String.h" VSXMLWriter::VSXMLWriter(std::ostream& ostr, bool convertBool): _ostr(ostr), _convertBool(convertBool), _indent(0) { } VSXMLWriter::~VSXMLWriter() { } void VSXMLWriter::setDocumentLocator(const Poco::XML::Locator* loc) { } void VSXMLWriter::startDocument() { _ostr << "\r\n"; _tagClosed.push_back(true); } void VSXMLWriter::endDocument() { _tagClosed.pop_back(); } void VSXMLWriter::startFragment() { } void VSXMLWriter::endFragment() { } void VSXMLWriter::startElement(const Poco::XML::XMLString& namespaceURI, const Poco::XML::XMLString& localName, const Poco::XML::XMLString& qname, const Poco::XML::Attributes& attributes) { if (!_tagClosed.back()) { _ostr << ">\r\n"; _tagClosed.back() = true; } indent(); ++_indent; _ostr << "<" << qname; if (attributes.getLength() > 0) { Poco::XML::AttributesImpl sortedAttributes; if (qname == "VisualStudioProject") { sortedAttributes.addAttribute("", "", "Name", "CDATA", attributes.getValue("Name")); sortedAttributes.addAttribute("", "", "Version", "CDATA", attributes.getValue("Version")); sortedAttributes.addAttribute("", "", "ProjectType", "CDATA", attributes.getValue("ProjectType")); sortedAttributes.addAttribute("", "", "ProjectGUID", "CDATA", attributes.getValue("ProjectGUID")); sortedAttributes.addAttribute("", "", "RootNamespace", "CDATA", attributes.getValue("RootNamespace")); sortedAttributes.addAttribute("", "", "Keyword", "CDATA", attributes.getValue("Keyword")); } else { if (attributes.getIndex("Name") != -1) { sortedAttributes.addAttribute("", "", "Name", "CDATA", attributes.getValue("Name")); } for (int i = 0; i < attributes.getLength(); i++) { if (attributes.getQName(i) != "Name") { std::string value = attributes.getValue(i); if (_convertBool && (value == "true" || value == "false")) value = Poco::toUpper(value); sortedAttributes.addAttribute(attributes.getURI(i), attributes.getLocalName(i), attributes.getQName(i), attributes.getType(i), value); } } } for (int i = 0; i < sortedAttributes.getLength(); i++) { _ostr << "\r\n"; indent(); _ostr << sortedAttributes.getQName(i) << "=\""; std::string value = sortedAttributes.getValue(i); for (Poco::XML::XMLString::const_iterator itv = value.begin(); itv != value.end(); ++itv) { char c = *itv; switch (c) { case '"': _ostr << """; break; case '\'': _ostr << "'"; break; case '&': _ostr << "&"; break; case '<': _ostr << "<"; break; case '>': _ostr << ">"; break; case '\t': _ostr << " "; break; case '\r': _ostr << " "; break; case '\n': _ostr << " "; break; default: _ostr << c; break; } } _ostr << "\""; } } _tagClosed.push_back(false); } void VSXMLWriter::endElement(const Poco::XML::XMLString& namespaceURI, const Poco::XML::XMLString& localName, const Poco::XML::XMLString& qname) { --_indent; if (_tagClosed.back()) { indent(); _ostr << "\r\n"; } else { _ostr << "/>\r\n"; } _tagClosed.pop_back(); } void VSXMLWriter::characters(const Poco::XML::XMLChar ch[], int start, int length) { if (!_tagClosed.back()) { _ostr << ">"; _tagClosed.back() = true; } while (length-- > 0) { Poco::XML::XMLChar c = ch[start++]; switch (c) { case '"': _ostr << """; break; case '\'': _ostr << "'"; break; case '&': _ostr << "&"; break; case '<': _ostr << "<"; break; case '>': _ostr << ">"; break; default: _ostr << c; break; } } } void VSXMLWriter::ignorableWhitespace(const Poco::XML::XMLChar ch[], int start, int length) { } void VSXMLWriter::processingInstruction(const Poco::XML::XMLString& target, const Poco::XML::XMLString& data) { } void VSXMLWriter::startPrefixMapping(const Poco::XML::XMLString& prefix, const Poco::XML::XMLString& namespaceURI) { } void VSXMLWriter::endPrefixMapping(const Poco::XML::XMLString& prefix) { } void VSXMLWriter::skippedEntity(const Poco::XML::XMLString& name) { } void VSXMLWriter::indent() { for (int i = 0; i < _indent; i++) { _ostr << "\t"; } }