arabica/include/XSLT/impl/handler/xslt_if_handler.hpp

40 lines
1.3 KiB
C++
Raw Normal View History

2007-07-19 19:01:42 +02:00
#ifndef ARABICA_XSLT_IF_HANDLER_HPP
#define ARABICA_XSLT_IF_HANDLER_HPP
#include "../xslt_if.hpp"
#include "xslt_item_container_handler.hpp"
namespace Arabica
{
namespace XSLT
{
2012-11-02 23:56:14 +01:00
template<class string_type, class string_adaptor>
class IfHandler : public ItemContainerHandler<If<string_type, string_adaptor> >
2007-07-19 19:01:42 +02:00
{
typedef StylesheetConstant<string_type, string_adaptor> SC;
2012-11-15 23:03:42 +01:00
typedef AttributeValidators<string_type, string_adaptor> AV;
2007-07-19 19:01:42 +02:00
public:
2012-11-02 23:56:14 +01:00
IfHandler(CompilationContext<string_type, string_adaptor>& context) :
ItemContainerHandler<If<string_type, string_adaptor> >(context)
2007-07-19 19:01:42 +02:00
{
} // IfHandler
2012-11-02 23:56:14 +01:00
virtual If<string_type, string_adaptor>* createContainer(const string_type& /* namespaceURI */,
const string_type& /* localName */,
const string_type& qName,
const SAX::Attributes<string_type, string_adaptor>& atts)
2007-07-19 19:01:42 +02:00
{
2012-11-15 23:03:42 +01:00
static const AV rules = AV::rule(SC::test, true);
string_type test = rules.gather(qName, atts)[SC::test];
2007-07-19 19:01:42 +02:00
2012-11-02 23:56:14 +01:00
return new If<string_type, string_adaptor>(ItemContainerHandler<If<string_type, string_adaptor> >::context().xpath_expression(test));
2007-07-19 19:01:42 +02:00
} // startElement
}; // class IfHandler
} // namespace XSLT
} // namespace Arabica
#endif