boost:偶尔同步任务的asio线程池实现

时间:2012-10-30 19:38:00

标签: c++ multithreading gcc boost boost-asio

我有一个“主”功能,每个时间步一次执行许多小的独立任务。但是,在每个时间步之后,我必须等待所有任务完成才能继续前进。

我想让程序多线程化。我已尝试使用boost-offshoot线程池实现,我尝试使用(共享指针)线程的向量,我尝试了asio线程池的想法(使用io_service,建立一些工作,然后分发运行到线程和发布处理程序到io_service)。

所有这些似乎都有很多开销为我的“许多小任务”创建和销毁线程,我想要一种方法,最好使用asio工具,实例化一个io_service,一个thread_group,将处理程序发布到io_service ,等待单个时间步骤的工作在发布更多任务之前完成。有没有办法做到这一点?这是我现在工作的(剥离)代码:

boost::asio::io_service io_service;
for(int theTime = 0; theTime != totalTime; ++theTime)
{
    io_service.reset();
    boost::thread_group threads;
    // scoping to destroy the work object after work is finished being assigned
    {
        boost::asio::io_service::work work(io_service);
        for (int i = 0; i < maxNumThreads; ++i)
        {
            threads.create_thread(boost::bind(&boost::asio::io_service::run,
                &io_service));
        }

        for(int i = 0; i < numSmallTasks; ++i)
        {
            io_service.post(boost::bind(&process_data, i, theTime));
        }
    }
    threads.join_all(); 
}

这是我所拥有的(但不知道如何实施):

boost::asio::io_service io_service;
boost::thread_group threads;
boost::asio::io_service::work work(io_service);
for (int i = 0; i < maxNumThreads; ++i)
{
    threads.create_thread(boost::bind(&boost::asio::io_service::run,
         &io_service));
}

for(int theTime = 0; theTime != totalTime; ++theTime)
{
    for(int i = 0; i < numSmallTasks; ++i)
    {
        io_service.post(boost::bind(&process_data, i, theTime));
    }
    // wait here until all of these tasks are finished before looping 
    // **** how do I do this? *****
}
// destroy work later and join all threads later...

3 个答案:

答案 0 :(得分:11)

您可以使用futures进行数据处理,并使用boost::wait_for_all()与它们同步。这将允许您根据完成的工作部分而不是线程进行操作。

int process_data() {...}

// Pending futures
std::vector<boost::unique_future<int>> pending_data;

for(int i = 0; i < numSmallTasks; ++i)
{
   // Create task and corresponding future
   // Using shared ptr and binding operator() trick because
   // packaged_task is non-copyable, but asio::io_service::post requires argument to be copyable

   // Boost 1.51 syntax
   // For Boost 1.53+ or C++11 std::packaged_task shall be boost::packaged_task<int()>
   typedef boost::packaged_task<int> task_t;

   boost::shared_ptr<task_t> task = boost::make_shared<task_t>(
      boost::bind(&process_data, i, theTime));

   boost::unique_future<int> fut = task->get_future();

   pending_data.push_back(std::move(fut));
   io_service.post(boost::bind(&task_t::operator(), task));    
}

// After loop - wait until all futures are evaluated
boost::wait_for_all(pending_data.begin(), pending_data.end()); 

答案 1 :(得分:0)

可能您可以使用boost::barrier,如下所示:

void thread_proc( boost::barrier& b ) {
    while( true ) {
        if( !ioservice.run_one() ) break; // io_service stopped
        b.wait();
    }
}

答案 2 :(得分:0)

Rost的方法基本上有效,但是boost :: make_shared不能按原样编译。以下是工作版本(在vs2012中):

#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/make_shared.hpp>
#include <boost/function_types/result_type.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
#include <boost/thread.hpp>

std::vector<boost::unique_future<void>> pending_data;
typedef boost::packaged_task<void> task_t;

boost::shared_ptr< boost::packaged_task<void> > pt(new boost::packaged_task<void> ([&,i](){...}));
boost::unique_future<void> result = pt->get_future();
pending_data.push_back(boost::move(result));
io_service.post(boost::bind(&task_t::operator(), pt));

boost::wait_for_all(pending_data.begin(), pending_data.end()); 
pending_data.clear();

如果在packaged_task typedef中使用参数,则不会编译。与每个循环相比,asio和future方法的这个线程池只节省了8%的时间,创建了新的线程方法。