From 5fbca0993146982ab1dbb0d352c1e15e40b3de22 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Wed, 14 May 2014 20:55:51 +0200 Subject: Moved responsibility for argument conversion to FunctionBase descendants * external functions may expect arguments with a type different from boost::filesystem::path so they are only provided raw string values * moved xalan string conversion logic into separate compilation unit --- src/function/base.h | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'src/function/base.h') diff --git a/src/function/base.h b/src/function/base.h index 5604186..7fbd818 100644 --- a/src/function/base.h +++ b/src/function/base.h @@ -11,6 +11,7 @@ #include #include "common.h" +#include "support/xalan_string.h" #include "support/dom/document_cache.h" #include "support/filesystem_context.h" @@ -22,10 +23,7 @@ template < > class FunctionBase : public xalan::Function { public: - typedef std::array< - boost::filesystem::path, - ArgumentCount - > argument_array; + typedef std::array argument_array; FunctionBase(): document_cache_(std::make_shared()) { } @@ -43,15 +41,14 @@ class FunctionBase : public xalan::Function { locator ); - const FilesystemContext fsContext(locator); argument_array pathArguments; std::transform( rawArguments.begin(), rawArguments.end(), pathArguments.begin(), - [&fsContext](const xalan::XObjectPtr& ptr) -> boost::filesystem::path { - return fsContext.resolve(ptr->str()); + [](const xalan::XObjectPtr& ptr) -> std::string { + return toString(ptr->str()); } ); @@ -60,7 +57,7 @@ class FunctionBase : public xalan::Function { static_cast( const_cast(this) )->constructDocument( - fsContext, + FilesystemContext(locator), pathArguments ) ) @@ -108,7 +105,7 @@ class FunctionBase : public xalan::Function { xalan::XalanNode* context, const xalan::Locator* locator ) const { - const bool notNull = std::none_of( + const bool anyNull = std::any_of( rawArguments.begin(), rawArguments.end(), [](const xalan::XObjectPtr& ptr) -> bool { @@ -116,7 +113,7 @@ class FunctionBase : public xalan::Function { } ); - if ( rawArguments.size() != ArgumentCount && notNull ) { + if ( rawArguments.size() != ArgumentCount || anyNull ) { xalan::XPathExecutionContext::GetAndReleaseCachedString guard( executionContext ); -- cgit v1.2.3