I'm trying to figure out how to create a C++11 template function which would convert function calls between two conventions : the first one is using Variant (note : a variant is a polymorphic type which is the base for the subclasses IntVariable, DoubleVariant, etc), the second one is the C function call.
We know every piece of information at the compile time : the argument count is the number of parameters, and the arguments/return type depends of the 'cfunc' variable type.
// We will assume that the two following functions are defined with their correct
// specializations.
template < typename T >
Variant * convertToVariant( T t );
template < typename T >
T convertFromVariant( Variant * variant );
// The following function is incomplete, the question is how to convert the
// variant parameters into a C function call ?
template < typename Return, typename... Arguments >
Variant * wrapCFunction< Return cfunc( Args... ) >(int argc, Variant ** argv) {
// Here comes the magic call of cfunc, something like :
if ( argc != mpl::count< Args... >::value )
throw std::runtime_error( "bad argument count" );
return cfunc( convertFromVariant< Args... >( argv[ X ] )... );
}
// Example use case :
int foo( int a, int b );
int main(void) {
int argc = 2;
Variant * argv[2] = { new IntVariant( 5 ), new IntVariant( 6 ) };
Variant * res = wrapCFunction< foo >( argc, argv );
IntVariant * intRes = dynamic_cast< IntVariant >( res );
return intRes ? intRes->value : -1;
}