]> git.sesse.net Git - xml-template/blobdiff - c++0x/xml-template.cpp
Implement cloning for C++0x.
[xml-template] / c++0x / xml-template.cpp
index a158f31023c2feb9c93ee42dd729faf40b94d916..7278236d911d6b50d4a1236a97fd6c8e5df8df7e 100644 (file)
@@ -1,6 +1,7 @@
 #include "xml-template.h"
 
 #include <string.h>
+#include <libxml/parser.h>
 
 using namespace std;
 
@@ -11,6 +12,30 @@ void Replace::process(xmlNode *node, bool clean) {
        node->children = xmlNewTextLen(reinterpret_cast<const xmlChar *>(str.data()), str.size());
 }
 
+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)
        : substitution_map(substitution_map) {}
 
@@ -25,6 +50,14 @@ void Substitute::process(xmlNode *node, bool clean) {
                                if (strcmp(reinterpret_cast<const char *>(attr->ns->href), "http://template.sesse.net/") == 0 &&
                                    strcmp(reinterpret_cast<const char *>(attr->name), "id") == 0) {
                                        id = reinterpret_cast<const char *>(xmlNodeGetContent(attr->children));
+
+                                       if (clean) {
+                                               if (attr->prev == NULL) {
+                                                       child->properties = attr->next;
+                                               } else {
+                                                       attr->prev->next = attr->next;
+                                               }
+                                       }
                                }
                        }
 
@@ -44,3 +77,17 @@ void Substitute::process(xmlNode *node, bool clean) {
                }
        }
 }
+       
+void process_file(const string &input_filename,
+                  const string &output_filename,
+                  Directive *root_directive)
+{
+       LIBXML_TEST_VERSION
+
+       xmlDocPtr doc = xmlParseFile(input_filename.c_str());
+       root_directive->process(xmlDocGetRootElement(doc), true);
+       xmlSaveFile(output_filename.c_str(), doc);
+
+       xmlCleanupParser();
+       xmlMemoryDump();
+}