Newer
Older
Oliver Sander
committed
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_CLASSNAME_HH
#define DUNE_CLASSNAME_HH
/** \file
* \brief A free function to provide the demangled class name
* of a given object or type as a string
Oliver Sander
committed
*/
#include <cstdlib>
#include <string>
#include <typeinfo>
#if HAVE_CXA_DEMANGLE
Oliver Sander
committed
#include <cxxabi.h>
#endif // #if HAVE_CXA_DEMANGLE
Oliver Sander
committed
namespace Dune {
/** \brief Provide the demangled class name of a given object as a string */
template <class T>
std::string className ( T &t )
Oliver Sander
committed
{
std::string className = typeid( t ).name();
#if HAVE_CXA_DEMANGLE
Oliver Sander
committed
int status;
char *demangled = abi::__cxa_demangle( className.c_str(), 0, 0, &status );
if( demangled )
{
className = demangled;
std::free( demangled );
}
#endif // #if HAVE_CXA_DEMANGLE
return className;
Oliver Sander
committed
/** \brief Provide the demangled class name of a type T as a string */
template <class T>
std::string className ()
std::string className = typeid( T ).name();
#if HAVE_CXA_DEMANGLE
char *demangled = abi::__cxa_demangle( className.c_str(), 0, 0, &status );
if( demangled )
{
className = demangled;
std::free( demangled );
}
#endif // #if HAVE_CXA_DEMANGLE
return className;
} // namespace Dune
Oliver Sander
committed
#endif // DUNE_CLASSNAME_HH