river/src/server.zig

141 lines
5.5 KiB
Zig
Raw Normal View History

2020-03-22 21:42:55 +00:00
const std = @import("std");
2020-03-29 17:36:15 +00:00
const c = @import("c.zig");
2020-04-07 17:16:38 +00:00
const command = @import("command.zig");
2020-03-22 21:42:55 +00:00
const Config = @import("config.zig").Config;
const DecorationManager = @import("decoration_manager.zig").DecorationManager;
const Log = @import("log.zig").Log;
2020-03-23 15:50:20 +00:00
const Output = @import("output.zig").Output;
const Root = @import("root.zig").Root;
2020-03-23 15:50:20 +00:00
const Seat = @import("seat.zig").Seat;
const View = @import("view.zig").View;
const ViewStack = @import("view_stack.zig").ViewStack;
2020-03-23 15:50:20 +00:00
2020-03-22 21:42:55 +00:00
pub const Server = struct {
const Self = @This();
allocator: *std.mem.Allocator,
2020-03-22 21:42:55 +00:00
wl_display: *c.wl_display,
wl_event_loop: *c.wl_event_loop,
2020-03-23 00:21:15 +00:00
wlr_backend: *c.wlr_backend,
wlr_renderer: *c.wlr_renderer,
2020-03-23 13:04:54 +00:00
wlr_xdg_shell: *c.wlr_xdg_shell,
decoration_manager: DecorationManager,
root: Root,
seat: Seat,
config: Config,
listen_new_output: c.wl_listener,
2020-03-23 13:04:54 +00:00
listen_new_xdg_surface: c.wl_listener,
pub fn init(self: *Self, allocator: *std.mem.Allocator) !void {
self.allocator = allocator;
2020-03-22 21:42:55 +00:00
// The Wayland display is managed by libwayland. It handles accepting
// clients from the Unix socket, managing Wayland globals, and so on.
self.wl_display = c.wl_display_create() orelse
2020-03-23 00:21:15 +00:00
return error.CantCreateWlDisplay;
errdefer c.wl_display_destroy(self.wl_display);
2020-03-23 00:21:15 +00:00
// Should never return null if the display was created successfully
self.wl_event_loop = c.wl_display_get_event_loop(self.wl_display) orelse
return error.CantGetEventLoop;
2020-03-23 00:21:15 +00:00
// The wlr_backend abstracts the input/output hardware. Autocreate chooses
// the best option based on the environment, for example DRM when run from
// a tty or wayland if WAYLAND_DISPLAY is set.
//
// This frees itself.when the wl_display is destroyed.
2020-03-28 10:42:58 +00:00
self.wlr_backend = c.river_wlr_backend_autocreate(self.wl_display) orelse
2020-03-23 00:21:15 +00:00
return error.CantCreateWlrBackend;
2020-03-22 21:42:55 +00:00
// If we don't provide a renderer, autocreate makes a GLES2 renderer for us.
// The renderer is responsible for defining the various pixel formats it
// supports for shared memory, this configures that for clients.
2020-03-28 10:42:58 +00:00
self.wlr_renderer = c.river_wlr_backend_get_renderer(self.wlr_backend) orelse
2020-03-23 00:21:15 +00:00
return error.CantGetWlrRenderer;
2020-03-23 15:50:20 +00:00
// TODO: Handle failure after https://github.com/swaywm/wlroots/pull/2080
c.wlr_renderer_init_wl_display(self.wlr_renderer, self.wl_display); // orelse
2020-03-23 15:50:20 +00:00
// return error.CantInitWlDisplay;
2020-03-23 00:21:15 +00:00
// These both free themselves when the wl_display is destroyed
_ = c.wlr_compositor_create(self.wl_display, self.wlr_renderer) orelse
2020-03-23 00:21:15 +00:00
return error.CantCreateWlrCompositor;
_ = c.wlr_data_device_manager_create(self.wl_display) orelse
2020-03-23 00:21:15 +00:00
return error.CantCreateWlrDataDeviceManager;
self.wlr_xdg_shell = c.wlr_xdg_shell_create(self.wl_display) orelse
2020-03-23 13:04:54 +00:00
return error.CantCreateWlrXdgShell;
try self.decoration_manager.init(self);
try self.root.init(self);
2020-03-23 00:21:15 +00:00
2020-03-25 15:24:21 +00:00
try self.seat.init(self);
try self.config.init(self.allocator);
// Register our listeners for new outputs and xdg_surfaces.
self.listen_new_output.notify = handleNewOutput;
c.wl_signal_add(&self.wlr_backend.events.new_output, &self.listen_new_output);
self.listen_new_xdg_surface.notify = handleNewXdgSurface;
c.wl_signal_add(&self.wlr_xdg_shell.events.new_surface, &self.listen_new_xdg_surface);
}
2020-03-23 00:21:15 +00:00
/// Free allocated memory and clean up
2020-03-29 13:58:04 +00:00
pub fn destroy(self: Self) void {
2020-03-23 00:21:15 +00:00
c.wl_display_destroy_clients(self.wl_display);
c.wl_display_destroy(self.wl_display);
self.root.destroy();
2020-03-23 00:21:15 +00:00
}
/// Create the socket, set WAYLAND_DISPLAY, and start the backend
pub fn start(self: Self) !void {
2020-03-23 00:21:15 +00:00
// Add a Unix socket to the Wayland display.
2020-03-23 11:22:48 +00:00
const socket = c.wl_display_add_socket_auto(self.wl_display) orelse
2020-03-23 00:21:15 +00:00
return error.CantAddSocket;
// Start the backend. This will enumerate outputs and inputs, become the DRM
// master, etc
2020-03-28 10:42:58 +00:00
if (!c.river_wlr_backend_start(self.wlr_backend)) {
2020-03-23 00:21:15 +00:00
return error.CantStartBackend;
}
// Set the WAYLAND_DISPLAY environment variable to our socket
2020-03-23 00:21:15 +00:00
if (c.setenv("WAYLAND_DISPLAY", socket, 1) == -1) {
return error.CantSetEnv;
}
}
/// Enter the wayland event loop and block until the compositor is exited
pub fn run(self: Self) void {
2020-03-23 15:50:20 +00:00
c.wl_display_run(self.wl_display);
2020-03-22 21:42:55 +00:00
}
fn handleNewOutput(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
const server = @fieldParentPtr(Server, "listen_new_output", listener.?);
const wlr_output = @ptrCast(*c.wlr_output, @alignCast(@alignOf(*c.wlr_output), data));
server.root.addOutput(wlr_output);
2020-03-23 13:04:54 +00:00
}
fn handleNewXdgSurface(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
2020-03-23 13:04:54 +00:00
// This event is raised when wlr_xdg_shell receives a new xdg surface from a
// client, either a toplevel (application window) or popup.
const server = @fieldParentPtr(Server, "listen_new_xdg_surface", listener.?);
const wlr_xdg_surface = @ptrCast(*c.wlr_xdg_surface, @alignCast(@alignOf(*c.wlr_xdg_surface), data));
2020-03-23 13:04:54 +00:00
if (wlr_xdg_surface.role != c.enum_wlr_xdg_surface_role.WLR_XDG_SURFACE_ROLE_TOPLEVEL) {
// TODO: log
2020-03-23 13:04:54 +00:00
return;
}
// toplevel surfaces are tracked and managed by the root
server.root.addView(wlr_xdg_surface);
2020-03-23 11:22:48 +00:00
}
2020-03-22 21:42:55 +00:00
};