2007-07-19 19:01:42 +02:00
|
|
|
#ifndef ARABICA_XSLT_COMPILATION_CONTEXT
|
|
|
|
#define ARABICA_XSLT_COMPILATION_CONTEXT
|
|
|
|
|
2007-09-05 00:55:47 +02:00
|
|
|
#include <SAX/XMLReader.hpp>
|
|
|
|
#include <SAX/helpers/DefaultHandler.hpp>
|
2008-08-01 20:20:28 +02:00
|
|
|
#include <XML/strings.hpp>
|
2007-07-19 19:01:42 +02:00
|
|
|
#include <XPath/XPath.hpp>
|
|
|
|
#include <stack>
|
|
|
|
|
2007-08-22 14:38:20 +02:00
|
|
|
#include "xslt_stylesheet_parser.hpp"
|
2007-11-22 20:24:18 +01:00
|
|
|
#include "xslt_functions.hpp"
|
2007-08-22 14:38:20 +02:00
|
|
|
|
2007-07-19 19:01:42 +02:00
|
|
|
namespace Arabica
|
|
|
|
{
|
|
|
|
namespace XSLT
|
|
|
|
{
|
2008-11-05 02:33:28 +01:00
|
|
|
class CompiledStylesheet;
|
2007-07-19 19:01:42 +02:00
|
|
|
class ItemContainer;
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
template<class string_type, class string_adaptor = Arabica::default_string_adaptor<string_type> >
|
2007-11-22 20:24:18 +01:00
|
|
|
class CompilationContext :
|
2012-11-02 22:01:15 +01:00
|
|
|
private Arabica::XPath::FunctionResolver<string_type, string_adaptor>,
|
|
|
|
private Arabica::XPath::NamespaceContext<string_type, string_adaptor>,
|
|
|
|
private Arabica::XPath::DefaultVariableCompileTimeResolver<string_type, string_adaptor>
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
2010-10-10 00:10:35 +02:00
|
|
|
private:
|
2012-11-02 22:01:15 +01:00
|
|
|
typedef Arabica::XPath::DefaultVariableCompileTimeResolver<string_type, string_adaptor> CTVariableResolverT;
|
2010-10-10 00:10:35 +02:00
|
|
|
|
2007-07-19 19:01:42 +02:00
|
|
|
public:
|
2012-11-02 22:01:15 +01:00
|
|
|
typedef StylesheetParser<string_type, string_adaptor> StylesheetParserT;
|
|
|
|
typedef SAX::DefaultHandler<string_type, string_adaptor> DefaultHandlerT;
|
|
|
|
typedef SAX::ContentHandler<string_type, string_adaptor> ContentHandlerT;
|
|
|
|
typedef SAX::Attributes<string_type, string_adaptor> AttributesT;
|
|
|
|
typedef Arabica::XPath::XPathExpressionPtr<string_type, string_adaptor> XPathExpressionPtrT;
|
|
|
|
typedef Arabica::XPath::MatchExpr<string_type, string_adaptor> MatchExprT;
|
|
|
|
typedef XML::QualifiedName<string_type, string_adaptor> QualifiedNameT;
|
|
|
|
|
|
|
|
|
|
|
|
CompilationContext(StylesheetParserT& parser,
|
2008-11-05 02:33:28 +01:00
|
|
|
CompiledStylesheet& stylesheet) :
|
2007-07-19 19:01:42 +02:00
|
|
|
parser_(parser),
|
|
|
|
stylesheet_(stylesheet),
|
2007-11-22 20:24:18 +01:00
|
|
|
autoNs_(1),
|
2008-11-25 13:27:33 +01:00
|
|
|
current_allowed_(false),
|
2010-10-10 00:10:35 +02:00
|
|
|
variables_allowed_(true),
|
2008-11-25 13:27:33 +01:00
|
|
|
precedence_(Precedence::InitialPrecedence())
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
2007-11-22 20:24:18 +01:00
|
|
|
xpath_.setNamespaceContext(*this);
|
|
|
|
xpath_.setFunctionResolver(*this);
|
2010-10-10 00:10:35 +02:00
|
|
|
xpath_.setVariableCompileTimeResolver(*this);
|
2007-07-19 19:01:42 +02:00
|
|
|
} // CompilationContext
|
|
|
|
|
|
|
|
~CompilationContext()
|
|
|
|
{
|
|
|
|
// delete any left over - will only be the case if unwinding
|
|
|
|
while(handlerStack_.size() > 1)
|
|
|
|
{
|
|
|
|
delete handlerStack_.top();
|
|
|
|
handlerStack_.pop();
|
|
|
|
} // while ...
|
|
|
|
} // ~CompilationContext
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
void root(DefaultHandlerT& root)
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
handlerStack_.push(&root);
|
|
|
|
} // root
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
StylesheetParserT& parser() const { return parser_; }
|
|
|
|
XPathExpressionPtrT xpath_expression(const string_type& expr) const { return xpath_.compile_expr(expr); }
|
|
|
|
XPathExpressionPtrT xpath_expression_no_variables(const string_type& expr) const
|
2010-10-10 00:10:35 +02:00
|
|
|
{
|
|
|
|
Disallow variables(variables_allowed_);
|
|
|
|
return xpath_expression(expr);
|
|
|
|
} // xpath_expression_no_variables
|
2012-11-02 22:01:15 +01:00
|
|
|
std::vector<MatchExprT> xpath_match(const string_type& match) const
|
2007-11-22 20:24:18 +01:00
|
|
|
{
|
2010-10-10 00:10:35 +02:00
|
|
|
Disallow current(current_allowed_);
|
2007-11-22 20:24:18 +01:00
|
|
|
return xpath_.compile_match(match);
|
|
|
|
} // xpath_match
|
2012-11-02 22:01:15 +01:00
|
|
|
std::vector<Arabica::XPath::MatchExpr<string_type> > xpath_match_no_variables(const string_type& match) const
|
2010-10-10 00:10:35 +02:00
|
|
|
{
|
|
|
|
Disallow variables(variables_allowed_);
|
|
|
|
return xpath_match(match);
|
|
|
|
} // xpath_match_no_variables
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
XPathExpressionPtrT xpath_attribute_value_template(const string_type& expr) const { return xpath_.compile_attribute_value_template(expr); }
|
2008-11-05 02:33:28 +01:00
|
|
|
CompiledStylesheet& stylesheet() const { return stylesheet_; }
|
2007-07-19 19:01:42 +02:00
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
QualifiedNameT processElementQName(const string_type& qName) const
|
2009-04-07 14:39:31 +02:00
|
|
|
{
|
|
|
|
return parser_.processElementQName(qName);
|
|
|
|
} // processElementQName
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
QualifiedNameT processInternalQName(const string_type& qName) const
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
2009-02-24 13:21:35 +01:00
|
|
|
return parser_.processInternalQName(qName);
|
2008-08-05 23:03:33 +02:00
|
|
|
} // processInternalQName
|
2007-07-19 19:01:42 +02:00
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
string_type makeAbsolute(const string_type& href) const
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
2007-08-22 14:38:20 +02:00
|
|
|
return parser_.makeAbsolute(href);
|
2007-07-19 19:01:42 +02:00
|
|
|
} // makeAbsolute
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
string_type setBase(const string_type& href) const
|
2007-08-24 14:37:32 +02:00
|
|
|
{
|
|
|
|
return parser_.setBase(href);
|
|
|
|
} // setBase
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
string_type currentBase() const
|
2008-12-29 23:29:04 +01:00
|
|
|
{
|
|
|
|
return parser_.currentBase();
|
|
|
|
} // currentBase
|
|
|
|
|
2007-07-19 19:01:42 +02:00
|
|
|
void push(ItemContainer* parent,
|
2012-11-02 22:01:15 +01:00
|
|
|
DefaultHandlerT* newHandler,
|
|
|
|
const string_type& namespaceURI,
|
|
|
|
const string_type& localName,
|
|
|
|
const string_type& qName,
|
|
|
|
const AttributesT& atts)
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
parentStack_.push(parent);
|
|
|
|
handlerStack_.push(newHandler);
|
|
|
|
parser_.setContentHandler(*newHandler);
|
2009-04-24 20:02:14 +02:00
|
|
|
newHandler->startElement(namespaceURI, localName, qName, atts);
|
2007-07-19 19:01:42 +02:00
|
|
|
} // push
|
|
|
|
|
|
|
|
void pop()
|
|
|
|
{
|
|
|
|
parentStack_.pop();
|
|
|
|
delete handlerStack_.top();
|
|
|
|
handlerStack_.pop();
|
|
|
|
parser_.setContentHandler(*handlerStack_.top());
|
|
|
|
} // pop
|
|
|
|
|
|
|
|
ItemContainer& parentContainer() const
|
|
|
|
{
|
|
|
|
return *parentStack_.top();
|
|
|
|
} // parentContainer
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
ContentHandlerT& parentHandler() const
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
2007-08-24 14:37:32 +02:00
|
|
|
parser_.setContentHandler(*handlerStack_.top());
|
|
|
|
return parser_.contentHandler();
|
2007-07-19 19:01:42 +02:00
|
|
|
} // parentHandler
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
std::map<string_type, string_type> inScopeNamespaces() const
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
return parser_.inScopeNamespaces();
|
|
|
|
} // inScopeNamespaces
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
void addNamespaceAlias(const string_type& stylesheet_namespace,
|
|
|
|
const string_type& result_prefix,
|
|
|
|
const string_type& result_namespace)
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
namespaceRemap_[stylesheet_namespace] = std::make_pair(result_prefix, result_namespace);
|
|
|
|
} // addNamespaceAlias
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
bool isRemapped(const string_type& namespaceURI) const
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
return namespaceRemap_.find(namespaceURI) != namespaceRemap_.end();
|
|
|
|
} // isRemapped
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
const std::pair<string_type, string_type>& remappedNamespace(const string_type& namespaceURI)
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
return namespaceRemap_[namespaceURI];
|
|
|
|
} // remappedNamespace
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
string_type autoNamespacePrefix() const
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << "auto-ns" << autoNs_++;
|
|
|
|
return ss.str();
|
|
|
|
} // autoNamespacePrefix
|
|
|
|
|
2008-11-25 13:27:33 +01:00
|
|
|
void set_precedence(const Precedence& prec)
|
2008-11-19 18:26:07 +01:00
|
|
|
{
|
2008-11-25 13:27:33 +01:00
|
|
|
precedence_ = prec;
|
|
|
|
} // set_precedence
|
2008-11-19 18:26:07 +01:00
|
|
|
|
2008-11-25 13:27:33 +01:00
|
|
|
Precedence next_precedence()
|
2008-11-19 18:26:07 +01:00
|
|
|
{
|
2008-11-25 13:27:33 +01:00
|
|
|
return precedence_.next_generation();
|
|
|
|
} // next_precedence
|
2008-11-25 00:11:22 +01:00
|
|
|
|
2008-11-19 18:26:07 +01:00
|
|
|
const Precedence& precedence() const
|
|
|
|
{
|
2008-11-25 13:27:33 +01:00
|
|
|
return precedence_;
|
2008-11-19 18:26:07 +01:00
|
|
|
} // precedence
|
2007-07-19 19:01:42 +02:00
|
|
|
|
|
|
|
private:
|
2012-11-02 22:01:15 +01:00
|
|
|
virtual Arabica::XPath::XPathExpression_impl<string_type, Arabica::default_string_adaptor<string_type> >*
|
|
|
|
compileVariable(const string_type& namespace_uri, const string_type& name) const
|
2010-10-10 00:10:35 +02:00
|
|
|
{
|
|
|
|
if(!variables_allowed_)
|
|
|
|
return 0;
|
|
|
|
return CTVariableResolverT::compileVariable(namespace_uri, name);
|
|
|
|
} // compileVariable
|
|
|
|
|
2007-11-22 20:24:18 +01:00
|
|
|
// FunctionResolver
|
2012-11-02 22:01:15 +01:00
|
|
|
virtual Arabica::XPath::XPathFunction<string_type>* resolveFunction(
|
|
|
|
const string_type& namespace_uri,
|
|
|
|
const string_type& name,
|
|
|
|
const std::vector<Arabica::XPath::XPathExpression<string_type> >& argExprs) const
|
2007-11-22 20:24:18 +01:00
|
|
|
{
|
|
|
|
if(!namespace_uri.empty())
|
2010-02-21 00:25:36 +01:00
|
|
|
return new UndefinedFunction(namespace_uri, name, argExprs);
|
2007-11-22 20:24:18 +01:00
|
|
|
|
|
|
|
// document
|
|
|
|
if(name == "document")
|
|
|
|
return new DocumentFunction(parser_.currentBase(), argExprs);
|
|
|
|
// key
|
2009-02-18 09:37:16 +01:00
|
|
|
if(name == "key")
|
2009-02-26 10:32:55 +01:00
|
|
|
return new KeyFunction(stylesheet_.keys(), parser_.inScopeNamespaces(), argExprs);
|
2007-11-22 20:24:18 +01:00
|
|
|
// format-number
|
2010-02-20 22:56:47 +01:00
|
|
|
// current
|
2007-11-22 20:24:18 +01:00
|
|
|
if((name == "current") && (current_allowed_))
|
|
|
|
return new CurrentFunction(argExprs);
|
|
|
|
// unparsed-entity-uri
|
2008-11-05 03:55:44 +01:00
|
|
|
//if(name == "unparsed-entity-uri")
|
|
|
|
// return new UnparsedEntityUriFunction(argExprs);
|
2007-11-22 20:24:18 +01:00
|
|
|
// generate-id
|
2008-10-27 20:13:47 +01:00
|
|
|
if(name == "generate-id")
|
|
|
|
return new GenerateIdFunction(argExprs);
|
2007-11-22 20:24:18 +01:00
|
|
|
if(name == "system-property")
|
|
|
|
return new SystemPropertyFunction(argExprs);
|
2007-12-25 23:23:25 +01:00
|
|
|
// element-available
|
2010-02-21 19:35:58 +01:00
|
|
|
if(name == "element-available")
|
|
|
|
{
|
2012-11-02 22:01:15 +01:00
|
|
|
std::vector<std::pair<string_type, string_type> > dummy;
|
2010-02-21 19:35:58 +01:00
|
|
|
return new ElementAvailableFunction(dummy, parser_.inScopeNamespaces(), argExprs);
|
|
|
|
}
|
2007-12-25 23:23:25 +01:00
|
|
|
// function-available
|
2010-02-20 00:21:30 +01:00
|
|
|
if(name == "function-available")
|
2010-02-20 22:56:47 +01:00
|
|
|
return new FunctionAvailableFunction(validNames(), parser_.inScopeNamespaces(), argExprs);
|
|
|
|
|
2007-11-22 20:24:18 +01:00
|
|
|
return 0;
|
|
|
|
} // resolveFunction
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
virtual std::vector<std::pair<string_type, string_type> > validNames() const
|
2010-02-20 14:03:22 +01:00
|
|
|
{
|
2010-02-20 22:56:47 +01:00
|
|
|
static const char* functionNames[] = { "document", "key", /* format-number, */ "current",
|
|
|
|
/* unparsed-entity-uri, */ "generate-id", "system-property",
|
|
|
|
/* element-available, */ "function-available", 0 };
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
std::vector<std::pair<string_type,string_type> > names;
|
2010-02-20 22:56:47 +01:00
|
|
|
|
|
|
|
for(int i = 0; functionNames[i] != 0; ++i)
|
|
|
|
names.push_back(std::make_pair("", functionNames[i]));
|
|
|
|
|
|
|
|
return names;
|
|
|
|
} // validNames
|
2010-02-20 14:03:22 +01:00
|
|
|
|
2007-11-22 20:24:18 +01:00
|
|
|
// NamespaceContext
|
2012-11-02 22:01:15 +01:00
|
|
|
virtual string_type namespaceURI(const string_type& prefix) const
|
2007-11-22 20:24:18 +01:00
|
|
|
{
|
|
|
|
return parser_.namespaceURI(prefix);
|
|
|
|
} // namespaceURI
|
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
typedef std::pair<string_type, string_type> Namespace;
|
2007-07-19 19:01:42 +02:00
|
|
|
|
2012-11-02 22:01:15 +01:00
|
|
|
StylesheetParser<string_type, string_adaptor>& parser_;
|
2008-11-05 02:33:28 +01:00
|
|
|
CompiledStylesheet& stylesheet_;
|
2010-01-10 22:25:35 +01:00
|
|
|
mutable int autoNs_;
|
|
|
|
mutable bool current_allowed_;
|
2010-10-10 00:10:35 +02:00
|
|
|
mutable bool variables_allowed_;
|
2010-01-10 22:25:35 +01:00
|
|
|
Precedence precedence_;
|
2012-11-02 22:01:15 +01:00
|
|
|
Arabica::XPath::XPath<string_type> xpath_;
|
|
|
|
std::stack<SAX::DefaultHandler<string_type>*> handlerStack_;
|
2007-07-19 19:01:42 +02:00
|
|
|
std::stack<ItemContainer*> parentStack_;
|
2012-11-02 22:01:15 +01:00
|
|
|
std::map<string_type, Namespace> namespaceRemap_;
|
2007-07-19 19:01:42 +02:00
|
|
|
|
|
|
|
CompilationContext(const CompilationContext&);
|
2007-11-22 20:24:18 +01:00
|
|
|
|
2010-10-10 00:10:35 +02:00
|
|
|
class Disallow
|
2007-11-22 20:24:18 +01:00
|
|
|
{
|
|
|
|
public:
|
2010-10-10 00:10:35 +02:00
|
|
|
Disallow(bool& allow) : allow_(allow) { allow_ = false; }
|
|
|
|
~Disallow() { allow_ = true; }
|
2007-11-22 20:24:18 +01:00
|
|
|
private:
|
|
|
|
bool& allow_;
|
|
|
|
}; // DisallowCurrent
|
2007-07-19 19:01:42 +02:00
|
|
|
}; // class CompilationContext
|
|
|
|
|
|
|
|
} // namespace XSLT
|
|
|
|
} // namespace Arabica
|
|
|
|
|
|
|
|
#endif // ARABICA_XSLT_COMPILATION_CONTEXT
|
|
|
|
|