blob: 3cc03f6966a75cc7a0660e49906c7488ca9031ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
//
// ThreadLocal.cpp
//
// 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
|