PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Thread.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/Thread.h - Released 2025-02-21T12:13:32Z
8 // ----------------------------------------------------------------------------
9 // This file is part of the PixInsight Class Library (PCL).
10 // PCL is a multiplatform C++ framework for development of PixInsight modules.
11 //
12 // Copyright (c) 2003-2025 Pleiades Astrophoto S.L. All Rights Reserved.
13 //
14 // Redistribution and use in both source and binary forms, with or without
15 // modification, is permitted provided that the following conditions are met:
16 //
17 // 1. All redistributions of source code must retain the above copyright
18 // notice, this list of conditions and the following disclaimer.
19 //
20 // 2. All redistributions in binary form must reproduce the above copyright
21 // notice, this list of conditions and the following disclaimer in the
22 // documentation and/or other materials provided with the distribution.
23 //
24 // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
25 // of their contributors, may be used to endorse or promote products derived
26 // from this software without specific prior written permission. For written
27 // permission, please contact info@pixinsight.com.
28 //
29 // 4. All products derived from this software, in any form whatsoever, must
30 // reproduce the following acknowledgment in the end-user documentation
31 // and/or other materials provided with the product:
32 //
33 // "This product is based on software from the PixInsight project, developed
34 // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
35 //
36 // Alternatively, if that is where third-party acknowledgments normally
37 // appear, this acknowledgment must be reproduced in the product itself.
38 //
39 // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
40 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
43 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
45 // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
46 // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 // POSSIBILITY OF SUCH DAMAGE.
50 // ----------------------------------------------------------------------------
51 
52 #ifndef __PCL_Thread_h
53 #define __PCL_Thread_h
54 
56 
57 #include <pcl/Defs.h>
58 
59 #include <pcl/String.h>
60 #include <pcl/UIObject.h>
61 
62 namespace pcl
63 {
64 
65 // ----------------------------------------------------------------------------
66 
71 // ----------------------------------------------------------------------------
72 
98 namespace ThreadPriority
99 {
100  enum value_type
101  {
102  Inherit, // Inherit caller's thread priority.
103  Idle, // Schedule when no other threads are busy.
104  Lowest,
105  Low,
106  Normal, // Standard thread priority.
107  High,
108  Highest, // Schedule as often as possible.
109  TimeCritical, // Schedule as often as possible, taking precedence over any other threads.
110  DefaultMax = Highest
111  };
112 }
113 
114 // ----------------------------------------------------------------------------
115 
160 namespace PerformanceAnalysisAlgorithm
161 {
162  enum value_type
163  {
164  Unknown = 0,
165 
166  /*
167  * Statistical estimators / fundamental math algorithms
168  */
169  FastMedian = 1001,
170  FastMAD = 1002,
171  NoiseMRS = 1003,
172 
173  /*
174  * Image performance-critical routines
175  */
176  Sampling = 2001,
177  MinMax = 2002,
178  Sum = 2003,
179  BiweightMidvariance = 2004,
180  ColorSpaceConversion = 2005,
181  GetLightness = 2006,
182  GetIntensity = 2007,
183  HistogramGeneration = 2008,
184  HistogramTransformation = 2009,
185  PSFFit = 2010,
186 
187  /*
188  * Kernel-based transformations
189  */
190  Convolution = 3001,
191  MorphologicalMedian = 3002,
192 
193  /*
194  * Separable transformations
195  */
196  SeparableConvolution_Rows = 4001,
197  SeparableConvolution_Cols = 4002,
198  FFT2D = 4003,
199  FFT2D_Real = 4004,
200 
201  /*
202  * Geometric transformations
203  */
204  Resample = 5001,
205  Rotation = 5002,
206  AstrometricReprojection = 5003,
207 
208  /*
209  * Bitmap rendering algorithms
210  */
211  Render = 6001,
212  FastRender = 6002,
213 
214  /*
215  * Algorithm selection (optimized convolutions, by kernel size)
216  */
217  SeparableConvolutionFasterThanNonseparable = 10001,
218  FFTConvolutionFasterThanNonseparable = 10002
219  };
220 }
221 
222 // ----------------------------------------------------------------------------
223 
232 class PCL_CLASS Thread : public UIObject
233 {
234 public:
235 
240  using priority = ThreadPriority::value_type;
241 
247  using performance_analysis_algorithm = PerformanceAnalysisAlgorithm::value_type;
248 
257  {
258  performance_analysis_algorithm
259  algorithm = PerformanceAnalysisAlgorithm::Unknown;
260  size_type length = 0;
261  size_type minimumLength = 1;
262  size_type overheadLimit = 1;
263  int itemSize = 4;
264  bool floatingPoint = true;
265  int kernelSize = 0;
266  int width = 0;
267  int height = 0;
268  };
269 
274 
278  ~Thread() override
279  {
280  }
281 
289  void EnsureUnique() override
290  {
291  // Threads are unique objects by definition.
292  }
293 
300  static Thread& Null();
301 
335  void Start( priority = ThreadPriority::Inherit, int processor = -1 );
336 
357 
382  bool SetAffinity( const Array<int>& processors );
383 
408  bool SetAffinity( int processor );
409 
422  void Kill(); // ### Dangerous - Use at your own risk! ###
423 
427  bool IsActive() const;
428 
432  priority Priority() const;
433 
437  void SetPriority( priority );
438 
444  {
445  SetPriority( ThreadPriority::Inherit );
446  }
447 
457  void Wait();
458 
474  bool Wait( unsigned ms );
475 
480  void Sleep( unsigned ms );
481 
482  /*
483  * Returns a reference to the current thread (the thread from which this
484  * member function is invoked), or Thread::Null() if the current thread is
485  * either (a) a thread not being controlled by the PixInsight API, or (b) a
486  * thread that has been created by another module.
487  static Thread& CurrentThread();
488  */
489 
501  static bool IsRootThread();
502 
511 
528  virtual void Run()
529  {
530  // Reimplement this function to provide your thread's functionality.
531  }
532 
550  uint32 Status() const;
551 
569  bool TryGetStatus( uint32& status ) const;
570 
585  void SetStatus( uint32 status );
586 
608  void Abort()
609  {
610  SetStatus( 0x80000000 );
611  }
612 
625  bool IsAborted() const
626  {
627  return (Status() & 0x80000000) != 0;
628  }
629 
641  bool TryIsAborted() const
642  {
643  uint32 status;
644  return TryGetStatus( status ) && (status & 0x80000000) != 0;
645  }
646 
662 
670  bool HasConsoleOutputText() const
671  {
672  return !ConsoleOutputText().IsEmpty();
673  }
674 
682 
696 
756  static int NumberOfThreads( size_type count, size_type overheadLimit = 1u );
757 
808  size_type overheadLimit = 1u,
809  int maxThreads = PCL_MAX_PROCESSORS );
810 
827 
850  int maxThreads = PCL_MAX_PROCESSORS );
851 
885  int align = 16,
886  size_type overheadLimit = 1u,
887  int maxThreads = PCL_MAX_PROCESSORS );
888 private:
889 
890  int m_processorIndex = -1;
891 
892  Thread( void* h ) : UIObject( h )
893  {
894  }
895 
896  void* CloneHandle() const override;
897 
898 protected:
899 
900  virtual bool IsStealth() const
901  {
902  return false;
903  }
904 
905  friend class ThreadDispatcher;
906 };
907 
908 // ----------------------------------------------------------------------------
909 
917 void PCL_FUNC Sleep( unsigned ms );
918 
919 // ----------------------------------------------------------------------------
920 
921 } // pcl
922 
923 #endif // __PCL_Thread_h
924 
925 // ----------------------------------------------------------------------------
926 // EOF pcl/Thread.h - Released 2025-02-21T12:13:32Z
Generic dynamic array.
Definition: Array.h:100
Fast Fourier transform of 32-bit floating point complex data.
Unicode (UTF-16) string.
Definition: String.h:8148
Client-side interface to a PixInsight thread.
Definition: Thread.h:233
String ConsoleOutputText() const
bool IsAborted() const
Definition: Thread.h:625
static Array< size_type > OptimalThreadLoadsAligned(size_type count, int align=16, size_type overheadLimit=1u, int maxThreads=PCL_MAX_PROCESSORS)
uint32 Status() const
void ResetPriority()
Definition: Thread.h:443
static int NumberOfThreads(size_type count, size_type overheadLimit=1u)
static int OptimalNumberOfThreads(const Thread::PerformanceAnalysisData &data)
bool TryIsAborted() const
Definition: Thread.h:641
void SetPriority(priority)
bool TryGetStatus(uint32 &status) const
bool IsActive() const
void FlushConsoleOutputText()
void ClearConsoleOutputText()
virtual void Run()
Definition: Thread.h:528
bool Wait(unsigned ms)
void EnsureUnique() override
Definition: Thread.h:289
static Thread & Null()
Array< int > Affinity() const
void Start(priority=ThreadPriority::Inherit, int processor=-1)
void SetStatus(uint32 status)
static bool IsRootThread()
priority Priority() const
bool HasConsoleOutputText() const
Definition: Thread.h:670
bool SetAffinity(int processor)
static Array< size_type > OptimalThreadLoads(const PerformanceAnalysisData &data, int maxThreads=PCL_MAX_PROCESSORS)
void Sleep(unsigned ms)
void Abort()
Definition: Thread.h:608
~Thread() override
Definition: Thread.h:278
static int NumberOfRunningThreads()
static Array< size_type > OptimalThreadLoads(size_type count, size_type overheadLimit=1u, int maxThreads=PCL_MAX_PROCESSORS)
bool SetAffinity(const Array< int > &processors)
Root base class for all user interface objects.
Definition: UIObject.h:95
unsigned int uint32
Definition: Defs.h:666
size_t size_type
Definition: Defs.h:609
void PCL_FUNC Sleep(unsigned ms)
PCL root namespace.
Definition: AbstractImage.h:77
Working parameters for performance analysis thread optimization.
Definition: Thread.h:257