X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0b99486a23b690671632c665065cc17ac6d6ca2c..46b0747592074017ff0ea4b33d4a7194235886e5:/projects/sgconf/xml.cpp diff --git a/projects/sgconf/xml.cpp b/projects/sgconf/xml.cpp deleted file mode 100644 index bf5589fe..00000000 --- a/projects/sgconf/xml.cpp +++ /dev/null @@ -1,68 +0,0 @@ -#include "xml.h" - -#include - -#include - -namespace -{ - -struct ParserState -{ -size_t level; -}; - -std::string Indent(size_t level) -{ -return std::string(level * 4, ' '); -} - -std::string PrintAttr(const char ** attr) -{ -std::string res; -if (attr == NULL) - return res; -while (*attr) - { - if (*(attr + 1) == NULL) - return res; - res += std::string(" ") + *attr + "=\"" + *(attr + 1) + "\""; - ++attr; ++attr; - } -return res; -} - -void Start(void * data, const char * el, const char ** attr) -{ -ParserState * state = static_cast(data); -if (el != NULL) - std::cout << Indent(state->level) << "<" << el << PrintAttr(attr) << ">\n"; -++state->level; -} - -void End(void * data, const char * el) -{ -ParserState * state = static_cast(data); ---state->level; -if (el != NULL) - std::cout << Indent(state->level) << "\n"; -} - -} - -void SGCONF::PrintXML(const std::string& xml) -{ -ParserState state = { 0 }; - -XML_Parser parser = XML_ParserCreate(NULL); -XML_ParserReset(parser, NULL); -XML_SetElementHandler(parser, Start, End); -XML_SetUserData(parser, &state); - -if (XML_Parse(parser, xml.c_str(), xml.length(), true) == XML_STATUS_ERROR) - std::cerr << "XML parse error at line " << XML_GetCurrentLineNumber(parser) - << ": '" << XML_ErrorString(XML_GetErrorCode(parser)) << "'" - << std::endl; - -XML_ParserFree(parser); -}