我必须在 C++ 中实现异步 HTTP GET,并且我们必须能够将应用程序提交到 Windows 8 应用商店。
我的问题如下:
我找到了一个合适的示例代码,它实现了一个 HttpRequest 类http://code.msdn.microsoft.com/windowsapps/HttpClient-sample-55700664
如果 URI 正确,则此示例有效,但如果 URI 指向无效/不存在的位置(例如:www.google22.com),则会引发异常。如果我能捕捉到异常,这会很好,但我无法弄清楚我应该如何或在哪里捕捉它。
现在一些代码。这是对抛出异常的基于异步、并发::任务的方法的调用:
try {
...
Web::HttpRequest httpRequest;
httpRequest.GetAsync(uri, cancellationTokenSource.get_token())
.then( [] (concurrency::task<std::wstring> response)
{
try {
response.get();
}
catch( ... ) {
int i = 1;
}
return response;
})
...
} catch ( ... ) {
...
}
这是 GetAsync 方法的相关部分(方法的结尾):
// Return a task that completes when the HTTP operation completes.
// We pass the callback to the continuation because the lifetime of the
// callback must exceed the operation to ensure that cancellation
// works correctly.
return completionTask.then([this, stringCallback](tuple<HRESULT, wstring> resultTuple)
{
// If the GET operation failed, throw an Exception.
CheckHResult(std::get<0>(resultTuple));
statusCode = stringCallback->GetStatusCode();
reasonPhrase = stringCallback->GetReasonPhrase();
return std::get<1>(resultTuple);
});
CheckHResult 行抛出异常,代码如下:
inline void CheckHResult(HRESULT hResult)
{
if (hResult == E_ABORT)
{
concurrency::cancel_current_task();
}
else if (FAILED(hResult))
{
throw Platform::Exception::CreateException(hResult);
}
}
我在 GetAsync 调用周围有一个 try-catch,在 .then 延续 lambda 中也有一个 try-catch。
在相关的 Microsoft 文档(http://msdn.microsoft.com/en-us/library/windows/apps/hh780559.aspx)中,它指出任务引发的异常应该可以在链中的下一个任务中捕获,但不知何故在我的情况下它不起作用。此外,甚至整个调用周围的 try-catch 都没有捕获异常,它只是跳过了所有内容......
有人遇到过这个问题吗?我想我已经尝试了官方文档中所述的所有内容,但它仍然让异常变得疯狂并使应用程序崩溃。我想念什么?
编辑:
我已经修改了代码,除了异常处理之外什么都不做,它仍然没有捕获 .GetAsync 中的任务抛出的异常
清理后的代码:
try
{
Windows::Foundation::Uri^ uri;
uri = ref new Windows::Foundation::Uri( uri_string_to_fetch );
concurrency::cancellation_token_source cancellationTokenSource = concurrency::cancellation_token_source();
Web::HttpRequest httpRequest;
OutputDebugString( L"Start to fetch the uri...\n" );
httpRequest.GetAsync(uri, cancellationTokenSource.get_token())
.then([](concurrency::task<std::wstring> response)
{
try {
response.get();
}
catch( ... ) {
OutputDebugString(L"unknown Exception");
}
})
.then([](concurrency::task<void> t)
{
try {
t.get();
// .get() didn't throw, so we succeeded.
}
catch (Platform::Exception^ e) {
// handle error
OutputDebugString(L"Platform::Exception");
}
catch (...) {
OutputDebugString(L"unknown Exception");
}
});
}
catch (Platform::Exception^ ex) {
OutputDebugString(L"Platform::Exception");
errorCallback(-1);
}
catch ( ... ) {
OutputDebugString(L"unknown Exception");
errorCallback(-2);
}
这仍然让我崩溃并出现异常消息:App1.exe 中 0x75644B32 的第一次机会异常:Microsoft C++ 异常:Platform::COMException ^ at memory location 0x077EEC28。HRESULT:0x800C0005
此外,当我在代码中放置一些断点时,它表明异常会在第一个 .then 被调用之前滑过所有内容。我在这些位置放置了断点(在简化/清理的代码中):
- 在 GetAsync 调用之前
- 进入 GetAsync,到CheckHResult(std::get<0>(resultTuple)); 抛出异常的行
- 进入每个尝试和捕获案例/块
执行顺序,用断点测试:
- 在 GetAsync 调用之前 [OK]
- 在 GetAsync 中,将抛出异常的行 [OK]
- 现在应用程序崩溃了,每次尝试捕获都会滑倒,继续
- 现在第一个.then中的行被调用,在它的 try 块中
- 任何 catch 块未捕获的另一个应用程序级异常
- 现在是第一个.then的 catch 块
- 第二个 .then 方法的try块
- 仅此而已,第二个.then的捕获甚至没有捕获任何异常
以及打印的调试日志,依次为: - 开始获取 uri... - App1.exe 中 0x75644B32 处的第一次机会异常:Microsoft C++ 异常:Platform::COMException ^ 在内存位置 0x082FEEF0。HRESULT:0x800C0005 - App1.exe 中 0x75644B32 处的第一次机会异常:Microsoft C++ 异常:在内存位置 0x00000000 处 [rethrow]。- App1.exe 中 0x75644B32 处的第一次机会异常:Microsoft C++ 异常:Platform::COMException ^ 位于内存位置 0x082FE670。HRESULT:0x800C0005 - App1.exe 中 0x75644B32 处的第一次机会异常:Microsoft C++ 异常:Platform::COMException ^ 位于内存位置 0x082FDD88。HRESULT:0x800C0005 - 未知异常
怎么了??