diff --git a/extras/Hadrons/Environment.cc b/extras/Hadrons/Environment.cc index 600ca855..60d8da00 100644 --- a/extras/Hadrons/Environment.cc +++ b/extras/Hadrons/Environment.cc @@ -250,7 +250,7 @@ std::string Environment::getModuleType(const unsigned int address) const { if (hasModule(address)) { - return module_[address].type->name(); + return typeName(module_[address].type); } else { @@ -473,7 +473,7 @@ std::string Environment::getObjectType(const unsigned int address) const { if (hasRegisteredObject(address)) { - return object_[address].type->name(); + return typeName(object_[address].type); } else if (hasObject(address)) { @@ -689,8 +689,7 @@ void Environment::printContent(void) for (unsigned int i = 0; i < module_.size(); ++i) { LOG(Message) << std::setw(4) << i << ": " - << getModuleName(i) << " (" - << getModuleType(i) << ")" << std::endl; + << getModuleName(i) << std::endl; } LOG(Message) << "Objects: " << std::endl; for (unsigned int i = 0; i < object_.size(); ++i) diff --git a/extras/Hadrons/Global.cc b/extras/Hadrons/Global.cc index 62997e1f..5c915172 100644 --- a/extras/Hadrons/Global.cc +++ b/extras/Hadrons/Global.cc @@ -63,3 +63,18 @@ std::string Hadrons::sizeString(long unsigned int bytes) return std::string(buf); } + +// type utilities ////////////////////////////////////////////////////////////// +constexpr unsigned int maxNameSize = 1024u; + +std::string Hadrons::typeName(const std::type_info *info) +{ + char *buf; + std::string name; + + buf = abi::__cxa_demangle(info->name(), nullptr, nullptr, nullptr); + name = buf; + free(buf); + + return name; +} diff --git a/extras/Hadrons/Global.hpp b/extras/Hadrons/Global.hpp index 3107ef12..1ecbe7cf 100644 --- a/extras/Hadrons/Global.hpp +++ b/extras/Hadrons/Global.hpp @@ -31,6 +31,7 @@ directory. #include #include #include +#include #define BEGIN_HADRONS_NAMESPACE \ namespace Grid {\ @@ -56,11 +57,6 @@ using Grid::operator<<; BEGIN_HADRONS_NAMESPACE // type aliases -//typedef FermionOperator FMat; -//typedef FIMPL::FermionField FermionField; -//typedef FIMPL::PropagatorField PropagatorField; -//typedef std::function SolverFn; - #define TYPE_ALIASES(FImpl, suffix)\ typedef FermionOperator FMat##suffix; \ typedef typename FImpl::FermionField FermionField##suffix; \ @@ -120,34 +116,33 @@ private:\ // pretty size formating std::string sizeString(long unsigned int bytes); -template -std::string typeName(const T &x) -{ - std::string name(typeid(x).name()); - - return name; -} - -template -std::string typeName(void) -{ - std::string name(typeid(T).name()); - - return name; -} - +// type utilities template const std::type_info * typeIdPt(const T &x) { return &typeid(x); } +std::string typeName(const std::type_info *info); + template -const std::type_info * typeName(void) +const std::type_info * typeIdPt(void) { return &typeid(T); } +template +std::string typeName(const T &x) +{ + return typeName(typeIdPt(x)); +} + +template +std::string typeName(void) +{ + return typeName(typeIdPt()); +} + END_HADRONS_NAMESPACE #endif // Hadrons_Global_hpp_