GitHub - cameron314/concurrentqueue: A fast multi-producer, multi-consumer lock-free concurrent queue for C++11
提供了一个无锁队列。它的实现基于原子操作CAS,比大多数其它队列性能更强,而且使用更方便。本文的性能测试方法基于文章《C++计算打印函数和代码块的执行时间(支持所有类型函数)》,下面用例子讲解该队列的使用,以及跟STL队列容器queue的性能对比。
假设我们想要实现一个最简单的生产者消费者模式。生产者线程负责把数据入队列,消费者线程把数据出队列,为了保护临界资源,我们得加互斥锁。为了在队列为空的时候阻止消费者继续消费,还得加条件变量。所以用C++11的语法和容器std::queue实现的代码如下:
#include <thread>
#include <chrono>
#include <memory>
#include <future>
#include <functional>
#include <iostream>
#include <queue>
using namespace std;
#define TOTAL 1000000
std::mutex m;
std::condition_variable cv;
queue<int> gQueue;
template<class T, class... Args>
auto measure(T&& func, Args&&... args)->std::future<typename std::result_of<T(Args...)>::type>
{
using return_type = typename std::result_of<T(Args...)>::type;
auto task = std::make_shared<std::packaged_task<return_type()>>
(std::bind(std::forward<T>(func), std::forward<Args>(args)...));
std::future<return_type> res = task->get_future();
auto begin = std::chrono::high_resolution_clock::now();
(*task)();
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
printf("执行时间: % .3f seconds.\n", elapsed.count() * 1e-9);
return res;
}
void producer_thread()
{
for (int i = 0; i < TOTAL; i++)
{
std::unique_lock<std::mutex> lk(m);
gQueue.push(i);
cv.notify_one();
}
}
void consumer_thread()
{
int element = 0;
while (element != TOTAL -1)
{
std::unique_lock<std::mutex> lk(m);
cv.wait(lk, [] {return !gQueue.empty(); });
element = gQueue.front();
gQueue.pop();
printf("element:%d\n", element);
}
}
int main()
{
measure([] {
thread a(producer_thread);
thread b(consumer_thread);
a.join();
b.join();
});
return 0;
}
运行效果如下,可以看到总执行时间为19.632秒。
我们把队列改为使用concurrentqueue,代码如下:
#include <thread>
#include <chrono>
#include <memory>
#include <future>
#include <functional>
#include <iostream>
#include "blockingconcurrentqueue.h"
using namespace std;
#define TOTAL 1000000
moodycamel::BlockingConcurrentQueue<int> gConcurrentQueue;
template<class T, class... Args>
auto measure(T&& func, Args&&... args)->std::future<typename std::result_of<T(Args...)>::type>
{
using return_type = typename std::result_of<T(Args...)>::type;
auto task = std::make_shared<std::packaged_task<return_type()>>
(std::bind(std::forward<T>(func), std::forward<Args>(args)...));
std::future<return_type> res = task->get_future();
auto begin = std::chrono::high_resolution_clock::now();
(*task)();
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
printf("执行时间: % .3f seconds.\n", elapsed.count() * 1e-9);
return res;
}
void producer_thread()
{
for (int i = 0; i < TOTAL; i++)
{
gConcurrentQueue.enqueue(i);
}
}
void consumer_thread()
{
int element = 0;
while (element != TOTAL -1)
{
gConcurrentQueue.wait_dequeue(element);
printf("element:%d\n", element);
}
}
int main()
{
measure([] {
thread a(producer_thread);
thread b(consumer_thread);
a.join();
b.join();
});
return 0;
}
运行效果如下,可以看到总执行时间为18.198秒。
由上面的例子可以看出,实现相同的功能,使用concurrentqueue比std::queue性能还要略强一点。而且concurrentqueue接口完善,封装程度更高,使用它后我们不需要再在代码中显式增加互斥锁和条件变量来进行同步了,使用更简单,可以使我们的代码可读性更好。