2020-05-19 04:25:16 -07:00
|
|
|
// This file is part of river, a dynamic tiling wayland compositor.
|
|
|
|
//
|
2020-11-11 11:30:21 -08:00
|
|
|
// Copyright 2020 The River Developers
|
2020-05-19 04:25:16 -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 Self = @This();
|
|
|
|
|
|
|
|
const std = @import("std");
|
2020-11-03 15:23:21 -08:00
|
|
|
const mem = std.mem;
|
2021-05-13 06:06:00 -07:00
|
|
|
const wlr = @import("wlroots");
|
2020-11-03 15:23:21 -08:00
|
|
|
const wayland = @import("wayland");
|
|
|
|
const wl = wayland.server.wl;
|
|
|
|
const zriver = wayland.server.zriver;
|
|
|
|
|
2020-05-26 13:55:07 -07:00
|
|
|
const command = @import("command.zig");
|
2021-05-13 06:06:00 -07:00
|
|
|
const server = &@import("main.zig").server;
|
2020-06-16 11:54:05 -07:00
|
|
|
const util = @import("util.zig");
|
2020-05-19 04:25:16 -07:00
|
|
|
|
2020-06-15 13:24:54 -07:00
|
|
|
const Seat = @import("Seat.zig");
|
2020-05-19 04:25:16 -07:00
|
|
|
const Server = @import("Server.zig");
|
|
|
|
|
2021-02-19 10:58:44 -08:00
|
|
|
const ArgMap = std.AutoHashMap(struct { client: *wl.Client, id: u32 }, std.ArrayListUnmanaged([]const u8));
|
|
|
|
|
2020-11-03 15:23:21 -08:00
|
|
|
global: *wl.Global,
|
2020-05-19 04:25:16 -07:00
|
|
|
|
2021-02-19 10:58:44 -08:00
|
|
|
args_map: ArgMap,
|
2020-06-15 13:24:54 -07:00
|
|
|
|
2020-12-31 06:35:35 -08:00
|
|
|
server_destroy: wl.Listener(*wl.Server) = wl.Listener(*wl.Server).init(handleServerDestroy),
|
2020-05-19 04:25:16 -07:00
|
|
|
|
2021-05-13 06:06:00 -07:00
|
|
|
pub fn init(self: *Self) !void {
|
2020-08-21 10:47:57 -07:00
|
|
|
self.* = .{
|
2020-11-03 15:23:21 -08:00
|
|
|
.global = try wl.Global.create(server.wl_server, zriver.ControlV1, 1, *Self, self, bind),
|
2021-02-19 10:58:44 -08:00
|
|
|
.args_map = ArgMap.init(util.gpa),
|
2020-08-21 10:47:57 -07:00
|
|
|
};
|
2020-06-15 13:24:54 -07:00
|
|
|
|
2020-11-03 15:23:21 -08:00
|
|
|
server.wl_server.addDestroyListener(&self.server_destroy);
|
2020-05-19 04:25:16 -07:00
|
|
|
}
|
|
|
|
|
2020-11-03 15:23:21 -08:00
|
|
|
fn handleServerDestroy(listener: *wl.Listener(*wl.Server), wl_server: *wl.Server) void {
|
|
|
|
const self = @fieldParentPtr(Self, "server_destroy", listener);
|
|
|
|
self.global.destroy();
|
2020-06-15 13:24:54 -07:00
|
|
|
self.args_map.deinit();
|
2020-05-19 04:25:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Called when a client binds our global
|
2020-11-03 15:23:21 -08:00
|
|
|
fn bind(client: *wl.Client, self: *Self, version: u32, id: u32) callconv(.C) void {
|
|
|
|
const control = zriver.ControlV1.create(client, version, id) catch {
|
|
|
|
client.postNoMemory();
|
2020-05-19 04:25:16 -07:00
|
|
|
return;
|
|
|
|
};
|
2021-02-19 10:58:44 -08:00
|
|
|
self.args_map.putNoClobber(.{ .client = client, .id = id }, .{}) catch {
|
2020-11-03 15:23:21 -08:00
|
|
|
control.destroy();
|
|
|
|
client.postNoMemory();
|
2020-06-15 13:24:54 -07:00
|
|
|
return;
|
|
|
|
};
|
2020-11-03 15:23:21 -08:00
|
|
|
control.setHandler(*Self, handleRequest, handleDestroy, self);
|
2020-05-19 04:25:16 -07:00
|
|
|
}
|
|
|
|
|
2020-11-03 15:23:21 -08:00
|
|
|
fn handleRequest(control: *zriver.ControlV1, request: zriver.ControlV1.Request, self: *Self) void {
|
|
|
|
switch (request) {
|
|
|
|
.destroy => control.destroy(),
|
|
|
|
.add_argument => |add_argument| {
|
|
|
|
const owned_slice = mem.dupe(util.gpa, u8, mem.span(add_argument.argument)) catch {
|
|
|
|
control.getClient().postNoMemory();
|
|
|
|
return;
|
|
|
|
};
|
2020-06-15 13:24:54 -07:00
|
|
|
|
2021-02-19 10:58:44 -08:00
|
|
|
const entry = self.args_map.getEntry(.{ .client = control.getClient(), .id = control.getId() }).?;
|
|
|
|
entry.value.append(util.gpa, owned_slice) catch {
|
2020-11-03 15:23:21 -08:00
|
|
|
control.getClient().postNoMemory();
|
|
|
|
util.gpa.free(owned_slice);
|
2020-06-01 05:41:44 -07:00
|
|
|
return;
|
2020-11-03 15:23:21 -08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
.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();
|
2020-06-26 08:57:03 -07:00
|
|
|
return;
|
2020-11-03 15:23:21 -08:00
|
|
|
};
|
|
|
|
|
2021-02-19 10:58:44 -08:00
|
|
|
const entry = self.args_map.getEntry(.{ .client = control.getClient(), .id = control.getId() }).?;
|
|
|
|
defer {
|
|
|
|
for (entry.value.items) |arg| util.gpa.free(arg);
|
|
|
|
entry.value.items.len = 0;
|
|
|
|
}
|
|
|
|
const args = entry.value.items;
|
2020-11-03 15:23:21 -08:00
|
|
|
|
|
|
|
var out: ?[]const u8 = null;
|
|
|
|
defer if (out) |s| util.gpa.free(s);
|
|
|
|
command.run(util.gpa, seat, args, &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.sendFailure(failure_message);
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
const success_message = if (out) |s|
|
2021-02-19 10:58:44 -08:00
|
|
|
util.gpa.dupeZ(u8, s) catch {
|
2020-11-03 15:23:21 -08:00
|
|
|
callback.getClient().postNoMemory();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
"";
|
|
|
|
defer if (out != null) util.gpa.free(success_message);
|
|
|
|
callback.sendSuccess(success_message);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2020-06-26 08:57:03 -07:00
|
|
|
|
2020-11-03 15:23:21 -08:00
|
|
|
/// Remove the resource from the hash map and free all stored args
|
|
|
|
fn handleDestroy(control: *zriver.ControlV1, self: *Self) void {
|
2021-02-19 10:58:44 -08:00
|
|
|
var list = self.args_map.remove(
|
|
|
|
.{ .client = control.getClient(), .id = control.getId() },
|
|
|
|
).?.value;
|
|
|
|
for (list.items) |arg| util.gpa.free(arg);
|
|
|
|
list.deinit(util.gpa);
|
2020-05-19 04:25:16 -07:00
|
|
|
}
|