加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
teventloop.h 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
肉肉 提交于 2016-03-12 23:00 . no commit message
#ifndef _TEVENTLOOP_H_
#define _TEVENTLOOP_H_
#include <map>
#include <vector>
#include "tnocopyable.h"
#ifdef WIN32
#include <windows.h>
#else
#include <unistd.h>
#include <errno.h>
#include <sys/epoll.h>
#include <sys/socket.h>
#define MAX_EVENTS 1024
#endif
namespace tlib
{
enum EventMonitor
{
Read = 0, Write
};
class TSocket;
class TServer;
class TClient;
class TEventLoop: TNoCopyable
{
public:
TEventLoop();
virtual ~TEventLoop();
bool AddLoop(int fd, EventMonitor em);
bool DelLoop(int fd, EventMonitor em);
void RunLoop(TServer* srv);
void WakeUp();
TTaskQueue m_ioQueues;
public:
int writefd, readfd;
TServer* pSrv;
TBufferPool m_bufferPool;
void SendInIOThread(TClient* cli, std::string msg);
void SendRemainInIOThread(TClient* cli);
void CloseInIOThread(TClient* cli);
#ifdef WIN32
struct timeval m_timeout;
fd_set m_connSet, m_sendSet, m_recvSet;
std::map<int, TClient*> m_conns;
#else
int m_epollfd;
std::vector<TClient*> m_conns;
struct epoll_event m_ev, m_events[MAX_EVENTS];
#endif
};
}
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化