Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
CCheckQueue< T > Class Template Reference

Queue for verifications that have to be performed. More...

#include <checkqueue.h>

Public Member Functions

 CCheckQueue (unsigned int nBatchSizeIn)
 
void Thread ()
 
bool Wait ()
 
void Add (std::vector< T > &vChecks)
 
 ~CCheckQueue ()
 

Private Member Functions

bool Loop (bool fMaster=false)
 

Private Attributes

boost::mutex mutex
 
boost::condition_variable condWorker
 
boost::condition_variable condMaster
 
std::vector< T > queue
 
int nIdle
 
int nTotal
 
bool fAllOk
 
unsigned int nTodo
 
bool fQuit
 
unsigned int nBatchSize
 

Friends

class CCheckQueueControl< T >
 

Detailed Description

template<typename T>
class CCheckQueue< T >

Queue for verifications that have to be performed.

The verifications are represented by a type T, which must provide an operator(), returning a bool.

One thread (the master) is assumed to push batches of verifications onto the queue, where they are processed by N-1 worker threads. When the master is done adding work, it temporarily joins the worker pool as an N'th worker, until all jobs are done.

Definition at line 25 of file checkqueue.h.

Constructor & Destructor Documentation

template<typename T>
CCheckQueue< T >::CCheckQueue ( unsigned int  nBatchSizeIn)
inline

Definition at line 122 of file checkqueue.h.

template<typename T>
CCheckQueue< T >::~CCheckQueue ( )
inline

Definition at line 149 of file checkqueue.h.

Member Function Documentation

template<typename T>
void CCheckQueue< T >::Add ( std::vector< T > &  vChecks)
inline

Definition at line 136 of file checkqueue.h.

template<typename T>
bool CCheckQueue< T >::Loop ( bool  fMaster = false)
inlineprivate

Definition at line 61 of file checkqueue.h.

template<typename T>
void CCheckQueue< T >::Thread ( )
inline

Definition at line 126 of file checkqueue.h.

template<typename T>
bool CCheckQueue< T >::Wait ( )
inline

Definition at line 131 of file checkqueue.h.

Friends And Related Function Documentation

template<typename T>
friend class CCheckQueueControl< T >
friend

Definition at line 152 of file checkqueue.h.

Member Data Documentation

template<typename T>
boost::condition_variable CCheckQueue< T >::condMaster
private

Definition at line 34 of file checkqueue.h.

template<typename T>
boost::condition_variable CCheckQueue< T >::condWorker
private

Definition at line 31 of file checkqueue.h.

template<typename T>
bool CCheckQueue< T >::fAllOk
private

Definition at line 47 of file checkqueue.h.

template<typename T>
bool CCheckQueue< T >::fQuit
private

Definition at line 55 of file checkqueue.h.

template<typename T>
boost::mutex CCheckQueue< T >::mutex
private

Definition at line 28 of file checkqueue.h.

template<typename T>
unsigned int CCheckQueue< T >::nBatchSize
private

Definition at line 58 of file checkqueue.h.

template<typename T>
int CCheckQueue< T >::nIdle
private

Definition at line 41 of file checkqueue.h.

template<typename T>
unsigned int CCheckQueue< T >::nTodo
private

Definition at line 52 of file checkqueue.h.

template<typename T>
int CCheckQueue< T >::nTotal
private

Definition at line 44 of file checkqueue.h.

template<typename T>
std::vector<T> CCheckQueue< T >::queue
private

Definition at line 38 of file checkqueue.h.


The documentation for this class was generated from the following file: