讲讲在Libuv中使用Io_Uring

本文转载自微信公众号「编程杂技  」,作者theanarkh 。转载本文请联系编程杂技公众号。

网站建设哪家好,找创新互联!专注于网页设计、网站建设、微信开发、重庆小程序开发公司、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了龙凤免费建站欢迎大家使用!

本文介绍如果在Libuv中使用io_uring。逻辑:

1 申请一个io_uring对应的fd。

2 初始化一个poll handle,封装1中的fd。

3 注册到Libuv的epoll中。

4 读取文件列表,给io_uring提交请求

5 io_uring完成,1中的fd可读,从而epoll返回。

6 Libuv的poll io阶段执行回调。

7 回调里获取io_uring的任务完成列表,拿到每个任务关联的请求,执行回调。

 
 
 
  1. #include 
  2. #include 
  3. #include 
  4. #include 
  5. #include 
  6. #include 
  7. #include 
  8. #include 
  9. #define QUEUE_DEPTH 1
  10. #define BLOCK_SZ    1024
  11. // 前向声明
  12. struct file_info;
  13. // 定义回调
  14. typedef void (*file_callback)(struct file_info*);
  15. // 管理一个文件读取请求的结构体
  16. struct file_info {
  17.     // 文件大小
  18.     off_t file_sz;
  19.     // 回调
  20.     file_callback cb;
  21.     // 读取的大小
  22.     int count;
  23.     // 文件名
  24.     char *name;
  25.     // 读取的数据
  26.     struct iovec iovecs[];     
  27. };
  28. // 获取文件大小
  29. off_t get_file_size(int fd) {
  30.     struct stat st;
  31.     if(fstat(fd, &st) < 0) {
  32.         perror("fstat");
  33.         return -1;
  34.     }
  35.     if (S_ISBLK(st.st_mode)) {
  36.         unsigned long long bytes;
  37.         if (ioctl(fd, BLKGETSIZE64, &bytes) != 0) {
  38.             perror("ioctl");
  39.             return -1;
  40.         }
  41.         return bytes;
  42.     } else if (S_ISREG(st.st_mode))
  43.         return st.st_size;
  44.     return -1;
  45. }
  46. // 向内核提交一个请求
  47. int submit_read_request(char *file_path, file_callback cb, struct io_uring *ring) {
  48.     // 打开文件
  49.     int file_fd = open(file_path, O_RDONLY);
  50.     if (file_fd < 0) {
  51.         perror("open");
  52.         return 1;
  53.     }
  54.     // 获取大小
  55.     off_t file_sz = get_file_size(file_fd);
  56.     off_t bytes_remaining = file_sz;
  57.     int current_block = 0;
  58.     int blocks = (int) file_sz / BLOCK_SZ;
  59.     if (file_sz % BLOCK_SZ) blocks++;
  60.     // 申请内存
  61.     struct file_info *fi = malloc(sizeof(*fi) + (sizeof(struct iovec) * blocks));
  62.     // 保存文件名
  63.     fi->name = file_path;
  64.     // 计算和申请保存文件内容的内存
  65.     while (bytes_remaining) {
  66.         // 剩下的大小
  67.         off_t bytes_to_read = bytes_remaining;
  68.         // 一个buffer最大保存BLOCK_SZ大小
  69.         if (bytes_to_read > BLOCK_SZ)
  70.             bytes_to_read = BLOCK_SZ;
  71.         // 记录buffer大小
  72.         fi->iovecs[current_block].iov_len = bytes_to_read;
  73.         // 申请内存
  74.         void *buf;
  75.         if( posix_memalign(&buf, BLOCK_SZ, BLOCK_SZ)) {
  76.             perror("posix_memalign");
  77.             return 1;
  78.         }
  79.         // 记录内存地址
  80.         fi->iovecs[current_block].iov_base = buf;
  81.         // 下一块
  82.         current_block++;
  83.         // 更新剩下的大小
  84.         bytes_remaining -= bytes_to_read;
  85.     }
  86.     // 保存文件大小
  87.     fi->file_sz = file_sz;
  88.     // 获取一个io_uring的请求结构体
  89.     struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
  90.     // 填充请求
  91.     io_uring_prep_readv(sqe, file_fd, fi->iovecs, blocks, 0);
  92.     // 保存请求上下文,响应的时候用
  93.     io_uring_sqe_set_data(sqe, fi);
  94.     // 保存回调
  95.     fi->cb = cb;
  96.     // 提交请求给内核
  97.     io_uring_submit(ring);
  98.     return 0;
  99. }
  100. // io_uring相关的结构体
  101. struct io_uring_info {
  102.   int fd;
  103.   int32_t pending;
  104.   struct io_uring ring;
  105.   uv_poll_t poll_handle;
  106. };
  107. // io_uring完成任务后,Libuv执行的回调
  108. void uv__io_uring_done(uv_poll_t* handle, int status, int events) {
  109.     struct io_uring* ring;
  110.     struct io_uring_info* io_uring_data;
  111.     struct io_uring_cqe* cqe;
  112.     struct file_info* req;
  113.     // 获取Libuv中保存的io_uring信息
  114.     io_uring_data = uv_default_loop()->data;
  115.     ring = &io_uring_data->ring;
  116.     // 处理每一个完成的请求
  117.     while (1) { 
  118.         io_uring_peek_cqe(ring, &cqe);
  119.         if (cqe == NULL)
  120.             break;
  121.         // 全部处理完则注销事件
  122.         if (--io_uring_data->pending == 0)
  123.            uv_poll_stop(handle);
  124.         // 拿到请求上下文
  125.         req = (void*) (uintptr_t) cqe->user_data;
  126.         // 记录读取的大小
  127.         req->count = cqe->res;
  128.         io_uring_cq_advance(ring, 1);
  129.         // 执行回调
  130.         req->cb(req);
  131.     }
  132.     // 处理完则退出
  133.     if (io_uring_data->pending == 0)
  134.         uv_stop(uv_default_loop());
  135. }
  136. // 文件读取后的业务回调
  137. void filedone(struct file_info* info) {
  138.     printf("读取的大小:%d,文件信息:%s => %d\n", (int)info->count, info->name, (int)info->file_sz);}int main(int argc, char *argv[]) {
  139.     if (argc < 2) {
  140.         fprintf(stderr, "请输入文件名称\n");
  141.         return 1;
  142.     }
  143.     // 申请一个io_uring相关的结构体
  144.     struct io_uring_info *io_uring_data = malloc(sizeof(*io_uring_data));
  145.     // 初始化io_uring
  146.     io_uring_queue_init(1, &io_uring_data->ring, 0);
  147.     // 初始化poll handle,保存监听的fd
  148.     uv_poll_init(uv_default_loop(), &io_uring_data->poll_handle, io_uring_data->ring.ring_fd);
  149.     // 注册事件和回调
  150.     uv_poll_start(&io_uring_data->poll_handle, UV_READABLE, uv__io_uring_done);
  151.     // 保存io_uring的上下文在loop中
  152.     uv_default_loop()->data = (void *)io_uring_data;
  153.     // 处理每一个文件
  154.     for (int i = 1; i < argc; i++) {
  155.         submit_read_request(argv[i], filedone, &io_uring_data->ring);
  156.         io_uring_data->pending++;
  157.     }
  158.     // 开始事件循环
  159.     uv_run(uv_default_loop(), UV_RUN_DEFAULT);
  160.     // 退出
  161.     uv_loop_close(uv_default_loop());
  162.     io_uring_queue_exit(&io_uring_data->ring);
  163.     return 0;
  164. }

编译过程

1 git clone https://github.com/axboe/liburing.git。执行./configure && make -j2 && sudo make install(make j2开启两个线程编译,根据自己的核数定)。

2 git clone https://github.com/libuv/libuv.git。执行./autogen.sh && ./configure && make -j2 && sudo make install。

3 安装完依赖后新建test.cc。然后编译 gcc -xc test2.cc -luring -luv(xc指定按c语言编译,c++的话限制不一样,会报错)。

4 新建两个测试文件hello.cc和world.cc 。执行 ./a.out hello.cc world.cc。

5 输出

 
 
 
  1. 读取的大小:6997,文件信息:hello.cc => 6997
  2. 读取的大小:11019,文件信息:world.cc => 11019

代码仓库:https://github.com/theanarkh/learn-io_uring。

可以参考

1.https://github.com/shuveb/io_uring-by-example/blob/master/03_cat_liburing/main.c

2 https://github.com/libuv/libuv/pull/2322

网页名称:讲讲在Libuv中使用Io_Uring
当前地址:http://www.shufengxianlan.com/qtweb/news3/214103.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联