linux c epoll定时器,Linux epoll版定时器

#include #include#include#include#include#include#include#include"comontype.h"#include"mytimer.h"

#define EPOOL_SIZE 32000

#define EPOOL_EVENT 32

/********************************************************

Func Name: createTimer

Date Created: 2018-7-30

Description: 创建定时器对象

Input: uiTvSec:设置间隔多少秒

uiTvUsec:设置间隔多少微秒

Output:

Return: 文件句柄

Caution:

*********************************************************/

int createTimer(unsigned int uiSec, unsigned intuiNsec)

{int iRet = 0;int tfd = 0;structitimerspec timeValue;//初始化定时器

/*When the file descriptor is no longer required it should be closed.

When all file descriptors associated with the same timer object have been closed,

the timer is disarmed and its resources are freed by the kernel.

意思是该文件句柄还是需要调用close函数关闭的*/tfd= timerfd_create(CLOCK_REALTIME,0);if (tfd < 0)

{return -1;

}//设置开启定时器

/*Setting either field of new_value.it_value to a nonzero value arms the timer.

Setting both fields of new_value.it_value to zero disarms the timer.

意思是如果不设置it_interval的值非零,那么即关闭定时器*/timeValue.it_value.tv_sec= 1;

timeValue.it_value.tv_nsec= 0;//设置定时器周期

timeValue.it_interval.tv_sec =(time_t)uiSec;

timeValue.it_interval.tv_nsec= (long)uiNsec;

iRet= timerfd_settime(tfd, 0, &timeValue, NULL);if (iRet < 0)

{return -1;

}returntfd;

}/********************************************************

Func Name: setNoBlock

Date Created: 2018-7-27

Description: 设置文件描述符非阻塞

Input: fd:文件描述符

Output:

Return: error code

Caution:

*********************************************************/

int setNoBlock(IN intfd)

{int iRet =DEFAULT_ERROR;int iOption = -1;

iOption=fcntl(fd, F_GETFD);if(iOption < 0)

{

iRet=DEFAULT_ERROR;returniRet;

}

iOption= iOption |O_NONBLOCK;

iOption=fcntl(fd,F_SETFD,iOption);if(iOption < 0)

{

iRet=DEFAULT_ERROR;returniRet;

}returnRESULT_OK;

}/********************************************************

Func Name: createEpoll

Date Created: 2018-7-30

Description: 创建epoll

Input:

Output:

Return: epoll句柄

Caution:

*********************************************************/

intcreateEpoll()

{int epfd = 0;/*When no longer required,

the file descriptor returned by epoll_create() should be closed byusing close(2).

When all file descriptors referring to an epoll instance have been closed,

the kernel destroys the instance and releases the associated resources for reuse.

意思是用完需要调用close函数关闭epoll句柄*/epfd=epoll_create(EPOOL_SIZE);if (epfd < 0)

{return -1;

}returnepfd;

}/********************************************************

Func Name: addFdToEpoll

Date Created: 2018-7-30

Description: 添加文件描述符到epoll

Input:

Output:

Return: error code

Caution:

*********************************************************/

int addFdToEpoll(int epfd, STEpollParam *pstParam)

{int iRet =DEFAULT_ERROR;structepoll_event ev;

ev.data.ptr=pstParam;

ev.events= EPOLLIN | EPOLLERR |EPOLLHUP;

iRet= epoll_ctl(epfd, EPOLL_CTL_ADD, pstParam->fd, &ev);if (iRet < 0)

{returnDEFAULT_ERROR;

}returnRESULT_OK;

}/********************************************************

Func Name: recvMsg

Date Created: 2018-7-30

Description: 消息处理

Input: pvParam:参数指针

Output:

Return:

Caution:

*********************************************************/

int recvMsg(void *pvParam)

{int iRet =DEFAULT_ERROR;

STEpollParam* pstParam =NULL;if (NULL ==pvParam)

{

iRet=PARAM_ERROR;returniRet;

}

pstParam= (STEpollParam *)pvParam;switch(pstParam->enType)

{caseFD_TIMER:

pstParam->cb(pstParam->fd, pstParam->pvParam);break;default:break;

}returnRESULT_OK;

}/********************************************************

Func Name: epollWait

Date Created: 2018-7-30

Description: 等待消息

Input: epfd:epoll句柄

Output:

Return:

Caution:

*********************************************************/

void epollWait(intepfd)

{int i = 0;int nfds = 0;struct epoll_event *events =NULL;//分配epoll事件内存

events = (struct epoll_event *)malloc(sizeof(struct epoll_event)*EPOOL_EVENT);if (NULL ==events)

{return;

}

memset(events,0, sizeof(struct epoll_event)*EPOOL_EVENT);for(;;)

{

nfds= epoll_wait(epfd, events, EPOOL_EVENT, -1);if (nfds < 0)

{break;

}for (i = 0; i < nfds; i++)

{//监听读事件

if (events[i].events &EPOLLIN)

{

recvMsg(events[i].data.ptr);

}

}

}//关闭epoll

close(epfd);return;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值