mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
98 lines
3 KiB
C++
98 lines
3 KiB
C++
#ifndef ARABICA_XSLT_APPLY_TEMPLATES_HANDLER_HPP
|
|
#define ARABICA_XSLT_APPLY_TEMPLATES_HANDLER_HPP
|
|
|
|
#include "../xslt_apply_templates.hpp"
|
|
#include "xslt_sort_handler.hpp"
|
|
#include "xslt_with_param_handler.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
class ApplyTemplatesHandler : public SAX::DefaultHandler<std::string>
|
|
{
|
|
public:
|
|
ApplyTemplatesHandler(CompilationContext<std::string>& context) :
|
|
context_(context),
|
|
applyTemplates_(0)
|
|
{
|
|
} // ApplyTemplatesHandler
|
|
|
|
virtual void startElement(const std::string& namespaceURI,
|
|
const std::string& localName,
|
|
const std::string& qName,
|
|
const SAX::Attributes<std::string>& atts)
|
|
{
|
|
if(applyTemplates_ == 0)
|
|
{
|
|
static const ValueRule rules[] = { { "select", false, 0, 0 },
|
|
{ "mode", false, 0, 0 },
|
|
{ 0, false, 0, 0} };
|
|
std::map<std::string, std::string> attrs = gatherAttributes(qName, atts, rules);
|
|
|
|
const std::string& select = attrs["select"];
|
|
Arabica::XPath::XPathExpressionPtr<std::string> xpath;
|
|
if(select != "")
|
|
xpath = context_.xpath_expression(select);
|
|
|
|
std::string mode;
|
|
if(attrs["mode"] != "")
|
|
mode = context_.processInternalQName(attrs["mode"]).clarkName();
|
|
applyTemplates_ = new ApplyTemplates(xpath, mode);
|
|
|
|
return;
|
|
} // if(applyTemplates_ == 0)
|
|
|
|
if(namespaceURI == StylesheetConstant::NamespaceURI())
|
|
{
|
|
if(localName == "sort")
|
|
{
|
|
|
|
context_.push(0,
|
|
new SortHandler(context_, *applyTemplates_),
|
|
namespaceURI,
|
|
localName,
|
|
qName,
|
|
atts);
|
|
return;
|
|
} // if(localName == "sort")
|
|
|
|
if(localName == "with-param")
|
|
{
|
|
context_.push(0,
|
|
new WithParamHandler(context_, *applyTemplates_),
|
|
namespaceURI,
|
|
localName,
|
|
qName,
|
|
atts);
|
|
return;
|
|
} // if(localName == "sort")
|
|
} // if ...
|
|
|
|
throw SAX::SAXException("xsl:apply-templates can only contain xsl:sort and xsl:with-param elements.");
|
|
} // startElement
|
|
|
|
virtual void endElement(const std::string& /* namespaceURI */,
|
|
const std::string& /* localName */,
|
|
const std::string& /* qName */)
|
|
{
|
|
context_.parentContainer().add_item(applyTemplates_);
|
|
context_.pop();
|
|
} // endElement
|
|
|
|
virtual void characters(const std::string& ch)
|
|
{
|
|
verifyNoCharacterData(ch, "xsl:apply-templates");
|
|
} // characters
|
|
|
|
private:
|
|
CompilationContext<std::string>& context_;
|
|
ApplyTemplates* applyTemplates_;
|
|
}; // class ApplyTemplatesHandler
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
|
|
#endif // ARABICA_XSLT_APPLY_TEMPLATES_HANDLER_HPP
|
|
|