mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-01 06:20:38 +01:00
64 lines
2 KiB
C++
64 lines
2 KiB
C++
#ifndef ARABICA_XSLT_VALUE_OF_HANDLER_HPP
|
|
#define ARABICA_XSLT_VALUE_OF_HANDLER_HPP
|
|
|
|
#include <XML/XMLCharacterClasses.hpp>
|
|
#include "../xslt_value_of.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
template<class string_type, class string_adaptor>
|
|
class ValueOfHandler : public SAX::DefaultHandler<string_type, string_adaptor>
|
|
{
|
|
public:
|
|
ValueOfHandler(CompilationContext<string_type, string_adaptor>& context) :
|
|
context_(context),
|
|
valueOf_(0)
|
|
{
|
|
} // ValueOfHandler
|
|
|
|
virtual void startElement(const string_type& /* namespaceURI */,
|
|
const string_type& /* localName */,
|
|
const string_type& qName,
|
|
const SAX::Attributes<string_type, string_adaptor>& atts)
|
|
{
|
|
if(valueOf_ == 0)
|
|
{
|
|
static const ValueRule rules[] = { { "select", true, 0, 0 },
|
|
{ "disable-output-escaping", false, No, AllowedYesNo },
|
|
{ 0, false, 0, 0 } };
|
|
|
|
std::map<string_type, string_type> attrs = gatherAttributes(qName, atts, rules);
|
|
valueOf_ = new ValueOf<string_type, string_adaptor>(context_.xpath_expression(attrs["select"]),
|
|
attrs["disable-output-escaping"] == Yes);
|
|
return;
|
|
} // if(valueOf_ == 0)
|
|
|
|
throw SAX::SAXException(qName + " can not contain elements");
|
|
} // startElement
|
|
|
|
virtual void endElement(const string_type& /* namespaceURI */,
|
|
const string_type& /* localName */,
|
|
const string_type& /* qName */)
|
|
{
|
|
context_.parentContainer().add_item(valueOf_);
|
|
context_.pop();
|
|
} // endElement
|
|
|
|
virtual void characters(const string_type& ch)
|
|
{
|
|
verifyNoCharacterData(ch, "xsl:value-of");
|
|
} // characters
|
|
|
|
private:
|
|
CompilationContext<string_type, string_adaptor>& context_;
|
|
ValueOf<string_type, string_adaptor>* valueOf_;
|
|
}; // class ValueOfHandler
|
|
|
|
} //namespace XSLT
|
|
} //namespace Arabica
|
|
|
|
#endif
|
|
|