river/riverctl/main.zig

109 lines
3.8 KiB
Zig
Raw Normal View History

2020-05-02 10:21:10 -07:00
// This file is part of river, a dynamic tiling wayland compositor.
//
// Copyright 2020-2021 The River Developers
2020-05-02 10:21:10 -07:00
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
const std = @import("std");
const mem = std.mem;
const os = std.os;
const assert = std.debug.assert;
2020-05-02 10:21:10 -07:00
2020-11-02 04:59:59 -08:00
const wayland = @import("wayland");
const wl = wayland.client.wl;
const zriver = wayland.client.zriver;
2020-03-19 08:29:22 -07:00
const gpa = std.heap.c_allocator;
pub const Globals = struct {
control: ?*zriver.ControlV1 = null,
2020-11-02 04:59:59 -08:00
seat: ?*wl.Seat = null,
};
pub fn main() !void {
_main() catch |err| {
if (std.builtin.mode == .Debug)
return err;
switch (err) {
error.RiverControlNotAdvertised => printErrorExit(
\\The Wayland server does not support river-control-unstable-v1.
\\Do your versions of river and riverctl match?
, .{}),
error.SeatNotAdverstised => printErrorExit(
\\The Wayland server did not advertise any seat.
, .{}),
else => return err,
}
};
}
fn _main() !void {
2020-11-02 04:59:59 -08:00
const display = try wl.Display.connect(null);
const registry = try display.getRegistry();
var globals = Globals{};
2021-04-27 03:24:30 -07:00
registry.setListener(*Globals, registryListener, &globals);
2020-11-02 04:59:59 -08:00
_ = try display.roundtrip();
const control = globals.control orelse return error.RiverControlNotAdvertised;
const seat = globals.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 = os.argv;
for (args[1..]) |arg| control.addArgument(arg);
const callback = try control.runCommand(seat);
2021-04-27 03:24:30 -07:00
callback.setListener(?*c_void, callbackListener, null);
// Loop until our callback is called and we exit.
while (true) _ = try display.dispatch();
2020-03-19 08:29:22 -07:00
}
fn registryListener(registry: *wl.Registry, event: wl.Registry.Event, globals: *Globals) void {
2020-11-02 04:59:59 -08:00
switch (event) {
.global => |global| {
if (std.cstr.cmp(global.interface, wl.Seat.getInterface().name) == 0) {
assert(globals.seat == null); // TODO: support multiple seats
globals.seat = registry.bind(global.name, wl.Seat, 1) catch @panic("out of memory");
} else if (std.cstr.cmp(global.interface, zriver.ControlV1.getInterface().name) == 0) {
globals.control = registry.bind(global.name, zriver.ControlV1, 1) catch @panic("out of memory");
2020-11-02 04:59:59 -08:00
}
},
.global_remove => {},
}
}
fn callbackListener(callback: *zriver.CommandCallbackV1, event: zriver.CommandCallbackV1.Event, _: ?*c_void) void {
2020-11-02 04:59:59 -08:00
switch (event) {
.success => |success| {
if (mem.len(success.output) > 0) {
2021-05-23 04:35:37 -07:00
const stdout = std.io.getStdOut().writer();
stdout.print("{s}\n", .{success.output}) catch @panic("failed to write to stdout");
2020-11-02 04:59:59 -08:00
}
os.exit(0);
2020-11-02 04:59:59 -08:00
},
2021-05-23 04:35:37 -07:00
.failure => |failure| printErrorExit("Error: {s}\n", .{failure.failure_message}),
}
}
pub fn printErrorExit(comptime format: []const u8, args: anytype) noreturn {
2021-05-23 04:35:37 -07:00
const stderr = std.io.getStdErr().writer();
2021-03-27 03:56:15 -07:00
stderr.print("err: " ++ format ++ "\n", args) catch std.os.exit(1);
std.os.exit(1);
}