VTK
|
A class for performing multithreaded execution. More...
#include <vtkMultiThreader.h>
Classes | |
class | ThreadInfo |
This is the structure that is passed to the thread that is created from the SingleMethodExecute, MultipleMethodExecute or the SpawnThread method. More... | |
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. More... | |
vtkMultiThreader * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. More... | |
void | SingleMethodExecute () |
Execute the SingleMethod (as define by SetSingleMethod) using this->NumberOfThreads threads. More... | |
void | MultipleMethodExecute () |
Execute the MultipleMethods (as define by calling SetMultipleMethod for each of the required this->NumberOfThreads methods) using this->NumberOfThreads threads. More... | |
void | SetSingleMethod (vtkThreadFunctionType, void *data) |
Set the SingleMethod to f() and the UserData field of the ThreadInfo that is passed to it will be data. More... | |
void | SetMultipleMethod (int index, vtkThreadFunctionType, void *data) |
Set the MultipleMethod at the given index to f() and the UserData field of the ThreadInfo that is passed to it will be data. More... | |
int | SpawnThread (vtkThreadFunctionType, void *data) |
Create a new thread for the given function. More... | |
void | TerminateThread (int thread_id) |
Terminate the thread that was created with a SpawnThreadExecute() More... | |
vtkTypeBool | IsThreadActive (int threadID) |
Determine if a thread is still active. More... | |
virtual void | SetNumberOfThreads (int) |
Get/Set the number of threads to create. More... | |
virtual int | GetNumberOfThreads () |
Get/Set the number of threads to create. More... | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. More... | |
virtual void | DebugOff () |
Turn debugging output off. More... | |
bool | GetDebug () |
Get the value of the debug flag. More... | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. More... | |
virtual void | Modified () |
Update the modification time for this object. More... | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. More... | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. More... | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. More... | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. More... | |
virtual void | Delete () |
Delete a VTK object. More... | |
virtual void | FastDelete () |
Delete a reference to this object. More... | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. More... | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). More... | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). More... | |
int | GetReferenceCount () |
Return the current reference count of this object. More... | |
void | SetReferenceCount (int) |
Sets the reference count. More... | |
void | PrintRevisions (ostream &) |
Legacy. More... | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
Static Public Member Functions | |
static vtkMultiThreader * | New () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkMultiThreader * | SafeDownCast (vtkObjectBase *o) |
static vtkMultiThreaderIDType | GetCurrentThreadID () |
Get the thread identifier of the calling thread. More... | |
static vtkTypeBool | ThreadsEqual (vtkMultiThreaderIDType t1, vtkMultiThreaderIDType t2) |
Check whether two thread identifiers refer to the same thread. More... | |
static void | SetGlobalMaximumNumberOfThreads (int val) |
Set/Get the maximum number of threads to use when multithreading. More... | |
static int | GetGlobalMaximumNumberOfThreads () |
Set/Get the maximum number of threads to use when multithreading. More... | |
static void | SetGlobalDefaultNumberOfThreads (int val) |
Set/Get the value which is used to initialize the NumberOfThreads in the constructor. More... | |
static int | GetGlobalDefaultNumberOfThreads () |
Set/Get the value which is used to initialize the NumberOfThreads in the constructor. More... | |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. More... | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. More... | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkMultiThreader () | |
~vtkMultiThreader () override | |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. More... | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. More... | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | CollectRevisions (ostream &) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
int | NumberOfThreads |
ThreadInfo | ThreadInfoArray [VTK_MAX_THREADS] |
vtkThreadFunctionType | SingleMethod |
vtkThreadFunctionType | MultipleMethod [VTK_MAX_THREADS] |
int | SpawnedThreadActiveFlag [VTK_MAX_THREADS] |
vtkMutexLock * | SpawnedThreadActiveFlagLock [VTK_MAX_THREADS] |
vtkThreadProcessIDType | SpawnedThreadProcessID [VTK_MAX_THREADS] |
ThreadInfo | SpawnedThreadInfoArray [VTK_MAX_THREADS] |
void * | SingleData |
void * | MultipleData [VTK_MAX_THREADS] |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
vtkAtomicInt32 | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
A class for performing multithreaded execution.
vtkMultithreader is a class that provides support for multithreaded execution using pthreads on POSIX systems, or Win32 threads on Windows. This class can be used to execute a single method on multiple threads, or to specify a method per thread.
Definition at line 83 of file vtkMultiThreader.h.
Definition at line 88 of file vtkMultiThreader.h.
|
protected |
|
overrideprotected |
|
static |
|
static |
|
virtual |
Return 1 if this class is the same type of (or a subclass of) the named class.
Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObjectBase.
|
static |
|
protectedvirtual |
vtkMultiThreader* vtkMultiThreader::NewInstance | ( | ) | const |
|
overridevirtual |
Methods invoked by print to print information about the object including superclasses.
Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkObjectBase.
|
virtual |
Get/Set the number of threads to create.
It will be clamped to the range 1 - VTK_MAX_THREADS, so the caller of this method should check that the requested number of threads was accepted.
|
virtual |
Get/Set the number of threads to create.
It will be clamped to the range 1 - VTK_MAX_THREADS, so the caller of this method should check that the requested number of threads was accepted.
|
static |
Set/Get the maximum number of threads to use when multithreading.
This limits and overrides any other settings for multithreading. A value of zero indicates no limit.
|
static |
Set/Get the maximum number of threads to use when multithreading.
This limits and overrides any other settings for multithreading. A value of zero indicates no limit.
|
static |
Set/Get the value which is used to initialize the NumberOfThreads in the constructor.
Initially this default is set to the number of processors or VTK_MAX_THREADS (which ever is less).
|
static |
Set/Get the value which is used to initialize the NumberOfThreads in the constructor.
Initially this default is set to the number of processors or VTK_MAX_THREADS (which ever is less).
void vtkMultiThreader::SingleMethodExecute | ( | ) |
Execute the SingleMethod (as define by SetSingleMethod) using this->NumberOfThreads threads.
void vtkMultiThreader::MultipleMethodExecute | ( | ) |
Execute the MultipleMethods (as define by calling SetMultipleMethod for each of the required this->NumberOfThreads methods) using this->NumberOfThreads threads.
void vtkMultiThreader::SetSingleMethod | ( | vtkThreadFunctionType | , |
void * | data | ||
) |
Set the SingleMethod to f() and the UserData field of the ThreadInfo that is passed to it will be data.
This method (and all the methods passed to SetMultipleMethod) must be of type vtkThreadFunctionType and must take a single argument of type void *.
void vtkMultiThreader::SetMultipleMethod | ( | int | index, |
vtkThreadFunctionType | , | ||
void * | data | ||
) |
Set the MultipleMethod at the given index to f() and the UserData field of the ThreadInfo that is passed to it will be data.
int vtkMultiThreader::SpawnThread | ( | vtkThreadFunctionType | , |
void * | data | ||
) |
Create a new thread for the given function.
Return a thread id which is a number between 0 and VTK_MAX_THREADS - 1. This id should be used to kill the thread at a later time.
void vtkMultiThreader::TerminateThread | ( | int | thread_id | ) |
Terminate the thread that was created with a SpawnThreadExecute()
vtkTypeBool vtkMultiThreader::IsThreadActive | ( | int | threadID | ) |
Determine if a thread is still active.
|
static |
Get the thread identifier of the calling thread.
|
static |
Check whether two thread identifiers refer to the same thread.
|
protected |
Definition at line 208 of file vtkMultiThreader.h.
|
protected |
Definition at line 213 of file vtkMultiThreader.h.
|
protected |
Definition at line 216 of file vtkMultiThreader.h.
|
protected |
Definition at line 217 of file vtkMultiThreader.h.
|
protected |
Definition at line 221 of file vtkMultiThreader.h.
|
protected |
Definition at line 222 of file vtkMultiThreader.h.
|
protected |
Definition at line 223 of file vtkMultiThreader.h.
|
protected |
Definition at line 224 of file vtkMultiThreader.h.
|
protected |
Definition at line 227 of file vtkMultiThreader.h.
|
protected |
Definition at line 228 of file vtkMultiThreader.h.