我在理解为什么在以下示例中使用boost documentation本身的情况下为什么使用boost::basic_thread_pool executor
(未记录)接口的问题上
template<typename T>
struct sorter
{
boost::basic_thread_pool pool;
typedef std::list<T> return_type;
std::list<T> do_sort(std::list<T> chunk_data)
{
if(chunk_data.empty()) {
return chunk_data;
}
std::list<T> result;
result.splice(result.begin(),chunk_data, chunk_data.begin());
T const& partition_val=*result.begin();
typename std::list<T>::iterator divide_point =
std::partition(chunk_data.begin(), chunk_data.end(),
[&](T const& val){return val<partition_val;});
std::list<T> new_lower_chunk;
new_lower_chunk.splice(new_lower_chunk.end(), chunk_data,
chunk_data.begin(), divide_point);
boost::future<std::list<T> > new_lower =
boost::async(pool, &sorter::do_sort, this, std::move(new_lower_chunk));
std::list<T> new_higher(do_sort(chunk_data));
result.splice(result.end(),new_higher);
while(!new_lower.is_ready()) {
pool.schedule_one_or_yield();
}
result.splice(result.begin(),new_lower.get());
return result;
}
};
有问题的电话为 pool.schedule_one_or_yield();
。如果我错了,请纠正我,但是它建议最终将安排一个提交的任务执行。如果是这样,是否不应该每个以前对 boost::async(pool, &sorter::do_sort, this, std::move(new_lower_chunk));
的调用都已经隐式地计划了提交的任务?
我知道boost executor API是实验性的,但是您知道为什么schedule_one_or_yield
没有记录吗?
答案 0 :(得分:1)
函数schedule_one_or_yield()
已从boost的当前源代码中删除,因为它实现了忙等待。这是
https://github.com/boostorg/thread/issues/117
loop_executor :: loop当前为:
void loop()
{
while (!closed())
{
schedule_one_or_yield();
}
while (try_executing_one())
{
}
}
第一个循环重复调用schedule_one_or_yield(),这很简单
void schedule_one_or_yield()
{
if ( ! try_executing_one())
{
this_thread::yield();
}
}
当前的实施loop_executor::loop
是
/**
* The main loop of the worker thread
*/
void loop()
{
while (execute_one(/*wait:*/true))
{
}
BOOST_ASSERT(closed());
while (try_executing_one())
{
}
}
源:https://github.com/boostorg/thread/blob/develop/include/boost/thread/executors/loop_executor.hpp
在示例user_scheduler
中也将其删除,旧版本在
https://github.com/mongodb/mongo/blob/master/src/third_party/boost-1.60.0/boost/thread/user_scheduler.hpp,第63行有schedule_one_or_yield()
没有schedule_one_or_yield()
的新版本位于https://github.com/boostorg/thread/blob/develop/example/user_scheduler.cpp