P4C
The P4 Compiler
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
backtrace_exception.h
1/*
2Copyright 2019-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_BACKTRACE_EXCEPTION_H_
18#define LIB_BACKTRACE_EXCEPTION_H_
19
20#include <exception>
21#include <string>
22
23#include "config.h"
24
25#if HAVE_EXECINFO_H
26#include <execinfo.h>
27#endif
28
29void backtrace_fill_stacktrace(std::string &msg, void *const *backtrace, int size);
30
31template <class E>
32class backtrace_exception : public E {
33 static constexpr int buffer_size = 64;
34 void *backtrace_buffer[buffer_size];
35 int backtrace_size;
36 mutable std::string message;
37
38 public:
39 template <class... Args>
40 explicit backtrace_exception(Args &&...args) : E(std::forward<Args>(args)...) {
41#if HAVE_EXECINFO_H
42 backtrace_size = backtrace(backtrace_buffer, buffer_size);
43#else
44 backtrace_size = 0;
45#endif
46 }
47
48 const char *what() const noexcept {
49 try {
50 message = E::what();
51 if (backtrace_size > 0)
52 backtrace_fill_stacktrace(message, backtrace_buffer, backtrace_size);
53 return message.c_str();
54 } catch (...) {
55 }
56 return E::what();
57 }
58};
59
60#endif /* LIB_BACKTRACE_EXCEPTION_H_ */
Definition backtrace_exception.h:32