#include "TraceCollector.h" #include #include #include #include #include #include #include #include #include #include #include namespace DB { LazyPipe trace_pipe; namespace ErrorCodes { extern const int NULL_POINTER_DEREFERENCE; extern const int THREAD_IS_NOT_JOINABLE; } TraceCollector::TraceCollector(std::shared_ptr & trace_log) : log(&Poco::Logger::get("TraceCollector")) , trace_log(trace_log) { if (trace_log == nullptr) throw Exception("Invalid trace log pointer passed", ErrorCodes::NULL_POINTER_DEREFERENCE); trace_pipe.open(); thread = ThreadFromGlobalPool(&TraceCollector::run, this); } TraceCollector::~TraceCollector() { if (!thread.joinable()) LOG_ERROR(log, "TraceCollector thread is malformed and cannot be joined"); else { TraceCollector::notifyToStop(); thread.join(); } trace_pipe.close(); } /** * Sends TraceCollector stop message * * Each sequence of data for TraceCollector thread starts with a boolean flag. * If this flag is true, TraceCollector must stop reading trace_pipe and exit. * This function sends flag with a true value to stop TraceCollector gracefully. * * NOTE: TraceCollector will NOT stop immediately as there may be some data left in the pipe * before stop message. */ void TraceCollector::notifyToStop() { WriteBufferFromFileDescriptor out(trace_pipe.fds_rw[1]); writeChar(true, out); out.next(); } void TraceCollector::run() { ReadBufferFromFileDescriptor in(trace_pipe.fds_rw[0]); while (true) { char is_last; readChar(is_last, in); if (is_last) break; std::string query_id; StackTrace stack_trace(NoCapture{}); TimerType timer_type; readStringBinary(query_id, in); readPODBinary(stack_trace, in); readPODBinary(timer_type, in); const auto size = stack_trace.getSize(); const auto & frames = stack_trace.getFrames(); Array trace; trace.reserve(size); for (size_t i = 0; i < size; i++) trace.emplace_back(UInt64(reinterpret_cast(frames[i]))); TraceLogElement element{std::time(nullptr), timer_type, query_id, trace}; trace_log->add(element); } } }