mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
96 lines
2.3 KiB
C++
96 lines
2.3 KiB
C++
#include <memory>
|
|
|
|
#include "CurrentThread.h"
|
|
#include <common/logger_useful.h>
|
|
#include <Common/ThreadStatus.h>
|
|
#include <Common/TaskStatsInfoGetter.h>
|
|
#include <Interpreters/ProcessList.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <common/getThreadId.h>
|
|
#include <Poco/Logger.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
void CurrentThread::updatePerformanceCounters()
|
|
{
|
|
if (unlikely(!current_thread))
|
|
return;
|
|
current_thread->updatePerformanceCounters();
|
|
}
|
|
|
|
bool CurrentThread::isInitialized()
|
|
{
|
|
return current_thread;
|
|
}
|
|
|
|
ThreadStatus & CurrentThread::get()
|
|
{
|
|
if (unlikely(!current_thread))
|
|
throw Exception("Thread #" + std::to_string(getThreadId()) + " status was not initialized", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
return *current_thread;
|
|
}
|
|
|
|
ProfileEvents::Counters & CurrentThread::getProfileEvents()
|
|
{
|
|
return current_thread ? current_thread->performance_counters : ProfileEvents::global_counters;
|
|
}
|
|
|
|
MemoryTracker * CurrentThread::getMemoryTracker()
|
|
{
|
|
if (unlikely(!current_thread))
|
|
return nullptr;
|
|
return ¤t_thread->memory_tracker;
|
|
}
|
|
|
|
void CurrentThread::updateProgressIn(const Progress & value)
|
|
{
|
|
if (unlikely(!current_thread))
|
|
return;
|
|
current_thread->progress_in.incrementPiecewiseAtomically(value);
|
|
}
|
|
|
|
void CurrentThread::updateProgressOut(const Progress & value)
|
|
{
|
|
if (unlikely(!current_thread))
|
|
return;
|
|
current_thread->progress_out.incrementPiecewiseAtomically(value);
|
|
}
|
|
|
|
void CurrentThread::attachInternalTextLogsQueue(const std::shared_ptr<InternalTextLogsQueue> & logs_queue,
|
|
LogsLevel client_logs_level)
|
|
{
|
|
if (unlikely(!current_thread))
|
|
return;
|
|
current_thread->attachInternalTextLogsQueue(logs_queue, client_logs_level);
|
|
}
|
|
|
|
std::shared_ptr<InternalTextLogsQueue> CurrentThread::getInternalTextLogsQueue()
|
|
{
|
|
/// NOTE: this method could be called at early server startup stage
|
|
if (unlikely(!current_thread))
|
|
return nullptr;
|
|
|
|
if (current_thread->getCurrentState() == ThreadStatus::ThreadState::Died)
|
|
return nullptr;
|
|
|
|
return current_thread->getInternalTextLogsQueue();
|
|
}
|
|
|
|
ThreadGroupStatusPtr CurrentThread::getGroup()
|
|
{
|
|
if (unlikely(!current_thread))
|
|
return nullptr;
|
|
|
|
return current_thread->getThreadGroup();
|
|
}
|
|
|
|
}
|