X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=c%2B%2B0x%2Fxml-template.cpp;h=f28b3dc93cd00e67fcefb0695576056330ae9a24;hb=6ad2f394b3521c37f2d064d98b9cc1753378f485;hp=1e727613160acf49fb1ec860b88179b0fd7aecb5;hpb=e772f92e8c2124293715855f5f05ecba7d407ec2;p=xml-template diff --git a/c++0x/xml-template.cpp b/c++0x/xml-template.cpp index 1e72761..f28b3dc 100644 --- a/c++0x/xml-template.cpp +++ b/c++0x/xml-template.cpp @@ -21,20 +21,33 @@ void clean_node(xmlNode *node) } // namespace +Directive::~Directive() {} + Replace::Replace(const string &str) : str(str) {} void Replace::process(xmlNode *node, bool clean) { - node->children = xmlNewTextLen(reinterpret_cast(str.data()), str.size()); + xmlNodeSetContentLen(node, reinterpret_cast(str.data()), str.size()); if (clean) { clean_node(node); } } -Clone::Clone(const std::vector &subdirectives) +Clone::Clone(const vector &subdirectives) + : subdirectives(subdirectives) {} + +Clone::Clone(initializer_list subdirectives) : subdirectives(subdirectives) {} -void Clone::process(xmlNode *node, bool clean) { +Clone::~Clone() +{ + for (auto it : subdirectives) { + delete it; + } +} + +void Clone::process(xmlNode *node, bool clean) +{ // We can't use xmlNewDocFragment, since xmlDOMWrapCloneNode only knows // how to clone elements. vector new_nodes; @@ -48,7 +61,10 @@ void Clone::process(xmlNode *node, bool clean) { } } - node->children = NULL; + xmlFreeNodeList(node->children); + node->content = NULL; + node->children = node->last = NULL; + for (auto child : new_nodes) { xmlAddChild(node, child); } @@ -59,8 +75,19 @@ void Clone::process(xmlNode *node, bool clean) { Substitute::Substitute(const unordered_map &substitution_map) : substitution_map(substitution_map) {} + +Substitute::Substitute(initializer_list> substitution_map) + : substitution_map(substitution_map) {} + +Substitute::~Substitute() +{ + for (auto it : substitution_map) { + delete it.second; + } +} -void Substitute::process(xmlNode *node, bool clean) { +void Substitute::process(xmlNode *node, bool clean) +{ for (xmlNode *child = node->children; child != NULL; child = child->next) { bool processed = false; @@ -111,6 +138,7 @@ void process_file(const string &input_filename, xmlDocPtr doc = xmlParseFile(input_filename.c_str()); root_directive->process(xmlDocGetRootElement(doc), true); xmlSaveFile(output_filename.c_str(), doc); + xmlFreeDoc(doc); xmlCleanupParser(); xmlMemoryDump();