- 论坛徽章:
- 0
|
#ifndef COND_HPP
#define COND_HPP
//
// Cond.hpp
// ~~~~~~~~~~~~~~~~
//
// @author <zhuxueling@pica.com>
// @data 2009-02-05
#include <pthread.h>
#include "Lock.hpp"
#include "Mutex.hpp"
namespace Traxex{
class Cond{
public:
Cond():lock_( mutex_){
int stat = pthread_cond_init( &cond_, 0);
if( stat !=0 ){
throw Error( COND_CREATE_ERR);
}
}
virtual ~Cond(){
pthread_cond_destroy( &cond_);
}
bool wait( bool lock = true){
if( lock){
bool stat = lock_.do_lock();
if( !stat) return false;
}
int wait_stat = pthread_cond_wait( &cond_,& mutex_.mutex_);
if( lock){
lock_.unlock();
}
if( wait_stat != 0) return false;
return true;
}
bool time_wait( double sec, bool lock = true){
if( lock){
bool stat = lock_.do_lock();
if( !stat) return false;
}
int sec_ = (int)( sec);
int nsec_ = (int)( (sec * 1000000) - sec_ * 1000000);
timespec timeout={ sec_, nsec_};
int wait_stat = pthread_cond_timedwait( &cond_, &mutex_.mutex_, &timeout);
if( lock){
lock_.unlock();
}
if( wait_stat != 0) return false;
return true;
}
bool signal( bool one = true){
int stat;
if( one){
stat = pthread_cond_signal( &cond_);
}else{
stat = pthread_cond_broadcast( &cond_);
}
if( stat !=0 ) return false;
return true;
}
bool lock(){
return lock_.do_lock();
}
bool unlock(){
return lock_.unlock();
}
private:
Mutex mutex_;
Lock lock_;
pthread_cond_t cond_;
};
};
#endif //COND_HPP
[ 本帖最后由 die 于 2009-2-11 00:40 编辑 ] |
|