我一直在尝试使用 c++/cx StorageFile::ReadAsync()
来读取商店应用程序中的文件,但无论如何它总是返回无效的参数异常
// "file" are returned from FileOpenPicker
IRandomAccessStream^ reader = create_task(file->OpenAsync(FileAccessMode::Read)).get();
if (reader->CanRead)
{
BitmapImage^ b = ref new BitmapImage();
const int count = 1000000;
Streams::Buffer^ bb = ref new Streams::Buffer(count);
create_task(reader->ReadAsync(bb, 1, Streams::InputStreamOptions::None)).get();
}
我已打开所有 list 功能并为声明添加了“文件打开选择器”+“文件类型关联”。有任何想法吗 ?谢谢!
ps:我找到的大多数解决方案都是针对C#的,但是代码结构是相似的...
最佳答案
如果此代码在 UI 线程(或任何其他单线程单元或 STA)上执行,则如果任务尚未完成,则对 .get()
的调用将抛出,因为对 .get()
的调用会阻塞线程。您不得阻塞 UI 线程或任何其他 STA,并且在启用 C++/CX 支持的情况下进行编译时,库会强制执行此操作。
如果您在调试器中打开第一次机会异常处理(Debug -> Exceptions...,选中 C++ Exceptions 复选框),您应该看到要抛出的第一个异常是 invalid_operation
异常,来自 <ppltasks.h>
中的以下行:
// In order to prevent Windows Runtime STA threads from blocking the UI, calling
// task.wait() task.get() is illegal if task has not been completed.
if (!_IsCompleted() && !_IsCanceled())
{
throw invalid_operation("Illegal to wait on a task in a Windows Runtime STA");
}
您报告的“无效参数”是此异常到达 ABI 边界时导致的致命错误:通知调试器应用程序即将终止,因为此异常未得到处理。
您需要使用
task::then
重构代码以使用延续,如文章 Asynchronous Programming in C++ Using PPL 中所述关于c++ - C++/cx 中的 storagefile::ReadAsync 异常?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13560768/