Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get a char* name from a template type in C++

I want to get the string name (const char*) of a template type. Unfortunately I don't have access to RTTI.

template< typename T >
struct SomeClass
{
    const char* GetClassName() const { return /* magic goes here */; }
}

So

SomeClass<int> sc;
sc.GetClassName();   // returns "int"

Is this possible? I can't find a way and am about to give up. Thanks for the help.

like image 925
Rosco Avatar asked Feb 27 '09 19:02

Rosco


2 Answers

No and it will not work reliable with typeid either. It will give you some internal string that depends on the compiler implementation. Something like "int", but also "i" is common for int.

By the way, if what you want is to only compare whether two types are the same, you don't need to convert them to a string first. You can just do

template<typename A, typename B>
struct is_same { enum { value = false }; };

template<typename A>
struct is_same<A, A> { enum { value = true }; };

And then do

if(is_same<T, U>::value) { ... }

Boost already has such a template, and the next C++ Standard will have std::is_same too.

Manual registration of types

You can specialize on the types like this:

template<typename> 
struct to_string {
    // optionally, add other information, like the size
    // of the string.
    static char const* value() { return "unknown"; }
};

#define DEF_TYPE(X) \
    template<> struct to_string<X> { \
        static char const* value() { return #X; } \
    }

DEF_TYPE(int); DEF_TYPE(bool); DEF_TYPE(char); ...

So, you can use it like

char const *s = to_string<T>::value();

Of course, you can also get rid of the primary template definition (and keep only the forward declaration) if you want to get a compile time error if the type is not known. I just included it here for completion.

I used static data-members of char const* previously, but they cause some intricate problems, like questions where to put declarations of them, and so on. Class specializations like above solve the issue easily.

Automatic, depending on GCC

Another approach is to rely on compiler internals. In GCC, the following gives me reasonable results:

template<typename T>
std::string print_T() {
    return __PRETTY_FUNCTION__;
}

Returning for std::string.

std::string print_T() [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]

Some substr magic intermixed with find will give you the string representation you look for.

like image 197
Johannes Schaub - litb Avatar answered Sep 22 '22 10:09

Johannes Schaub - litb


The really easy solution: Just pass a string object to the constructor of SomeClass that says what the type is.

Example:

#define TO_STRING(type) #type
SomeClass<int> s(TO_STRING(int));

Simply store it and display it in the implementation of GetClassName.

Slightly more complicated solution, but still pretty easy:

#define DEC_SOMECLASS(T, name) SomeClass<T> name;  name.sType = #T; 

template< typename T >
struct SomeClass
{
    const char* GetClassName() const { return sType.c_str(); }
    std::string sType;
};


int main(int argc, char **argv)
{
    DEC_SOMECLASS(int, s);
    const char *p = s.GetClassName();

    return 0;
}

Template non type solution:

You could also make your own type ids and have a function to convert to and from the ID and the string representation.

Then you can pass the ID when you declare the type as a template non-type parameter:

template< typename T, int TYPEID>
struct SomeClass
{
    const char* GetClassName() const { return GetTypeIDString(TYPEID); }
};


...

SomeClass<std::string, STRING_ID> s1;
SomeClass<int, INT_ID> s2;
like image 36
Brian R. Bondy Avatar answered Sep 18 '22 10:09

Brian R. Bondy