mirror hosted by tehsausage.com
PTypes: multithreading: thread

C++ Portable Types Library (PTypes) Version 2.1


Top: Multithreading: thread

#include <pasync.h>

class thread {
    thread(bool autofree);
    ~thread();

    void start();
    void waitfor();
    void signal();
    pthread_id_t get_id();
    bool get_running();
    bool get_finished();
    bool get_signaled();

    virtual void execute() = 0;
    virtual void cleanup() = 0;
    bool relax(int milliseconds);
}

Create a descendant of thread to represent an execution thread in a multithreaded application. All threads are running within the framework of the parent process and share the same global variables. Each thread, however, has its own stack. The execution of a thread can be started either from the main process or from another thread. Further, the newly launched thread executes its code concurrently.

Multithreading can significantly improve your application when a process consumes time by waiting for data from some communication device, a slow storage device or user input. When such pieces of code run concurrently the CPU is loaded more efficiently. Also, many networking services use threading to serve multiple users simultaneously.

When threads concurrently access and modify shared data structures precautions should be taken to preserve logical integrity of these data structures. Synchronization between threads is performed using either of: semaphore, mutex, rwlock, trigger or msgqueue.

thread::thread(bool autofree) creates a thread object, but does not run it. If autofree is true the thread will destroy itself upon termination. Note, that you can use autofree only for dynamically allocated thread objects. A variable that holds a pointer to a dynamic autofree thread object can be considered invalid after a call to start().

thread::~thread() destroys the thread object. Usually both the constructor and the destructor for non-autofree threads are called from a different context. In contrary, autofree threads call their destructors from their own context.

void thread::start() runs the thread. The overridden virtual method execute() is called asynchronously. Start() itself returns immediately. Each thread object can be run only once.

void thread::waitfor() waits for the thread to terminate. This function is called when a thread needs to synchronize its execution with the completion of the target non-autofree thread. For non-autofree threads this method must be called at least once and within the scope of a thread that called start(). For convenience, you can place a call to waitfor() in the overridden destructor. waitfor(), however, can not be called for autofree threads.

void thread::signal() sets signaled attribute to true and possibly wakes up the thread if in a `relaxed' state (see relax() below). signal() is usually called from a different thread to let the given thread know that the execution should be terminated as soon as possible. If the given thread performs an iteration one of the conditions of leaving the loop should be (!get_signaled()). Signal() can be called only once for a thread object.

pthread_id_t thread::get_id() returns the thread ID assigned by the operating system. This ID can then be used in call to pthrequal().

bool thread::get_running() returns true if the given thread object is running. This property is never set to false once the thread started. To check whether the thread finished its job, i.e. returned from execute(), use get_finished().

bool thread::get_finished() returns true if thread has already terminated its execution, or, in other words, has left execute().

bool thread::get_signaled() returns true if the thread object is in signaled state, i.e. signal() has been called from a concurrent thread. See also signal().

virtual void thread::execute() -- this pure virtual method should be overridden in the descendant class to implement the functionality of your thread. execute() can be viewed as main() for your mini-process. Typically, you create a class descendant from thread and override at least two virtual methods: execute() and cleanup().

virtual void thread::cleanup() -- this pure virtual method should be overridden in the descendant class. cleanup() is called either when the thread terminates normally or when an exception is raised within the thread's context. When implementing this method you might want to clean up any memory and other resources allocated by your thread object. cleanup() is guaranteed to be called once upon termination of the thread. To properly shut down the thread, avoid using operations that can cause exceptions in cleanup().

bool thread::relax(int milliseconds) is a protected member function which can be called only from within the overridden execute() method. This function suspends the execution of the thread until either of: the specified amount of time is elapsed, in which case the function returns false, or signal() is called from a concurrent thread, in which case relax() returns true. If parameter milliseconds is -1 the function will wait infinitely. The relax/signal mechanism is useful for threads doing some job that requires taking periodic actions in the background.

See also: semaphore, mutex, rwlock, trigger, Utilities, Examples


PTypes home