2019-01-27 02:09:22 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2020-02-20 15:35:16 +00:00
|
|
|
Copyright (c) 2016-2020 Chung, Hyung-Hwan. All rights reserved.
|
2019-01-27 02:09:22 +00:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WAfRRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-04-30 02:28:09 +00:00
|
|
|
#include "sys-prv.h"
|
2019-01-27 02:09:22 +00:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
/* ========================================================================= */
|
|
|
|
#if defined(USE_POLL)
|
2019-01-29 16:57:16 +00:00
|
|
|
# define MUX_INDEX_INVALID MIO_TYPE_MAX(mio_oow_t)
|
2020-05-24 17:25:27 +00:00
|
|
|
# define MUX_INDEX_SUSPENDED (MUX_INDEX_INVALID - 1)
|
2019-01-29 08:38:12 +00:00
|
|
|
#endif
|
2019-01-27 02:09:22 +00:00
|
|
|
|
|
|
|
int mio_sys_initmux (mio_t* mio)
|
|
|
|
{
|
2019-01-29 16:57:16 +00:00
|
|
|
mio_sys_mux_t* mux = &mio->sysdep->mux;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2020-05-24 17:40:47 +00:00
|
|
|
#if defined(USE_EPOLL)
|
2020-07-24 17:29:52 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_EPOLL_CREATE1)
|
|
|
|
mux->hnd = epoll_create1(O_CLOEXEC);
|
2019-01-29 08:38:12 +00:00
|
|
|
if (mux->hnd == -1)
|
|
|
|
{
|
2020-07-24 17:29:52 +00:00
|
|
|
if (errno == ENOSYS) goto normal_epoll_create; /* kernel doesn't support it */
|
2019-01-29 08:38:12 +00:00
|
|
|
mio_seterrwithsyserr (mio, 0, errno);
|
|
|
|
return -1;
|
|
|
|
}
|
2020-07-24 17:29:52 +00:00
|
|
|
goto epoll_create_done;
|
|
|
|
|
|
|
|
normal_epoll_create:
|
2019-01-29 08:38:12 +00:00
|
|
|
#endif
|
|
|
|
|
2020-07-24 17:29:52 +00:00
|
|
|
mux->hnd = epoll_create(16384); /* TODO: choose proper initial size? */
|
|
|
|
if (mux->hnd == -1)
|
|
|
|
{
|
|
|
|
mio_seterrwithsyserr (mio, 0, errno);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(FD_CLOEXEC)
|
|
|
|
{
|
|
|
|
int flags = fcntl(mux->hnd, F_GETFD, 0);
|
|
|
|
if (flags >= 0) fcntl(mux->hnd, F_SETFD, flags | FD_CLOEXEC);
|
|
|
|
}
|
|
|
|
#endif /* FD_CLOEXEC */
|
|
|
|
|
|
|
|
epoll_create_done:
|
|
|
|
#endif /* USE_EPOLL */
|
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mio_sys_finimux (mio_t* mio)
|
|
|
|
{
|
2019-01-29 16:57:16 +00:00
|
|
|
mio_sys_mux_t* mux = &mio->sysdep->mux;
|
2020-05-24 02:27:54 +00:00
|
|
|
#if defined(USE_POLL)
|
|
|
|
if (mux->map.ptr)
|
|
|
|
{
|
|
|
|
mio_freemem (mio, mux->map.ptr);
|
|
|
|
mux->map.ptr = MIO_NULL;
|
|
|
|
mux->map.capa = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mux->pd.pfd)
|
|
|
|
{
|
|
|
|
mio_freemem (mio, mux->pd.pfd);
|
|
|
|
mux->pd.pfd = MIO_NULL;
|
|
|
|
}
|
|
|
|
if (mux->pd.dptr)
|
|
|
|
{
|
|
|
|
mio_freemem (mio, mux->pd.dptr);
|
|
|
|
mux->pd.dptr = MIO_NULL;
|
|
|
|
}
|
|
|
|
mux->pd.capa = 0;
|
2020-05-24 09:38:08 +00:00
|
|
|
|
2020-05-24 02:27:54 +00:00
|
|
|
#elif defined(USE_EPOLL)
|
2019-01-29 16:57:16 +00:00
|
|
|
close (mux->hnd);
|
2020-05-24 02:27:54 +00:00
|
|
|
mux->hnd = MIO_SYSHND_INVALID;
|
2019-01-29 08:38:12 +00:00
|
|
|
#endif
|
2019-01-27 02:09:22 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 09:16:44 +00:00
|
|
|
int mio_sys_ctrlmux (mio_t* mio, mio_sys_mux_cmd_t cmd, mio_dev_t* dev, int dev_cap)
|
2019-01-27 02:09:22 +00:00
|
|
|
{
|
2019-01-29 08:38:12 +00:00
|
|
|
#if defined(USE_POLL)
|
2019-01-29 16:57:16 +00:00
|
|
|
mio_sys_mux_t* mux = &mio->sysdep->mux;
|
2019-01-27 02:09:22 +00:00
|
|
|
mio_oow_t idx;
|
2019-04-10 09:25:34 +00:00
|
|
|
mio_syshnd_t hnd;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2019-04-10 09:25:34 +00:00
|
|
|
hnd = dev->dev_mth->getsyshnd(dev);
|
|
|
|
|
|
|
|
if (hnd >= mux->map.capa)
|
2019-01-27 02:09:22 +00:00
|
|
|
{
|
|
|
|
mio_oow_t new_capa;
|
|
|
|
mio_oow_t* tmp;
|
|
|
|
|
|
|
|
if (cmd != MIO_SYS_MUX_CMD_INSERT)
|
|
|
|
{
|
2019-02-18 17:15:44 +00:00
|
|
|
mio_seterrnum (mio, MIO_ENOENT);
|
2019-01-27 02:09:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_capa = MIO_ALIGN_POW2((hnd + 1), 256);
|
|
|
|
|
2019-01-29 08:38:12 +00:00
|
|
|
tmp = mio_reallocmem(mio, mux->map.ptr, new_capa * MIO_SIZEOF(*tmp));
|
|
|
|
if (!tmp) return -1;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
|
|
|
for (idx = mux->map.capa; idx < new_capa; idx++)
|
|
|
|
tmp[idx] = MUX_INDEX_INVALID;
|
|
|
|
|
|
|
|
mux->map.ptr = tmp;
|
|
|
|
mux->map.capa = new_capa;
|
|
|
|
}
|
|
|
|
|
|
|
|
idx = mux->map.ptr[hnd];
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case MIO_SYS_MUX_CMD_INSERT:
|
2020-05-24 17:40:47 +00:00
|
|
|
if (idx != MUX_INDEX_INVALID) /* not valid index and not MUX_INDEX_SUSPENDED */
|
2020-05-24 17:25:27 +00:00
|
|
|
{
|
|
|
|
mio_seterrnum (mio, MIO_EEXIST);
|
|
|
|
return -1;
|
|
|
|
}
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2020-05-24 17:25:27 +00:00
|
|
|
do_insert:
|
2019-01-27 02:09:22 +00:00
|
|
|
if (mux->pd.size >= mux->pd.capa)
|
|
|
|
{
|
|
|
|
mio_oow_t new_capa;
|
|
|
|
struct pollfd* tmp1;
|
|
|
|
mio_dev_t** tmp2;
|
|
|
|
|
|
|
|
new_capa = MIO_ALIGN_POW2(mux->pd.size + 1, 256);
|
|
|
|
|
2019-01-29 08:38:12 +00:00
|
|
|
tmp1 = mio_reallocmem(mio, mux->pd.pfd, new_capa * MIO_SIZEOF(*tmp1));
|
|
|
|
if (!tmp1) return -1;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2019-01-29 08:38:12 +00:00
|
|
|
tmp2 = mio_reallocmem(mio, mux->pd.dptr, new_capa * MIO_SIZEOF(*tmp2));
|
2019-01-27 02:09:22 +00:00
|
|
|
if (!tmp2)
|
|
|
|
{
|
2019-01-29 08:38:12 +00:00
|
|
|
mio_freemem (mio, tmp1);
|
2019-01-27 02:09:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mux->pd.pfd = tmp1;
|
|
|
|
mux->pd.dptr = tmp2;
|
|
|
|
mux->pd.capa = new_capa;
|
|
|
|
}
|
|
|
|
|
|
|
|
idx = mux->pd.size++;
|
|
|
|
|
|
|
|
mux->pd.pfd[idx].fd = hnd;
|
|
|
|
mux->pd.pfd[idx].events = 0;
|
2019-01-31 09:16:44 +00:00
|
|
|
if (dev_cap & MIO_DEV_CAP_IN_WATCHED) mux->pd.pfd[idx].events |= POLLIN;
|
|
|
|
if (dev_cap & MIO_DEV_CAP_OUT_WATCHED) mux->pd.pfd[idx].events |= POLLOUT;
|
2019-01-27 02:09:22 +00:00
|
|
|
mux->pd.pfd[idx].revents = 0;
|
|
|
|
mux->pd.dptr[idx] = dev;
|
|
|
|
|
|
|
|
mux->map.ptr[hnd] = idx;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case MIO_SYS_MUX_CMD_UPDATE:
|
2020-05-24 17:25:27 +00:00
|
|
|
{
|
|
|
|
int events = 0;
|
|
|
|
if (dev_cap & MIO_DEV_CAP_IN_WATCHED) events |= POLLIN;
|
|
|
|
if (dev_cap & MIO_DEV_CAP_OUT_WATCHED) events |= POLLOUT;
|
|
|
|
|
2020-05-24 17:40:47 +00:00
|
|
|
if (idx == MUX_INDEX_INVALID)
|
2020-05-24 17:25:27 +00:00
|
|
|
{
|
|
|
|
mio_seterrnum (mio, MIO_ENOENT);
|
|
|
|
return -1;
|
|
|
|
}
|
2020-05-24 17:40:47 +00:00
|
|
|
else if (idx == MUX_INDEX_SUSPENDED)
|
2020-05-24 17:25:27 +00:00
|
|
|
{
|
|
|
|
if (!events) return 0; /* no change. keep suspended */
|
|
|
|
goto do_insert;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!events)
|
|
|
|
{
|
|
|
|
mux->map.ptr[hnd] = MUX_INDEX_SUSPENDED;
|
|
|
|
goto do_delete;
|
|
|
|
}
|
2020-05-24 09:38:08 +00:00
|
|
|
|
2020-05-24 17:25:27 +00:00
|
|
|
MIO_ASSERT (mio, mux->pd.dptr[idx] == dev);
|
|
|
|
mux->pd.pfd[idx].events = events;
|
2020-05-24 19:29:35 +00:00
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
return 0;
|
2020-05-24 17:40:47 +00:00
|
|
|
}
|
2019-01-27 02:09:22 +00:00
|
|
|
|
|
|
|
case MIO_SYS_MUX_CMD_DELETE:
|
2020-05-24 17:40:47 +00:00
|
|
|
if (idx == MUX_INDEX_INVALID)
|
2020-05-24 17:25:27 +00:00
|
|
|
{
|
|
|
|
mio_seterrnum (mio, MIO_ENOENT);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (idx == MUX_INDEX_SUSPENDED)
|
|
|
|
{
|
|
|
|
mux->map.ptr[hnd] = MUX_INDEX_INVALID;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
MIO_ASSERT (mio, mux->pd.dptr[idx] == dev);
|
|
|
|
mux->map.ptr[hnd] = MUX_INDEX_INVALID;
|
|
|
|
|
2020-05-24 17:25:27 +00:00
|
|
|
do_delete:
|
2019-01-27 02:09:22 +00:00
|
|
|
/* TODO: speed up deletion. allow a hole in the array.
|
|
|
|
* delay array compaction if there is a hole.
|
|
|
|
* set fd for the hole to -1 such that poll()
|
|
|
|
* ignores it. compact the array if another deletion
|
|
|
|
* is requested when there is an existing hole. */
|
|
|
|
idx++;
|
|
|
|
while (idx < mux->pd.size)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
mux->pd.pfd[idx - 1] = mux->pd.pfd[idx];
|
|
|
|
mux->pd.dptr[idx - 1] = mux->pd.dptr[idx];
|
|
|
|
|
|
|
|
fd = mux->pd.pfd[idx].fd;
|
|
|
|
mux->map.ptr[fd] = idx - 1;
|
|
|
|
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
mux->pd.size--;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
2019-01-29 08:38:12 +00:00
|
|
|
mio_seterrnum (mio, MIO_EINVAL);
|
2019-01-27 02:09:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#elif defined(USE_EPOLL)
|
2019-01-29 16:57:16 +00:00
|
|
|
mio_sys_mux_t* mux = &mio->sysdep->mux;
|
2019-01-27 02:09:22 +00:00
|
|
|
struct epoll_event ev;
|
2020-05-24 19:29:35 +00:00
|
|
|
mio_syshnd_t hnd;
|
|
|
|
mio_uint32_t events;
|
|
|
|
int x;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
|
|
|
MIO_ASSERT (mio, mio == dev->mio);
|
2020-05-24 19:29:35 +00:00
|
|
|
hnd = dev->dev_mth->getsyshnd(dev);
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2020-05-24 19:29:35 +00:00
|
|
|
events = 0;
|
2019-01-31 09:16:44 +00:00
|
|
|
if (dev_cap & MIO_DEV_CAP_IN_WATCHED)
|
2019-01-27 02:09:22 +00:00
|
|
|
{
|
2020-05-24 19:29:35 +00:00
|
|
|
events |= EPOLLIN;
|
2019-01-27 02:09:22 +00:00
|
|
|
#if defined(EPOLLRDHUP)
|
2020-05-24 19:29:35 +00:00
|
|
|
events |= EPOLLRDHUP;
|
2019-01-27 02:09:22 +00:00
|
|
|
#endif
|
2020-05-24 19:29:35 +00:00
|
|
|
if (dev_cap & MIO_DEV_CAP_PRI_WATCHED) events |= EPOLLPRI;
|
2019-01-27 02:09:22 +00:00
|
|
|
}
|
2020-05-24 19:29:35 +00:00
|
|
|
if (dev_cap & MIO_DEV_CAP_OUT_WATCHED) events |= EPOLLOUT;
|
|
|
|
|
2020-07-24 17:29:52 +00:00
|
|
|
ev.events = events | EPOLLHUP | EPOLLERR /*| EPOLLET*/; /* TODO: ready to support edge-trigger? */
|
2020-05-24 19:29:35 +00:00
|
|
|
ev.data.ptr = dev;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case MIO_SYS_MUX_CMD_INSERT:
|
|
|
|
if (MIO_UNLIKELY(dev->dev_cap & MIO_DEV_CAP_WATCH_SUSPENDED))
|
|
|
|
{
|
|
|
|
mio_seterrnum (mio, MIO_EEXIST);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = epoll_ctl(mux->hnd, EPOLL_CTL_ADD, hnd, &ev);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIO_SYS_MUX_CMD_UPDATE:
|
|
|
|
if (MIO_UNLIKELY(!events))
|
|
|
|
{
|
|
|
|
if (dev->dev_cap & MIO_DEV_CAP_WATCH_SUSPENDED)
|
|
|
|
{
|
|
|
|
/* no change. keep suspended */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = epoll_ctl(mux->hnd, EPOLL_CTL_DEL, hnd, &ev);
|
|
|
|
if (x >= 0) dev->dev_cap |= MIO_DEV_CAP_WATCH_SUSPENDED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (dev->dev_cap & MIO_DEV_CAP_WATCH_SUSPENDED)
|
|
|
|
{
|
|
|
|
x = epoll_ctl(mux->hnd, EPOLL_CTL_ADD, hnd, &ev);
|
|
|
|
if (x >= 0) dev->dev_cap &= ~MIO_DEV_CAP_WATCH_SUSPENDED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = epoll_ctl(mux->hnd, EPOLL_CTL_MOD, hnd, &ev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2020-05-24 19:29:35 +00:00
|
|
|
case MIO_SYS_MUX_CMD_DELETE:
|
|
|
|
if (dev->dev_cap & MIO_DEV_CAP_WATCH_SUSPENDED)
|
|
|
|
{
|
|
|
|
/* clear the SUSPENDED bit because it's a normal deletion */
|
|
|
|
dev->dev_cap &= ~MIO_DEV_CAP_WATCH_SUSPENDED;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = epoll_ctl(mux->hnd, EPOLL_CTL_DEL, hnd, &ev);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
mio_seterrnum (mio, MIO_EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2020-05-24 19:29:35 +00:00
|
|
|
if (x == -1)
|
2019-01-27 02:09:22 +00:00
|
|
|
{
|
|
|
|
mio_seterrwithsyserr (mio, 0, errno);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2019-01-29 08:38:12 +00:00
|
|
|
#else
|
|
|
|
# error NO SUPPORTED MULTIPLEXER
|
2019-01-27 02:09:22 +00:00
|
|
|
#endif
|
2019-01-29 08:38:12 +00:00
|
|
|
}
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2019-01-27 16:22:55 +00:00
|
|
|
int mio_sys_waitmux (mio_t* mio, const mio_ntime_t* tmout, mio_sys_mux_evtcb_t event_handler)
|
2019-01-27 02:09:22 +00:00
|
|
|
{
|
2019-01-29 08:38:12 +00:00
|
|
|
#if defined(USE_POLL)
|
2019-04-10 09:25:34 +00:00
|
|
|
mio_sys_mux_t* mux = &mio->sysdep->mux;
|
|
|
|
int nentries, i;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2019-04-10 09:25:34 +00:00
|
|
|
nentries = poll(mux->pd.pfd, mux->pd.size, MIO_SECNSEC_TO_MSEC(tmout->sec, tmout->nsec));
|
2019-01-27 02:09:22 +00:00
|
|
|
if (nentries == -1)
|
|
|
|
{
|
|
|
|
if (errno == EINTR) return 0;
|
|
|
|
mio_seterrwithsyserr (mio, 0, errno);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < mux->pd.size; i++)
|
|
|
|
{
|
|
|
|
if (mux->pd.pfd[i].fd >= 0 && mux->pd.pfd[i].revents)
|
|
|
|
{
|
|
|
|
int events = 0;
|
|
|
|
mio_dev_t* dev;
|
|
|
|
|
|
|
|
dev = mux->pd.dptr[i];
|
|
|
|
|
2020-05-23 06:44:19 +00:00
|
|
|
/*MIO_ASSERT (mio, !(mux->pd.pfd[i].revents & POLLNVAL));*/
|
2019-01-27 02:09:22 +00:00
|
|
|
if (mux->pd.pfd[i].revents & POLLIN) events |= MIO_DEV_EVENT_IN;
|
|
|
|
if (mux->pd.pfd[i].revents & POLLOUT) events |= MIO_DEV_EVENT_OUT;
|
|
|
|
if (mux->pd.pfd[i].revents & POLLPRI) events |= MIO_DEV_EVENT_PRI;
|
|
|
|
if (mux->pd.pfd[i].revents & POLLERR) events |= MIO_DEV_EVENT_ERR;
|
|
|
|
if (mux->pd.pfd[i].revents & POLLHUP) events |= MIO_DEV_EVENT_HUP;
|
|
|
|
|
2019-04-10 09:25:34 +00:00
|
|
|
event_handler (mio, dev, events, 0);
|
2019-01-27 02:09:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(USE_EPOLL)
|
|
|
|
|
2019-01-29 16:57:16 +00:00
|
|
|
mio_sys_mux_t* mux = &mio->sysdep->mux;
|
2019-01-27 16:22:55 +00:00
|
|
|
int nentries, i;
|
2019-01-27 02:09:22 +00:00
|
|
|
|
2019-01-27 16:22:55 +00:00
|
|
|
nentries = epoll_wait(mux->hnd, mux->revs, MIO_COUNTOF(mux->revs), MIO_SECNSEC_TO_MSEC(tmout->sec, tmout->nsec));
|
2019-01-27 02:09:22 +00:00
|
|
|
if (nentries == -1)
|
|
|
|
{
|
|
|
|
if (errno == EINTR) return 0; /* it's actually ok */
|
|
|
|
/* other errors are critical - EBADF, EFAULT, EINVAL */
|
|
|
|
mio_seterrwithsyserr (mio, 0, errno);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: merge events??? for the same descriptor */
|
|
|
|
|
|
|
|
for (i = 0; i < nentries; i++)
|
|
|
|
{
|
|
|
|
int events = 0, rdhup = 0;
|
|
|
|
mio_dev_t* dev;
|
|
|
|
|
|
|
|
dev = mux->revs[i].data.ptr;
|
|
|
|
|
|
|
|
if (mux->revs[i].events & EPOLLIN) events |= MIO_DEV_EVENT_IN;
|
|
|
|
if (mux->revs[i].events & EPOLLOUT) events |= MIO_DEV_EVENT_OUT;
|
|
|
|
if (mux->revs[i].events & EPOLLPRI) events |= MIO_DEV_EVENT_PRI;
|
|
|
|
if (mux->revs[i].events & EPOLLERR) events |= MIO_DEV_EVENT_ERR;
|
|
|
|
if (mux->revs[i].events & EPOLLHUP) events |= MIO_DEV_EVENT_HUP;
|
|
|
|
#if defined(EPOLLRDHUP)
|
|
|
|
else if (mux->revs[i].events & EPOLLRDHUP) rdhup = 1;
|
|
|
|
#endif
|
2019-01-27 16:22:55 +00:00
|
|
|
|
|
|
|
event_handler (mio, dev, events, rdhup);
|
2019-01-27 02:09:22 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
# error NO SUPPORTED MULTIPLEXER
|
|
|
|
#endif
|
2019-01-28 08:13:06 +00:00
|
|
|
|
|
|
|
return 0;
|
2019-01-27 02:09:22 +00:00
|
|
|
}
|