-
Notifications
You must be signed in to change notification settings - Fork 1
/
Epoll.h
32 lines (27 loc) · 1.15 KB
/
Epoll.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <strings.h>
#include <string.h>
#include <sys/epoll.h>
#include <vector>
#include <unistd.h>
#include "Channel.h"
#include "Channel.h"
class Channel;
//epoll 类
class Epoll
{
private:
static const int MaxEvents= 100; //epoll_wait() 返回事件数组的大小
int epollfd_ = -1; // epoll 句柄 在构造函数创建
epoll_event events_[MaxEvents]; // 存放poll_wait() 返回时间的数组,在构造函数中分配内存
public:
Epoll(); //构造函数创建epollfd_
~Epoll(); //在析构函数中关闭epollfd_
// void addfd(int fd, uint32_t op); //把fd和它需要监听的事件添加早红黑树上
void updateChannel(Channel *ch); //把channel添加、更新到红黑树上,channel中有fd,也有需要监视的事件
void removeChannel(Channel *ch); //从红黑树上删除 channel
std::vector<Channel *> loop(int timetout=-1); //运行epoll_wait() 等待事件的发生,已发生的事件用vector容器返回
};