高性能定时器策略之时间轮定时器算法
liebian365 2024-10-27 13:14 5 浏览 0 评论
时间轮定时器是有多个时间槽(slot)组成,每个时间槽代表时间的基本跨度。类似于一个时钟,时钟指针以恒定的速度每往下走一步,代表一个时间跨度。
时间槽的个数是固定的,用SN(Slot Num)表示,每转动一次可称为一个滴答(tick),所以转动一周也就需要个SN滴答。每一个滴答需要的槽间间隔为SI(Slot Interval),则转一周也就共需要(SN * SI)时间单位。
时间轮的每个槽都指向一个定时器链表,每个链表的定时器都有一个相同的特性:相差(SN * SI)的整数倍,也即是一周的整数倍。正是由于时间轮有这样的特性,所以可以根据定时器的触发时间和时间轮的槽数,把定时器hash到对应的链表上。
一个简单的时间轮如下图:
比如我们要插入一个超时时间为TI的定时器,那么计算器应该插入到槽对应的链表的方式如下:
TS = ( CS + (TI / SI) ) % SN
CS 代表当前的槽位,因为时间轮定时器不停的在走。
时间轮采用的是hash的思想,把各个定时器分散到不同槽的链表中,这个避免了单个链表的过长,提高了效率。
从上面的公式可以看出,对时间轮而言,当SI 越小的时候,定时器的精度就越高;当SN槽数越多时,效率越高,因为定时器被分配到不同的链表中,链表的长度也就相对短了,提高了遍历效率。
下面实现一个简单的时间轮,代码如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/epoll.h>
#include <arpa/inet.h>
#include <time.h>
#define BUFFER_SIZE 64 //缓冲区长度
#define SLOTS_NUM 60 //时间轮上槽的数目
//结构体声明
typedef struct tw_timer tw_timer;
typedef struct client_date client_date;
/* EPOLL回调函数*/
typedef void (*epoll_ callback_ t)(int, int);
struct tw_timer{
int rotation; //记录定时器在时间轮上转多少圈后触发
int time_slot; //记录定时器属于时间轮上的槽位(对应的链表)
void (*cb_func)(client_date *); //定时器回调函数
client_date *user_date; //client数据
tw_timer *prev; //指向前一个定时器
tw_timer *next ; //指向下一个定时器
};
//用户数据
struct client_date{
int sockfd;
char buf[BUFFER_SIZE];
tw_timer *time;
};
//每1秒时间轮转动一次,也即是槽间隔为1秒
static const int SI = 1;
//时间轮的槽, 其中每个元素指向一个定时器链表,链表无序
tw_timer *slots[SLOTS_NUM];
//事件的当前槽
int cur_slot = 0;
tw_timer * malloc_tw_timer(int rotation, int time_slot)
{
tw_timer *timer = (tw timer *)malloc(sizeof(tw_timer));
memset(timer, 0, sizeof(tw_timer));
timer->rotation = rotation;
timer->time_slot = time_slot;
timer->prev = NULL ;
timer->next = NULL ;
timer->cb_func = NULL ;
timer->user_date = NULL;
return timer;
}
void* free_tw_timer(tw_timer *timer)
{
if(NULL == timer)
return NULL;
if(NULL != timer->user_date)
free(timer->user_date);
free(timer);
}
void time_wheel()
{
int i = 0;
for(i = 0; i < SLOTS_NUM; i++)
slots[i] = NULL;
}
//遍历每个槽,销毁定时器
void del_time_wheel()
{
int i = 0;
for(i = 0; i < SLOTS_NUM; i++)
{
tw_timer *tmp = slots[i];
while(tmp)
{
slots[i] = tmp->next;
free_tw_timer(tmp);
tmp = slots[i];
}
}
}
/*根据定时器timeout创建一 个定时器,并把它插入到一个合适的槽中*/
tw_timer * add_timer(int timeout)
{
if(timeout < 0)
return NULL;
int ticks = 0;
/*待插入的超时时间小于时间轮的槽间隔SI,则将ticks向 上调整为1,
否则将ticks向下调整为 timeout/SI
*/
if(timeout < SI)
{
ticks = 1;
}
else
{
ticks = timeout / SI;
}
//计算待插入的定时器在时间轮转动多少圈后被触发
int rotation = ticks / SLOTS_NUM;
//计算待插入的定时器应该被插入到哪个槽中
int ts = (cur_slot + (ticks % SLOTS_NUM)) % SLOTS_NUM;
//创建新的定时器,它在时间轮转动rotation圈后被触发
tw_timer *timer = malloc_tw_timer(rotation, ts);
/*若第ts个槽为空,则插入定时器,并将该定时器置为该槽的头结点*/
if(!slots[ts])
{
printf("add timer, rotation is %d, ts is %d, cur_ slot is %d\n",
rotation, ts, cur_slot);
slots[ts] = timer;
}
else //否则,将定时器插入其中
{
printf("slots[%d] is not null\n", ts);
timer->next = slots[ts];
slots[ts]->prev = timer;
slots[ts] = timer;
}
return timer;
}
void del_timer(tw_timer *timer)
{
if(!timer)
return ;
int ts = timer->time_slot;
/*slots[ts]是目标定时器所在槽头结点,若目标定时器为头结点,则需要重置第ts个槽的头结点*/
if(timer == slots[ts])
{
slots[ts] = slots[ts]->next;
if(slots[ts])
{
slots[ts]->prev = NULL;
}
}
else
{
timer->prev->next = timer->next;
if(timer->next)
{
timer->next->prev = timer->prev;
}
}
free_tw_timer(timer);
}
//SI 时间到后,调用该函数, 时间轮向前滚动一个槽的间隔
void tick()
{
tw_timer *tmp = slots[cur_slot];
//遍历该槽对应链表的所有定时器,查看是否触发
while(tmp)
{
if(tmp->rotation > 0)
{
tmp->rotation--;
tmp = tmp->next;
}
else //到期,执行任务
{
tmp->cb_func(tmp->user_date);
if(tmp == slots[cur_slot])
{
printf("delete head in cur_slot, cur_slot %d\n", cur_slot);
slots[cur_slot] = tmp->next;
free_tw_timer(tmp);
if(slots[cur_slot])
slots[cur_slot]->prev = NULL;
tmp = slots[cur_slot];
}
else
{
tmp->prev->next = tmp->next;
if(tmp->next)
{
tmp->next->prev = tmp->prev;
}
tw_timer *tmp2 = tmp->next;
free_tw_timer(tmp);
tmp = tmp2;
}
}
}
//更新时间轮的当前槽,以反映时间轮的转数
cur_slot = ++cur_slot % SLOTS_NUM;
}
测试如下
int total = 0; //记录1s定时器触发次数
void test (client_date *cd)
{
printf("total = %d\n", total);
}
void test_add_timer(int timeout, void (*cb_func)(client_date *))
{
tw_timer * timer;
timer = add_timer(timeout);
timer->cb_func = cb_func;
}
void test_crete_timer()
{
//创建一一个2秒5秒10秒70秒, 85秒的定时器
test_add_timer(2, test);
test_add_timer(5, test);
test_add_timer(10, test);
test_add_timer(70, test);
test_add_timer(85, test);
time_t now ;
struct tm *tm_now ;
time(&now) ;
tm_now = localtime(&now) ;
printf("test_crete_timer datetime: %d-%d-%d %d:%d:%d\n", tm_now->tm_year+1900,
tm_now->tm_mon+1, tm_now->tm_mday, tm_now->tm_hour, tm_now->tm_min, tm_now->tm_sec);
}
//保存触发定时器相应的fd和回调,在该回调中进行遍历时间轮
typedef struct epoll_callback_info
{
int iFd;
epoll_callback_t pfEpollCallBack;
}epoll_callback_info;
//创建一个触发定时器
int createTimer(long lMSec, int epfd, epoll_callback_t pfEpollCallback)
{
struct itimerspece stTimer;
struct epoll_event event;
int timerfd;
int iSec = (int)(lMSec/1000);
int ret = -1;
memset(&event, 0, sizeof(event));
event.events = EPOLLIN | EPOLLHUP | EPOLLERR;
memset(&stTimer, 0, sizeof(stTimer));
stTimer.it_value.tv_sec = iSec;
stTimer.it_value.tv_nsec = (lMSec%1000)*1000000;
stTimer.it_interval.tv_sec = iSec;
stTimer.it_interval.tv_nsec = (lMSec%1000)*1000000;
timerfd = timerfd_create(CLOCK_MONOTONIC, 0);
if(-1 != timerfd)
{
if(0 == timerfd_settime(timerfd, 0, &stTimer, NULL))
{
epoll_callback_info *p = malloc(sizeof(epoll_callback_info));
p->iFd = timerfd;
p->pfEpollCallback = pfEpollCallback;
event.data.ptr = p;
ret = epoll_ctl(epfd, EPOLL_CTL_ADD, timerfd, &event);
}
else
{
printf("timerfd_settime Failed");
}
/*定时器时间设定或添加epoll错误时,释放资源*/
if(0 != ret)
{
printf("add to epoll failed or set time failed");
close(timerfd);
timerfd = -1;
}
}
else
{
printf("create timerfd failed");
}
return timerfd;
}
void timer_read_timerFd(int timerfd)
{
uint64_t exp;
(void)read(timerfd, &exp, sizeof(uint64_t));
total++;
return;
}
//epoll上定时器回调,每触发一次则调用一次tick()
void commomTimerCB(int uiEvent, int iTimeFd)
{
timer_read_timerFd(iTimeFd);
tick();
}
int main()
{
struct epoll_event wait_event[100];
int epfd;
int timerfd;
epoll_callback_t pfEpllCallback;
int i = 0;
struct itimerspece stTimer;
long lMSec = 1000; //1s定时器时间
int count;
epfd = epoll_create(1);
if(-1 == epfd)
{
printf("epoll create error\n");
return -1;
}
printf("create epoll fd: %d\n", epfd);
time_wheel();
test_create_timer();
timerfd = createTimer(lMSec, epfd, (epoll_callback_t)commomTimerCB);
if(-1 == timerfd)
{
printf("failed to create timer");
return -1;
}
for(;;)
{
waitfds = epoll_wait(epfd, wait_event, 100, -1);
printf("count %d\n", count++);
for(i = 0; i < waitfds; i++)
{
epoll_callback_info *t = (epoll_callback_info*)wait_event[i].data.ptr;
pfEpllCallback = (epoll_callback_t)(unsigned long)t->pfEpllCallback;
pfEpllCallback(wait_event[i].events, t->iFd);
}
}
return 0;
}
相关推荐
- 快递查询教程,批量查询物流,一键管理快递
-
作为商家,每天需要查询许许多多的快递单号,面对不同的快递公司,有没有简单一点的物流查询方法呢?小编的回答当然是有的,下面随小编一起来试试这个新技巧。需要哪些工具?安装一个快递批量查询高手快递单号怎么快...
- 一键自动查询所有快递的物流信息 支持圆通、韵达等多家快递
-
对于各位商家来说拥有一个好的快递软件,能够有效的提高自己的工作效率,在管理快递单号的时候都需要对单号进行表格整理,那怎么样能够快速的查询所有单号信息,并自动生成表格呢?1、其实方法很简单,我们不需要一...
- 快递查询单号查询,怎么查物流到哪了
-
输入单号怎么查快递到哪里去了呢?今天小编给大家分享一个新的技巧,它支持多家快递,一次能查询多个单号物流,还可对查询到的物流进行分析、筛选以及导出,下面一起来试试。需要哪些工具?安装一个快递批量查询高手...
- 3分钟查询物流,教你一键批量查询全部物流信息
-
很多朋友在问,如何在短时间内把单号的物流信息查询出来,查询完成后筛选已签收件、筛选未签收件,今天小编就分享一款物流查询神器,感兴趣的朋友接着往下看。第一步,运行【快递批量查询高手】在主界面中点击【添...
- 快递单号查询,一次性查询全部物流信息
-
现在各种快递的查询方式,各有各的好,各有各的劣,总的来说,还是有比较方便的。今天小编就给大家分享一个新的技巧,支持多家快递,一次能查询多个单号的物流,还能对查询到的物流进行分析、筛选以及导出,下面一起...
- 快递查询工具,批量查询多个快递快递单号的物流状态、签收时间
-
最近有朋友在问,怎么快速查询单号的物流信息呢?除了官网,还有没有更简单的方法呢?小编的回答当然是有的,下面一起来看看。需要哪些工具?安装一个快递批量查询高手多个京东的快递单号怎么快速查询?进入快递批量...
- 快递查询软件,自动识别查询快递单号查询方法
-
当你拥有多个快递单号的时候,该如何快速查询物流信息?比如单号没有快递公司时,又该如何自动识别再去查询呢?不知道如何操作的宝贝们,下面随小编一起来试试。需要哪些工具?安装一个快递批量查询高手快递单号若干...
- 教你怎样查询快递查询单号并保存物流信息
-
商家发货,快递揽收后,一般会直接手动复制到官网上一个个查询物流,那么久而久之,就会觉得查询变得特别繁琐,今天小编给大家分享一个新的技巧,下面一起来试试。教程之前,我们来预览一下用快递批量查询高手...
- 简单几步骤查询所有快递物流信息
-
在高峰期订单量大的时候,可能需要一双手当十双手去查询快递物流,但是由于逐一去查询,效率极低,追踪困难。那么今天小编给大家分享一个新的技巧,一次能查询多个快递单号的物流,下面一起来学习一下,希望能给大家...
- 物流单号查询,如何查询快递信息,按最后更新时间搜索需要的单号
-
最近有很多朋友在问,如何通过快递单号查询物流信息,并按最后更新时间搜索出需要的单号呢?下面随小编一起来试试吧。需要哪些工具?安装一个快递批量查询高手快递单号若干怎么快速查询?运行【快递批量查询高手】...
- 连续保存新单号功能解析,导入单号查询并自动识别批量查快递信息
-
快递查询已经成为我们日常生活中不可或缺的一部分。然而,面对海量的快递单号,如何高效、准确地查询每一个快递的物流信息,成为了许多人头疼的问题。幸运的是,随着科技的进步,一款名为“快递批量查询高手”的软件...
- 快递查询教程,快递单号查询,筛选更新量为1的单号
-
最近有很多朋友在问,怎么快速查询快递单号的物流,并筛选出更新量为1的单号呢?今天小编给大家分享一个新方法,一起来试试吧。需要哪些工具?安装一个快递批量查询高手多个快递单号怎么快速查询?运行【快递批量查...
- 掌握批量查询快递动态的技巧,一键查找无信息记录的两种方法解析
-
在快节奏的商业环境中,高效的物流查询是确保业务顺畅运行的关键。作为快递查询达人,我深知时间的宝贵,因此,今天我将向大家介绍一款强大的工具——快递批量查询高手软件。这款软件能够帮助你批量查询快递动态,一...
- 从复杂到简单的单号查询,一键清除单号中的符号并批量查快递信息
-
在繁忙的商务与日常生活中,快递查询已成为不可或缺的一环。然而,面对海量的单号,逐一查询不仅耗时费力,还容易出错。现在,有了快递批量查询高手软件,一切变得简单明了。只需一键,即可搞定单号查询,一键处理单...
- 物流单号查询,在哪里查询快递
-
如果在快递单号多的情况,你还在一个个复制粘贴到官网上手动查询,是一件非常麻烦的事情。于是乎今天小编给大家分享一个新的技巧,下面一起来试试。需要哪些工具?安装一个快递批量查询高手快递单号怎么快速查询?...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- wireshark怎么抓包 (75)
- qt sleep (64)
- cs1.6指令代码大全 (55)
- factory-method (60)
- sqlite3_bind_blob (52)
- hibernate update (63)
- c++ base64 (70)
- nc 命令 (52)
- wm_close (51)
- epollin (51)
- sqlca.sqlcode (57)
- lua ipairs (60)
- tv_usec (64)
- 命令行进入文件夹 (53)
- postgresql array (57)
- statfs函数 (57)
- .project文件 (54)
- lua require (56)
- for_each (67)
- c#工厂模式 (57)
- wxsqlite3 (66)
- dmesg -c (58)
- fopen参数 (53)
- tar -zxvf -c (55)
- 速递查询 (52)