ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkThreadPool.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkThreadPool_h
19#define itkThreadPool_h
20
21#include "itkConfigure.h"
22#include "itkIntTypes.h"
23
24#include <deque>
25#include <functional>
26#include <future>
27#include <condition_variable>
28#include <thread>
29
30#include "itkObject.h"
31#include "itkObjectFactory.h"
32#include "itkSingletonMacro.h"
33
34
35namespace itk
36{
37
52
53struct ThreadPoolGlobals;
54
55class ITKCommon_EXPORT ThreadPool : public Object
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(ThreadPool);
59
65
67 itkOverrideGetNameOfClassMacro(ThreadPool);
68
70 static Pointer
71 New();
72
74 static Pointer
76
85 template <class Function, class... Arguments>
86 auto
87 AddWork(Function && function, Arguments &&... arguments) -> std::future<std::invoke_result_t<Function, Arguments...>>
88 {
89 using return_type = std::invoke_result_t<Function, Arguments...>;
90
91 auto task = std::make_shared<std::packaged_task<return_type()>>(
92 [function, arguments...]() -> return_type { return function(arguments...); });
93
94 std::future<return_type> res = task->get_future();
95 {
96 const std::lock_guard<std::mutex> lockGuard(this->GetMutex());
97 m_WorkQueue.emplace_back([task]() { (*task)(); });
98 }
99 m_Condition.notify_one();
100 return res;
101 }
102
104 void
106
109 {
110 const std::lock_guard<std::mutex> lockGuard(this->GetMutex());
111 return static_cast<ThreadIdType>(m_Threads.size());
112 }
113
115 int
117
123 static bool
125 static void
126 SetDoNotWaitForThreads(bool doNotWaitForThreads);
128protected:
131 std::mutex &
132 GetMutex() const;
133
135
137 void
139
140 ~ThreadPool() override { this->CleanUp(); }
141
142 static void
144 static void
146
147private:
149 itkGetGlobalDeclarationMacro(ThreadPoolGlobals, PimplGlobals);
150
154 std::deque<std::function<void()>> m_WorkQueue; // guarded by m_PimplGlobals->m_Mutex
155
158 std::condition_variable m_Condition;
159
162 std::vector<std::thread> m_Threads; // guarded by m_PimplGlobals->m_Mutex
163
164 /* Has destruction started? */
165 bool m_Stopping{ false }; // guarded by m_PimplGlobals->m_Mutex
166
168 static ThreadPoolGlobals * m_PimplGlobals;
169
171 static void
173};
174
175} // namespace itk
176#endif
Implements transparent reference counting.
SmartPointer< const Self > ConstPointer
static Pointer New()
itkGetGlobalDeclarationMacro(ThreadPoolGlobals, PimplGlobals)
static void ThreadExecute()
~ThreadPool() override
static Pointer GetInstance()
static bool GetDoNotWaitForThreads()
ThreadIdType GetMaximumNumberOfThreads() const
SmartPointer< Self > Pointer
static void SetDoNotWaitForThreads(bool doNotWaitForThreads)
static void ResumeFromFork()
static void PrepareForFork()
std::mutex & GetMutex() const
std::vector< std::thread > m_Threads
auto AddWork(Function &&function, Arguments &&... arguments) -> std::future< std::invoke_result_t< Function, Arguments... > >
int GetNumberOfCurrentlyIdleThreads() const
std::deque< std::function< void()> > m_WorkQueue
static ThreadPoolGlobals * m_PimplGlobals
void AddThreads(ThreadIdType count)
ThreadPool Self
std::condition_variable m_Condition
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType