Boost_Asio(4) strand

// asio_strand.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"

/*
	代码中开启了两个线程运行io_service的run函数
	未使用strand来post任务时候 显示是不确定的
	而使用了strand后 显示是按照输入的次序依次显示
*/
#include <boost/asio.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/bind.hpp>
#include <iostream>

boost::mutex global_stream_lock;

void WorkerThread(boost::shared_ptr< boost::asio::io_service > io_service)
{
	global_stream_lock.lock();
	std::cout << "[" << boost::this_thread::get_id()
		<< "] Thread Start" << std::endl;
	global_stream_lock.unlock();

	io_service->run();

	global_stream_lock.lock();
	std::cout << "[" << boost::this_thread::get_id()
		<< "] Thread Finish" << std::endl;
	global_stream_lock.unlock();
}

void PrintNum(int x)
{
	std::cout << "[" << boost::this_thread::get_id()
		<< "] x: " << x << std::endl;
}

int main(int argc, char * argv[])
{
	boost::shared_ptr< boost::asio::io_service > io_service(
		new boost::asio::io_service
		);
	boost::shared_ptr< boost::asio::io_service::work > work(
		new boost::asio::io_service::work(*io_service)
		);
	boost::asio::io_service::strand strand(*io_service);

	global_stream_lock.lock();
	std::cout << "[" << boost::this_thread::get_id()
		<< "] The program will exit when all work has finished." << std::endl;
	global_stream_lock.unlock();

	boost::thread_group worker_threads;
	for (int x = 0; x < 2; ++x)
	{
		worker_threads.create_thread(boost::bind(&WorkerThread, io_service));
	}

	boost::this_thread::sleep(boost::posix_time::milliseconds(1000));
	
	strand.post( boost::bind( &PrintNum, 1 ) );
	strand.post( boost::bind( &PrintNum, 2 ) );
	strand.post( boost::bind( &PrintNum, 3 ) );
	strand.post( boost::bind( &PrintNum, 4 ) );
	strand.post( boost::bind( &PrintNum, 5 ) );
	

// 	io_service->post(boost::bind(&PrintNum, 1));
// 	io_service->post(boost::bind(&PrintNum, 2));
// 	io_service->post(boost::bind(&PrintNum, 3));
// 	io_service->post(boost::bind(&PrintNum, 4));
// 	io_service->post(boost::bind(&PrintNum, 5));
	work.reset();

	worker_threads.join_all();

	system("pause");
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值