libev ev_io源码分析
1. ev_watcher和ev_loop
ev_watcher:
libev中所有事件的基础类型ev_watcher,所有的事件都可以通过(W)watcher转换成ev_watcher,大写的W在libev定义的是ev_watcher *。抽象出ev_watcher作用是所有的watcher都可以共用ev_start、ev_stop函数。
下面用ev_TYPE表示ev_io、ev_timer、ev_async各种watcher类型的通用形式。各种类型的ev_TYPE都继承自ev_watcher,还有形如ev_TYPE_init、ev_TYPE_start、ev_TYPE_stop。
int active;
int pending;
int priority;
void *data;
void (*cb)(struct ev_loop *loop, struct ev_watcher *w, int revents);
} ev_watcher;

本文详细分析了libev库中的ev_watcher和ev_loop,以及它们在事件循环中的工作原理。ev_watcher作为所有事件的基础类型,提供通用的start和stop函数。ev_loop则保存事件循环中的信息,包括watcher链表、状态信息和epoll数据结构。重点讨论了ev_io的结构体,如ev_io_init、ev_io_start和ev_io_stop的操作,以及如何通过epoll_ctl管理事件监听。
最低0.47元/天 解锁文章

被折叠的 条评论
为什么被折叠?



