aboutsummaryrefslogtreecommitdiff
path: root/riverctl
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-11-02 13:59:59 +0100
committerIsaac Freund <ifreund@ifreund.xyz>2020-11-02 13:59:59 +0100
commita7459026f62481707a03ab2064f12a761c75f2f2 (patch)
treea3a036b4ea3d442572232b5e2abd645f8c4438d2 /riverctl
parenta895970561ce00ba65747831902ae121511f680d (diff)
downloadriver-a7459026f62481707a03ab2064f12a761c75f2f2.tar.gz
river-a7459026f62481707a03ab2064f12a761c75f2f2.tar.xz
code: port riverctl to zig-wayland
Diffstat (limited to 'riverctl')
-rw-r--r--riverctl/main.zig116
1 files changed, 42 insertions, 74 deletions
diff --git a/riverctl/main.zig b/riverctl/main.zig
index ec804d7..7bfb448 100644
--- a/riverctl/main.zig
+++ b/riverctl/main.zig
@@ -17,97 +17,65 @@
const std = @import("std");
-const c = @cImport({
- @cInclude("wayland-client.h");
- @cInclude("river-control-unstable-v1-client-protocol.h");
-});
+const wayland = @import("wayland");
+const wl = wayland.client.wl;
+const river = wayland.client.river;
-const wl_registry_listener = c.wl_registry_listener{
- .global = handleGlobal,
- .global_remove = handleGlobalRemove,
+const SetupContext = struct {
+ river_control: ?*river.ControlV1 = null,
+ seat: ?*wl.Seat = null,
};
-const command_callback_listener = c.zriver_command_callback_v1_listener{
- .success = handleSuccess,
- .failure = handleFailure,
-};
-
-var river_control_optional: ?*c.zriver_control_v1 = null;
-var wl_seat_optional: ?*c.wl_seat = null;
-
pub fn main() !void {
- const wl_display = c.wl_display_connect(null) orelse return error.ConnectError;
- const wl_registry = c.wl_display_get_registry(wl_display);
+ const display = try wl.Display.connect(null);
+ const registry = try display.getRegistry();
- if (c.wl_registry_add_listener(wl_registry, &wl_registry_listener, null) < 0) unreachable;
- if (c.wl_display_roundtrip(wl_display) < 0) return error.RoundtripFailed;
+ var context = SetupContext{};
- const river_control = river_control_optional orelse return error.RiverControlNotAdvertised;
- const wl_seat = wl_seat_optional orelse return error.SeatNotAdverstised;
+ registry.setListener(*SetupContext, registryListener, &context) catch unreachable;
+ _ = try display.roundtrip();
+
+ const river_control = context.river_control orelse return error.RiverControlNotAdvertised;
+ const seat = context.seat orelse return error.SeatNotAdverstised;
// Skip our name, send all other args
// This next line is needed cause of https://github.com/ziglang/zig/issues/2622
const args = std.os.argv;
- for (args[1..]) |arg| c.zriver_control_v1_add_argument(river_control, arg);
+ for (args[1..]) |arg| river_control.addArgument(arg);
- const command_callback = c.zriver_control_v1_run_command(river_control, wl_seat);
- if (c.zriver_command_callback_v1_add_listener(
- command_callback,
- &command_callback_listener,
- null,
- ) < 0) unreachable;
+ const callback = try river_control.runCommand(seat);
- // Loop until our callback is called and we exit.
- while (true) if (c.wl_display_dispatch(wl_display) < 0) return error.DispatchFailed;
-}
+ callback.setListener(?*c_void, callbackListener, null) catch unreachable;
-fn handleGlobal(
- data: ?*c_void,
- wl_registry: ?*c.wl_registry,
- name: u32,
- interface: ?[*:0]const u8,
- version: u32,
-) callconv(.C) void {
- // We only care about the river_control global
- if (std.cstr.cmp(interface.?, @ptrCast([*:0]const u8, c.zriver_control_v1_interface.name.?)) == 0) {
- river_control_optional = @ptrCast(
- *c.zriver_control_v1,
- c.wl_registry_bind(wl_registry, name, &c.zriver_control_v1_interface, 1),
- );
- } else if (std.cstr.cmp(interface.?, @ptrCast([*:0]const u8, c.wl_seat_interface.name.?)) == 0) {
- // river does not yet support multi-seat, so just use the first
- // (and only) seat advertised
- wl_seat_optional = @ptrCast(
- *c.wl_seat,
- c.wl_registry_bind(wl_registry, name, &c.wl_seat_interface, 1),
- );
- }
+ // Loop until our callback is called and we exit.
+ while (true) _ = try display.dispatch();
}
-/// Ignore the event
-fn handleGlobalRemove(data: ?*c_void, wl_registry: ?*c.wl_registry, name: u32) callconv(.C) void {}
-
-/// Print the output of the command if any and exit
-fn handleSuccess(
- data: ?*c_void,
- callback: ?*c.zriver_command_callback_v1,
- output: ?[*:0]const u8,
-) callconv(.C) void {
- if (std.mem.len(output.?) > 0) {
- const stdout = std.io.getStdOut().outStream();
- stdout.print("{}\n", .{output}) catch @panic("failed to write to stdout");
+fn registryListener(registry: *wl.Registry, event: wl.Registry.Event, context: *SetupContext) void {
+ switch (event) {
+ .global => |global| {
+ if (context.seat == null and std.cstr.cmp(global.interface, wl.Seat.interface().name) == 0) {
+ context.seat = registry.bind(global.name, wl.Seat, 1) catch return;
+ } else if (std.cstr.cmp(global.interface, river.ControlV1.interface().name) == 0) {
+ context.river_control = registry.bind(global.name, river.ControlV1, 1) catch return;
+ }
+ },
+ .global_remove => {},
}
- std.os.exit(0);
}
-/// Print the failure message and exit non-zero
-fn handleFailure(
- data: ?*c_void,
- callback: ?*c.zriver_command_callback_v1,
- failure_message: ?[*:0]const u8,
-) callconv(.C) void {
- if (failure_message) |message| {
- std.debug.warn("Error: {}\n", .{failure_message});
+fn callbackListener(callback: *river.CommandCallbackV1, event: river.CommandCallbackV1.Event, _: ?*c_void) void {
+ switch (event) {
+ .success => |success| {
+ if (std.mem.len(success.output) > 0) {
+ const stdout = std.io.getStdOut().outStream();
+ stdout.print("{}\n", .{success.output}) catch @panic("failed to write to stdout");
+ }
+ std.os.exit(0);
+ },
+ .failure => |failure| {
+ std.debug.print("Error: {}\n", .{failure.failure_message});
+ std.os.exit(1);
+ },
}
- std.os.exit(1);
}