vote up 13 vote down star
18

Is it possible to write a C++ template that changes behavior depending on if a certain member function is defined on a class?

Here's a simple example of what I would want to write:

template<class T>
std::string optionalToString(T* obj)
{
    if (FUNCTION_EXISTS(T->toString))
        return obj->toString();
    else
        return "toString not defined";
}

So if class T has "toString" defined then it uses it, otherwise it doesn't. The magical part that I don't know how to do is the "FUNCTION_EXISTS" part.

flag

8 Answers

vote up 12 vote down check

Yes, with SFINAE you can check if a given class does provide a certain method. Here's the working code:

#include <iostream>

struct Hello
{
    int helloworld()
    { return 0; }
};

struct Generic {};


// SFINAE test
template <typename T>
class has_helloworld
{
    typedef char one;
    typedef long two;

    template <typename C> static one test( typeof(&C::helloworld) ) ;
    template <typename C> static two test(...);


public:
    enum { value = sizeof(test<T>(0)) == sizeof(char) };
};


int
main(int argc, char *argv[])
{
    std::cout << has_helloworld<Hello>::value << std::endl;
    std::cout << has_helloworld<Generic>::value << std::endl;
    return 0;
}

I've just tested it with Linux and gcc 4.1/4.3. I don't know if it's portable to other platforms running different compilers.

link|flag
Ach you beat me to it! It's a very nice trick this one (confirmed working with GCC 4.1 on Mac OSX 10.5) – ppinsider Nov 2 '08 at 21:28
1  
Although, I used the following for 'one' and 'two': typedef char Small; class Big{char dummy[2];} to ensure no ambiguity about platform dependent variable size. – ppinsider Nov 2 '08 at 21:40
I doubt it exists on earth a platform with the sizeof(char) == sizeof(long) – Nicola Bonelli Nov 2 '08 at 21:46
1  
Well indeed, but strictly it's not guaranteed if you're being really standards correct. (P.S. I have seen platforms where this is the case, but the compilers would choke on that code anyway ;) ) – ppinsider Nov 2 '08 at 21:47
1  
I'm not entirely sure, but I don't think this is portable. typeof is a GCC extension, this will not work on other compilers. – Leon Timmermans Nov 2 '08 at 21:52
show 3 more comments
vote up 0 vote down

No, that isn't possible. SFINEA can detect for missing subtypes, but not for missing methods.

ETA: it seems Nicola found a way to do it, but I think that's not portable.

link|flag
Yeah nicola's way isn't portable. But there are other ways to do it. All have their pitfalls, though: Mine won't detect functions that are inherited from base classes, and another way @Roshan linked to has other problems (see my comments on his answer). And nicolas way doesn't work in case the function is overloaded – Johannes Schaub - litb Jul 8 at 23:19
vote up 3 vote down

This is what type traits are there for. Unfortunately, they have to defined manually. In your case, imagine the following:

template <typename T>
struct response_trait {
    static bool const has_tostring = false;
};

template <>
struct response_trait<your_type_with_tostring> {
    static bool const has_tostring = true;
}
link|flag
+1: traits have always been a clean way to solve problems. – Nicola Bonelli Nov 3 '08 at 23:09
1  
you should prefer enum for traits instead of static constants : " Static constant members are lvalues,which forces the compiler to instantiate and allocate the definition for the static member. As a result, the computation is no longer limited to a pure "compile-time" effect." – Comptrol Mar 20 at 9:28
1  
"Enumeration values aren't lvalues(that is,they don't have an address).So, when you pass them "by reference," no static memory is used. It's almost exactly as if you passed the computed value as a literal. These considerations motivate us to use enumeration values" C++ Templates:The Complete Guide – Comptrol Mar 20 at 9:29
2  
Comptrol: no, the cited passage doesn't apply here since integer type static constants are a special case! They behave exactly like an enum here and are the preferred way. The old enum hack was only necessary on compilers that didn't follow the C++ standard. – Konrad Rudolph Mar 23 at 9:07
1  
Thanks for correcting Rudolph. – Comptrol Mar 25 at 22:26
vote up 1 vote down

