From 29f0ad69120092c93021e37f764777d5ccd84d3e Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Thu, 22 Sep 2011 00:37:30 +0200 Subject: [PATCH] Implement attribute handling in C++0x. --- c++0x/xml-template.cpp | 35 +++++++++++++++++++++++++++++++++-- c++0x/xml-template.h | 2 ++ 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/c++0x/xml-template.cpp b/c++0x/xml-template.cpp index c1d43ed..febece2 100644 --- a/c++0x/xml-template.cpp +++ b/c++0x/xml-template.cpp @@ -23,9 +23,17 @@ void clean_node(xmlNode *node) } } +// Does A begin with B? +bool begins_with(const string &a, const string &b) +{ + return (a.compare(0, b.size(), b) == 0); +} + } // namespace Directive::~Directive() {} + +string Directive::get_contents() { return ""; } Replace::Replace(const string &str) : str(str) {} @@ -37,6 +45,8 @@ void Replace::process(xmlNode *node, bool clean) { } } +string Replace::get_contents() { return str; } + Clone::Clone(const vector &subdirectives) : subdirectives(subdirectives) {} @@ -119,11 +129,32 @@ void Substitute::process(xmlNode *node, bool clean) // Check all substitutions to see if we found anything appropriate. for (auto it : substitution_map) { - if (it.first == reinterpret_cast(child->name) || + string tag = reinterpret_cast(child->name); + + // Attribute substitution. + if (begins_with(it.first, tag + "/")) { + const xmlChar *attr_key = reinterpret_cast( + it.first.substr(tag.size() + 1).c_str()); + const xmlChar *attr_value = reinterpret_cast( + it.second->get_contents().c_str()); + xmlSetProp(child, attr_key, attr_value); + } else if ((!id.empty() && begins_with(it.first, "#" + id + "/"))) { + const xmlChar *attr_key = reinterpret_cast( + it.first.substr(tag.size() + 2).c_str()); + const xmlChar *attr_value = reinterpret_cast( + it.second->get_contents().c_str()); + xmlSetProp(child, attr_key, attr_value); + } + + if (processed) { + continue; + } + + // Regular substitution. + if (it.first == tag || (!id.empty() && it.first == ("#" + id))) { it.second->process(child, clean); processed = true; - break; } } } diff --git a/c++0x/xml-template.h b/c++0x/xml-template.h index 8f3d69b..4728dbf 100644 --- a/c++0x/xml-template.h +++ b/c++0x/xml-template.h @@ -12,12 +12,14 @@ class Directive { public: virtual ~Directive(); virtual void process(xmlNode *node, bool clean) = 0; + virtual std::string get_contents(); // Only makes sense for Replace. }; class Replace : public Directive { public: Replace(const std::string &str); virtual void process(xmlNode *node, bool clean); + virtual std::string get_contents(); private: const std::string str; -- 2.39.2