boost 线程安全队列
- // QueueImplementation.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <windows.h>
- #include <iostream>
- #include <queue>
- #include <string>
- #include <process.h>
- using namespace std;
- struct DataBlock
- {
- string m_szText; //sample data
- };
- class CDataQueue
- {
- private:
- queue<DataBlock> m_oQueue; //contains the actual data
- CRITICAL_SECTION m_csData; //to synchroize access to m_csData among multiple threads
- HANDLE m_hEvent; //for signalling presence of absence of data
- public:
- //create a manual reset event initially signalled.
- //This event will be signalled and shall remain so whenever there is data in the queue and
- //it shall be reset as long as queue is empty
- CDataQueue()
- {
- InitializeCriticalSection(&m_csData);
- m_hEvent = CreateEvent(NULL,TRUE,FALSE,NULL);
- };
- //close the event handle
- ~CDataQueue()
- {
- DeleteCriticalSection(&m_csData);
- CloseHandle(m_hEvent);
- };
- //public methods to Push data to queue
- void Push(DataBlock& oNewData)
- {
- EnterCriticalSection(&m_csData);
- //push new element to queue
- m_oQueue.push(oNewData);
- //now that there is atleast one element, set the event
- SetEvent(m_hEvent);
- LeaveCriticalSection(&m_csData);
- };
- //public methods to Pop data from queue
- DataBlock Pop()
- {
- EnterCriticalSection(&m_csData);
- //first get the topmost data block
- DataBlock popData = m_oQueue.front();
- //next remove it from queue
- m_oQueue.pop();
- //now, check for new size.. if no more elements in queue
- //reset the event
- if(!m_oQueue.size())
- ResetEvent(m_hEvent);
- LeaveCriticalSection(&m_csData);
- return popData;
- };
- //helper method to get the event handle
- HANDLE GetEvent(){return m_hEvent;};
- };
- CDataQueue g_oQueue;
- HANDLE g_hExitEvent;
- unsigned __stdcall ProcessData (void * )
- {
- HANDLE hEvents[] = { g_hExitEvent, g_oQueue.GetEvent()};
- DWORD dwRet;
- BOOL bContinue = TRUE;
- while(bContinue)
- {
- dwRet = WaitForMultipleObjects(sizeof(hEvents)/sizeof(hEvents[0]),hEvents,FALSE,INFINITE);
- switch(dwRet)
- {
- case WAIT_OBJECT_0 :
- {
- //exit signalled.. time to quit the thread
- bContinue = FALSE;
- }
- break;
- case WAIT_OBJECT_0 + 1:
- {
- //some data got..
- DataBlock oData = g_oQueue.Pop();
- //echo data to screen
- cout << "Data typed in is .. " << oData.m_szText << "/n";
- }
- break;
- default:break;
- }
- }
- return 0;
- }
- int main(int argc, char* argv[])
- {
- DWORD dwThreadID = 0;
- HANDLE hThread = NULL;
- //create an event to signal worker thread to exit
- g_hExitEvent = CreateEvent(NULL,TRUE,FALSE,NULL);//not signalled initially..
- //spawn a thread for processing the input
- hThread = (HANDLE)_beginthreadex(NULL,0,ProcessData,NULL,0,(unsigned int *)&dwThreadID);
- if(hThread)
- {
- cout << "enter sentence to process /nOR /nenter /"exit/" to quit/n";
- do
- {
- DataBlock oData;
- cin >> oData.m_szText;
- //if exit typed in.. quit
- if(0 == oData.m_szText.compare("exit"))
- break;
- g_oQueue.Push(oData);
- }
- while(1);
- //time to close ..set the exit event
- SetEvent(g_hExitEvent);
- //wait for worker thread to close
- WaitForSingleObject(hThread,INFINITE);
- //close the thread handle
- CloseHandle(hThread);
- }
- CloseHandle(g_hExitEvent);
- return 0;
- }
- template<typename Data>
- class concurrent_queue
- {
- private:
- std::queue<Data> the_queue;
- mutable boost::mutex the_mutex;
- boost::condition_variable the_condition_variable;
- public:
- void push(Data const& data)
- {
- boost::mutex::scoped_lock lock(the_mutex);
- the_queue.push(data);
- lock.unlock();
- the_condition_variable.notify_one();
- }
- bool empty() const
- {
- boost::mutex::scoped_lock lock(the_mutex);
- return the_queue.empty();
- }
- bool try_pop(Data& popped_value)
- {
- boost::mutex::scoped_lock lock(the_mutex);
- if(the_queue.empty())
- {
- return false;
- }
- popped_value=the_queue.front();
- the_queue.pop();
- return true;
- }
- void wait_and_pop(Data& popped_value)
- {
- boost::mutex::scoped_lock lock(the_mutex);
- while(the_queue.empty())
- {
- the_condition_variable.wait(lock);
- }
- popped_value=the_queue.front();
- the_queue.pop();
- }
- };
boost 线程安全队列的更多相关文章
- 使用Condition Variables 实现一个线程安全队列
使用Condition Variables实现一个线程安全队列 测试机: i7-4800MQ .7GHz, logical core, physical core, 8G memory, 256GB ...
- Boost线程库学习笔记
一.创建一个线程 创建线程 boost::thread myThread(threadFun); 需要注意的是:参数可以是函数对象或者函数指针.并且这个函数无参数,并返回void类型. 当一个thre ...
- Boost线程详解
一.创建一个线程 创建线程 boost::thread myThread(threadFun); 需要注意的是:参数可以是函数对象或者函数指针.并且这个函数无参数,并返回void类型. 当一个thre ...
- Boost 线程学习笔记
Bolg转载自:http://www.cnblogs.com/lvdongjie/p/4447193.html 一: 创建线程 #include <iostream> #include & ...
- Linux多线程系列-2-条件变量的使用(线程安全队列的实现)
多线程情况下,往往需要使用互斥变量来实现线程间的同步,实现资源正确共享. linux下使用如下变量和函数 //条件变量 pthread_cond_t int pthread_cond_init (pt ...
- BOOST 线程完全攻略 - 基础篇
http://blog.csdn.net/iamnieo/article/details/2908621 2008-09-10 12:48 9202人阅读 评论(3) 收藏 举报 thread多线程l ...
- BOOST 线程完全攻略 - 扩展 - 可被关闭的线程类
本文假设读者已经基本了解boost线程库的使用方法. boost是个开源工程,线程这一块也在不断完善之中,到现在这个阶段,boost::thread仅仅实现了一个完美的技术框架,但是读者在实际使用中会 ...
- 线程池 队列 synchronized
线程池 BlockingQueue synchronized volatile 本章从线程池到阻塞队列BlockingQueue.从BlockingQueue到synchronized 和 volat ...
- Java线程安全队列BlockingQueue
线程安全队列BlockingQueue 用法跟普通队列没有区别,只是加入了多线程支持. 这里主要说说add和put,以及poll和take的区别: add和put都是用来忘队列里面塞东西的,而poll ...
随机推荐
- OCM_第十三天课程:Section6 —》数据库性能调优 _结果缓存 /多列数据信息采集统计/采集数据信息保持游标有效
注:本文为原著(其内容来自 腾科教育培训课堂).阅读本文注意事项如下: 1:所有文章的转载请标注本文出处. 2:本文非本人不得用于商业用途.违者将承当相应法律责任. 3:该系列文章目录列表: 一:&l ...
- OCM_第十二天课程:Section6 —》数据库性能调优_ 资源管理器/执行计划
注:本文为原著(其内容来自 腾科教育培训课堂).阅读本文注意事项如下: 1:所有文章的转载请标注本文出处. 2:本文非本人不得用于商业用途.违者将承当相应法律责任. 3:该系列文章目录列表: 一:&l ...
- LeetCode(62):不同路径
Medium! 题目描述: 一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为“Start” ). 机器人每次只能向下或者向右移动一步.机器人试图达到网格的右下角(在下图中标记为“F ...
- Java容器---字符容器StringBuffer & StringBuilder
1.字符串对象 (1)定义 ---String 字符串常量,是不可改变的量,也就是创建后就不能在修改了: --- StringBuffer 字符串变量(线程安全),StringBuffer对象的值都是 ...
- python 全栈开发,Day90(Vue组件,前端开发工具包)
昨日内容回顾 1. Vue使用 1. 生成Vue实例和DOM中元素绑定 2. app.$el --> 取出该vue实例绑定的DOM标签 3. app.$data --> 取出该vue实例绑 ...
- AOJ 0525 Osenbei【穷竭搜索】
AOJ 0525 题意: 有一个烤饼器可以烤r行c列的煎饼,煎饼可以正面朝上(用1表示)也可以背面朝上(用0表示).一次可将同一行或同一列的煎饼全部翻转.现在需要把尽可能多的煎饼翻成正面朝上,问最多能 ...
- Python中List的append引用赋值问题处理
Python中的对象之间赋值时是按引用传递的,如果需要拷贝对象,需要使用标准库中的copy模块. 1. copy.copy 浅拷贝 只拷贝父对象,不会拷贝对象的内部的子对象. 2. copy.deep ...
- Storm消息可靠机制
一:介绍 1.介绍 默认情况是,Spout每获取一条数据,封装后发送给后面的组件,不再管后面是否处理完成或成功接收,不再考虑. 这种的情况是不用太精确,没有启用可靠性消息机制. 2.方面的体现 spo ...
- python tkinter-布局
包装布局pack() 目前对它的感觉是,当一个窗体的对象都设置完属性后,最后用它来绑定到窗体上.之后就不能再设置属性了 名称 描述 取值范围 expand 当值为“yes”时,side选项无效.组 ...
- Android系统下用js自定义gesture事件(仿ios实现移动端事件一致)
.katex { display: inline-block; text-align: initial; } .katex { font-family: Consolas, Inconsolata, ...