2008-12-02 15:15:01 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2008 Kristian Høgsberg
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
#include <stddef.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
2008-12-19 00:22:18 -05:00
|
|
|
#include <signal.h>
|
2008-09-30 09:46:10 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
#include <sys/epoll.h>
|
2008-12-19 00:22:18 -05:00
|
|
|
#include <sys/signalfd.h>
|
2008-11-28 18:35:25 -05:00
|
|
|
#include <sys/timerfd.h>
|
2008-09-30 09:46:10 -04:00
|
|
|
#include <unistd.h>
|
2008-11-28 18:35:25 -05:00
|
|
|
#include <assert.h>
|
2010-08-10 14:12:05 -04:00
|
|
|
#include "wayland-server.h"
|
2008-09-30 09:46:10 -04:00
|
|
|
|
|
|
|
|
struct wl_event_loop {
|
|
|
|
|
int epoll_fd;
|
2011-04-21 14:41:48 -04:00
|
|
|
struct wl_list check_list;
|
2011-06-23 06:43:47 -04:00
|
|
|
struct wl_list idle_list;
|
2012-03-21 10:31:24 +01:00
|
|
|
struct wl_list destroy_list;
|
2008-11-28 18:35:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_interface {
|
2011-04-22 12:06:34 -04:00
|
|
|
int (*dispatch)(struct wl_event_source *source,
|
|
|
|
|
struct epoll_event *ep);
|
2008-11-28 18:35:25 -05:00
|
|
|
int (*remove)(struct wl_event_source *source);
|
2008-09-30 09:46:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_event_source {
|
2008-11-28 18:35:25 -05:00
|
|
|
struct wl_event_source_interface *interface;
|
|
|
|
|
struct wl_event_loop *loop;
|
2011-04-21 14:41:48 -04:00
|
|
|
struct wl_list link;
|
|
|
|
|
void *data;
|
2012-03-21 10:31:24 +01:00
|
|
|
int fd;
|
2008-11-28 18:35:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_fd {
|
|
|
|
|
struct wl_event_source base;
|
2008-10-11 19:21:35 -04:00
|
|
|
wl_event_loop_fd_func_t func;
|
2008-09-30 09:46:10 -04:00
|
|
|
};
|
|
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
static int
|
2008-11-28 18:35:25 -05:00
|
|
|
wl_event_source_fd_dispatch(struct wl_event_source *source,
|
|
|
|
|
struct epoll_event *ep)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source_fd *fd_source = (struct wl_event_source_fd *) source;
|
|
|
|
|
uint32_t mask;
|
|
|
|
|
|
|
|
|
|
mask = 0;
|
|
|
|
|
if (ep->events & EPOLLIN)
|
|
|
|
|
mask |= WL_EVENT_READABLE;
|
|
|
|
|
if (ep->events & EPOLLOUT)
|
2011-12-28 22:47:37 -05:00
|
|
|
mask |= WL_EVENT_WRITABLE;
|
2008-11-28 18:35:25 -05:00
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
return fd_source->func(source->fd, mask, source->data);
|
2008-11-28 18:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
wl_event_source_fd_remove(struct wl_event_source *source)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_loop *loop = source->loop;
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
return epoll_ctl(loop->epoll_fd, EPOLL_CTL_DEL, source->fd, NULL);
|
2008-11-28 18:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_interface fd_source_interface = {
|
|
|
|
|
wl_event_source_fd_dispatch,
|
|
|
|
|
wl_event_source_fd_remove
|
|
|
|
|
};
|
|
|
|
|
|
2008-11-08 15:39:41 -05:00
|
|
|
WL_EXPORT struct wl_event_source *
|
2008-09-30 09:46:10 -04:00
|
|
|
wl_event_loop_add_fd(struct wl_event_loop *loop,
|
|
|
|
|
int fd, uint32_t mask,
|
2008-10-11 19:21:35 -04:00
|
|
|
wl_event_loop_fd_func_t func,
|
2008-09-30 09:46:10 -04:00
|
|
|
void *data)
|
|
|
|
|
{
|
2008-11-28 18:35:25 -05:00
|
|
|
struct wl_event_source_fd *source;
|
2008-09-30 09:46:10 -04:00
|
|
|
struct epoll_event ep;
|
|
|
|
|
|
|
|
|
|
source = malloc(sizeof *source);
|
2008-11-02 10:12:29 -05:00
|
|
|
if (source == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2008-11-28 18:35:25 -05:00
|
|
|
source->base.interface = &fd_source_interface;
|
|
|
|
|
source->base.loop = loop;
|
2011-04-22 12:06:34 -04:00
|
|
|
wl_list_init(&source->base.link);
|
2012-03-21 10:31:24 +01:00
|
|
|
source->base.fd = fd;
|
2008-09-30 09:46:10 -04:00
|
|
|
source->func = func;
|
2011-04-21 14:41:48 -04:00
|
|
|
source->base.data = data;
|
2008-09-30 09:46:10 -04:00
|
|
|
|
2010-07-29 15:01:01 -04:00
|
|
|
memset(&ep, 0, sizeof ep);
|
2008-09-30 09:46:10 -04:00
|
|
|
if (mask & WL_EVENT_READABLE)
|
|
|
|
|
ep.events |= EPOLLIN;
|
2011-12-28 22:47:37 -05:00
|
|
|
if (mask & WL_EVENT_WRITABLE)
|
2008-09-30 09:46:10 -04:00
|
|
|
ep.events |= EPOLLOUT;
|
|
|
|
|
ep.data.ptr = source;
|
|
|
|
|
|
|
|
|
|
if (epoll_ctl(loop->epoll_fd, EPOLL_CTL_ADD, fd, &ep) < 0) {
|
|
|
|
|
free(source);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-28 18:35:25 -05:00
|
|
|
return &source->base;
|
2008-09-30 09:46:10 -04:00
|
|
|
}
|
|
|
|
|
|
2008-11-08 15:39:41 -05:00
|
|
|
WL_EXPORT int
|
2008-11-28 18:35:25 -05:00
|
|
|
wl_event_source_fd_update(struct wl_event_source *source, uint32_t mask)
|
2008-10-07 10:10:36 -04:00
|
|
|
{
|
2008-11-28 18:35:25 -05:00
|
|
|
struct wl_event_loop *loop = source->loop;
|
2008-10-07 10:10:36 -04:00
|
|
|
struct epoll_event ep;
|
|
|
|
|
|
2010-07-29 15:01:01 -04:00
|
|
|
memset(&ep, 0, sizeof ep);
|
2008-10-07 10:10:36 -04:00
|
|
|
if (mask & WL_EVENT_READABLE)
|
|
|
|
|
ep.events |= EPOLLIN;
|
2011-12-28 22:47:37 -05:00
|
|
|
if (mask & WL_EVENT_WRITABLE)
|
2008-10-07 10:10:36 -04:00
|
|
|
ep.events |= EPOLLOUT;
|
|
|
|
|
ep.data.ptr = source;
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
return epoll_ctl(loop->epoll_fd, EPOLL_CTL_MOD, source->fd, &ep);
|
2008-11-28 18:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_timer {
|
|
|
|
|
struct wl_event_source base;
|
|
|
|
|
wl_event_loop_timer_func_t func;
|
|
|
|
|
};
|
|
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
static int
|
2008-11-28 18:35:25 -05:00
|
|
|
wl_event_source_timer_dispatch(struct wl_event_source *source,
|
|
|
|
|
struct epoll_event *ep)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source_timer *timer_source =
|
|
|
|
|
(struct wl_event_source_timer *) source;
|
|
|
|
|
uint64_t expires;
|
2011-08-12 16:23:07 -04:00
|
|
|
int len;
|
2008-11-28 18:35:25 -05:00
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
len = read(source->fd, &expires, sizeof expires);
|
2011-08-12 16:23:07 -04:00
|
|
|
if (len != sizeof expires)
|
|
|
|
|
/* Is there anything we can do here? Will this ever happen? */
|
|
|
|
|
fprintf(stderr, "timerfd read error: %m\n");
|
2008-11-28 18:35:25 -05:00
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
return timer_source->func(timer_source->base.data);
|
2008-11-28 18:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
wl_event_source_timer_remove(struct wl_event_source *source)
|
|
|
|
|
{
|
2012-03-21 10:31:24 +01:00
|
|
|
close(source->fd);
|
2011-03-13 21:05:14 +02:00
|
|
|
return 0;
|
2008-11-28 18:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_interface timer_source_interface = {
|
|
|
|
|
wl_event_source_timer_dispatch,
|
|
|
|
|
wl_event_source_timer_remove
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WL_EXPORT struct wl_event_source *
|
|
|
|
|
wl_event_loop_add_timer(struct wl_event_loop *loop,
|
|
|
|
|
wl_event_loop_timer_func_t func,
|
|
|
|
|
void *data)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source_timer *source;
|
|
|
|
|
struct epoll_event ep;
|
2012-03-21 10:31:24 +01:00
|
|
|
int fd;
|
2008-11-28 18:35:25 -05:00
|
|
|
|
|
|
|
|
source = malloc(sizeof *source);
|
|
|
|
|
if (source == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
source->base.interface = &timer_source_interface;
|
|
|
|
|
source->base.loop = loop;
|
2011-04-22 12:06:34 -04:00
|
|
|
wl_list_init(&source->base.link);
|
2008-11-28 18:35:25 -05:00
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
|
|
|
|
|
if (fd < 0) {
|
2008-11-28 18:35:25 -05:00
|
|
|
fprintf(stderr, "could not create timerfd\n: %m");
|
|
|
|
|
free(source);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2012-03-21 10:31:24 +01:00
|
|
|
source->base.fd = fd;
|
2008-11-28 18:35:25 -05:00
|
|
|
|
|
|
|
|
source->func = func;
|
2011-04-21 14:41:48 -04:00
|
|
|
source->base.data = data;
|
2008-11-28 18:35:25 -05:00
|
|
|
|
2010-07-29 15:01:01 -04:00
|
|
|
memset(&ep, 0, sizeof ep);
|
2008-11-28 18:35:25 -05:00
|
|
|
ep.events = EPOLLIN;
|
|
|
|
|
ep.data.ptr = source;
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
if (epoll_ctl(loop->epoll_fd, EPOLL_CTL_ADD, fd, &ep) < 0) {
|
|
|
|
|
close(source->base.fd);
|
2008-11-28 18:35:25 -05:00
|
|
|
free(source);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &source->base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WL_EXPORT int
|
|
|
|
|
wl_event_source_timer_update(struct wl_event_source *source, int ms_delay)
|
|
|
|
|
{
|
|
|
|
|
struct itimerspec its;
|
|
|
|
|
|
|
|
|
|
its.it_interval.tv_sec = 0;
|
|
|
|
|
its.it_interval.tv_nsec = 0;
|
2011-03-13 16:59:30 +02:00
|
|
|
its.it_value.tv_sec = ms_delay / 1000;
|
|
|
|
|
its.it_value.tv_nsec = (ms_delay % 1000) * 1000 * 1000;
|
2012-03-21 10:31:24 +01:00
|
|
|
if (timerfd_settime(source->fd, 0, &its, NULL) < 0) {
|
2008-11-28 18:35:25 -05:00
|
|
|
fprintf(stderr, "could not set timerfd\n: %m");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-19 00:22:18 -05:00
|
|
|
struct wl_event_source_signal {
|
|
|
|
|
struct wl_event_source base;
|
|
|
|
|
int signal_number;
|
|
|
|
|
wl_event_loop_signal_func_t func;
|
|
|
|
|
};
|
|
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
static int
|
2008-12-19 00:22:18 -05:00
|
|
|
wl_event_source_signal_dispatch(struct wl_event_source *source,
|
|
|
|
|
struct epoll_event *ep)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source_signal *signal_source =
|
|
|
|
|
(struct wl_event_source_signal *) source;
|
|
|
|
|
struct signalfd_siginfo signal_info;
|
2011-08-12 16:23:07 -04:00
|
|
|
int len;
|
2008-12-19 00:22:18 -05:00
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
len = read(source->fd, &signal_info, sizeof signal_info);
|
2011-08-12 16:23:07 -04:00
|
|
|
if (len != sizeof signal_info)
|
|
|
|
|
/* Is there anything we can do here? Will this ever happen? */
|
|
|
|
|
fprintf(stderr, "signalfd read error: %m\n");
|
2008-12-19 00:22:18 -05:00
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
return signal_source->func(signal_source->signal_number,
|
|
|
|
|
signal_source->base.data);
|
2008-12-19 00:22:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
wl_event_source_signal_remove(struct wl_event_source *source)
|
|
|
|
|
{
|
2012-03-21 10:31:24 +01:00
|
|
|
close(source->fd);
|
2011-03-13 21:08:37 +02:00
|
|
|
return 0;
|
2008-12-19 00:22:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_interface signal_source_interface = {
|
|
|
|
|
wl_event_source_signal_dispatch,
|
|
|
|
|
wl_event_source_signal_remove
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WL_EXPORT struct wl_event_source *
|
|
|
|
|
wl_event_loop_add_signal(struct wl_event_loop *loop,
|
|
|
|
|
int signal_number,
|
|
|
|
|
wl_event_loop_signal_func_t func,
|
|
|
|
|
void *data)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source_signal *source;
|
|
|
|
|
struct epoll_event ep;
|
|
|
|
|
sigset_t mask;
|
2012-03-21 10:31:24 +01:00
|
|
|
int fd;
|
2008-12-19 00:22:18 -05:00
|
|
|
|
|
|
|
|
source = malloc(sizeof *source);
|
|
|
|
|
if (source == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
source->base.interface = &signal_source_interface;
|
|
|
|
|
source->base.loop = loop;
|
2011-04-22 12:06:34 -04:00
|
|
|
wl_list_init(&source->base.link);
|
2011-03-13 17:01:33 +02:00
|
|
|
source->signal_number = signal_number;
|
2008-12-19 00:22:18 -05:00
|
|
|
|
|
|
|
|
sigemptyset(&mask);
|
|
|
|
|
sigaddset(&mask, signal_number);
|
2012-03-21 10:31:24 +01:00
|
|
|
fd = signalfd(-1, &mask, SFD_CLOEXEC);
|
|
|
|
|
if (source->base.fd < 0) {
|
2008-12-19 00:22:18 -05:00
|
|
|
fprintf(stderr, "could not create fd to watch signal\n: %m");
|
|
|
|
|
free(source);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2012-03-21 10:31:24 +01:00
|
|
|
source->base.fd = fd;
|
2008-12-19 00:22:18 -05:00
|
|
|
sigprocmask(SIG_BLOCK, &mask, NULL);
|
|
|
|
|
|
|
|
|
|
source->func = func;
|
2011-04-21 14:41:48 -04:00
|
|
|
source->base.data = data;
|
2008-12-19 00:22:18 -05:00
|
|
|
|
2010-07-29 15:01:01 -04:00
|
|
|
memset(&ep, 0, sizeof ep);
|
2008-12-19 00:22:18 -05:00
|
|
|
ep.events = EPOLLIN;
|
|
|
|
|
ep.data.ptr = source;
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
if (epoll_ctl(loop->epoll_fd, EPOLL_CTL_ADD, fd, &ep) < 0) {
|
|
|
|
|
close(fd);
|
2008-12-19 00:22:18 -05:00
|
|
|
free(source);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &source->base;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-28 18:35:25 -05:00
|
|
|
struct wl_event_source_idle {
|
|
|
|
|
struct wl_event_source base;
|
|
|
|
|
wl_event_loop_idle_func_t func;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_event_source_interface idle_source_interface = {
|
2011-06-23 06:43:47 -04:00
|
|
|
NULL,
|
2012-03-21 10:31:24 +01:00
|
|
|
NULL
|
2008-11-28 18:35:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WL_EXPORT struct wl_event_source *
|
|
|
|
|
wl_event_loop_add_idle(struct wl_event_loop *loop,
|
|
|
|
|
wl_event_loop_idle_func_t func,
|
|
|
|
|
void *data)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source_idle *source;
|
|
|
|
|
|
|
|
|
|
source = malloc(sizeof *source);
|
|
|
|
|
if (source == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
source->base.interface = &idle_source_interface;
|
|
|
|
|
source->base.loop = loop;
|
2012-03-21 10:31:24 +01:00
|
|
|
source->base.fd = 0;
|
2008-11-28 18:35:25 -05:00
|
|
|
|
|
|
|
|
source->func = func;
|
2011-04-21 14:41:48 -04:00
|
|
|
source->base.data = data;
|
2011-06-23 06:43:47 -04:00
|
|
|
|
|
|
|
|
wl_list_insert(loop->idle_list.prev, &source->base.link);
|
2008-11-28 18:35:25 -05:00
|
|
|
|
|
|
|
|
return &source->base;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-21 14:41:48 -04:00
|
|
|
WL_EXPORT void
|
2011-04-22 12:06:34 -04:00
|
|
|
wl_event_source_check(struct wl_event_source *source)
|
2011-04-21 14:41:48 -04:00
|
|
|
{
|
2011-04-22 12:06:34 -04:00
|
|
|
wl_list_insert(source->loop->check_list.prev, &source->link);
|
2011-04-21 14:41:48 -04:00
|
|
|
}
|
|
|
|
|
|
2008-11-28 18:35:25 -05:00
|
|
|
WL_EXPORT int
|
|
|
|
|
wl_event_source_remove(struct wl_event_source *source)
|
|
|
|
|
{
|
2012-03-21 10:31:24 +01:00
|
|
|
struct wl_event_loop *loop = source->loop;
|
|
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
if (!wl_list_empty(&source->link))
|
2011-04-21 14:41:48 -04:00
|
|
|
wl_list_remove(&source->link);
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
if (source->interface->remove)
|
|
|
|
|
source->interface->remove(source);
|
|
|
|
|
|
|
|
|
|
source->fd = -1;
|
|
|
|
|
wl_list_insert(&loop->destroy_list, &source->link);
|
2008-11-28 18:35:25 -05:00
|
|
|
|
|
|
|
|
return 0;
|
2008-10-07 10:10:36 -04:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
static void
|
|
|
|
|
wl_event_loop_process_destroy_list(struct wl_event_loop *loop)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_source *source, *next;
|
|
|
|
|
|
|
|
|
|
wl_list_for_each_safe(source, next, &loop->destroy_list, link)
|
|
|
|
|
free(source);
|
|
|
|
|
|
|
|
|
|
wl_list_init(&loop->destroy_list);
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-08 15:39:41 -05:00
|
|
|
WL_EXPORT struct wl_event_loop *
|
2008-09-30 09:46:10 -04:00
|
|
|
wl_event_loop_create(void)
|
|
|
|
|
{
|
|
|
|
|
struct wl_event_loop *loop;
|
|
|
|
|
|
|
|
|
|
loop = malloc(sizeof *loop);
|
|
|
|
|
if (loop == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2011-04-11 09:24:11 -04:00
|
|
|
loop->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
|
2008-09-30 09:46:10 -04:00
|
|
|
if (loop->epoll_fd < 0) {
|
|
|
|
|
free(loop);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2011-04-21 14:41:48 -04:00
|
|
|
wl_list_init(&loop->check_list);
|
2011-06-23 06:43:47 -04:00
|
|
|
wl_list_init(&loop->idle_list);
|
2012-03-21 10:31:24 +01:00
|
|
|
wl_list_init(&loop->destroy_list);
|
2008-09-30 09:46:10 -04:00
|
|
|
|
|
|
|
|
return loop;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-08 15:39:41 -05:00
|
|
|
WL_EXPORT void
|
2008-09-30 09:46:10 -04:00
|
|
|
wl_event_loop_destroy(struct wl_event_loop *loop)
|
|
|
|
|
{
|
2012-03-21 10:31:24 +01:00
|
|
|
wl_event_loop_process_destroy_list(loop);
|
2008-09-30 09:46:10 -04:00
|
|
|
close(loop->epoll_fd);
|
|
|
|
|
free(loop);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-22 12:06:34 -04:00
|
|
|
static int
|
|
|
|
|
post_dispatch_check(struct wl_event_loop *loop)
|
|
|
|
|
{
|
|
|
|
|
struct epoll_event ep;
|
|
|
|
|
struct wl_event_source *source, *next;
|
|
|
|
|
int n;
|
|
|
|
|
|
|
|
|
|
ep.events = 0;
|
|
|
|
|
n = 0;
|
|
|
|
|
wl_list_for_each_safe(source, next, &loop->check_list, link)
|
|
|
|
|
n += source->interface->dispatch(source, &ep);
|
|
|
|
|
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-23 06:43:47 -04:00
|
|
|
static void
|
|
|
|
|
dispatch_idle_sources(struct wl_event_loop *loop)
|
|
|
|
|
{
|
2011-10-29 14:27:33 -04:00
|
|
|
struct wl_event_source_idle *source;
|
2011-06-23 06:43:47 -04:00
|
|
|
|
2011-10-29 14:27:33 -04:00
|
|
|
while (!wl_list_empty(&loop->idle_list)) {
|
|
|
|
|
source = container_of(loop->idle_list.next,
|
|
|
|
|
struct wl_event_source_idle, base.link);
|
2011-06-23 06:43:47 -04:00
|
|
|
source->func(source->base.data);
|
|
|
|
|
wl_event_source_remove(&source->base);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-08 15:39:41 -05:00
|
|
|
WL_EXPORT int
|
2010-11-19 10:47:28 -05:00
|
|
|
wl_event_loop_dispatch(struct wl_event_loop *loop, int timeout)
|
2008-09-30 09:46:10 -04:00
|
|
|
{
|
|
|
|
|
struct epoll_event ep[32];
|
2011-04-22 12:06:34 -04:00
|
|
|
struct wl_event_source *source;
|
|
|
|
|
int i, count, n;
|
2011-04-21 14:41:48 -04:00
|
|
|
|
2011-06-23 06:43:47 -04:00
|
|
|
dispatch_idle_sources(loop);
|
|
|
|
|
|
2008-10-11 19:21:35 -04:00
|
|
|
count = epoll_wait(loop->epoll_fd, ep, ARRAY_LENGTH(ep), timeout);
|
2008-09-30 09:46:10 -04:00
|
|
|
if (count < 0)
|
|
|
|
|
return -1;
|
2011-04-22 12:06:34 -04:00
|
|
|
n = 0;
|
2008-09-30 09:46:10 -04:00
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
|
source = ep[i].data.ptr;
|
2012-03-21 10:31:24 +01:00
|
|
|
if (source->fd != -1)
|
|
|
|
|
n += source->interface->dispatch(source, &ep[i]);
|
2008-09-30 09:46:10 -04:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 10:31:24 +01:00
|
|
|
wl_event_loop_process_destroy_list(loop);
|
|
|
|
|
|
2012-03-13 13:16:13 +02:00
|
|
|
do {
|
2011-04-22 12:06:34 -04:00
|
|
|
n = post_dispatch_check(loop);
|
2012-03-13 13:16:13 +02:00
|
|
|
} while (n > 0);
|
2011-04-21 14:41:48 -04:00
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
return 0;
|
|
|
|
|
}
|
2010-11-19 10:47:28 -05:00
|
|
|
|
|
|
|
|
WL_EXPORT int
|
|
|
|
|
wl_event_loop_get_fd(struct wl_event_loop *loop)
|
|
|
|
|
{
|
|
|
|
|
return loop->epoll_fd;
|
|
|
|
|
}
|