2019-03-04 13:03:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-07-10 20:47:39 +00:00
|
|
|
#include <Core/Types.h>
|
2019-08-17 22:53:46 +00:00
|
|
|
#include <common/config_common.h>
|
2019-03-04 13:03:32 +00:00
|
|
|
#include <signal.h>
|
2019-03-04 13:45:37 +00:00
|
|
|
#include <time.h>
|
2019-03-04 13:03:32 +00:00
|
|
|
|
2019-07-25 22:35:47 +00:00
|
|
|
|
2019-03-04 13:03:32 +00:00
|
|
|
namespace Poco
|
|
|
|
{
|
|
|
|
class Logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class TimerType : UInt8
|
|
|
|
{
|
|
|
|
Real,
|
|
|
|
Cpu,
|
|
|
|
};
|
|
|
|
|
2019-07-05 13:48:47 +00:00
|
|
|
/**
|
|
|
|
* Query profiler implementation for selected thread.
|
|
|
|
*
|
|
|
|
* This class installs timer and signal handler on creation to:
|
|
|
|
* 1. periodically pause given thread
|
|
|
|
* 2. collect thread's current stack trace
|
|
|
|
* 3. write collected stack trace to trace_pipe for TraceCollector
|
|
|
|
*
|
|
|
|
* Desctructor tries to unset timer and restore previous signal handler.
|
|
|
|
* Note that signal handler implementation is defined by template parameter. See QueryProfilerReal and QueryProfilerCpu.
|
|
|
|
*/
|
2019-03-04 13:03:32 +00:00
|
|
|
template <typename ProfilerImpl>
|
|
|
|
class QueryProfilerBase
|
|
|
|
{
|
|
|
|
public:
|
2019-08-03 11:02:40 +00:00
|
|
|
QueryProfilerBase(const Int32 thread_id, const int clock_type, UInt32 period, const int pause_signal_);
|
2019-07-10 20:47:39 +00:00
|
|
|
~QueryProfilerBase();
|
2019-03-04 13:03:32 +00:00
|
|
|
|
|
|
|
private:
|
2019-07-10 20:47:39 +00:00
|
|
|
void tryCleanup();
|
|
|
|
|
2019-03-04 13:03:32 +00:00
|
|
|
Poco::Logger * log;
|
|
|
|
|
2019-08-17 22:53:46 +00:00
|
|
|
#if USE_INTERNAL_UNWIND_LIBRARY
|
2019-03-04 13:03:32 +00:00
|
|
|
/// Timer id from timer_create(2)
|
|
|
|
timer_t timer_id = nullptr;
|
2019-08-17 22:53:46 +00:00
|
|
|
#endif
|
2019-03-04 13:03:32 +00:00
|
|
|
|
|
|
|
/// Pause signal to interrupt threads to get traces
|
|
|
|
int pause_signal;
|
|
|
|
|
|
|
|
/// Previous signal handler to restore after query profiler exits
|
|
|
|
struct sigaction * previous_handler = nullptr;
|
|
|
|
};
|
|
|
|
|
2019-07-05 13:48:47 +00:00
|
|
|
/// Query profiler with timer based on real clock
|
2019-03-04 13:03:32 +00:00
|
|
|
class QueryProfilerReal : public QueryProfilerBase<QueryProfilerReal>
|
|
|
|
{
|
|
|
|
public:
|
2019-07-10 20:47:39 +00:00
|
|
|
QueryProfilerReal(const Int32 thread_id, const UInt32 period);
|
|
|
|
|
|
|
|
static void signalHandler(int sig, siginfo_t * info, void * context);
|
2019-03-04 13:03:32 +00:00
|
|
|
};
|
|
|
|
|
2019-07-05 13:48:47 +00:00
|
|
|
/// Query profiler with timer based on CPU clock
|
2019-03-04 13:03:32 +00:00
|
|
|
class QueryProfilerCpu : public QueryProfilerBase<QueryProfilerCpu>
|
|
|
|
{
|
|
|
|
public:
|
2019-07-10 20:47:39 +00:00
|
|
|
QueryProfilerCpu(const Int32 thread_id, const UInt32 period);
|
|
|
|
|
|
|
|
static void signalHandler(int sig, siginfo_t * info, void * context);
|
2019-03-04 13:03:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|