aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_file.cc
blob: efc1f61125814e840e7c2354fb97b7b8d13d9f3c (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
#include "read_file.h"

namespace InputXSLT {

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

		generalError(executionContext, context, locator);
	}

	xalan::CharVectorType fileNameVector;
	std::string fileNameString;

	arguments[0]->str().transcode(fileNameVector);

	std::move(
		fileNameVector.begin(),
		fileNameVector.end(),
		fileNameString.begin()
	);

	return executionContext.getXObjectFactory().createString(
		xalan::XalanDOMString(
			InputXSLT::readFile(fileNameString).data()
		)
	);
}

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

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

	return result;
}

}