mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-25 10:30:07 +01:00
332 lines
7.3 KiB
C
332 lines
7.3 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Red Hat, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <sys/epoll.h>
|
|
|
|
#include "util-object.h"
|
|
#include "util-io.h"
|
|
#include "util-list.h"
|
|
#include "util-sources.h"
|
|
|
|
struct sink {
|
|
struct object object;
|
|
int epollfd;
|
|
struct list sources;
|
|
struct list sources_removed;
|
|
};
|
|
|
|
enum source_close_behavior {
|
|
SOURCE_CLOSE_FD_ON_REMOVE = 1, /* default */
|
|
SOURCE_CLOSE_FD_ON_DESTROY,
|
|
SOURCE_CLOSE_FD_NEVER,
|
|
};
|
|
|
|
struct source {
|
|
struct object object;
|
|
struct sink *sink;
|
|
struct list link; /* sink.sources or sink.sources_removed */
|
|
source_dispatch_t dispatch;
|
|
void *user_data;
|
|
enum source_close_behavior close_behavior;
|
|
int fd;
|
|
bool is_active;
|
|
};
|
|
|
|
OBJECT_IMPLEMENT_REF(source);
|
|
OBJECT_IMPLEMENT_UNREF_CLEANUP(source);
|
|
OBJECT_IMPLEMENT_GETTER(source, fd, int);
|
|
OBJECT_IMPLEMENT_GETTER(source, user_data, void*);
|
|
OBJECT_IMPLEMENT_SETTER(source, user_data, void*);
|
|
|
|
/**
|
|
* Remove the source, closing the fd. The source is tagged as removed and
|
|
* will be removed whenever sink_dispatch() finishes (or is called next).
|
|
*/
|
|
void
|
|
source_remove(struct source *source)
|
|
{
|
|
if (!source || !source->is_active)
|
|
return;
|
|
|
|
epoll_ctl(source->sink->epollfd, EPOLL_CTL_DEL, source->fd, NULL);
|
|
if (source->close_behavior == SOURCE_CLOSE_FD_ON_REMOVE)
|
|
source->fd = xclose(source->fd);
|
|
source->is_active = false;
|
|
source_unref(source);
|
|
|
|
/* Note: sources list was the owner of the source, new owner
|
|
is the removed list */
|
|
list_remove(&source->link);
|
|
list_append(&source->sink->sources_removed, &source->link);
|
|
source->sink = NULL;
|
|
}
|
|
|
|
/* Ignore, use source_unref() */
|
|
static void
|
|
source_destroy(struct source *source)
|
|
{
|
|
/* We expect source_remove() to be called before we ever get here */
|
|
assert(!source->is_active);
|
|
|
|
if (source->close_behavior == SOURCE_CLOSE_FD_ON_DESTROY)
|
|
source->fd = xclose(source->fd);
|
|
}
|
|
|
|
static
|
|
OBJECT_IMPLEMENT_CREATE(source);
|
|
|
|
struct source *
|
|
source_new(int sourcefd, source_dispatch_t dispatch, void *user_data)
|
|
{
|
|
struct source *source = source_create(NULL);
|
|
|
|
source->dispatch = dispatch;
|
|
source->user_data = user_data;
|
|
source->fd = sourcefd;
|
|
source->close_behavior = SOURCE_CLOSE_FD_ON_REMOVE;
|
|
source->is_active = false;
|
|
list_init(&source->link);
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
void
|
|
source_never_close_fd(struct source *s)
|
|
{
|
|
s->close_behavior = SOURCE_CLOSE_FD_NEVER;
|
|
}
|
|
|
|
static void
|
|
sink_destroy(struct sink *sink)
|
|
{
|
|
struct source *s;
|
|
list_for_each_safe(s, &sink->sources, link) {
|
|
source_remove(s);
|
|
}
|
|
list_for_each_safe(s, &sink->sources_removed, link) {
|
|
source_unref(s);
|
|
}
|
|
xclose(sink->epollfd);
|
|
}
|
|
|
|
OBJECT_IMPLEMENT_UNREF_CLEANUP(sink);
|
|
static
|
|
OBJECT_IMPLEMENT_CREATE(sink);
|
|
|
|
int
|
|
sink_get_fd(struct sink *sink)
|
|
{
|
|
assert(sink);
|
|
return sink->epollfd;
|
|
}
|
|
|
|
struct sink *
|
|
sink_new(void)
|
|
{
|
|
int fd = epoll_create1(EPOLL_CLOEXEC);
|
|
if (fd < 0)
|
|
return NULL;
|
|
|
|
struct sink *sink = sink_create(NULL);
|
|
|
|
sink->epollfd = fd;
|
|
list_init(&sink->sources);
|
|
list_init(&sink->sources_removed);
|
|
|
|
return sink;
|
|
}
|
|
|
|
int
|
|
sink_dispatch(struct sink *sink)
|
|
{
|
|
struct epoll_event ep[32];
|
|
int count = epoll_wait(sink->epollfd, ep, sizeof(ep)/sizeof(ep[0]), 0);
|
|
if (count < 0)
|
|
return -errno;
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
struct source *source = ep[i].data.ptr;
|
|
if (source->fd == -1)
|
|
continue;
|
|
|
|
source->dispatch(source, source->user_data);
|
|
}
|
|
|
|
struct source *s;
|
|
list_for_each_safe(s, &sink->sources_removed, link) {
|
|
list_remove(&s->link);
|
|
list_init(&s->link);
|
|
source_unref(s);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
int
|
|
sink_add_source(struct sink *sink, struct source *source)
|
|
{
|
|
struct epoll_event e = {
|
|
.events = EPOLLIN,
|
|
.data.ptr = source_ref(source),
|
|
};
|
|
|
|
if (epoll_ctl(sink->epollfd, EPOLL_CTL_ADD, source_get_fd(source), &e) < 0) {
|
|
source_unref(source);
|
|
return -errno;
|
|
}
|
|
|
|
source->is_active = true;
|
|
source->sink = sink;
|
|
source_ref(source);
|
|
list_append(&sink->sources, &source->link);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#if _enable_tests_
|
|
#include <fcntl.h>
|
|
#include <signal.h>
|
|
|
|
#include "util-munit.h"
|
|
#include "util-macros.h"
|
|
|
|
MUNIT_TEST(test_sink)
|
|
{
|
|
struct sink *sink = sink_new();
|
|
sink_dispatch(sink);
|
|
sink_dispatch(sink);
|
|
|
|
int fd = sink_get_fd(sink);
|
|
munit_assert_int(fd, !=, -1);
|
|
|
|
sink_unref(sink);
|
|
|
|
return MUNIT_OK;
|
|
}
|
|
|
|
struct buffer {
|
|
size_t size;
|
|
size_t len;
|
|
char *buffer;
|
|
};
|
|
|
|
static void
|
|
read_buffer(struct source *source, void *user_data)
|
|
{
|
|
struct buffer *buffer = user_data;
|
|
size_t sz = max(buffer->size, 1024);
|
|
|
|
buffer->size = sz;
|
|
buffer->buffer = xrealloc(buffer->buffer, sz);
|
|
|
|
int nread = read(source_get_fd(source), buffer->buffer, sz);
|
|
munit_assert_int(nread, >=, 0);
|
|
|
|
buffer->len = nread;
|
|
}
|
|
|
|
MUNIT_TEST(test_source)
|
|
{
|
|
_unref_(sink) *sink = sink_new();
|
|
|
|
int fd[2];
|
|
int rc = pipe2(fd, O_CLOEXEC|O_NONBLOCK);
|
|
munit_assert_int(rc, !=, -1);
|
|
|
|
struct buffer buffer = {0};
|
|
struct source *s = source_new(fd[0], read_buffer, &buffer);
|
|
|
|
munit_assert_int(source_get_fd(s), ==, fd[0]);
|
|
|
|
sink_add_source(sink, s);
|
|
|
|
/* Nothing to read yet, dispatch is a noop */
|
|
sink_dispatch(sink);
|
|
munit_assert_int(buffer.len, ==, 0);
|
|
|
|
const char token[] = "foobar";
|
|
int wrc = write(fd[1], token, sizeof(token));
|
|
munit_assert_int(wrc, ==, sizeof(token));
|
|
|
|
/* haven't called dispatch yet */
|
|
munit_assert_int(buffer.len, ==, 0);
|
|
sink_dispatch(sink);
|
|
munit_assert_int(buffer.len, ==, sizeof(token));
|
|
munit_assert_string_equal(buffer.buffer, token);
|
|
|
|
/* multiple removals shouldn't matter */
|
|
source_remove(s);
|
|
source_remove(s);
|
|
sink_dispatch(sink);
|
|
source_remove(s);
|
|
sink_dispatch(sink);
|
|
|
|
/* source pipe is already closed */
|
|
signal(SIGPIPE, SIG_IGN);
|
|
const char token2[] = "bazbat";
|
|
wrc = write(fd[1], token2, sizeof(token2));
|
|
munit_assert_int(wrc, ==, -1);
|
|
munit_assert_int(errno, ==, EPIPE);
|
|
|
|
sink_dispatch(sink);
|
|
source_unref(s);
|
|
sink_dispatch(sink);
|
|
|
|
free(buffer.buffer);
|
|
|
|
return MUNIT_OK;
|
|
}
|
|
|
|
static void
|
|
drain_data(struct source *source, void *user_data)
|
|
{
|
|
char buf[1024] = {0};
|
|
read(source_get_fd(source), buf, sizeof(buf));
|
|
}
|
|
|
|
MUNIT_TEST(test_source_readd)
|
|
{
|
|
_unref_(sink) *sink = sink_new();
|
|
|
|
int fd[2];
|
|
int rc = pipe2(fd, O_CLOEXEC|O_NONBLOCK);
|
|
munit_assert_int(rc, !=, -1);
|
|
|
|
_unref_(source) *s = source_new(fd[0], drain_data, NULL);
|
|
sink_add_source(sink, s);
|
|
sink_dispatch(sink);
|
|
/* remove and re-add without calling dispatch */
|
|
source_remove(s);
|
|
sink_add_source(sink, s);
|
|
source_remove(s);
|
|
|
|
return MUNIT_OK;
|
|
}
|
|
#endif
|