aboutsummaryrefslogtreecommitdiff
path: root/src/read_file_command.h
blob: 837ec04480f846c055c8c924aef46f5e820ba6c9 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <xalanc/Include/PlatformDefinitions.hpp>
#include <xercesc/util/PlatformUtils.hpp>
#include <xalanc/XalanTransformer/XalanTransformer.hpp>
#include <xalanc/XPath/XObjectFactory.hpp>
#include <xalanc/XPath/Function.hpp>
#include <xalanc/XPath/XObject.hpp>

#include "utility.h"

namespace xalan = xalanc_1_11;

class FunctionReadFile : public xalan::Function {
	public:
		virtual xalan::XObjectPtr execute(
			xalan::XPathExecutionContext&      executionContext,
			xalan::XalanNode*                  context,
			const xalan::Function::XObjectArgVectorType& args,
			const xalan::Locator*              locator
		) const {
			if ( args.size() != 1 ) {
				xalan::XPathExecutionContext::GetAndReleaseCachedString guard(
					executionContext
				);

				generalError(executionContext, context, locator);
			}

			xalan::CharVectorType tmpFileName;
			std::string fileName;

			args[0]->str().transcode(tmpFileName);

			std::move(
				tmpFileName.begin(),
				tmpFileName.end(),
				fileName.begin()
			);

			std::string content(readFile(fileName));

			return executionContext.getXObjectFactory().createString(
				xalan::XalanDOMString(content.data())
			);
		}

		virtual FunctionReadFile* clone(xalan::MemoryManager& manager) const {
			return xalan::XalanCopyConstruct(manager, *this);
		}

	protected:
		const xalan::XalanDOMString& getError(xalan::XalanDOMString& result) const {
			result.assign("The read-file() function expects one argument.");

			return result;
		}

	private:
		FunctionReadFile& operator=(const FunctionReadFile&);
		bool operator==(const FunctionReadFile&) const;

};