我正在编写一个C ++程序,使用C ++ REST SDK与Internet进行交互。我有一个主要功能和一个webCommunication功能。代码类似于以下内容:
void webCommunication(data, url)
{
//Communicate with the internet using the http_client
//Print output
}
int main()
{
//Obtain information from user
webCommunication(ans1, ans2);
system("PAUSE");
}
但是,似乎主要功能在webCommunication功能完成之前正在进行。如果我使webCommunication成为一个函数类型的字符串并且有
cout << webCommunication(ans1, ans2) << endl;
但是仍然会暂停,然后打印检索到的数据。通常情况下,这很好,我希望稍后在代码中引用返回的答案。如果webCommunication尚未完成,则应用程序崩溃。我可以使用某种wait_until函数吗?
更新:我尝试使用建议的互斥锁但没有成功。我也尝试将该函数作为一个线程启动,然后使用.join()仍然没有成功。
答案 0 :(得分:1)
如果您将webCommunications()函数声明为
pplx::task<void> webCommunications()
{
}
然后你可以使用&#34; .wait()&#34;在调用函数时。然后它将等待函数执行以继续。看起来像这样:
pplx::task<void> webCommunications()
{
}
int main()
{
webCommunications().wait();
//Do other stuff
}
答案 1 :(得分:0)
我认为您在说明中缺少关键字。异步。这表明它在完成之前返回。如果你需要它是同步的,你应该在调用之后立即获取信号量并将一个版本放入回调代码中。
https://msdn.microsoft.com/en-us/library/jj950081.aspx
上面链接中修改过的代码段(添加了对回调的锁定):
// Creates an HTTP request and prints the length of the response stream.
pplx::task<void> HTTPStreamingAsync()
{
http_client client(L"http://www.fourthcoffee.com");
// Make the request and asynchronously process the response.
return client.request(methods::GET).then([](http_response response)
{
// Print the status code.
std::wostringstream ss;
ss << L"Server returned returned status code " << response.status_code() << L'.' << std::endl;
std::wcout << ss.str();
// TODO: Perform actions here reading from the response stream.
auto bodyStream = response.body();
// In this example, we print the length of the response to the console.
ss.str(std::wstring());
ss << L"Content length is " << response.headers().content_length() << L" bytes." << std::endl;
std::wcout << ss.str();
// RELEASE lock/semaphore/etc here.
mutex.unlock()
});
/* Sample output:
Server returned returned status code 200.
Content length is 63803 bytes.
*/
}
注意:在函数调用后获取互斥锁以启动Web处理。添加回调代码以释放互斥锁。通过这种方式,主线程锁定,直到函数实际完成,然后继续“暂停”。
int main()
{
HttpStreamingAsync();
// Acquire lock to wait for complete
mutex.lock();
system("PAUSE");
}