X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Fmstch%2Fvisitor%2Frender_node.hpp;fp=lib%2Fmstch%2Fvisitor%2Frender_node.hpp;h=633dd4d689e0ffd54793bc0aebc4243e93565b5e;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=0000000000000000000000000000000000000000;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/mstch/visitor/render_node.hpp b/lib/mstch/visitor/render_node.hpp new file mode 100644 index 0000000..633dd4d --- /dev/null +++ b/lib/mstch/visitor/render_node.hpp @@ -0,0 +1,56 @@ +#pragma once + +#include +#include + +#include "render_context.hpp" +#include "mstch/mstch.hpp" +#include "utils.hpp" + +namespace mstch { + +class render_node: public boost::static_visitor { + public: + enum class flag { none, escape_html }; + render_node(render_context& ctx, flag p_flag = flag::none): + m_ctx(ctx), m_flag(p_flag) + { + } + + template + std::string operator()(const T&) const { + return ""; + } + + std::string operator()(const int& value) const { + return std::to_string(value); + } + + std::string operator()(const double& value) const { + std::stringstream ss; + ss << value; + return ss.str(); + } + + std::string operator()(const bool& value) const { + return value ? "true" : "false"; + } + + std::string operator()(const lambda& value) const { + template_type interpreted{value([this](const mstch::node& n) { + return visit(render_node(m_ctx), n); + })}; + auto rendered = render_context::push(m_ctx).render(interpreted); + return (m_flag == flag::escape_html) ? html_escape(rendered) : rendered; + } + + std::string operator()(const std::string& value) const { + return (m_flag == flag::escape_html) ? html_escape(value) : value; + } + + private: + render_context& m_ctx; + flag m_flag; +}; + +}