#include <wefts_thread.h>
Inheritance diagram for Wefts::Thread:
Public Methods | |
Thread () | |
Fills member variables with default values. | |
virtual | ~Thread () |
Ensure that the thread is released. | |
bool | start (bool detachable=false, bool cancelable=true) |
Start asynchronous execution of the run() method. | |
bool | stop () |
Issue a stop request on the thread. | |
void | detach () |
Detach the thead. | |
bool | detached () |
Returns true if thread is in detached state. | |
virtual void * | join () |
Joins a thread, waiting for its termination. | |
bool | running () |
Returns true if thread is currently operating. | |
pthread_t | getId () |
Returns the OS specific thread id associated with this thread object. | |
void | setData (void *data) |
Set optional specific thread data. | |
int | sequence () |
Returns the sequence count of this thread. | |
virtual void | cleanup () |
Termination hook called by the thread termination process. | |
virtual void * | run ()=0 |
Main thread function. | |
Protected Methods | |
void | testCancel () |
Tests if a stop request has been issued, and if so, terminates the thread. | |
void | setCancel (bool cando) |
Sets the cancelable thread mode. | |
Protected Attributes | |
void * | m_runReturnValue |
Value returned by run() method. | |
pthread_t | m_thid |
Machine/os thread identificator for this object. | |
bool | m_canCancel |
True if deferred cancelation is turned on. | |
void * | m_thread_data |
Optional thread specific data that can be used by this object. | |
bool | m_detached |
True if thread is detached. | |
bool | m_stopped |
True if a stop request has been issued. | |
int | m_thSequence |
This is the count of threads previously started plus two. | |
Private Methods | |
virtual void | executionEnd () |
Minimal thraed termination routines This routine is executed at thread termination to ensure that all non class-dependant operations are done before cleanup() routine and then the destructors are called. | |
void | setCancel () |
Used internally to communicate the low-level threading system what cancelation mode is used. | |
Friends | |
void * | s_ThreadRunFunc (void *) |
Function used (internally) to invoke thread->run(). | |
void | s_ThreadCleanupper (void *) |
Function used (internally) to invoke thread->cleanup() in case of cancelation. |
A thread is an object that can be executed in a separate (parallel) environment.
The applications are required to overload the pure virtual method run(); that method should not be called directly, as the start() method will create a new thread and execute the run() function in parallel with the caller.
In both modes, the testCancel() protected member honors cancelation requests immediately, if they have been issued, immediately terminating the thread (and eventually destroying it if it is detached).
The thread can also switch to cancellable or uncancellable mode after its creation. The run() method is guaranteed not being interrupted before its execution begins, so it is possible to call the setCancel() protected member to override any default the start() method may have bestowed upon the thread. setCancel() method can also be called later on to "mark" critical sections where, although having access to blocking resources, the thread wish not to be interrupted.
Things NOT TO DO:
There isn't any control over programs misbehaving in this way, so the programmers must take care never doing something like this. Notice that condition waits are cancelation points, but while waiting the lock() on the condition is automatically released.
|
Fills member variables with default values.
|
|
Ensure that the thread is released. It is important that detachable thread subclass overload this destructor to provide automatic cancelation schemes. |
|
Termination hook called by the thread termination process. This method is called just before the thread terminates, and if the thread is detached, also just before thread destructor. This gives a chance to this thread to provide cleanup actions (as freeing mutexes not previously releases, close files and connections, logging the imminent termination, signaling in member variables things that an eventual join()er should know etc.). The Thread class implementation of cleanup() does nothing. Reimplemented in Wefts::MoaningThread. |
|
Detach the thead. Set the thread type to detached: at thread termination, the object encapsulating this thread will be deleted (as well as OS resources needed to run this thread). This choice is not reversible; once a thread is detached, it can't be set to non-detachable state. |
|
Returns true if thread is in detached state.
|
|
Minimal thraed termination routines This routine is executed at thread termination to ensure that all non class-dependant operations are done before cleanup() routine and then the destructors are called. This function marks the point after which the Wefts level thread object is not considered "running" anymore. |
|
Returns the OS specific thread id associated with this thread object.
|
|
Joins a thread, waiting for its termination.
Reimplemented in Wefts::MoaningThread. |
|
Main thread function. This pure virtual method must be overloaded by subclasses to implement the thread main rountine. This is executed after that start() method launches the new thread. It is possible to call run() directly i.e. when your class may run both in parallel ( run() is called indirectly by start() ) and sequence ( run() is called directly by the caller ). The return value is available to communicate directly with a thread evetnaully joining this one: the returned void pointer will be passed as return of the other thread join() method. Joining a detached thread will always result in a void return, regardless of what run() method returned.
So, unless you have special reasons, run() method should always return 0. |
|
Returns true if thread is currently operating. There may be a little time in which the thread is reported to be running, but the run() method is still not executed, and another in which the thread is reported not to be running, but the OS level thread is still not terminated. Anyway, this problem can be safely ignored, as in the first case, nothing is going to stop the thread from run as soon as possible, and the OS resource for the thread are ready to go, while in the latter case the Wefts thread is not operating anymore and the OS level thread will be terminated as soon as possible. (It is under all aspects a "dead thread walking" :-) |
|
Returns the sequence count of this thread. Used for reference and debugging purposes. The main thread has a "vritual" sequence of 1; the threads started with start() method have a number ranging from 2 to MAXINT. Notice that this sequence count is invalid if thread has not been started yet (i.e. if you are running the run() method sequentially.
|
|
Sets the cancelable thread mode. If the parameter is ture, the thread can be canceled at wait or blocking points, as waits for OS calls to return or in Wefts::Sleep() calls. If set false, only an explicit testCancel() call, or a hand-made check on the m_stopped member variable will terminate the thread upon request.
|
|
Used internally to communicate the low-level threading system what cancelation mode is used.
|
|
Set optional specific thread data.
|
|
Start asynchronous execution of the run() method. The execution of the run method is started as soon as possible, but both the m_thid and m_thSequence members are immediately set; also the count of active threads is updated immediately.
|
|
Issue a stop request on the thread. The thread will honor the request depeding on its current cancelable policy and on its own decision. Is thus important designing threads so that they never enter endless loops or deadlocks so that they can't check for stop requests being issued.
|
|
Tests if a stop request has been issued, and if so, terminates the thread. This method works the same both if the thread is cancelable or not. Indeed, if the thread is not cancellable, this is the best way to honor eventual cancelation requets issued in the meanwhile. Also, this can be useful in testing for cancelation requests issued while the thread is engaged in long computations. |
|
Function used (internally) to invoke thread->cleanup() in case of cancelation.
|
|
Function used (internally) to invoke thread->run().
|
|
True if deferred cancelation is turned on.
|
|
True if thread is detached.
|
|
Value returned by run() method.
|
|
True if a stop request has been issued.
|
|
Machine/os thread identificator for this object.
|
|
Optional thread specific data that can be used by this object.
|
|
This is the count of threads previously started plus two.
|