SFINAE can detect an existing member function. A missing function can then be handled by the default case.

link|flag
I agree with Nicola. Luc: show us working code. – Leon Timmermans Nov 2 '08 at 20:48
Sorry for the hurried reply. With SFINAE is possible to test if a given method is available in a class – Nicola Bonelli Nov 2 '08 at 21:12
vote up 0 vote down

I don't know Boost but it kinda looks like you could try binding to a class member function and then base on error it returns...

link|flag
Would be a compile-time error. – MSalters Feb 2 at 9:05
vote up 2 vote down

Now this was a nice little puzzle - great question!

Here's an alternative to Nicola Bonelli's solution that does not rely on the non-standard typeof operator.

Unfortunately, it does not work on GCC (MinGW) 3.4.5 or Digital Mars 8.42n, but it does work on all versions of MSVC (including VC6) and on Comeau C++.

The longer comment block has the details on how it works (or is supposed to work). As it says, I'm not sure which behavior is standards compliant - I'd welcome commentary on that.


update - 7 Nov 2008:

It looks like while this code is syntactically correct, the behavior that MSVC and Comeau C++ show does not follow the standard (thanks to Leon Timmermans and litb for pointing me in the right direction). The C++03 standard says the following:

14.6.2 Dependent names [temp.dep]

Paragraph 3

In the definition of a class template or a member of a class template, if a base class of the class template depends on a template-parameter, the base class scope is not examined during unqualified name lookup either at the point of definition of the class template or member or during an instantiation of the class template or member.

