ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSimpleFilterWatcher.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 itkSimpleFilterWatcher_h
19#define itkSimpleFilterWatcher_h
20
21#include "itkCommand.h"
22#include "itkProcessObject.h"
23#include "itkTimeProbe.h"
24#include <mutex>
25
26namespace itk
27{
68class ITKCommon_EXPORT SimpleFilterWatcher
69{
70public:
73 SimpleFilterWatcher(itk::ProcessObject * o, const char * comment = "");
74
77
81
85
88
91 const char *
93 {
94 return (m_Process ? m_Process->GetNameOfClass() : "None");
95 }
96
100 void
102 {
103 m_Quiet = true;
104 }
105 void
107 {
108 m_Quiet = false;
109 }
110
111
116 void
118 {
119 m_TestAbort = true;
120 }
121 void
123 {
124 m_TestAbort = false;
125 }
126
127
129
133 {
134 return m_Process.GetPointer();
135 }
136
139 void
140 SetSteps(int val)
141 {
142 m_Steps = val;
143 }
144 int
145 GetSteps() const
146 {
147 return m_Steps;
148 }
149
150
153 void
155 {
156 m_Iterations = val;
157 }
158 int
160 {
161 return m_Iterations;
162 }
163
164
168 void
169 SetQuiet(bool val)
170 {
171 m_Quiet = val;
172 }
173 bool
174 GetQuiet() const
175 {
176 return m_Quiet;
177 }
178
179
181 std::string
183 {
184 return m_Comment;
185 }
186
188 TimeProbe &
190 {
191 return m_TimeProbe;
192 }
193
194protected:
196 virtual void
198 {
199 if (m_Process)
200 {
201 const std::lock_guard<std::mutex> lockGuard(m_ProgressOutput);
202 ++m_Steps;
203 if (!m_Quiet)
204 {
205 std::cout << " | " << m_Process->GetProgress() << std::flush;
206 if ((m_Steps % 10) == 0)
207 {
208 std::cout << std::endl;
209 }
210 }
211 if (m_TestAbort)
212 {
213 if (m_Process->GetProgress() > .03)
214 {
215 m_Process->AbortGenerateDataOn();
216 }
217 }
218 }
219 }
220
222 void
224
226 void
228
230 void
232
234 virtual void
236 {
237 std::cout << std::endl << "-------Aborted" << std::endl << std::flush;
238 }
239
241 virtual void
243 {
244 std::cout << " #" << std::flush;
245 ++m_Iterations;
246 }
247
249 virtual void
251 {
252 m_Steps = 0;
253 m_Iterations = 0;
254 m_TimeProbe.Start();
255 std::cout << "-------- Start " << (m_Process.GetPointer() ? m_Process->GetNameOfClass() : "None") << " \""
256 << m_Comment << "\" ";
257 if (!m_Quiet)
258 {
259 if (m_Process)
260 {
261 std::cout << m_Process;
262 }
263 else
264 {
265 std::cout << "Null";
266 }
267 }
268 std::cout << (m_Quiet ? "Progress Quiet " : "Progress ") << std::flush;
269 }
270
272 virtual void
274 {
275 m_TimeProbe.Stop();
276 std::cout << std::endl
277 << "Filter took " << m_TimeProbe.GetMean() << " seconds." << std::endl
278 << "-------- End " << (m_Process.GetPointer() ? m_Process->GetNameOfClass() : "None") << " \""
279 << m_Comment << "\" " << std::endl;
280 if (!m_Quiet)
281 {
282 if (m_Process)
283 {
284 std::cout << m_Process;
285 }
286 else
287 {
288 std::cout << "None";
289 }
290 std::cout << std::flush;
291 }
292 if (m_Steps < 1)
293 {
294 itkExceptionMacro("Filter does not have progress.");
295 }
296 }
297
298private:
300 int m_Steps{ 0 };
301 int m_Iterations{ 0 };
302 bool m_Quiet{ false };
303 bool m_TestAbort{ false };
304 std::string m_Comment{};
306 std::mutex m_ProgressOutput{};
307
314
315 unsigned long m_StartTag{ 0 };
316 unsigned long m_EndTag{ 0 };
317 unsigned long m_ProgressTag{ 0 };
318 unsigned long m_IterationTag{ 0 };
319 unsigned long m_AbortTag{ 0 };
320};
321} // end namespace itk
322
323#endif
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
SmartPointer< Self > Pointer
itk::ProcessObject::Pointer m_Process
void DeepCopy(const SimpleFilterWatcher &watch)
CommandType::Pointer m_StartFilterCommand
CommandType::Pointer m_AbortFilterCommand
SimpleFilterWatcher(const SimpleFilterWatcher &)
CommandType::Pointer m_EndFilterCommand
SimpleFilterWatcher(itk::ProcessObject *o, const char *comment="")
SimpleFilterWatcher & operator=(const SimpleFilterWatcher &)
SimpleMemberCommand< SimpleFilterWatcher > CommandType
CommandType::Pointer m_IterationFilterCommand
CommandType::Pointer m_ProgressFilterCommand
A Command subclass that calls a pointer to a member function.
Definition itkCommand.h:229
Computes the time passed between two points in code.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....