mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
88 lines
1.3 KiB
C++
88 lines
1.3 KiB
C++
//
|
|
// ThreadLocal.cpp
|
|
//
|
|
// $Id: //poco/1.4/Foundation/src/ThreadLocal.cpp#1 $
|
|
//
|
|
// Library: Foundation
|
|
// Package: Threading
|
|
// Module: Thread
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/ThreadLocal.h"
|
|
#include "Poco/SingletonHolder.h"
|
|
#include "Poco/Thread.h"
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
TLSAbstractSlot::TLSAbstractSlot()
|
|
{
|
|
}
|
|
|
|
|
|
TLSAbstractSlot::~TLSAbstractSlot()
|
|
{
|
|
}
|
|
|
|
|
|
ThreadLocalStorage::ThreadLocalStorage()
|
|
{
|
|
}
|
|
|
|
|
|
ThreadLocalStorage::~ThreadLocalStorage()
|
|
{
|
|
for (TLSMap::iterator it = _map.begin(); it != _map.end(); ++it)
|
|
{
|
|
delete it->second;
|
|
}
|
|
}
|
|
|
|
|
|
TLSAbstractSlot*& ThreadLocalStorage::get(const void* key)
|
|
{
|
|
TLSMap::iterator it = _map.find(key);
|
|
if (it == _map.end())
|
|
return _map.insert(TLSMap::value_type(key, reinterpret_cast<Poco::TLSAbstractSlot*>(0))).first->second;
|
|
else
|
|
return it->second;
|
|
}
|
|
|
|
|
|
namespace
|
|
{
|
|
static SingletonHolder<ThreadLocalStorage> sh;
|
|
}
|
|
|
|
|
|
ThreadLocalStorage& ThreadLocalStorage::current()
|
|
{
|
|
Thread* pThread = Thread::current();
|
|
if (pThread)
|
|
{
|
|
return pThread->tls();
|
|
}
|
|
else
|
|
{
|
|
return *sh.get();
|
|
}
|
|
}
|
|
|
|
|
|
void ThreadLocalStorage::clear()
|
|
{
|
|
Thread* pThread = Thread::current();
|
|
if (pThread)
|
|
pThread->clearTLS();
|
|
}
|
|
|
|
|
|
} // namespace Poco
|