So, it looks like that when MSVC or Comeau consider the toString() member function of T performing name lookup at the call site in doToString() when the template is instantiated, that is incorrect (even though it's actually the behavior I was looking for in this case).

The behavior of GCC and Digital Mars looks to be correct - in both cases the non-member toString() function is bound to the call.

Rats - I thought I might have found a clever solution, instead I uncovered a couple compiler bugs...


#include <iostream>
#include <string>

struct Hello
{
    std::string toString() {
        return "Hello";
    }
};

struct Generic {};


// the following namespace keeps the toString() method out of
//  most everything - except the other stuff in this
//  compilation unit

namespace {
    std::string toString()
    {
        return "toString not defined";
    }

    template <typename T>
    class optionalToStringImpl : public T
    {
    public:
        std::string doToString() {

            // in theory, the name lookup for this call to 
            //  toString() should find the toString() in 
            //  the base class T if one exists, but if one 
            //  doesn't exist in the base class, it'll 
            //  find the free toString() function in 
            //  the private namespace.
            //
            // This theory works for MSVC (all versions
            //  from VC6 to VC9) and Comeau C++, but
            //  does not work with MinGW 3.4.5 or 
            //  Digital Mars 8.42n
            //
            // I'm honestly not sure what the standard says 
            //  is the correct behavior here - it's sort 
            //  of like ADL (Argument Dependent Lookup - 
            //  also known as Koenig Lookup) but without
            //  arguments (except the implied "this" pointer)

            return toString();
        }
    };
}

template <typename T>
std::string optionalToString(T & obj)
{
    // ugly, hacky cast...
    optionalToStringImpl<T>* temp = reinterpret_cast<optionalToStringImpl<T>*>( &obj);

    return temp->doToString();
}



int
main(int argc, char *argv[])
{
    Hello helloObj;
    Generic genericObj;

    std::cout << optionalToString( helloObj) << std::endl;
link|flag
No, it's not standards compliant, though I think it will work in GCC if you turn on the -fpermissive option. – Leon Timmermans Nov 4 '08 at 22:50
I know the comments don't give a lot of room, but could you point to information on why it's not standards compliant? (I'm not arguing - I'm curious) – Michael Burr Nov 5 '08 at 5:30
Mike B: the standard says in 3.10 p15: "If a program attempts to access the stored value of an object through an lvalue of other than one of the following types the behavior is undefined" and that list indeed doesn't include the case you do. – Johannes Schaub - litb Nov 7 '08 at 8:17
i'm not sure why it doesnt add another comment of me: your toString call is unqualified. so it will always call the free function and never the one in the base, since the baseclass is dependant on a template type parameter. – Johannes Schaub - litb Nov 7 '08 at 8:27
@litb: Thanks for the pointers. I don't think 3.10 applies here. The call to toString() inside of doToString() is not "accessing the stored value of an object through an lvalue". But your 2nd comment is correct. I'll update the answer. – Michael Burr Nov 7 '08 at 18:49
show 3 more comments
vote up 8 vote down

C++ allows SFINAE to be used for this:

#define HAS_MEM_FUNC(func, name)                                        \
    template<typename T, typename Sign>                                 \
    struct name {                                                       \
        template <typename U, U> struct type_check;                     \
        template <typename _1> static char (& chk(type_check<Sign, &_1::func> *))[1]; \
        template <typename   > static char (& chk(...))[2];             \
        static bool const value = sizeof(chk<T>(0)) == 1;               \
    }

the above template and macro tries to instantiate a template, giving it a member function pointer type, and the actual member function pointer. If the types to not fit, SFINAE causes the template to be ignored. Usage like this:

HAS_MEM_FUNC(toString, has_to_string);

template<typename T> void
doSomething() {
   if(has_to_string<T, std::string(T::*)()>::value) {
      ...
   } else {
      ...
   }
}

But note that you cannot just call that toString function in that if branch. since the compiler will check for validity in both branches, that would fail for cases the function doesnt exist. on way is to use sfinae once again (enable_if can be gotten from boost too):

template<bool C, typename T = void>
struct enable_if {
  typedef T type;
};

template<typename T>
struct enable_if<false, T> { };

HAS_MEM_FUNC(toString, has_to_string);

template<typename T> 
typename enable_if<has_to_string<T, 
                   std::string(T::*)()>::value, std::string>::type
doSomething(T * t) {
   /* something when T has toString ... */
   return t->toString();
}

template<typename T> 
typename enable_if<!has_to_string<T, 
                   std::string(T::*)()>::value, std::string>::type
doSomething(T * t) {
   /* something when T doesnt have toString ... */
   return "T::toString() does not exist.";
}

Have fun using it. The advantage of it is that it also works for overloaded member functions, and also for const member functions (remember using std::string(T::*)() const as the member function pointer type then!).

link|flag
vote up 1 vote down

The standard C++ solution presented here by litb will not work as expected if the method happens to be defined in a base class.

For a solution that handles this situation refer to :

In Russian : http://www.rsdn.ru/forum/message/2759773.1.aspx

English Translation by Roman.Perepelitsa : http://groups.google.com/group/comp.lang.c++.moderated/tree/browse_frm/thread/4f7c7a96f9afbe44/c95a7b4c645e449f?pli=1

It is insanely clever. However one issue with this solutiion is that gives compiler errors if the type being tested is one that cannot be used as a base class (e.g. primitive types)

In Visual Studio, I noticed that if working with method having no arguments, an extra pair of redundant ( ) needs to be inserted around the argments to deduce( ) in the sizeof expression.

link|flag
thanks for showing this to us. I really love that guys code! – Johannes Schaub - litb Jun 17 at 13:01
Hmm, having developed my own version using that posts ideas, i found the idea has some other drawbacks so i removed the code from my answer again. One is that all functions have to be public in the target type. So you cannot check for a "f" function in this: struct g { void f(); private: void f(int); }; because one of the functions is private (this is because the code does using g::f;, which makes it fail if any f is not accessible). – Johannes Schaub - litb Jul 8 at 19:56

Your Answer

Get an OpenID
or

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