diff options
author | Adrian Kummerländer | 2014-06-07 17:24:44 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-06-07 17:24:44 +0200 |
commit | 5f6fc45749b99e9013f04c95a525f2d627db01bf (patch) | |
tree | 6ba7598c874b89e893fb9b5f66e2cf26a85ac063 /src/support/type | |
parent | 272b34c1a4639cd0f909bfb52d30339c93b0c42b (diff) | |
download | InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.tar InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.tar.gz InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.tar.bz2 InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.tar.lz InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.tar.xz InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.tar.zst InputXSLT-5f6fc45749b99e9013f04c95a525f2d627db01bf.zip |
Improved FunctionBase constructDocument parameter propagation
* replaced std::tuple constructing Mapper template methods with direct XObjectArgVectorType unpacking
** XObjectValue::get template method is applied directly using parameter pack unpacking
* implemented custom IndexSequence / Sequence type to provide vector indexes
* modified all external functions to provide matching constructDocument overloads
Diffstat (limited to 'src/support/type')
-rw-r--r-- | src/support/type/xobject_value.cc | 25 | ||||
-rw-r--r-- | src/support/type/xobject_value.h | 17 |
2 files changed, 42 insertions, 0 deletions
diff --git a/src/support/type/xobject_value.cc b/src/support/type/xobject_value.cc new file mode 100644 index 0000000..cdeb9c6 --- /dev/null +++ b/src/support/type/xobject_value.cc @@ -0,0 +1,25 @@ +#include "xobject_value.h" + +#include <boost/algorithm/string.hpp> + +#include <string> + +#include "support/xalan_string.h" + +namespace InputXSLT { + +namespace XObjectValue { + +template <> +std::string get<std::string>(const xalan::XObjectPtr& ptr) { + return boost::trim_copy(toString(ptr->str())); +} + +template <> +xalan::XObjectPtr get<xalan::XObjectPtr>(const xalan::XObjectPtr& ptr) { + return ptr; +} + +} + +} diff --git a/src/support/type/xobject_value.h b/src/support/type/xobject_value.h new file mode 100644 index 0000000..bb602a4 --- /dev/null +++ b/src/support/type/xobject_value.h @@ -0,0 +1,17 @@ +#ifndef INPUTXSLT_SRC_SUPPORT_TUPLE_XOBJECT_VALUE_H_ +#define INPUTXSLT_SRC_SUPPORT_TUPLE_XOBJECT_VALUE_H_ + +#include <xalanc/XPath/XObject.hpp> + +#include "common.h" + +namespace InputXSLT { + +namespace XObjectValue { + template <typename Type> + Type get(const xalan::XObjectPtr&); +} + +} + +#endif // INPUTXSLT_SRC_SUPPORT_TUPLE_XOBJECT_VALUE_H_ |