ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkPlatformMultiThreader.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/*=========================================================================
19 *
20 * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21 *
22 * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23 *
24 * For complete copyright, license and disclaimer of warranty information
25 * please refer to the NOTICE file at the top of the ITK source tree.
26 *
27 *=========================================================================*/
28#ifndef itkPlatformMultiThreader_h
29#define itkPlatformMultiThreader_h
30
32#include <mutex>
33#include <memory>
34
35namespace itk
36{
49
50class ITKCommon_EXPORT PlatformMultiThreader : public MultiThreaderBase
51{
52public:
53 ITK_DISALLOW_COPY_AND_MOVE(PlatformMultiThreader);
54
60
62 itkNewMacro(Self);
63
65 itkOverrideGetNameOfClassMacro(PlatformMultiThreader);
66
67#if !defined(ITK_LEGACY_REMOVE)
74 itkLegacyMacro(static void SetGlobalMaximumNumberOfThreads(ThreadIdType val))
75 {
76 itkGenericOutputMacro("Warning: SetGlobalMaximumNumberOfThreads should now be called on itk::MultiThreaderBase. It "
77 "can affect all MultiThreaderBase's derived classes in ITK");
79 }
80 itkLegacyMacro(static ThreadIdType GetGlobalMaximumNumberOfThreads())
81 {
82 itkGenericOutputMacro("Warning: GetGlobalMaximumNumberOfThreads should now be called on itk::MultiThreaderBase. It "
83 "can affect all MultiThreaderBase's derived classes in ITK");
84 return Superclass::GetGlobalMaximumNumberOfThreads();
85 }
87
93 itkLegacyMacro(static void SetGlobalDefaultNumberOfThreads(ThreadIdType val))
94 {
95 itkGenericOutputMacro("Warning: SetGlobalDefaultNumberOfThreads should now be called on itk::MultiThreaderBase. It "
96 "can affect all MultiThreaderBase's derived classes in ITK");
97 Superclass::SetGlobalDefaultNumberOfThreads(val);
98 }
99 itkLegacyMacro(static ThreadIdType GetGlobalDefaultNumberOfThreads())
100 {
101 itkGenericOutputMacro("Warning: GetGlobalDefaultNumberOfThreads should now be called on itk::MultiThreaderBase. It "
102 "can affect all MultiThreaderBase's derived classes in ITK");
103 return Superclass::GetGlobalDefaultNumberOfThreads();
104 }
106#endif
107
112 void
114
119 itkLegacyMacro(void MultipleMethodExecute();)
120
126 void
127 SetSingleMethod(ThreadFunctionType, void * data) override;
128
131 itkLegacyMacro(void SetMultipleMethod(ThreadIdType index, ThreadFunctionType, void * data);)
132
137 itkLegacyMacro(ThreadIdType SpawnThread(ThreadFunctionType, void * data);)
138
141 itkLegacyMacro(void TerminateThread(ThreadIdType thread_id);)
142
143 void
144 SetMaximumNumberOfThreads(ThreadIdType numberOfThreads) override;
145 void
146 SetNumberOfWorkUnits(ThreadIdType numberOfWorkUnits) override;
147
149 {
150 int * ActiveFlag = nullptr;
151 std::shared_ptr<std::mutex> ActiveFlagLock;
152 };
153
154protected:
157 void
158 PrintSelf(std::ostream & os, Indent indent) const override;
159
160private:
165
169 std::shared_ptr<std::mutex> m_SpawnedThreadActiveFlagMutex[ITK_MAX_THREADS]{};
172
173#if !defined(ITK_LEGACY_REMOVE)
175 ThreadFunctionType m_MultipleMethod[ITK_MAX_THREADS]{};
176
178 void * m_MultipleData[ITK_MAX_THREADS]{};
179#endif
180
184
187
191 friend class ProcessObject;
192};
193} // end namespace itk
194#endif // itkPlatformMultiThreader_h
Control indentation during Print() invocation.
Definition itkIndent.h:50
static void SetGlobalMaximumNumberOfThreads(ThreadIdType val)
int m_SpawnedThreadActiveFlag[ITK_MAX_THREADS]
ThreadProcessIdType m_SpawnedThreadProcessID[ITK_MAX_THREADS]
void TerminateThread(ThreadIdType thread_id)
void SetMultipleMethod(ThreadIdType index, ThreadFunctionType, void *data)
ThreadProcessIdType SpawnDispatchSingleMethodThread(WorkUnitInfo *)
ThreadIdType SpawnThread(ThreadFunctionType, void *data)
void SetSingleMethod(ThreadFunctionType, void *data) override
void SetMaximumNumberOfThreads(ThreadIdType numberOfThreads) override
SmartPointer< const Self > ConstPointer
void SpawnWaitForSingleMethodThread(ThreadProcessIdType)
void SingleMethodExecute() override
void SetNumberOfWorkUnits(ThreadIdType numberOfWorkUnits) override
WorkUnitInfo m_ThreadInfoArray[ITK_MAX_THREADS]
std::shared_ptr< std::mutex > m_SpawnedThreadActiveFlagMutex[ITK_MAX_THREADS]
WorkUnitInfo m_SpawnedThreadInfoArray[ITK_MAX_THREADS]
void PrintSelf(std::ostream &os, Indent indent) const override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType
constexpr vcl_size_t ITK_MAX_THREADS
void(*)(void *) ThreadFunctionType
int ThreadProcessIdType