ros2_tracing/tracetools/src/utils.cpp

51 lines
1.4 KiB
C++
Raw Normal View History

2019-06-18 09:10:05 +02:00
// Copyright 2019 Robert Bosch GmbH
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "tracetools/config.h"
#ifdef TRACETOOLS_LTTNG_ENABLED
2019-06-04 16:37:11 +02:00
#include <dlfcn.h>
#include <cxxabi.h>
#endif
2019-06-05 15:35:46 +02:00
#include "tracetools/utils.hpp"
2019-06-04 16:37:11 +02:00
const char * _demangle_symbol(const char * mangled)
2019-06-05 15:35:46 +02:00
{
#ifdef TRACETOOLS_LTTNG_ENABLED
2019-06-05 15:35:46 +02:00
char * demangled = nullptr;
int status;
demangled = abi::__cxa_demangle(mangled, NULL, 0, &status);
2019-06-05 15:35:46 +02:00
// Use demangled symbol if possible
const char * demangled_val = (status == 0 ? demangled : mangled);
return demangled_val != 0 ? demangled_val : "UNKNOWN_demangling_failed";
2019-06-04 16:37:11 +02:00
#else
(void)mangled;
return "DISABLED__demangle_symbol";
#endif
}
const char * _get_symbol_funcptr(void * funcptr)
{
#ifdef TRACETOOLS_LTTNG_ENABLED
Dl_info info;
if (dladdr(funcptr, &info) == 0) {
return SYMBOL_UNKNOWN;
}
return _demangle_symbol(info.dli_sname);
#else
(void)funcptr;
return "DISABLED__get_symbol_funcptr";
2019-06-04 16:37:11 +02:00
#endif
}