ceph存储 Linux下libaio的一个简单例子

来源:互联网 发布:软件系统管理员手册 编辑:程序博客网 时间:2024/05/29 12:16

libaio是Linux下的一个异步非阻塞接口,它提供了以异步非阻塞方式来读写文件的方式,读写效率比较高。

首先推荐两个介绍Linux I/O模型的页面,写的很好:

http://www.ibm.com/developerworks/cn/linux/l-async/

http://www.iteye.com/topic/868702

对于libaio的读写过程简单说来就是你发出一个读写请求,然后你可以开始做其他事情,当读写过程结束时libaio会通知你你的这次请求已经完成(而select模型是告诉你读写已经就绪)。

这里给出一个很简单的小例子,具体函数可以通过man查看:

复制代码
 1 #include<stdio.h> 2 #include<fcntl.h> 3 #include<string.h> 4 #include<stdlib.h> 5 #include<libaio.h> 6 #include<errno.h> 7 #include<unistd.h> 8 int main(void){ 9     int output_fd;10     const char *content="hello world!";11     const char *outputfile="hello.txt";12     io_context_t ctx;13     struct iocb io,*p=&io;14     struct io_event e;15     struct timespec timeout;16     memset(&ctx,0,sizeof(ctx)); 17     if(io_setup(10,&ctx)!=0){//init18         printf("io_setup error\n"); 19         return -1; 20     }   21     if((output_fd=open(outputfile,O_CREAT|O_WRONLY,0644))<0){   22         perror("open error");23         io_destroy(ctx);24         return -1; 25     }   26     io_prep_pwrite(&io,output_fd,content,strlen(content),0);27     io.data=content;28     if(io_submit(ctx,1,&p)!=1){29         io_destroy(ctx);30         printf("io_submit error\n");    31         return -1; 32     }   33     while(1){34         timeout.tv_sec=0;35         timeout.tv_nsec=500000000;//0.5s36         if(io_getevents(ctx,0,1,&e,&timeout)==1){   37             close(output_fd);38             break;39         }   40         printf("haven't done\n");41         sleep(1);42     }   43     io_destroy(ctx);44     return 0;45 }
复制代码

有关libaio更加详细的内容可以看以下两个页面:

http://tiaozhanshu.com/libaio-api.html

http://lse.sourceforge.net/io/aio.html

0 0