144 lines
5.1 KiB
Zig
144 lines
5.1 KiB
Zig
// This file is part of river, a dynamic tiling wayland compositor.
|
|
//
|
|
// Copyright 2020 The River Developers
|
|
//
|
|
// 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, version 3.
|
|
//
|
|
// 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 Self = @This();
|
|
|
|
const std = @import("std");
|
|
const mem = std.mem;
|
|
const wlr = @import("wlroots");
|
|
const wayland = @import("wayland");
|
|
const wl = wayland.server.wl;
|
|
const zriver = wayland.server.zriver;
|
|
|
|
const command = @import("command.zig");
|
|
const server = &@import("main.zig").server;
|
|
const util = @import("util.zig");
|
|
|
|
const Seat = @import("Seat.zig");
|
|
const Server = @import("Server.zig");
|
|
|
|
const ArgMap = std.AutoHashMap(struct { client: *wl.Client, id: u32 }, std.ArrayListUnmanaged([:0]const u8));
|
|
|
|
global: *wl.Global,
|
|
|
|
args_map: ArgMap,
|
|
|
|
server_destroy: wl.Listener(*wl.Server) = wl.Listener(*wl.Server).init(handleServerDestroy),
|
|
|
|
pub fn init(self: *Self) !void {
|
|
self.* = .{
|
|
.global = try wl.Global.create(server.wl_server, zriver.ControlV1, 1, *Self, self, bind),
|
|
.args_map = ArgMap.init(util.gpa),
|
|
};
|
|
|
|
server.wl_server.addDestroyListener(&self.server_destroy);
|
|
}
|
|
|
|
fn handleServerDestroy(listener: *wl.Listener(*wl.Server), _: *wl.Server) void {
|
|
const self = @fieldParentPtr(Self, "server_destroy", listener);
|
|
self.global.destroy();
|
|
self.args_map.deinit();
|
|
}
|
|
|
|
/// Called when a client binds our global
|
|
fn bind(client: *wl.Client, self: *Self, version: u32, id: u32) void {
|
|
const control = zriver.ControlV1.create(client, version, id) catch {
|
|
client.postNoMemory();
|
|
return;
|
|
};
|
|
self.args_map.putNoClobber(.{ .client = client, .id = id }, .{}) catch {
|
|
control.destroy();
|
|
client.postNoMemory();
|
|
return;
|
|
};
|
|
control.setHandler(*Self, handleRequest, handleDestroy, self);
|
|
}
|
|
|
|
fn handleRequest(control: *zriver.ControlV1, request: zriver.ControlV1.Request, self: *Self) void {
|
|
switch (request) {
|
|
.destroy => control.destroy(),
|
|
.add_argument => |add_argument| {
|
|
const owned_slice = util.gpa.dupeZ(u8, mem.span(add_argument.argument)) catch {
|
|
control.getClient().postNoMemory();
|
|
return;
|
|
};
|
|
|
|
const args = self.args_map.getPtr(.{ .client = control.getClient(), .id = control.getId() }).?;
|
|
args.append(util.gpa, owned_slice) catch {
|
|
control.getClient().postNoMemory();
|
|
util.gpa.free(owned_slice);
|
|
return;
|
|
};
|
|
},
|
|
.run_command => |run_command| {
|
|
const seat = @intToPtr(*Seat, wlr.Seat.Client.fromWlSeat(run_command.seat).?.seat.data);
|
|
|
|
const callback = zriver.CommandCallbackV1.create(
|
|
control.getClient(),
|
|
control.getVersion(),
|
|
run_command.callback,
|
|
) catch {
|
|
control.getClient().postNoMemory();
|
|
return;
|
|
};
|
|
|
|
const args = self.args_map.getPtr(.{ .client = control.getClient(), .id = control.getId() }).?;
|
|
defer {
|
|
for (args.items) |arg| util.gpa.free(arg);
|
|
args.items.len = 0;
|
|
}
|
|
|
|
var out: ?[]const u8 = null;
|
|
defer if (out) |s| util.gpa.free(s);
|
|
command.run(seat, args.items, &out) catch |err| {
|
|
const failure_message = switch (err) {
|
|
command.Error.OutOfMemory => {
|
|
callback.getClient().postNoMemory();
|
|
return;
|
|
},
|
|
command.Error.Other => std.cstr.addNullByte(util.gpa, out.?) catch {
|
|
callback.getClient().postNoMemory();
|
|
return;
|
|
},
|
|
else => command.errToMsg(err),
|
|
};
|
|
defer if (err == command.Error.Other) util.gpa.free(failure_message);
|
|
callback.destroySendFailure(failure_message);
|
|
return;
|
|
};
|
|
|
|
const success_message = if (out) |s|
|
|
util.gpa.dupeZ(u8, s) catch {
|
|
callback.getClient().postNoMemory();
|
|
return;
|
|
}
|
|
else
|
|
"";
|
|
defer if (out != null) util.gpa.free(success_message);
|
|
callback.destroySendSuccess(success_message);
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Remove the resource from the hash map and free all stored args
|
|
fn handleDestroy(control: *zriver.ControlV1, self: *Self) void {
|
|
var args = self.args_map.fetchRemove(
|
|
.{ .client = control.getClient(), .id = control.getId() },
|
|
).?.value;
|
|
for (args.items) |arg| util.gpa.free(arg);
|
|
args.deinit(util.gpa);
|
|
}
|