Linux下libaio的一个简单例子

libaio是Linux下的一个异步非阻塞接口,它提供了以异步非阻塞方式来读写文件的方式,读写效率比较高。
首先推荐两个介绍Linux I/O模型的页面,写的很好:
http://www.ibm.com/developerworks/cn/linux/l-async/
http://www.iteye.com/topic/868702
对于libaio的读写过程简单说来就是你发出一个读写请求,然后你可以开始做其他事情,当读写过程结束时libaio会通知你你的这次请求已经完成(而select模型是告诉你读写已经就绪)。
这里给出一个很简单的小例子,具体函数可以通过man查看:

#include<stdio.h>
#include<fcntl.h>
#include<string.h>
#include<stdlib.h>
#include<libaio.h>
#include<errno.h>
#include<unistd.h>
int main(void){
    int output_fd;
    const char *content="hello world!";
    const char *outputfile="hello.txt";
    io_context_t ctx;
    struct iocb io,*p=&io;
    struct io_event e;
    struct timespec timeout;
    memset(&ctx,0,sizeof(ctx)); 
    if(io_setup(10,&ctx)!=0){//init
        printf("io_setup error\n"); 
        return -1; 
    }   
    if((output_fd=open(outputfile,O_CREAT|O_WRONLY,0644))<0){   
        perror("open error");
        io_destroy(ctx);
        return -1; 
    }   
    io_prep_pwrite(&io,output_fd,content,strlen(content),0);
    io.data=content;
    if(io_submit(ctx,1,&p)!=1){
        io_destroy(ctx);
        printf("io_submit error\n");    
        return -1; 
    }   
    while(1){
        timeout.tv_sec=0;
        timeout.tv_nsec=500000000;//0.5s
        if(io_getevents(ctx,0,1,&e,&timeout)==1){   
            close(output_fd);
            break;
        }   
        printf("haven't done\n");
        sleep(1);
    }   
    io_destroy(ctx);
    return 0;
}

有关libaio更加详细的内容可以看以下两个页面:
http://tiaozhanshu.com/libaio-api.html
http://lse.sourceforge.net/io/aio.html

转自:https://www.cnblogs.com/aLittleBitCool/archive/2011/10/18/2216646.html

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值