<>


class Timer {
public:
typedef std::function<void(void*)> TimerTask;

private:
class TimerTaskWrapper {
public:
TimerTaskWrapper(Timer::TimerTask task, unsigned long timePoint, void* param)
: _task(task), _timePoint(timePoint), _param(param) {
}
virtual ~TimerTaskWrapper() {
}
unsigned long getPoint() const { return _timePoint; }
void setPoint(unsigned long point) { _timePoint = point; }
void* getParam() const { return _param; }
void run() const {
_task(_param);
}

private:
unsigned long _timePoint;
Timer::TimerTask _task;
void* _param;
};

public:
Timer()
: _stopFlag(false) {
_looper = std::thread(std::bind(&Timer::run, this));
}
virtual ~Timer() {
}
void start(TimerTask task, long long timePoint, void* param) {
std::lock_guard<std::mutex> guard(_queueMutex);
_queue.emplace_back(task, timePoint, param);
if (1 == _queue.size()) {
std::unique_lock <std::mutex> lock(_cvMutex);
_queueCV.notify_all();
}
}
void stop() {
_stopFlag = true;
}
void join() {
if (_looper.joinable()) _looper.join();
}

private:
TimerTaskWrapper popMinTask() {
std::lock_guard<std::mutex> guard(_queueMutex);
int minIndex = 0;
for (int i = 1; i < _queue.size(); ++i) {
if (_queue.at(minIndex).getPoint() > _queue.at(i).getPoint()) {
minIndex = i;
}
}
auto task = _queue.at(minIndex);
_queue.erase(_queue.begin() + minIndex);
return task;
}

void run() {
while (!_stopFlag) {
{
std::unique_lock <std::mutex> lock(_cvMutex);
while (_queue.empty()) _queueCV.wait(lock);
}
auto task = popMinTask();
{
std::unique_lock <std::mutex> lock(_timeoutMutex);
_timeoutCV.wait_for(lock, std::chrono::milliseconds(task.getPoint()));
}
task.run();
}
}

private:
std::atomic_bool _stopFlag;
std::mutex _queueMutex;
std::mutex _cvMutex;
std::mutex _timeoutMutex;
std::thread _looper;
std::condition_variable _queueCV;
std::condition_variable _timeoutCV;
std::vector<TimerTaskWrapper> _queue;
};


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM