somebar/src/main.cpp

612 lines
17 KiB
C++
Raw Normal View History

2021-10-19 16:46:46 -04:00
// somebar - dwl bar
// See LICENSE file for copyright and license details.
2021-10-27 11:24:47 -04:00
#include <algorithm>
#include <cstdio>
2021-10-29 16:22:58 -04:00
#include <sstream>
2021-10-27 11:24:47 -04:00
#include <list>
#include <optional>
#include <utility>
2021-10-27 11:24:47 -04:00
#include <vector>
#include <fcntl.h>
2021-11-16 13:14:45 -05:00
#include <poll.h>
#include <signal.h>
2021-10-19 16:46:46 -04:00
#include <sys/mman.h>
2021-10-22 10:32:53 -04:00
#include <sys/stat.h>
2021-10-19 16:46:46 -04:00
#include <sys/types.h>
#include <unistd.h>
2021-10-22 11:26:05 -04:00
#include <linux/input-event-codes.h>
2021-10-19 16:46:46 -04:00
#include <wayland-client.h>
2021-10-22 11:34:21 -04:00
#include <wayland-cursor.h>
2021-10-19 16:46:46 -04:00
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
2021-10-27 11:24:47 -04:00
#include "xdg-output-unstable-v1-client-protocol.h"
2021-10-19 16:46:46 -04:00
#include "xdg-shell-client-protocol.h"
2021-10-20 14:20:27 -04:00
#include "common.hpp"
2021-10-29 16:22:58 -04:00
#include "config.hpp"
2021-10-20 14:45:23 -04:00
#include "bar.hpp"
2021-10-27 12:36:57 -04:00
#include "line_buffer.hpp"
2021-10-19 16:46:46 -04:00
2021-10-25 09:49:01 -04:00
struct Monitor {
2021-10-29 14:33:27 -04:00
uint32_t registryName;
std::string xdgName;
wl_unique_ptr<wl_output> wlOutput;
Bar bar;
2021-10-29 14:33:27 -04:00
bool desiredVisibility {true};
bool hasData;
uint32_t tags;
2021-10-25 09:49:01 -04:00
};
2021-10-27 11:24:47 -04:00
2021-10-26 06:59:41 -04:00
struct SeatPointer {
2021-10-29 14:33:27 -04:00
wl_unique_ptr<wl_pointer> wlPointer;
Monitor* focusedMonitor;
2021-10-29 14:33:27 -04:00
int x, y;
std::vector<int> btns;
2021-10-26 06:59:41 -04:00
};
struct Seat {
2021-10-29 14:33:27 -04:00
uint32_t name;
wl_unique_ptr<wl_seat> wlSeat;
std::optional<SeatPointer> pointer;
2021-10-26 06:59:41 -04:00
};
2021-10-25 09:49:01 -04:00
static Monitor* monitorFromSurface(const wl_surface* surface);
static void setupMonitor(uint32_t name, wl_output* output);
2021-10-27 11:24:47 -04:00
static void updatemon(Monitor &mon);
2021-10-30 05:41:27 -04:00
static void onReady();
2021-10-22 10:32:53 -04:00
static void setupStatusFifo();
static void onStatus();
2021-10-29 17:35:40 -04:00
static void onStdin();
2021-10-30 05:20:27 -04:00
static void handleStdin(const std::string& line);
2021-10-30 05:41:27 -04:00
static void updateVisibility(const std::string& name, bool(*updater)(bool));
static void onGlobalAdd(void*, wl_registry* registry, uint32_t name, const char* interface, uint32_t version);
static void onGlobalRemove(void*, wl_registry* registry, uint32_t name);
static void requireGlobal(const void* p, const char* name);
2021-10-27 11:24:47 -04:00
static void waylandFlush();
2021-10-30 05:41:27 -04:00
static void cleanup();
2021-10-19 16:46:46 -04:00
wl_display* display;
wl_compositor* compositor;
wl_shm* shm;
zwlr_layer_shell_v1* wlrLayerShell;
static xdg_wm_base* xdgWmBase;
static zxdg_output_manager_v1* xdgOutputManager;
static wl_surface* cursorSurface;
static wl_cursor_image* cursorImage;
2021-10-25 13:02:35 -04:00
static bool ready;
2021-10-26 06:59:41 -04:00
static std::list<Monitor> monitors;
static std::vector<std::pair<uint32_t, wl_output*>> uninitializedOutputs;
2021-10-26 06:59:41 -04:00
static std::list<Seat> seats;
static Monitor* selmon;
2021-10-27 11:24:47 -04:00
static std::string lastStatus;
2021-10-22 10:32:53 -04:00
static std::string statusFifoName;
2021-11-16 13:14:45 -05:00
static std::vector<pollfd> pollfds;
static std::array<int, 2> signalSelfPipe;
2021-10-27 11:24:47 -04:00
static int displayFd {-1};
2021-10-22 10:32:53 -04:00
static int statusFifoFd {-1};
static int statusFifoWriter {-1};
2021-10-22 10:39:19 -04:00
static bool quitting {false};
2021-10-19 16:46:46 -04:00
void spawn(Monitor&, const Arg& arg)
2021-10-26 10:40:19 -04:00
{
2021-10-29 14:33:27 -04:00
if (fork() == 0) {
auto argv = static_cast<char* const*>(arg.v);
setsid();
execvp(argv[0], argv);
fprintf(stderr, "somebar: execvp %s ", argv[0]);
perror(" failed");
exit(1);
}
2021-10-26 10:40:19 -04:00
}
2021-10-26 05:40:46 -04:00
2021-10-19 16:46:46 -04:00
static const struct xdg_wm_base_listener xdgWmBaseListener = {
2021-10-29 14:33:27 -04:00
[](void*, xdg_wm_base* sender, uint32_t serial) {
xdg_wm_base_pong(sender, serial);
}
2021-10-19 16:46:46 -04:00
};
2021-10-27 11:24:47 -04:00
static const struct zxdg_output_v1_listener xdgOutputListener = {
2021-10-29 14:33:27 -04:00
.logical_position = [](void*, zxdg_output_v1*, int, int) { },
.logical_size = [](void*, zxdg_output_v1*, int, int) { },
.done = [](void*, zxdg_output_v1*) { },
.name = [](void* mp, zxdg_output_v1* xdgOutput, const char* name) {
auto& monitor = *static_cast<Monitor*>(mp);
monitor.xdgName = name;
zxdg_output_v1_destroy(xdgOutput);
},
.description = [](void*, zxdg_output_v1*, const char*) { },
2021-10-27 11:24:47 -04:00
};
Monitor* monitorFromSurface(const wl_surface* surface)
2021-10-25 13:02:35 -04:00
{
2021-10-29 14:33:27 -04:00
auto mon = std::find_if(begin(monitors), end(monitors), [surface](const Monitor& mon) {
return mon.bar.surface() == surface;
2021-10-29 14:33:27 -04:00
});
return mon != end(monitors) ? &*mon : nullptr;
2021-10-25 13:02:35 -04:00
}
2021-10-22 11:26:05 -04:00
static const struct wl_pointer_listener pointerListener = {
2021-10-29 14:33:27 -04:00
.enter = [](void* sp, wl_pointer* pointer, uint32_t serial,
wl_surface* surface, wl_fixed_t x, wl_fixed_t y)
{
auto& seat = *static_cast<Seat*>(sp);
seat.pointer->focusedMonitor = monitorFromSurface(surface);
2021-10-29 14:33:27 -04:00
if (!cursorImage) {
auto cursorTheme = wl_cursor_theme_load(nullptr, 24, shm);
cursorImage = wl_cursor_theme_get_cursor(cursorTheme, "left_ptr")->images[0];
cursorSurface = wl_compositor_create_surface(compositor);
wl_surface_attach(cursorSurface, wl_cursor_image_get_buffer(cursorImage), 0, 0);
wl_surface_commit(cursorSurface);
}
wl_pointer_set_cursor(pointer, serial, cursorSurface,
2021-10-29 17:23:35 -04:00
cursorImage->hotspot_x, cursorImage->hotspot_y);
2021-10-29 14:33:27 -04:00
},
.leave = [](void* sp, wl_pointer*, uint32_t serial, wl_surface*) {
auto& seat = *static_cast<Seat*>(sp);
seat.pointer->focusedMonitor = nullptr;
2021-10-29 14:33:27 -04:00
},
.motion = [](void* sp, wl_pointer*, uint32_t, wl_fixed_t x, wl_fixed_t y) {
auto& seat = *static_cast<Seat*>(sp);
seat.pointer->x = wl_fixed_to_int(x);
seat.pointer->y = wl_fixed_to_int(y);
},
.button = [](void* sp, wl_pointer*, uint32_t, uint32_t, uint32_t button, uint32_t pressed) {
auto& seat = *static_cast<Seat*>(sp);
auto it = std::find(begin(seat.pointer->btns), end(seat.pointer->btns), button);
if (pressed == WL_POINTER_BUTTON_STATE_PRESSED && it == end(seat.pointer->btns)) {
seat.pointer->btns.push_back(button);
} else if (pressed == WL_POINTER_BUTTON_STATE_RELEASED && it != end(seat.pointer->btns)) {
seat.pointer->btns.erase(it);
}
},
.axis = [](void* sp, wl_pointer*, uint32_t, uint32_t, wl_fixed_t) { },
.frame = [](void* sp, wl_pointer*) {
auto& seat = *static_cast<Seat*>(sp);
auto mon = seat.pointer->focusedMonitor;
2021-11-17 11:40:12 -05:00
if (!mon) {
return;
2021-11-17 11:40:12 -05:00
}
2021-10-29 14:33:27 -04:00
for (auto btn : seat.pointer->btns) {
mon->bar.click(mon, seat.pointer->x, seat.pointer->y, btn);
2021-10-29 14:33:27 -04:00
}
seat.pointer->btns.clear();
},
.axis_source = [](void*, wl_pointer*, uint32_t) { },
.axis_stop = [](void*, wl_pointer*, uint32_t, uint32_t) { },
.axis_discrete = [](void*, wl_pointer*, uint32_t, int32_t) { },
2021-10-22 11:26:05 -04:00
};
static const struct wl_seat_listener seatListener = {
2021-10-29 14:33:27 -04:00
.capabilities = [](void* sp, wl_seat*, uint32_t cap)
{
auto& seat = *static_cast<Seat*>(sp);
auto hasPointer = cap & WL_SEAT_CAPABILITY_POINTER;
if (!seat.pointer && hasPointer) {
auto &pointer = seat.pointer.emplace();
pointer.wlPointer = wl_unique_ptr<wl_pointer> {wl_seat_get_pointer(seat.wlSeat.get())};
wl_pointer_add_listener(seat.pointer->wlPointer.get(), &pointerListener, &seat);
} else if (seat.pointer && !hasPointer) {
seat.pointer.reset();
}
},
2021-11-17 11:40:12 -05:00
.name = [](void*, wl_seat*, const char* name) { }
2021-10-22 11:26:05 -04:00
};
void setupMonitor(uint32_t name, wl_output* output) {
auto& monitor = monitors.emplace_back(Monitor {name, {}, wl_unique_ptr<wl_output> {output}});
monitor.bar.setStatus(lastStatus);
2021-10-30 05:55:35 -04:00
auto xdgOutput = zxdg_output_manager_v1_get_xdg_output(xdgOutputManager, monitor.wlOutput.get());
zxdg_output_v1_add_listener(xdgOutput, &xdgOutputListener, &monitor);
2021-10-27 11:24:47 -04:00
}
2021-10-30 05:41:27 -04:00
void updatemon(Monitor& mon)
2021-10-27 11:24:47 -04:00
{
2021-11-17 11:40:12 -05:00
if (!mon.hasData) {
return;
}
2021-10-29 14:33:27 -04:00
if (mon.desiredVisibility) {
if (mon.bar.visible()) {
mon.bar.invalidate();
2021-10-29 14:33:27 -04:00
} else {
mon.bar.show(mon.wlOutput.get());
2021-10-29 14:33:27 -04:00
}
} else if (mon.bar.visible()) {
mon.bar.hide();
2021-10-29 14:33:27 -04:00
}
2021-10-25 09:49:01 -04:00
}
2021-10-19 16:46:46 -04:00
// called after we have received the initial batch of globals
2021-10-30 05:41:27 -04:00
void onReady()
2021-10-19 16:46:46 -04:00
{
2021-10-29 14:33:27 -04:00
requireGlobal(compositor, "wl_compositor");
requireGlobal(shm, "wl_shm");
requireGlobal(wlrLayerShell, "zwlr_layer_shell_v1");
requireGlobal(xdgOutputManager, "zxdg_output_manager_v1");
setupStatusFifo();
wl_display_roundtrip(display); // roundtrip so we receive all dwl tags etc.
2021-10-29 16:22:58 -04:00
2021-10-29 14:33:27 -04:00
ready = true;
for (auto output : uninitializedOutputs) {
setupMonitor(output.first, output.second);
2021-10-29 14:33:27 -04:00
}
2021-10-30 05:44:40 -04:00
wl_display_roundtrip(display); // wait for xdg_output names before we read stdin
2021-10-19 16:46:46 -04:00
}
bool createFifo(std::string path)
{
auto result = mkfifo(path.c_str(), 0666);
if (result == 0) {
auto fd = open(path.c_str(), O_CLOEXEC | O_NONBLOCK | O_RDONLY);
if (fd < 0) {
diesys("open status fifo reader");
}
statusFifoName = path;
statusFifoFd = fd;
fd = open(path.c_str(), O_CLOEXEC | O_WRONLY);
if (fd < 0) {
diesys("open status fifo writer");
}
statusFifoWriter = fd;
pollfds.push_back({
.fd = statusFifoFd,
.events = POLLIN,
});
return true;
} else if (errno != EEXIST) {
diesys("mkfifo");
}
return false;
}
2021-10-30 05:41:27 -04:00
void setupStatusFifo()
2021-10-22 10:32:53 -04:00
{
if (!statusFifoName.empty()) {
createFifo(statusFifoName);
return;
}
2021-10-29 14:33:27 -04:00
for (auto i=0; i<100; i++) {
auto path = std::string{getenv("XDG_RUNTIME_DIR")} + "/somebar-" + std::to_string(i);
if (createFifo(path)) {
2021-10-29 14:33:27 -04:00
return;
}
}
2021-10-22 10:32:53 -04:00
}
2021-11-17 11:40:12 -05:00
static LineBuffer<512> stdinBuffer;
2021-10-29 17:35:40 -04:00
static void onStdin()
{
2021-11-17 11:40:12 -05:00
auto res = stdinBuffer.readLines(
2021-10-29 17:35:40 -04:00
[](void* p, size_t size) { return read(0, p, size); },
[](char* p, size_t size) { handleStdin({p, size}); });
if (res == 0) {
quitting = true;
}
}
static void handleStdin(const std::string& line)
{
// this parses the lines that dwl sends in printstatus()
std::string monName, command;
auto stream = std::istringstream {line};
stream >> monName >> command;
if (!stream.good()) {
return;
}
auto mon = std::find_if(begin(monitors), end(monitors), [&](const Monitor& mon) {
return mon.xdgName == monName;
});
if (mon == end(monitors))
return;
if (command == "title") {
auto title = std::string {};
std::getline(stream, title);
mon->bar.setTitle(title);
2021-10-29 17:35:40 -04:00
} else if (command == "selmon") {
uint32_t selected;
stream >> selected;
mon->bar.setSelected(selected);
2021-10-31 12:50:59 -04:00
if (selected) {
selmon = &*mon;
} else if (selmon == &*mon) {
selmon = nullptr;
}
2021-10-29 17:35:40 -04:00
} else if (command == "tags") {
uint32_t occupied, tags, clientTags, urgent;
stream >> occupied >> tags >> clientTags >> urgent;
for (auto i=0u; i<tagNames.size(); i++) {
auto tagMask = 1 << i;
int state = TagState::None;
if (tags & tagMask)
state |= TagState::Active;
if (urgent & tagMask)
state |= TagState::Urgent;
mon->bar.setTag(i, state, occupied & tagMask ? 1 : 0, clientTags & tagMask ? 0 : -1);
2021-10-29 17:35:40 -04:00
}
mon->tags = tags;
} else if (command == "layout") {
auto layout = std::string {};
std::getline(stream, layout);
mon->bar.setLayout(layout);
2021-10-29 17:35:40 -04:00
}
mon->hasData = true;
updatemon(*mon);
}
2021-10-27 11:24:47 -04:00
const std::string prefixStatus = "status ";
const std::string prefixShow = "show ";
const std::string prefixHide = "hide ";
const std::string prefixToggle = "toggle ";
const std::string argAll = "all";
2021-10-28 11:22:40 -04:00
const std::string argSelected = "selected";
2021-10-27 11:24:47 -04:00
2021-11-17 11:40:12 -05:00
static LineBuffer<512> statusBuffer;
2021-10-30 05:41:27 -04:00
void onStatus()
2021-10-22 10:32:53 -04:00
{
2021-11-17 11:40:12 -05:00
statusBuffer.readLines(
2021-10-29 14:33:27 -04:00
[](void* p, size_t size) {
return read(statusFifoFd, p, size);
},
[](const char* buffer, size_t n) {
auto str = std::string {buffer, n};
if (str.rfind(prefixStatus, 0) == 0) {
lastStatus = str.substr(prefixStatus.size());
for (auto &monitor : monitors) {
monitor.bar.setStatus(lastStatus);
monitor.bar.invalidate();
2021-10-29 14:33:27 -04:00
}
} else if (str.rfind(prefixShow, 0) == 0) {
updateVisibility(str.substr(prefixShow.size()), [](bool) { return true; });
} else if (str.rfind(prefixHide, 0) == 0) {
updateVisibility(str.substr(prefixHide.size()), [](bool) { return false; });
} else if (str.rfind(prefixToggle, 0) == 0) {
updateVisibility(str.substr(prefixToggle.size()), [](bool vis) { return !vis; });
}
});
2021-10-22 10:32:53 -04:00
}
2021-10-30 05:41:27 -04:00
void updateVisibility(const std::string& name, bool(*updater)(bool))
{
auto isCurrent = name == argSelected;
auto isAll = name == argAll;
for (auto& mon : monitors) {
if (isAll ||
isCurrent && &mon == selmon ||
mon.xdgName == name) {
auto newVisibility = updater(mon.desiredVisibility);
if (newVisibility != mon.desiredVisibility) {
mon.desiredVisibility = newVisibility;
updatemon(mon);
}
}
}
}
2021-10-19 16:46:46 -04:00
struct HandleGlobalHelper {
2021-10-29 14:33:27 -04:00
wl_registry* registry;
uint32_t name;
const char* interface;
template<typename T>
bool handle(T& store, const wl_interface& iface, int version) {
2021-11-17 11:40:12 -05:00
if (strcmp(interface, iface.name)) {
return false;
}
2021-10-29 14:33:27 -04:00
store = static_cast<T>(wl_registry_bind(registry, name, &iface, version));
return true;
}
2021-10-19 16:46:46 -04:00
};
2021-10-30 05:41:27 -04:00
void onGlobalAdd(void*, wl_registry* registry, uint32_t name, const char* interface, uint32_t version)
2021-10-19 16:46:46 -04:00
{
2021-10-29 14:33:27 -04:00
auto reg = HandleGlobalHelper { registry, name, interface };
if (reg.handle(compositor, wl_compositor_interface, 4)) return;
if (reg.handle(shm, wl_shm_interface, 1)) return;
if (reg.handle(wlrLayerShell, zwlr_layer_shell_v1_interface, 4)) return;
if (reg.handle(xdgOutputManager, zxdg_output_manager_v1_interface, 3)) return;
if (reg.handle(xdgWmBase, xdg_wm_base_interface, 2)) {
xdg_wm_base_add_listener(xdgWmBase, &xdgWmBaseListener, nullptr);
return;
}
2021-11-17 11:40:12 -05:00
if (wl_seat* wlSeat; reg.handle(wlSeat, wl_seat_interface, 7)) {
2021-10-29 14:33:27 -04:00
auto& seat = seats.emplace_back(Seat {name, wl_unique_ptr<wl_seat> {wlSeat}});
wl_seat_add_listener(wlSeat, &seatListener, &seat);
return;
}
2021-11-17 11:40:12 -05:00
if (wl_output* output; reg.handle(output, wl_output_interface, 1)) {
2021-10-29 14:33:27 -04:00
if (ready) {
setupMonitor(name, output);
} else {
uninitializedOutputs.push_back({name, output});
2021-10-29 14:33:27 -04:00
}
return;
}
2021-10-19 16:46:46 -04:00
}
2021-10-30 05:41:27 -04:00
void onGlobalRemove(void*, wl_registry* registry, uint32_t name)
2021-10-25 13:02:35 -04:00
{
2021-10-29 14:33:27 -04:00
monitors.remove_if([name](const Monitor &mon) { return mon.registryName == name; });
seats.remove_if([name](const Seat &seat) { return seat.name == name; });
2021-10-25 13:02:35 -04:00
}
static const struct wl_registry_listener registry_listener = {
2021-10-30 05:41:27 -04:00
.global = onGlobalAdd,
.global_remove = onGlobalRemove,
2021-10-25 13:02:35 -04:00
};
2021-10-19 16:46:46 -04:00
int main(int argc, char* argv[])
2021-10-19 16:46:46 -04:00
{
2021-10-29 14:33:27 -04:00
int opt;
while ((opt = getopt(argc, argv, "chvs:")) != -1) {
2021-10-29 14:33:27 -04:00
switch (opt) {
case 's':
statusFifoName = optarg;
break;
2021-10-29 14:33:27 -04:00
case 'h':
printf("Usage: %s [-h] [-v] [-s path to the fifo] [-c command]\n", argv[0]);
2021-10-29 14:33:27 -04:00
printf(" -h: Show this help\n");
printf(" -v: Show somebar version\n");
printf(" -s: Change path to the fifo (default is \"$XDG_RUNTIME_DIR/somebar-0\")\n");
2021-10-29 14:33:27 -04:00
printf(" -c: Sends a command to sombar. See README for details.\n");
printf("If any of these are specified (except -s), somebar exits after the action.\n");
2021-10-29 14:33:27 -04:00
printf("Otherwise, somebar will display itself.\n");
exit(0);
case 'v':
printf("somebar " SOMEBAR_VERSION "\n");
exit(0);
case 'c':
if (optind >= argc) {
die("Expected command");
}
if (statusFifoName.empty()) {
2022-03-05 04:11:35 -05:00
statusFifoName = std::string {getenv("XDG_RUNTIME_DIR")} + "/somebar-0";
}
2022-03-05 04:11:35 -05:00
statusFifoWriter = open(statusFifoName.c_str(), O_WRONLY | O_CLOEXEC);
if (statusFifoWriter < 0) {
2022-03-05 04:11:35 -05:00
fprintf(stderr, "could not open %s: ", statusFifoName.c_str());
2021-10-29 14:33:27 -04:00
perror("");
exit(1);
}
auto str = std::string {};
for (auto i = optind; i<argc; i++) {
if (i > optind) str += " ";
str += argv[i];
}
str += "\n";
write(statusFifoWriter, str.c_str(), str.size());
2021-10-29 14:33:27 -04:00
exit(0);
}
}
if (pipe(signalSelfPipe.data()) < 0) {
diesys("pipe");
}
setCloexec(signalSelfPipe[0]);
setCloexec(signalSelfPipe[1]);
struct sigaction sighandler = {};
sighandler.sa_handler = [](int) {
if (write(signalSelfPipe[1], "0", 1) < 0) {
diesys("write");
}
};
if (sigaction(SIGTERM, &sighandler, nullptr) < 0) {
diesys("sigaction");
}
if (sigaction(SIGINT, &sighandler, nullptr) < 0) {
diesys("sigaction");
}
2021-10-29 14:33:27 -04:00
struct sigaction chld_handler = {};
chld_handler.sa_handler = SIG_IGN;
if (sigaction(SIGCHLD, &chld_handler, nullptr) < 0) {
die("sigaction");
}
2021-11-16 13:14:45 -05:00
pollfds.push_back({
.fd = signalSelfPipe[0],
.events = POLLIN,
});
2021-10-29 14:33:27 -04:00
display = wl_display_connect(nullptr);
if (!display) {
die("Failed to connect to Wayland display");
}
displayFd = wl_display_get_fd(display);
auto registry = wl_display_get_registry(display);
wl_registry_add_listener(registry, &registry_listener, nullptr);
wl_display_roundtrip(display);
onReady();
2021-11-16 13:14:45 -05:00
pollfds.push_back({
.fd = displayFd,
.events = POLLIN,
});
pollfds.push_back({
.fd = STDIN_FILENO,
.events = POLLIN,
});
if (fcntl(STDIN_FILENO, F_SETFL, O_NONBLOCK) < 0) {
diesys("fcntl F_SETFL");
2021-10-30 05:20:27 -04:00
}
2021-10-29 14:33:27 -04:00
while (!quitting) {
waylandFlush();
2021-11-16 13:14:45 -05:00
if (poll(pollfds.data(), pollfds.size(), -1) < 0) {
2021-10-29 14:33:27 -04:00
if (errno != EINTR) {
2021-11-16 13:14:45 -05:00
diesys("poll");
2021-10-29 14:33:27 -04:00
}
} else {
2021-11-16 13:14:45 -05:00
for (auto& ev : pollfds) {
if (ev.revents & POLLNVAL) {
die("poll revents contains POLLNVAL");
} else if (ev.fd == displayFd) {
if (ev.revents & POLLIN) {
2021-10-29 14:33:27 -04:00
if (wl_display_dispatch(display) < 0) {
die("wl_display_dispatch");
}
2021-11-16 13:14:45 -05:00
}
if (ev.revents & POLLOUT) {
ev.events = POLLIN;
2021-10-29 14:33:27 -04:00
waylandFlush();
}
2021-11-16 13:14:45 -05:00
} else if (ev.fd == STDIN_FILENO && (ev.revents & POLLIN)) {
2021-10-29 16:22:58 -04:00
onStdin();
2021-11-16 13:14:45 -05:00
} else if (ev.fd == statusFifoFd && (ev.revents & POLLIN)) {
2021-10-29 14:33:27 -04:00
onStatus();
2021-11-16 13:14:45 -05:00
} else if (ev.fd == signalSelfPipe[0] && (ev.revents & POLLIN)) {
2021-10-29 14:33:27 -04:00
quitting = true;
}
}
}
}
cleanup();
2021-10-22 10:32:53 -04:00
}
2021-11-17 11:40:12 -05:00
void requireGlobal(const void* p, const char* name)
2021-10-27 11:24:47 -04:00
{
2021-10-29 14:33:27 -04:00
if (p) return;
fprintf(stderr, "Wayland compositor does not export required global %s, aborting.\n", name);
cleanup();
exit(1);
2021-10-27 11:24:47 -04:00
}
2021-10-20 14:20:27 -04:00
void waylandFlush()
2021-10-19 16:46:46 -04:00
{
2021-10-29 14:33:27 -04:00
wl_display_dispatch_pending(display);
if (wl_display_flush(display) < 0 && errno == EAGAIN) {
2021-11-16 13:14:45 -05:00
for (auto& ev : pollfds) {
if (ev.fd == displayFd) {
ev.events |= POLLOUT;
}
2021-10-29 14:33:27 -04:00
}
}
2021-10-19 16:46:46 -04:00
}
2021-10-27 11:24:47 -04:00
void setCloexec(int fd)
{
int flags = fcntl(fd, F_GETFD);
if (flags == -1) {
diesys("fcntl FD_GETFD");
}
if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0) {
diesys("fcntl FD_SETFD");
}
}
2021-10-30 05:41:27 -04:00
void cleanup() {
if (!statusFifoName.empty()) {
unlink(statusFifoName.c_str());
}
}
void die(const char* why) {
2021-11-05 16:29:59 -04:00
fprintf(stderr, "error: %s failed, aborting\n", why);
2021-10-29 14:33:27 -04:00
cleanup();
exit(1);
2021-10-27 11:24:47 -04:00
}
void diesys(const char* why) {
2021-10-29 14:33:27 -04:00
perror(why);
cleanup();
exit(1);
2021-10-19 16:46:46 -04:00
}