Click here to Skip to main content
15,860,844 members
Articles / Programming Languages / C++
Article

Work Queue

Rate me:
Please Sign up or sign in to vote.
4.86/5 (42 votes)
1 Feb 20033 min read 264.7K   7.2K   111   65
Simple and elegant thread pool.

Sample Image - Work_Queue.gif

Introduction

In real time systems that need to respond to and process different tasks in the fastest possible way, and the tasks can be processed concurrently, there needs to be a number of thread waiting, willing, and able to perform the tasks at hand. This can be achieved with a specific structural scheme for each specific job, or with a generic method called thread pool. The work queue is a simple and elegant type of thread pool that creates requested number of threads at its creation and manages a queue of different work items that implement the specific tasks, where each work item in his turn gets a thread that works and processes it.

How to Use

First a new type of work item needs to be defined in a format that can be processed by the work queue.   To do this, you need to implement a work item class that inherits from the base work item class WorkItemBase. The WorkItemBase has two abstract functions that need to be implemented.  The first, DoWork, is the method that will be executed by the free thread when the work item gets its turn in the queue.  The second, Abort, is called when the queue is destroyed prior to the work item getting its turn. The specific work item should be implemented as follows.

class SpecificWorkItem : public WorkItemBase
{
    void   DoWork(void* pThreadContext);
    void   Abort();

 //memeber variables needed here
};

void   SpecificWorkItem::DoWork(void* pThreadContext)
{
  //Notify Start
  //proccessing done here
  //Notify Finish
  //free all that was occupied
}

void   SpecificWorkItem::Abort()
{
  //Notify aborted
  //free all that was occupied
}

Note that a different types of work items can be processed in the same work queue.  In the work queue, first the Create function needs to be called where the first parameter is the number of threads and the second is an array of pointers to a thread data structure.  This structures can be used as a working surface for each of the threads. This is used to reduce the local variables declared in the

DoWork 
function and the dynamic allocation for each item that is being processed, for optimization of processing.

CWorkQueue WorkQueue;
WorkQueue.Create(5);

As you can see in the code, one can ignore the second parameter which has the default value is NULL. Next, to insert a work item into the queue you need to call InsertWorkItem with the newly created work item. This function can be called asynchronously.

SpecificWorkItem* pWorkItem = new SpecificWorkItem()
// prepare the work item for the task
m_WorkQueue.InsertWorkItem(pWorkItem);

After using the work queue you must call the Destroy function. This function will wait until all threads have finished processing the work items that are already out of the queue, then calls the Abort function of each of the work items that are waiting in the queue to be processed.

m_WorkQueue.Destroy();

Implementation

The work queue is implemented using an STL queue of work items which is guaranteed to work in an asynchronous system by a mutual exclusion lock, a semaphore that is initialized with an initial count of zero, an abort event, and an array of threads that are created to run a particular function.  This function is waiting on the two asynchronous objects.   First the abort event that, if set, the thread will return from the function.  Second, semaphore, that if released, the thread will extract the next item in the queue and call its DoWork function. At the insert function the semaphore is released (by 1) after inserting the work item, allowing one of the threads to do attach to the worker function. When the Destroy function is called in turn, the abort event is set and the function waits for all threads to terminate.  For each of the work item that are left in the queue, it calls their Abort function.

Demo project

The demo project is a project I included merely to illustrate the way the work queue performs. What you need to do to work it is:

  1. determine the number of thread you want
  2. click the create button to create the work queue
  3. insert work item to the queue as you please by clicking the insert item button
  4. destroy the work queue click the destroy button.

Enjoy.

thanks to Hans Dietrich for the XlistCtrl

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Israel Israel
4 years expirience coding C++ with MFC & STL and coding C for Windows XP/2K internals (Drivers).

I Love what I do.

For pastime activities:
Fun & Games

Comments and Discussions

 
GeneralNice! Pin
wxf0410415-Sep-13 23:10
wxf0410415-Sep-13 23:10 
QuestionNice article but ? Pin
Le@rner17-Oct-10 20:36
Le@rner17-Oct-10 20:36 
Generalgreat job :) Pin
alejandro29A29-Dec-08 1:26
alejandro29A29-Dec-08 1:26 
GeneralMessages in the worker thread Pin
chocm14-Oct-08 21:30
chocm14-Oct-08 21:30 
General....very nice code!! Pin
Andrea7524-Nov-05 21:39
Andrea7524-Nov-05 21:39 
GeneralCancel an expecific thread Pin
Desvariovsk15-Oct-05 6:40
Desvariovsk15-Oct-05 6:40 
QuestionSend cancel from GUI? Pin
ehh8-Sep-05 5:57
ehh8-Sep-05 5:57 
QuestionRe: Send cancel from GUI? Pin
ehh8-Sep-05 6:20
ehh8-Sep-05 6:20 
GeneralUnzip Pin
Danny Maes11-Aug-05 21:22
Danny Maes11-Aug-05 21:22 
GeneralHandle leaks Pin
madkoala30-Jun-05 15:31
madkoala30-Jun-05 15:31 
AnswerRe: Handle leaks Pin
Yves Tkaczyk20-Oct-05 10:47
Yves Tkaczyk20-Oct-05 10:47 
QuestionPass CMainFrame pointer? Pin
ehh17-Feb-05 5:06
ehh17-Feb-05 5:06 
AnswerRe: Pass CMainFrame pointer? Pin
Dan Madden8-Jun-05 11:15
Dan Madden8-Jun-05 11:15 
AnswerRe: Pass CMainFrame pointer? Pin
Blake Miller25-Aug-05 8:11
Blake Miller25-Aug-05 8:11 
GeneralRe: Pass CMainFrame pointer? Pin
ehh1-Sep-05 3:36
ehh1-Sep-05 3:36 
GeneralRe: Pass CMainFrame pointer? Pin
Blake Miller1-Sep-05 3:56
Blake Miller1-Sep-05 3:56 
GeneralTimeout Pin
dspeziale12-Dec-04 22:57
dspeziale12-Dec-04 22:57 
Generali wnt yours helpe Pin
sultan_saud1-Nov-04 2:55
sultan_saud1-Nov-04 2:55 
GeneralUse CWinThread instead of ::CreateThread Pin
Andrey Del Pozo6-Sep-04 10:22
Andrey Del Pozo6-Sep-04 10:22 
GeneralRe: Use CWinThread instead of ::CreateThread Pin
Blake Miller25-Aug-05 8:05
Blake Miller25-Aug-05 8:05 
GeneralIO Completion port / QueueUserWorkItem Pin
valdok6-Jun-04 10:42
valdok6-Jun-04 10:42 
GeneralMemory Problem with AdoConnection Pin
VietDelphi7-May-04 5:08
VietDelphi7-May-04 5:08 
GeneralRe: Memory Problem with AdoConnection Pin
Blake Miller25-Aug-05 8:00
Blake Miller25-Aug-05 8:00 
Generalmemory leaks Pin
Justin884811-Nov-03 20:44
Justin884811-Nov-03 20:44 
GeneralDetected Memory Leaks Pin
Kurt Muellner26-Aug-03 8:32
Kurt Muellner26-Aug-03 8:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.