Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently working on some logging code that supposed to - among other things - print information about the calling function. This should be relatively easy, standard C++ has a type_info class. This contains the name of the typeid'd class/function/etc. but it's mangled. It's not very usefull. I.e. typeid(std::vector).name() returns "St6vectorIiSaIiEE".

Is there a way to produce something usefull from this? Like 'std::vector' for the above example. If it only works for non-template classes, that's fine too.

The sollution should work for gcc, but it would be better if I could port it. It's for logging so it's not so important that it can't be turned of, but it should be helpfull for debugging.

share|improve this question
The accepted answer has some problems. Consider switching it to the answer from @ali – jterrace May 21 '12 at 16:02

10 Answers

up vote 9 down vote accepted

This is what we use. HAVE_CXA_DEMANGLE is only set if available (recent versions of GCC only).

#ifdef HAVE_CXA_DEMANGLE
const char* demangle(const char* name)
{
   char buf[1024];
    unsigned int size=1024;
    int status;
    char* res = abi::__cxa_demangle (name,
                                 buf,
                                 &size,
                                 &status);
    return res;
  }
#else
const char* demangle(const char* name)
{
  return name;
}
#endif
share|improve this answer
2  
You need to include #include <cxxabi.h>. – fuenfundachtzig Jan 20 '10 at 18:37
Interesting. I have __cxa_demangle without HAVE_CXA_DEMANGLE defined – mkb Nov 10 '10 at 20:52
@Matt What I meant to say is that our build system, based on autoconf, only sets HAVE_CXA_DEMANGLE if its available. – KeithB Nov 10 '10 at 22:11
7  
WARNING! The above code is likely to make the program crash. The buffer has to be either allocated by malloc or specified as NULL. Do NOT allocate it on the stack. See my code below. – Ali Dec 27 '10 at 20:14
watch out, res could return NULL :) – Zibri May 4 at 14:18

Important changes made to KeithB's code: the buffer has to be either allocated by malloc or specified as NULL. Do NOT allocate it on the stack.

It's wise to check that status as well.

I failed to find HAVE_CXA_DEMANGLE. I check __GNUG__ although that does not guarantee that the code will even compile. Anyone has a better idea?

#include <cxxabi.h>

const string demangle(const char* name) {

    int status = -4;

    char* res = abi::__cxa_demangle(name, NULL, NULL, &status);

    const char* const demangled_name = (status==0)?res:name;

    string ret_val(demangled_name);

    free(res);

    return ret_val;
}
share|improve this answer
Note that this needs #include <cxxabi.h>. Otherwise worked great, thanks. – jterrace May 21 '12 at 16:00
Ooops, sorry. Fixed and thanks! – Ali May 21 '12 at 16:06
Can you explain why the buffer cannot be allocated on the stack? Because so far it worked fine for me. – terminus May 23 '12 at 18:56
1  
From the docs: output_buffer A region of memory, allocated with malloc, of *length bytes, into which the demangled name is stored. If output_buffer is not long enough, it is expanded using realloc. output_buffer may instead be NULL; in that case, the demangled name is placed in a region of memory allocated with malloc. – Igor Skochinsky Aug 29 '12 at 18:31
1  
@IgorSkochinsky Yes, there is a typo in my previous comment but I cannot edit that. What I wanted to write: "Last time I checked abi::__cxa_demangle expected it to be allocated on the heap." Thank you very much for looking up the doc! – Ali Aug 29 '12 at 19:05
show 1 more comment

Not a complete solution, but you may want to look at what some of the standard (or widely supported) macro's define. It's common in logging code to see the use of the macros:

__FUNCTION__
__FILE__
__LINE__

e.g.:

log(__FILE__, __LINE__, __FUNCTION__, mymessage);
share|improve this answer
1  
Not to mention PRETTY_FUNCTION. – CesarB Nov 11 '08 at 19:26
This will give you the information about where you are in the code. What the question was asking was a pretty name of a type, like std::vector. – KeithB Nov 11 '08 at 19:56
He mentioned it was for debugging, and I stated it wasn't a complete solution. Other macros such as FUNCDNAME will return the decorated name. – luke Nov 11 '08 at 20:07
Actually, re-reading the question, it was "I'm currently working on some logging code that supposed to - among other things - print information about the calling function." This works. – Max Lybbert Nov 11 '08 at 22:36
It's not complete, since I don't know the namespace. This is allready in my code. But thanks anyway. – terminus Nov 12 '08 at 16:08

Here, take a look at type_strings.cpp it contains a function that does what you want.

If you just look for a demangling tool, which you e.g. could use to mangle stuff shown in a log file, take a look at c++filt, which comes with binutils. It can demangle C++ and Java symbol names.

share|improve this answer
Just to note, both cxa_demange() (which the code linked to uses) and cx++filt are gcc specific. There is no portable way to do this. – KeithB Nov 11 '08 at 19:57
c++filt doesn't cut it, I need this stuff (or most of it) at compile-time, mostly done with macros. – terminus Nov 11 '08 at 20:11
1  
Link to type_strings.cpp seems broken. – StackedCrooked May 2 '11 at 11:14

It's implementation defined, so it's not something that's going to be portable. In MSVC++, name() is the undecorated name, and you have to look at raw_name() to get the decorated one.
Just a stab in the dark here, but under gcc, you might want to look at demangle.h

share|improve this answer

I also found a macro called __PRETTY_FUNCTION__, which does the trick. It gives a pretty function name (figures :)). This is what I needed.

I.e. it gives me the following:

virtual bool mutex::do_unlock()

But I don't think it works on other compilers.

share|improve this answer
Yes, PRETTY_FUNCTION is gcc specific. – Greg Rogers Nov 11 '08 at 20:33
// KeithB's solution is good, but has one serious flaw in that unless buf is static
// it'll get trashed from the stack before it is returned in res - and will point who-knows-where
// Here's that problem fixed, but the code is still non-re-entrant and not thread-safe.
// Anyone care to improve it?

#include <cxxabi.h>

// todo: javadoc this properly
const char* demangle(const char* name)
{
    static char buf[1024];
    size_t size = sizeof(buf);
    int status;
    // todo:
    char* res = abi::__cxa_demangle (name,
                                 buf,
                                 &size,
                                 &status);
    buf[sizeof(buf) - 1] = 0; // I'd hope __cxa_demangle does this when the name is huge, but just in case.
    return res;
  }
share|improve this answer
2  
WARNING! The buffer has to be either allocated by malloc or specified as NULL. Do NOT allocate it on the stack. See my code below. – Ali Dec 27 '10 at 20:06

I've always wanted to use type_info, but I'm sure that the result of the name() member function is non-standard and won't necessarily return anything that can be converted to a meaningful result.
If you are sticking to one compiler, there maybe a compiler specific function that will do what you want. Check the documentation.

share|improve this answer

Take a look at __cxa_demangle which you can find at cxxabi.h.

share|improve this answer
I took, it's deprecated, according to the message I get. – terminus Nov 11 '08 at 20:10
Where did you find that message? I just googled it and it seems to be supported, no evidence of being deprecated. – Ali Dec 27 '10 at 20:22
Maybe it's deprecated in :: namespace. Use abi::__cxa_demangle and you won't get a warning. What gcc are you using? – onitake Jul 29 '11 at 1:03

Consider using an existing logging library, like log4cxx, instead of writing your own. It handles, among other things, outputting the location of each log line in your desired format. And much more.

share|improve this answer
Yup, log4cxx is awesome, I have tried it. Unfortunately it comes with a HUGE baggage. – Ali Dec 27 '10 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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