aboutsummaryrefslogtreecommitdiff
path: root/src/transformation_facade.cc
blob: b411b3840f8efb89336ae25992c9a1c0e91f1e92 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include "transformation_facade.h"

#include <xalanc/XSLT/XSLTInputSource.hpp>
#include <xalanc/XalanTransformer/XalanCompiledStylesheet.hpp>

#include "boost/filesystem.hpp"

#include <sstream>
#include <iostream>

namespace InputXSLT {

TransformationFacade::TransformationFacade(const std::string& transformation):
	transformation_{},
	transformer_() {
	this->transformer_.compileStylesheet(
		xalan::XSLTInputSource(transformation.data()),
		this->transformation_
	);
}

TransformationFacade::~TransformationFacade() {
	this->transformer_.destroyStylesheet(
		this->transformation_
	);
}

int TransformationFacade::generate(const std::string& target) {
	const boost::filesystem::path targetFilePath(
		boost::filesystem::absolute(target)
	);

	this->setParameters({
		{ "target-file",      targetFilePath.filename().string()               },
		{ "parent-directory", targetFilePath.parent_path().filename().string() }
	});

	std::stringstream       emptyStream("<dummy/>");
	xalan::XSLTInputSource  inputSource(emptyStream);
	xalan::XSLTResultTarget outputTarget(target.data());

	const int resultCode = this->transformer_.transform(
		inputSource,
		this->transformation_,
		outputTarget
	);

	if ( resultCode != 0 ) {
		std::cerr << this->transformer_.getLastError() << std::endl;
	}

	this->transformer_.clearStylesheetParams();

	return resultCode;
}

int TransformationFacade::generate(
	const std::string& target,
	const parameter_map& parameters
) {
	this->setParameters(parameters);

	return this->generate(target);
}

void TransformationFacade::setParameters(const parameter_map& parameters) {
	for ( auto&& parameter : parameters ) {
		this->transformer_.setStylesheetParam(
			parameter.first.data(),
			std::string("'" + parameter.second + "'").data()
		);
	}
}

}