mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-13 12:09:35 +03:00
f3b9ff5f9f
The time is stored in a signed 64 bit integer with nanosecond accuracy. This eliminates the possibility of floating-point inaccuracies. `monotonic_t` can currently hold values large enough to work correctly for more than 200 years into the future. Using a typedef instead of directly using `int64_t` everywhere will also allow easily changing the datatype in the future should the need arise for more precise or bigger time values.
376 lines
11 KiB
C
Vendored
376 lines
11 KiB
C
Vendored
/*
|
|
* backend_utils.c
|
|
* Copyright (C) 2018 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
#include "backend_utils.h"
|
|
#include "internal.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
#include <float.h>
|
|
#include <time.h>
|
|
#include <stdio.h>
|
|
|
|
#ifdef __NetBSD__
|
|
#define ppoll pollts
|
|
#endif
|
|
|
|
void
|
|
update_fds(EventLoopData *eld) {
|
|
for (nfds_t i = 0; i < eld->watches_count; i++) {
|
|
Watch *w = eld->watches + i;
|
|
eld->fds[i].fd = w->fd;
|
|
eld->fds[i].events = w->enabled ? w->events : 0;
|
|
}
|
|
}
|
|
|
|
static id_type watch_counter = 0;
|
|
|
|
id_type
|
|
addWatch(EventLoopData *eld, const char* name, int fd, int events, int enabled, watch_callback_func cb, void *cb_data) {
|
|
if (eld->watches_count >= sizeof(eld->watches)/sizeof(eld->watches[0])) {
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Too many watches added");
|
|
return 0;
|
|
}
|
|
Watch *w = eld->watches + eld->watches_count++;
|
|
w->name = name;
|
|
w->fd = fd; w->events = events; w->enabled = enabled;
|
|
w->callback = cb;
|
|
w->callback_data = cb_data;
|
|
w->free = NULL;
|
|
w->id = ++watch_counter;
|
|
update_fds(eld);
|
|
return w->id;
|
|
}
|
|
|
|
#define removeX(which, item_id, update_func) {\
|
|
for (nfds_t i = 0; i < eld->which##_count; i++) { \
|
|
if (eld->which[i].id == item_id) { \
|
|
eld->which##_count--; \
|
|
if (eld->which[i].callback_data && eld->which[i].free) { \
|
|
eld->which[i].free(eld->which[i].id, eld->which[i].callback_data); \
|
|
eld->which[i].callback_data = NULL; eld->which[i].free = NULL; \
|
|
} \
|
|
if (i < eld->which##_count) { \
|
|
memmove(eld->which + i, eld->which + i + 1, sizeof(eld->which[0]) * (eld->which##_count - i)); \
|
|
} \
|
|
update_func(eld); break; \
|
|
}}}
|
|
|
|
void
|
|
removeWatch(EventLoopData *eld, id_type watch_id) {
|
|
removeX(watches, watch_id, update_fds);
|
|
}
|
|
|
|
void
|
|
toggleWatch(EventLoopData *eld, id_type watch_id, int enabled) {
|
|
for (nfds_t i = 0; i < eld->watches_count; i++) {
|
|
if (eld->watches[i].id == watch_id) {
|
|
if (eld->watches[i].enabled != enabled) {
|
|
eld->watches[i].enabled = enabled;
|
|
update_fds(eld);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
static id_type timer_counter = 0;
|
|
|
|
static int
|
|
compare_timers(const void *a_, const void *b_) {
|
|
const Timer *a = (const Timer*)a_, *b = (const Timer*)b_;
|
|
return (a->trigger_at > b->trigger_at) ? 1 : (a->trigger_at < b->trigger_at) ? -1 : 0;
|
|
}
|
|
|
|
static inline void
|
|
update_timers(EventLoopData *eld) {
|
|
if (eld->timers_count > 1) qsort(eld->timers, eld->timers_count, sizeof(eld->timers[0]), compare_timers);
|
|
}
|
|
|
|
id_type
|
|
addTimer(EventLoopData *eld, const char *name, monotonic_t interval, int enabled, bool repeats, timer_callback_func cb, void *cb_data, GLFWuserdatafreefun free) {
|
|
if (eld->timers_count >= sizeof(eld->timers)/sizeof(eld->timers[0])) {
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Too many timers added");
|
|
return 0;
|
|
}
|
|
Timer *t = eld->timers + eld->timers_count++;
|
|
t->interval = interval;
|
|
t->name = name;
|
|
t->trigger_at = enabled ? monotonic() + interval : MONOTONIC_T_MAX;
|
|
t->repeats = repeats;
|
|
t->callback = cb;
|
|
t->callback_data = cb_data;
|
|
t->free = free;
|
|
t->id = ++timer_counter;
|
|
update_timers(eld);
|
|
return timer_counter;
|
|
}
|
|
|
|
void
|
|
removeTimer(EventLoopData *eld, id_type timer_id) {
|
|
removeX(timers, timer_id, update_timers);
|
|
}
|
|
|
|
void
|
|
removeAllTimers(EventLoopData *eld) {
|
|
for (nfds_t i = 0; i < eld->timers_count; i++) {
|
|
if (eld->timers[i].free && eld->timers[i].callback_data) eld->timers[i].free(eld->timers[i].id, eld->timers[i].callback_data);
|
|
}
|
|
eld->timers_count = 0;
|
|
}
|
|
|
|
void
|
|
toggleTimer(EventLoopData *eld, id_type timer_id, int enabled) {
|
|
for (nfds_t i = 0; i < eld->timers_count; i++) {
|
|
if (eld->timers[i].id == timer_id) {
|
|
monotonic_t trigger_at = enabled ? (monotonic() + eld->timers[i].interval) : MONOTONIC_T_MAX;
|
|
if (trigger_at != eld->timers[i].trigger_at) {
|
|
eld->timers[i].trigger_at = trigger_at;
|
|
update_timers(eld);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
changeTimerInterval(EventLoopData *eld, id_type timer_id, monotonic_t interval) {
|
|
for (nfds_t i = 0; i < eld->timers_count; i++) {
|
|
if (eld->timers[i].id == timer_id) {
|
|
eld->timers[i].interval = interval;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
monotonic_t
|
|
prepareForPoll(EventLoopData *eld, monotonic_t timeout) {
|
|
for (nfds_t i = 0; i < eld->watches_count; i++) eld->fds[i].revents = 0;
|
|
if (!eld->timers_count || eld->timers[0].trigger_at == MONOTONIC_T_MAX) return timeout;
|
|
monotonic_t now = monotonic(), next_repeat_at = eld->timers[0].trigger_at;
|
|
if (timeout < 0 || now + timeout > next_repeat_at) {
|
|
timeout = next_repeat_at <= now ? 0 : next_repeat_at - now;
|
|
}
|
|
return timeout;
|
|
}
|
|
|
|
int
|
|
pollWithTimeout(struct pollfd *fds, nfds_t nfds, monotonic_t timeout) {
|
|
struct timespec tv = calc_time(timeout);
|
|
return ppoll(fds, nfds, &tv, NULL);
|
|
}
|
|
|
|
static void
|
|
dispatchEvents(EventLoopData *eld) {
|
|
for (nfds_t i = 0; i < eld->watches_count; i++) {
|
|
Watch *ww = eld->watches + i;
|
|
struct pollfd *pfd = eld->fds + i;
|
|
if (pfd->revents & ww->events) {
|
|
ww->ready = 1;
|
|
if (ww->callback) ww->callback(ww->fd, pfd->revents, ww->callback_data);
|
|
} else ww->ready = 0;
|
|
}
|
|
}
|
|
|
|
unsigned
|
|
dispatchTimers(EventLoopData *eld) {
|
|
if (!eld->timers_count || eld->timers[0].trigger_at == MONOTONIC_T_MAX) return 0;
|
|
static struct { timer_callback_func func; id_type id; void* data; bool repeats; } dispatches[sizeof(eld->timers)/sizeof(eld->timers[0])];
|
|
unsigned num_dispatches = 0;
|
|
monotonic_t now = monotonic();
|
|
for (nfds_t i = 0; i < eld->timers_count && eld->timers[i].trigger_at <= now; i++) {
|
|
eld->timers[i].trigger_at = now + eld->timers[i].interval;
|
|
dispatches[num_dispatches].func = eld->timers[i].callback;
|
|
dispatches[num_dispatches].id = eld->timers[i].id;
|
|
dispatches[num_dispatches].data = eld->timers[i].callback_data;
|
|
dispatches[num_dispatches].repeats = eld->timers[i].repeats;
|
|
num_dispatches++;
|
|
}
|
|
// we dispatch separately so that the callbacks can modify timers
|
|
for (unsigned i = 0; i < num_dispatches; i++) {
|
|
dispatches[i].func(dispatches[i].id, dispatches[i].data);
|
|
if (!dispatches[i].repeats) {
|
|
removeTimer(eld, dispatches[i].id);
|
|
}
|
|
}
|
|
if (num_dispatches) update_timers(eld);
|
|
return num_dispatches;
|
|
}
|
|
|
|
static void
|
|
drain_wakeup_fd(int fd, EventLoopData* eld) {
|
|
static char drain_buf[64];
|
|
eld->wakeup_data_read = false;
|
|
while(true) {
|
|
ssize_t ret = read(fd, drain_buf, sizeof(drain_buf));
|
|
if (ret < 0) {
|
|
if (errno == EINTR) continue;
|
|
break;
|
|
}
|
|
if (ret > 0) { eld->wakeup_data_read = true; continue; }
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
mark_wakep_fd_ready(int fd UNUSED, int events UNUSED, void *data) {
|
|
((EventLoopData*)(data))->wakeup_fd_ready = true;
|
|
}
|
|
|
|
bool
|
|
initPollData(EventLoopData *eld, int display_fd) {
|
|
if (!addWatch(eld, "display", display_fd, POLLIN, 1, NULL, NULL)) return false;
|
|
#ifdef HAS_EVENT_FD
|
|
eld->wakeupFd = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK);
|
|
if (eld->wakeupFd == -1) return false;
|
|
const int wakeup_fd = eld->wakeupFd;
|
|
#else
|
|
if (pipe2(eld->wakeupFds, O_CLOEXEC | O_NONBLOCK) != 0) return false;
|
|
const int wakeup_fd = eld->wakeupFds[0];
|
|
#endif
|
|
if (!addWatch(eld, "wakeup", wakeup_fd, POLLIN, 1, mark_wakep_fd_ready, eld)) return false;
|
|
return true;
|
|
}
|
|
|
|
void
|
|
check_for_wakeup_events(EventLoopData *eld) {
|
|
#ifdef HAS_EVENT_FD
|
|
int fd = eld->wakeupFd;
|
|
#else
|
|
int fd = eld->wakeupFds[0];
|
|
#endif
|
|
drain_wakeup_fd(fd, eld);
|
|
}
|
|
|
|
void
|
|
wakeupEventLoop(EventLoopData *eld) {
|
|
#ifdef HAS_EVENT_FD
|
|
static const uint64_t value = 1;
|
|
while (write(eld->wakeupFd, &value, sizeof value) < 0 && (errno == EINTR || errno == EAGAIN));
|
|
#else
|
|
while (write(eld->wakeupFds[1], "w", 1) < 0 && (errno == EINTR || errno == EAGAIN));
|
|
#endif
|
|
}
|
|
|
|
#ifndef HAS_EVENT_FD
|
|
static inline void
|
|
closeFds(int *fds, size_t count) {
|
|
while(count--) {
|
|
if (*fds > 0) {
|
|
close(*fds);
|
|
*fds = -1;
|
|
}
|
|
fds++;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void
|
|
finalizePollData(EventLoopData *eld) {
|
|
#ifdef HAS_EVENT_FD
|
|
close(eld->wakeupFd); eld->wakeupFd = -1;
|
|
#else
|
|
closeFds(eld->wakeupFds, arraysz(eld->wakeupFds));
|
|
#endif
|
|
}
|
|
|
|
int
|
|
pollForEvents(EventLoopData *eld, monotonic_t timeout) {
|
|
int read_ok = 0;
|
|
timeout = prepareForPoll(eld, timeout);
|
|
EVDBG("pollForEvents final timeout: %.3f", monotonic_t_to_s_double(timeout));
|
|
int result;
|
|
monotonic_t end_time = monotonic() + timeout;
|
|
eld->wakeup_fd_ready = false;
|
|
|
|
while(1) {
|
|
if (timeout >= 0) {
|
|
errno = 0;
|
|
result = pollWithTimeout(eld->fds, eld->watches_count, timeout);
|
|
int saved_errno = errno;
|
|
dispatchTimers(eld);
|
|
if (result > 0) {
|
|
dispatchEvents(eld);
|
|
read_ok = eld->watches[0].ready;
|
|
break;
|
|
}
|
|
timeout = end_time - monotonic();
|
|
if (timeout <= 0) break;
|
|
if (result < 0 && (saved_errno == EINTR || saved_errno == EAGAIN)) continue;
|
|
break;
|
|
} else {
|
|
errno = 0;
|
|
result = poll(eld->fds, eld->watches_count, -1);
|
|
int saved_errno = errno;
|
|
dispatchTimers(eld);
|
|
if (result > 0) {
|
|
dispatchEvents(eld);
|
|
read_ok = eld->watches[0].ready;
|
|
}
|
|
if (result < 0 && (saved_errno == EINTR || saved_errno == EAGAIN)) continue;
|
|
break;
|
|
}
|
|
}
|
|
return read_ok;
|
|
}
|
|
|
|
// Splits and translates a text/uri-list into separate file paths
|
|
// NOTE: This function destroys the provided string
|
|
//
|
|
char** parseUriList(char* text, int* count)
|
|
{
|
|
const char* prefix = "file://";
|
|
char** paths = NULL;
|
|
char* line;
|
|
|
|
*count = 0;
|
|
|
|
while ((line = strtok(text, "\r\n")))
|
|
{
|
|
text = NULL;
|
|
|
|
if (line[0] == '#')
|
|
continue;
|
|
|
|
if (strncmp(line, prefix, strlen(prefix)) == 0)
|
|
{
|
|
line += strlen(prefix);
|
|
// TODO: Validate hostname
|
|
while (*line != '/')
|
|
line++;
|
|
}
|
|
|
|
(*count)++;
|
|
|
|
char* path = calloc(strlen(line) + 1, 1);
|
|
paths = realloc(paths, *count * sizeof(char*));
|
|
paths[*count - 1] = path;
|
|
|
|
while (*line)
|
|
{
|
|
if (line[0] == '%' && line[1] && line[2])
|
|
{
|
|
const char digits[3] = { line[1], line[2], '\0' };
|
|
*path = strtol(digits, NULL, 16);
|
|
line += 2;
|
|
}
|
|
else
|
|
*path = *line;
|
|
|
|
path++;
|
|
line++;
|
|
}
|
|
}
|
|
|
|
return paths;
|
|
}
|