ros2_tracing/tracetools/src/utils.cpp

46 lines
1.3 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.
#if defined(TRACETOOLS_LTTNG_ENABLED) && !defined(_WIN32)
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
2019-06-05 15:35:46 +02:00
const char * get_symbol(void * funptr)
{
2019-06-04 16:37:11 +02:00
#define SYMBOL_UNKNOWN "UNKNOWN"
#if defined(TRACETOOLS_LTTNG_ENABLED) && !defined(_WIN32)
2019-06-04 16:37:11 +02:00
#define SYMBOL_LAMBDA "[lambda]"
2019-06-05 15:35:46 +02:00
if (funptr == 0) {
return SYMBOL_LAMBDA;
}
2019-06-04 16:37:11 +02:00
2019-06-05 15:35:46 +02:00
Dl_info info;
if (dladdr(funptr, &info) == 0) {
return SYMBOL_UNKNOWN;
}
2019-06-04 16:37:11 +02:00
2019-06-05 15:35:46 +02:00
char * demangled = nullptr;
int status;
demangled = abi::__cxa_demangle(info.dli_sname, NULL, 0, &status);
// Use demangled symbol if possible
const char * demangled_val = (status == 0 ? demangled : info.dli_sname);
return demangled_val != 0 ? demangled_val : SYMBOL_UNKNOWN;
2019-06-04 16:37:11 +02:00
#else
(void)funptr;
2019-06-04 16:37:11 +02:00
return SYMBOL_UNKNOWN;
#endif
}