1 Star 1 Fork 0

guanzhanyi/webServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
timer.h 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
guanzhanyi 提交于 2021-05-11 13:17 . 成功运行
#pragma once
#include"httpData.h"
#include<queue>
#include<deque>
#include<memory>
#include"util.h"
#include"log.h"
class HttpData;
class TimerNode{
public:
TimerNode(std::shared_ptr<HttpData> request,int timeout);
~TimerNode();
TimerNode(const TimerNode& t);
void update(int timeout);
void clearReq();
void setDeleted();
bool isDeleted();
bool isValid();
uint32_t getexpired();
private:
bool m_deleted;
uint64_t m_expired;
std::shared_ptr<HttpData> m_HttpData_ptr;
};
struct TimerNodeCmp{
bool operator() (std::shared_ptr<TimerNode>& a,std::shared_ptr<TimerNode>& b){
return a->getexpired()>b->getexpired();
}
};
class TimerManager{
public:
using timer_node_ptr=std::shared_ptr<TimerNode>;
//增加Timer
void add_timer(std::shared_ptr<HttpData> httpData, uint32_t timeout);
//删除Timer
void del_timer();
//处理超时事件
void handler_expired_event();
const static uint32_t DEFAULT_TIMEROUT;
private:
std::priority_queue<timer_node_ptr,std::deque<timer_node_ptr>,TimerNodeCmp> m_timer_queue;
std::mutex m_mtx;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guanzhanyi/web-server.git
git@gitee.com:guanzhanyi/web-server.git
guanzhanyi
web-server
webServer
master

搜索帮助