我有一个启动aio_read
任务并返回主程序的函数。
我想定期检查任务是否完成以关闭文件描述符,并可能通知用户。
我当前的方法是声明一个struct
,其中包含任务的struct aiocb
和文件描述符。将其添加到全局数组并检查是否有任何任务正在使用以下命令(aio_check函数):
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <aio.h>
#include <unistd.h>
#include "aioqueue.h"
void aio_add(struct aiocb a, int fd) {
for (int i = 0; i < MAX; i++) {
if (aio_array[i].valid == 0) {
aio_pack tmp;
tmp.cb = a;
tmp.fd = fd;
tmp.valid = 1;
aio_array[i] = tmp;
printf("request enqueued\n");
return;
}
}
printf("This shell cannot keep track of so many IO operations :/ \n");
}
void aio_check() {
for (int i = 0; i < MAX; i++) {
// wait until the request has finished
if(aio_array[i].valid) {
if (aio_error(&aio_array[i].cb) != EINPROGRESS) {
int nleidos = aio_return(&aio_array[i].cb);
if (nleidos != -1)
printf("AIO Task finished: %d B\n", nleidos);
else
printf("Error!");
close(aio_array[i].fd);
aio_array[i].valid = 0;
} else {
printf("At least one AIO task is in progress\n");
}
}
}
}
和aioqueue.h的代码
#define MAX 10
typedef struct {
struct aiocb cb;
int fd;
int valid;
} aio_pack;
aio_pack aio_array[MAX];
void aio_add(struct aiocb a, int fd);
void aio_check();
问题在于,如果我在添加任务后致电aio_check
,我总是会得到
至少有一项AIO任务正在进行中
消息。即使很明显任务已经完成。
我想这可能是由于在struct aiocb
为aio_error
的瞬间传递了EINPROGRESS
的副本,并且它永远不会更新的事实。但是我此刻迷失了。任何帮助将不胜感激。
谢谢。
答案 0 :(得分:1)
您需要调用aio_suspend()
来处理已完成的I / O操作,否则aio_error()
等将永远不会返回不同的状态。参见https://github.com/ned14/llfio/blob/master/include/llfio/v2.0/detail/impl/posix/io_service.ipp#L290。