ClickHouse/dbms/src/Common/StackTrace.h

53 lines
1.3 KiB
C++
Raw Normal View History

2019-07-01 22:11:11 +00:00
#pragma once
#include <string>
#include <vector>
#include <array>
#include <optional>
#include <signal.h>
#ifdef __APPLE__
// ucontext is not available without _XOPEN_SOURCE
#define _XOPEN_SOURCE 700
2019-07-01 22:11:11 +00:00
#endif
#include <ucontext.h>
struct NoCapture
{
};
/// Tries to capture current stack trace using libunwind or signal context
2019-07-25 19:54:43 +00:00
/// NOTE: StackTrace calculation is signal safe only if updatePHDRCache() was called beforehand.
2019-07-01 22:11:11 +00:00
class StackTrace
{
public:
static constexpr size_t capacity = 32;
using Frames = std::array<void *, capacity>;
/// Tries to capture stack trace
StackTrace();
/// Tries to capture stack trace. Fallbacks on parsing caller address from
/// signal context if no stack trace could be captured
StackTrace(const ucontext_t & signal_context);
/// Creates empty object for deferred initialization
StackTrace(NoCapture);
size_t getSize() const;
size_t getOffset() const;
2019-07-01 22:11:11 +00:00
const Frames & getFrames() const;
std::string toString() const;
void toStringEveryLine(std::function<void(const std::string &)> callback) const;
2019-07-01 22:11:11 +00:00
protected:
void tryCapture();
2019-07-03 15:23:46 +00:00
size_t size = 0;
size_t offset = 0; /// How many frames to skip while displaying.
2019-07-24 23:11:00 +00:00
Frames frames{};
2019-07-01 22:11:11 +00:00
};
std::string signalToErrorMessage(int sig, const siginfo_t & info, const ucontext_t & context);