aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_directory.h
blob: f4f7ec826328a59bedae96e481582c36b316cb7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef INPUTXSLT_SRC_FUNCTION_READ_DIRECTORY_H_
#define INPUTXSLT_SRC_FUNCTION_READ_DIRECTORY_H_

#include <xalanc/XalanTransformer/XalanTransformer.hpp>
#include <xalanc/XPath/XObjectFactory.hpp>
#include <xalanc/XPath/Function.hpp>
#include <xalanc/XPath/XObject.hpp>

#include <memory>

#include "common.h"
#include "support/filesystem_context.h"
#include "support/dom/document_cache.h"

namespace InputXSLT {

class FunctionReadDirectory : public xalan::Function {
	public:
		FunctionReadDirectory(const FilesystemContext&);

		virtual xalan::XObjectPtr execute(
			xalan::XPathExecutionContext&,
			xalan::XalanNode*,
			const xalan::XObjectPtr,
			const xalan::Locator*
		) const;

		virtual FunctionReadDirectory* clone(xalan::MemoryManager&) const;

		FunctionReadDirectory& operator=(const FunctionReadDirectory&) = delete;
		bool operator==(const FunctionReadDirectory&) const            = delete;

	private:
		const FilesystemContext& fs_context_;
		std::shared_ptr<DomDocumentCache> document_cache_;

		const xalan::XalanDOMString& getError(xalan::XalanDOMString&) const;

};

}

#endif  // INPUTXSLT_SRC_FUNCTION_READ_DIRECTORY_H_