From e9c4e2b716798002c9ccbf96ee509eb91ad56553 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Thu, 1 May 2014 18:14:33 +0200 Subject: Added basic parameter taking overload of TransformationFacade::generate * XSLT stylesheets may be provided with a set of initial parameters ** these parameters can be provided as the second argument to the generate member method in the form of a string to string mapping ** the XSLT standard also permitts number and node set types as value arguments of such input parameters but this is not supported by this change * expanded test transformation to demonstrate this feature --- src/transformation_facade.cc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/transformation_facade.cc') diff --git a/src/transformation_facade.cc b/src/transformation_facade.cc index 846c586..3fee24f 100644 --- a/src/transformation_facade.cc +++ b/src/transformation_facade.cc @@ -55,6 +55,7 @@ int TransformationFacade::generate(const std::string& target) { xalan::XSLTInputSource inputSource(emptyStream); xalan::XSLTResultTarget outputTarget(target.data()); + const int resultCode = this->transformer_.transform( inputSource, this->transformation_, @@ -68,4 +69,22 @@ int TransformationFacade::generate(const std::string& target) { return resultCode; } +int TransformationFacade::generate( + const std::string& target, + const parameter_map& parameters +) { + for ( auto&& parameter : parameters ) { + this->transformer_.setStylesheetParam( + parameter.first.data(), + parameter.second.data() + ); + } + + const int resultCode = this->generate(target); + + this->transformer_.clearStylesheetParams(); + + return resultCode; +} + } -- cgit v1.2.3