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 +++++++---------- src/function/read_directory.cc | 4 +++- src/function/read_file.cc | 6 ++++-- src/function/read_xml_file.cc | 6 ++++-- src/function/transform.cc | 11 ++++++++--- 5 files changed, 26 insertions(+), 18 deletions(-) (limited to 'src/function') 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 ); diff --git a/src/function/read_directory.cc b/src/function/read_directory.cc index e030e33..54d3d0d 100644 --- a/src/function/read_directory.cc +++ b/src/function/read_directory.cc @@ -13,7 +13,9 @@ xercesc::DOMDocument* FunctionReadDirectory::constructDocument( const InputXSLT::FilesystemContext& fsContext, const FunctionBase::argument_array& arguments ) { - const boost::filesystem::path& directoryPath = arguments[0]; + const boost::filesystem::path directoryPath( + fsContext.resolve(arguments[0]) + ); xercesc::DOMDocument* const domDocument( xercesc::DOMImplementation::getImplementation()->createDocument( diff --git a/src/function/read_file.cc b/src/function/read_file.cc index da0e988..19ca296 100644 --- a/src/function/read_file.cc +++ b/src/function/read_file.cc @@ -25,10 +25,12 @@ inline std::string readFile(const boost::filesystem::path& filePath) { namespace InputXSLT { xercesc::DOMDocument* FunctionReadFile::constructDocument( - const FilesystemContext&, + const FilesystemContext& fsContext, const FunctionBase::argument_array& arguments ) { - const boost::filesystem::path& filePath = arguments[0]; + const boost::filesystem::path filePath( + fsContext.resolve(arguments[0]) + ); xercesc::DOMDocument* const domDocument( xercesc::DOMImplementation::getImplementation()->createDocument( diff --git a/src/function/read_xml_file.cc b/src/function/read_xml_file.cc index b3bf3de..cf2cadd 100644 --- a/src/function/read_xml_file.cc +++ b/src/function/read_xml_file.cc @@ -33,10 +33,12 @@ inline xercesc::DOMNode* importDocumentElement( namespace InputXSLT { xercesc::DOMDocument* FunctionReadXmlFile::constructDocument( - const FilesystemContext&, + const FilesystemContext& fsContext, const FunctionBase::argument_array& arguments ) { - const boost::filesystem::path& filePath = arguments[0]; + const boost::filesystem::path filePath( + fsContext.resolve(arguments[0]) + ); xercesc::DOMDocument* const domDocument( xercesc::DOMImplementation::getImplementation()->createDocument( diff --git a/src/function/transform.cc b/src/function/transform.cc index 360b61d..5c53044 100644 --- a/src/function/transform.cc +++ b/src/function/transform.cc @@ -10,11 +10,16 @@ namespace InputXSLT { xercesc::DOMDocument* FunctionTransform::constructDocument( - const InputXSLT::FilesystemContext&, + const InputXSLT::FilesystemContext& fsContext, const FunctionBase::argument_array& arguments ) { - const boost::filesystem::path& transformationPath = arguments[0]; - const boost::filesystem::path& targetPath = arguments[1]; + const boost::filesystem::path transformationPath( + fsContext.resolve(arguments[0]) + ); + + const boost::filesystem::path targetPath( + fsContext.resolve(arguments[1]) + ); xercesc::DOMDocument* const domDocument( xercesc::DOMImplementation::getImplementation()->createDocument( -- cgit v1.2.3