aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_directory.h
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-04-22 22:49:56 +0200
committerAdrian Kummerländer2014-04-22 22:49:56 +0200
commit34b2f97ac57489d7c9555a3cb0c92c808a4948ea (patch)
treee54b367a4e4d5204c47b1478d1a0253cf42c2f25 /src/function/read_directory.h
parent7142544d43b431df44d34921b0f3012fa1e0137d (diff)
downloadInputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.gz
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.bz2
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.lz
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.xz
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.zst
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.zip
Implemented basic XML output of external read-directory function
* output is generated from XML hand-generated in a std::stringstream ** while this works reasonably well it is not how it should by done, i.e. this will have to be reimplemented using xerces / xalan constructs ** => this is intended to try out how a read-directory could work in a XSLT context
Diffstat (limited to 'src/function/read_directory.h')
-rw-r--r--src/function/read_directory.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/function/read_directory.h b/src/function/read_directory.h
index 4a865f2..e7ee0c4 100644
--- a/src/function/read_directory.h
+++ b/src/function/read_directory.h
@@ -6,6 +6,8 @@
#include <xalanc/XPath/Function.hpp>
#include <xalanc/XPath/XObject.hpp>
+#include <xalanc/XercesParserLiaison/XercesParserLiaison.hpp>
+
#include <string>
#include "common.h"
@@ -16,6 +18,7 @@ namespace InputXSLT {
class FunctionReadDirectory : public xalan::Function {
public:
FunctionReadDirectory(const FilesystemContext&);
+ FunctionReadDirectory(const FunctionReadDirectory&);
virtual xalan::XObjectPtr execute(
xalan::XPathExecutionContext&,
@@ -31,6 +34,7 @@ class FunctionReadDirectory : public xalan::Function {
private:
const FilesystemContext& fs_context_;
+ mutable xalan::XercesParserLiaison parser_;
const xalan::XalanDOMString& getError(xalan::XalanDOMString&) const;