基于this示例,我的程序中有这个同步初始化部分:
io_service = new boost::asio::io_service;
resolver = new boost::asio::ip::tcp::resolver(*io_service);
query = new boost::asio::ip::tcp::resolver::query(data.serverAddress.c_str(),data.serverPort.c_str());
iterator = resolver->resolve(*query);
//...
现在这种方法没有任何问题,但是如果没有连接,则调用resolver->resolve(*query);
无限制地阻塞。为了解决这个问题,我决定改用resolver->async_resolve(*query);
。所以我编写了以下代码来与lambda函数同步执行,因此以下代码替换了前一代码的最后一个语句:
boost::system::error_code queryError;
boost::function<void(const boost::system::error_code&,const boost::asio::ip::tcp::resolver::iterator&)> queryLambda =
[&querySuccess,&queryError,this]
(const boost::system::error_code& errorCode, const boost::asio::ip::tcp::resolver::iterator& it)
{std::cout<<"Success!"<<std::endl;querySuccess=1;iterator=it;queryError=errorCode;};
resolver->async_resolve(*query,queryLambda);
int timeout = 10000;
int totalTime = 0;
int timeWaitStep = 1000;
while(true)
{
std::cout<<"Trying to connect..."<<std::endl;
sleep(timeWaitStep);
if(querySuccess)
{
break;
}
else
{
totalTime += timeWaitStep;
std::cout<<totalTime<<std::endl;
if(totalTime > timeout)
{
throw std::domain_error("Unable to connect to server. Make sure you have a valid connection.");
}
}
}
当同步代码瞬间连接时,异步代码永远不会连接。我做错了什么?
感谢您的任何努力。
答案 0 :(得分:3)
您应run
使用io_service::run
功能或io_service::poll
在某处工作。顺便说一句,如果您希望resolve
超时,则应使用deadline_timer
和async_wait
。
答案 1 :(得分:2)
在Boost.Asio中发出异步操作意味着你安排它在io_service
内调用;除非你告诉io_service
它应该开始轮询网络,执行预定的操作并调用你的回调,否则所有这些操作都不会发生。这就是io_service::poll
和io_service::run
等方法。
最简单的方法是在致电io_service::run
后致电async_resolve
:
...
resolver->async_resolve(*query,queryLambda);
io_service->run();