I ran into the problem that RValue does not allow implicit conversion. My questions is what implementation is better to "bypass" this limitation?

Here is example code to illustrate the issue:

template<typename myVal>
class ITestClass
{
public:
  virtual void myFunc(myVal item) = 0;
  virtual myVal myFunc1() = 0;
};

class CTestClass : public ITestClass<int>
{
public:
  void myFunc(int item) { }
  int myFunc1() { return 0; }
};

template <typename T>
inline int CallFunction(std::shared_ptr< ITestClass<T> > ptrBase)
{
  return 0;
}

inline std::shared_ptr< ITestClass<int> > GetBase()
{
  return std::make_shared<CTestClass>();
}


std::shared_ptr< ITestClass<int> > ptrBase = std::make_shared<CTestClass>();
std::shared_ptr< CTestClass > ptrDerived = std::make_shared<CTestClass>();
CallFunction(ptrBase); // WORKS
CallFunction(GetBase()); // WORKS
CallFunction(std::make_shared<CTestClass>()); // ERROR
CallFunction(ptrDerived); // ERROR

All calls where RValue could be utilized but the function wants the base and the parameter is the derived fail.

Option 1

Option 1 to correct the issue:

CallFunction(std::static_pointer_cast< ITestClass<int> >(std::make_shared<CTestClass>()));
CallFunction(std::static_pointer_cast< ITestClass<int> >(ptrDerived));

This option requires the user to cast the derived into the base before calling the function. This defeats the purpose some because it requires the caller to know the actual base type for the conversion (aka what concrete template instantiation base type it is).

Option 2

Option 2 to correct the issue: (modify the template and CallFunction some)

template<typename myVal>
class ITestClass
{
public:
  typedef myVal class_data_type;

  virtual void myFunc(myVal item) = 0;
  virtual myVal myFunc1() = 0;
};

class CTestClass : public ITestClass<int>
{
public:
  void myFunc(int item) { }
  int myFunc1() { return 0; }
};

template <typename T>
inline int CallFunction(std::shared_ptr<T> ptrBase)
{
  static_assert(std::is_base_of<ITestClass<typename T::class_data_type>, T>::value, "Class needs to derive from ITestClass"); // some example of type checking

  return 0;
}

CallFunction(std::make_shared<CTestClass>()); // now works as normal
CallFunction(ptrDerived); // now works as normal

I like option 2 better because callers don't know the limitation that is currently imposed with RValue but I am not sure if there are enough typechecking static_asserts that would clear up the confusion if someone passes the wrong parameter.

Questions

  1. Do you see anything wrong with Option 2 or is Option 1 still the better route?

  2. Using SFINAE is there a way to clean the type safety?

link|improve this question

73% accept rate
feedback

1 Answer

Well, it doesn't have anything to do with rvalues, but rather with template parameter deduction failure.

Template parameter matching is very very direct, like a simple pattern matching.

The following is one way to resolve it, using a typedef in the interface class:

#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
namespace our = boost;

template<typename myVal>
class ITestClass
{
public:
  typedef myVal ValType;

  virtual void myFunc(myVal item) = 0;
  virtual myVal myFunc1() = 0;
};

class CTestClass : public ITestClass<int>
{
public:
  void myFunc(int item) { }
  int myFunc1() { return 0; }
};

template <typename T>
inline int CallFunctionAux(
    our::shared_ptr< ITestClass<T> > ptrBase
    )
{
  return 0;
}

template< class T >
inline int CallFunction( our::shared_ptr< T > ptrBase )
{
  return CallFunctionAux< typename T::ValType >( ptrBase );
}

inline our::shared_ptr< ITestClass<int> > GetBase()
{
  return our::make_shared<CTestClass>();
}


int main()
{
    our::shared_ptr< ITestClass<int> > ptrBase = our::make_shared<CTestClass>();
    our::shared_ptr< CTestClass > ptrDerived = our::make_shared<CTestClass>();
    CallFunction(ptrBase); // WORKS
    CallFunction(GetBase()); // WORKS
    CallFunction(our::make_shared<CTestClass>()); // WORKS
    CallFunction(ptrDerived); // WORKS
}

Cheers & hth.,

link|improve this answer
that is almost exactly like my option 2 shown above. :) – BabelFish Jan 28 '11 at 18:06
@BabelFish: almost, but yet different. no assert, no cast. just compilation error if called with ungood type. ;-) – Cheers and hth. - Alf Jan 28 '11 at 18:18
so your approach would be to remove the static_assert and just have the compile problem if typename T::ValType doesn't resolve. My Option 2 gives the same error when the wrong type is passed as well and I am not seeing where mine does casting, or am I missing something? – BabelFish Jan 28 '11 at 18:30
@BabelFish: well your code isn't doing anything. it may be that you intended to indicate a solution like the one above? in that case, it is indeed your option 2, and i misunderstood what you meant. cheers, – Cheers and hth. - Alf Jan 28 '11 at 18:39
hmm.. the code shown under "Option 2" contains "typedef myVal class_data_type;" inside the template, and the new converted "CallFunction" now takes the same parameters as yours "std::shared_ptr<T> ptrBase". Where my empty function calls static_assert, yours calls another template function. Both implementations would fail if the typedef didn't exist. Are you looking at the Option 2 code or the code from the very top? Thanks again for the help – BabelFish Jan 28 '11 at 18:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.