一、概述
1迟几、IO復(fù)用
(1)定義:
它指的是同時(shí)等待多個(gè)文件描述符就緒,以系統(tǒng)調(diào)用的形式提供栏笆。
(2)常見的IO復(fù)用技術(shù):
select类腮、poll、epoll蛉加、kqueue等待蚜枢。其epoll為Linux系統(tǒng)獨(dú)占,而kqueue則在UNIX系統(tǒng)针饥、MacOS系統(tǒng)都有祟偷。
二、使用
1打厘、初始化
int mQEv = kqueue(); // kqueue對象
// kqueue 的事件結(jié)構(gòu)體修肠,不需要直接操作
struct timespec timeout;
timeout.tv_sec = 2;
timeout.tv_nsec = 0;
struct kevent ev[2]; // 要監(jiān)視的事件列表
EV_SET(ev, sockfd, EVFILT_READ, EV_ENABLE, 0, 0,(void*)(intptr_t)sockfd);
EV_SET(ev+1, EV_USER_REPLAY, EVFILT_USER, EV_DISABLE, 0, 0, NULL);
kevent(mQEv, ev, 2, NULL, 0, NULL);
struct kevent activeEv; // kevent返回的事件列表(參考后面的kevent函數(shù))
int ret = kevent(mQEv, NULL, 0, &activeEv, 1, &timeout); // 已經(jīng)就緒的文件描述符數(shù)量
三、kevent結(jié)構(gòu)體和kevent()函數(shù)
1户盯、總概
kqueue體系包括:struct kevent結(jié)構(gòu)體嵌施、EV_SET宏、kevent()函數(shù)莽鸭。
(1)struct kevent結(jié)構(gòu)體
struct kvent
{
uintptr_t ident; /* identifier for this event吗伤,比如該事件關(guān)聯(lián)的文件描述符 */
int16_t filter; /* filter for event,可以指定監(jiān)聽類型硫眨,如EVFILT_READ足淆,EVFILT_WRITE,EVFILT_TIMER等 */
uint16_t flags; /* general flags ,可以指定事件操作類型巧号,比如EV_ADD族奢,EV_ENABLE, EV_DELETE等 */
uint32_t fflags; /* filter-specific flags */
intptr_t data; /* filter-specific data */
void *udata; /* opaque user data identifier丹鸿,可以攜帶的任意數(shù)據(jù) */
}
(2)EV_SET
它是用于初始化kevent結(jié)構(gòu)體的宏越走,其用法如下:
EV_SET(&kev, ident, filter, flags, fflags, data, udata);
(3)kevent函數(shù)
它是真正進(jìn)行IO復(fù)用的函數(shù),其用法如下:
int kevent(int kq, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout);
說明:
1靠欢、函數(shù)返回值 int 類型:發(fā)生的事件數(shù)量廊敌,返回值為:-1,直接return或quit门怪。
2骡澈、參數(shù):
kq:kqueue對象;
changelist:監(jiān)視列表
nchanges:長度
eventlist:返回已經(jīng)就緒的事件列表
nevents:長度
timeout:超時(shí)限制
參考文獻(xiàn):
https://www.cnblogs.com/luminocean/archive/2016/06/30/5631336.html