]> git.sesse.net Git - xml-template/commitdiff
Implement cloning for C++0x.
authorsgunderson@bigfoot.com <>
Wed, 21 Sep 2011 20:56:40 +0000 (22:56 +0200)
committersgunderson@bigfoot.com <>
Wed, 21 Sep 2011 20:56:40 +0000 (22:56 +0200)
c++0x/xml-template.cpp

index a3156e7b9ff888d644eb6424d23101ca8836e00b..7278236d911d6b50d4a1236a97fd6c8e5df8df7e 100644 (file)
@@ -16,6 +16,24 @@ Clone::Clone(const std::vector<Directive *> &subdirectives)
        : subdirectives(subdirectives) {}
 
 void Clone::process(xmlNode *node, bool clean) {
+       // We can't use xmlNewDocFragment, since xmlDOMWrapCloneNode only knows
+       // how to clone elements.
+       vector<xmlNode *> new_nodes;
+
+       for (auto it : subdirectives) {
+               xmlDOMWrapCtxt ctx;
+               xmlNode *new_node;
+               int ret = xmlDOMWrapCloneNode(NULL, node->doc, node, &new_node, node->doc, NULL, 1, 0);
+               it->process(new_node, clean);
+               for (xmlNode *child = new_node->children; child != NULL; child = child->next) {
+                       new_nodes.push_back(child);
+               }
+       }
+
+       node->children = NULL;
+       for (auto child : new_nodes) {
+               xmlAddChild(node, child);
+       }       
 }
 
 Substitute::Substitute(const unordered_map<string, Directive*> &substitution_map)