我有一个C ++应用程序,我在其中使用Boost Threads来提供并发性。基本样本如下:
processingThreadGroup->create_thread(boost::bind(process, clientSideSocket, this));
这里,processingThreadGroup是boost中线程池的共享指针,process是我需要调用的函数。 clientSideSocket和这是应该传递给流程函数的参数。
在流程函数中,如果检测到错误,我会抛出自定义异常。处理功能将数据发送到远程服务器。所以我的问题是,如何在调用堆栈中传播此错误?我想在清理后关闭系统。尝试以下方法:
try {
processingThreadGroup->create_thread(boost::bind(process, clientSideSocket, this));
} catch (CustomException& exception) {
//code to handle the error
}
但没有奏效。如何正确地做到这一点?
谢谢!
答案 0 :(得分:1)
要传播返回值和异常,您应该使用future
s。这是一个简单的方法:
// R is the return type of process, may be void if you don't care about it
boost::packaged_task< R > task( boost::bind(process, clientSideSocket, this) );
boost::unique_future< R > future( task.get_future() );
processingThreadGroup->create_thread(task);
future.get();
这有许多问题需要记住。首先,task
的生命周期必须扩展process
的异步执行。其次,get()
将阻塞,直到task
完成,如果成功结束则返回其值,或者如果抛出异常则传播异常。您可以使用所有类型的函数来检查future
的状态,例如has_value()
,has_exception()
,is_ready()
。