您的位置:首页 > 编程语言 > C语言/C++

c++11baohan线程安全的队列

2015-11-27 22:44 591 查看
#include "stdafx.h"
#include <queue>
#include <mutex>
#include <condition_variable>
#include <memory>

template<class T>
class threadsafe_queue
{
private:
mutable std::mutex mut;
std::queue<std::shared_ptr<T>> data_queue;
std::condition_variable data_con;
public:
threadsafe_queue(){}
threadsafe_queue(threadsafe_queue const& other)
{
std::lock_guard<std::mutex> lk(other.mut);
data_queue = other.data_queue;
}
void push(T tValue)
{
std::shared_ptr<T> data(std::make_shared<T>(std::move(tValue)));
std::lock_guard<std::mutex> lk(mut);
data_queue.push(data);
data_con.notify_one();
}
void wait_and_pop(T& tValue)
{
std::unique_lock<std::mutex> lk(mut);
data_con.wait(lk,[this]{return !data_queue.empty();});
tValue = std::move(*data_queue.front());
data_queue.pop();
}
std::shared_ptr<T>wait_and_pop()
{
std::unique_lock<std::mutex> lk(mut);
data_con.wait(lk,[this]{return !data_queue.empty();});
std::shared_ptr<T> ret (std::make_shared<T>(data_queue.front()));
data_queue.pop();
return ret;
}
bool try_pop(T& tValue)
{
std::lock_guard<std::mutex> lk(mut);
if(data_queue.empty())
return false;
tValue = std::move(*data_queue.front());
data_queue.pop();
return true;
}

std::shared_ptr<T> try_pop()
{
std::lock_guard<std::mutex> lk(mut);
if(data_queue.empty())
return std::shared_ptr<T>();
std::shared_ptr<T> ret(std::make_shared(data_queue.front()));
data_queue.pop();
return ret;
}

bool empty() const
{
std::lock_guard<std::mutex> lk(mut);
return data_queue.empty();
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c++ c++11 线程 boost