aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_directory.cc
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-05-05 20:42:36 +0200
committerAdrian Kummerländer2014-05-05 20:42:36 +0200
commit9aad4dffd9c8b0fde534b3abc3c27875547423fa (patch)
treeefe5f9af32f9854c6bc7f2caed3c01a4369ca41e /src/function/read_directory.cc
parentbd24e3fe6335bc776400be6bcb44a0701ecc4133 (diff)
downloadInputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.tar
InputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.tar.gz
InputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.tar.bz2
InputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.tar.lz
InputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.tar.xz
InputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.tar.zst
InputXSLT-9aad4dffd9c8b0fde534b3abc3c27875547423fa.zip
Encapsulated common parts of external function inplementations
* common parts were moved into CRTP template base class _FunctionBase_ * all external functions are derived from that class ** only have to implement _constructDocument_ member method ** currently only supports a single string input parameter which is enough for now * this change condenses external funtion implementations to the essential and should increase readability as well as maintainability
Diffstat (limited to 'src/function/read_directory.cc')
-rw-r--r--src/function/read_directory.cc62
1 files changed, 2 insertions, 60 deletions
diff --git a/src/function/read_directory.cc b/src/function/read_directory.cc
index 48ffa51..8b41dae 100644
--- a/src/function/read_directory.cc
+++ b/src/function/read_directory.cc
@@ -6,13 +6,10 @@
#include <xercesc/dom/DOMText.hpp>
#include "support/xerces_string_guard.h"
-#include "support/filesystem_context.h"
-namespace {
-
-using InputXSLT::XercesStringGuard;
+namespace InputXSLT {
-xercesc::DOMDocument* constructDocument(
+xercesc::DOMDocument* FunctionReadDirectory::constructDocument(
const InputXSLT::FilesystemContext& fsContext,
const boost::filesystem::path& directoryPath
) {
@@ -84,58 +81,3 @@ xercesc::DOMDocument* constructDocument(
}
}
-
-namespace InputXSLT {
-
-FunctionReadDirectory::FunctionReadDirectory():
- document_cache_(std::make_shared<DomDocumentCache>()) { }
-
-xalan::XObjectPtr FunctionReadDirectory::execute(
- xalan::XPathExecutionContext& executionContext,
- xalan::XalanNode*,
- const xalan::XObjectPtr argument,
- const xalan::Locator* locator
-) const {
- const FilesystemContext fsContext(locator);
-
- const boost::filesystem::path directoryPath(
- fsContext.resolve(argument->str())
- );
-
- DomDocumentCache::optional_item optionalCachedDocument(
- this->document_cache_->get(directoryPath.string())
- );
-
- if ( !optionalCachedDocument.first ) {
- optionalCachedDocument = this->document_cache_->create(
- directoryPath.string(),
- constructDocument(fsContext, directoryPath)
- );
- }
-
- xalan::XPathExecutionContext::BorrowReturnMutableNodeRefList nodeList(
- executionContext
- );
-
- nodeList->addNodes(
- *optionalCachedDocument.second->getXalanDocument()
- ->getDocumentElement()
- ->getChildNodes()
- );
-
- return executionContext.getXObjectFactory().createNodeSet(nodeList);
-}
-
-FunctionReadDirectory* FunctionReadDirectory::clone(
- xalan::MemoryManager& manager) const {
- return xalan::XalanCopyConstruct(manager, *this);
-}
-
-const xalan::XalanDOMString& FunctionReadDirectory::getError(
- xalan::XalanDOMString& result) const {
- result.assign("The read-directory() function expects one argument of type string.");
-
- return result;
-}
-
-}