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");
|
|
|
|
|
|
|
|
const c = @import("c.zig");
|
2020-05-26 13:55:07 -07:00
|
|
|
const command = @import("command.zig");
|
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");
|
|
|
|
|
|
|
|
const protocol_version = 1;
|
|
|
|
|
2020-05-24 11:58:39 -07:00
|
|
|
const implementation = c.struct_zriver_control_v1_interface{
|
2020-06-15 13:24:54 -07:00
|
|
|
.destroy = destroy,
|
|
|
|
.add_argument = addArgument,
|
2020-05-19 04:25:16 -07:00
|
|
|
.run_command = runCommand,
|
|
|
|
};
|
|
|
|
|
|
|
|
wl_global: *c.wl_global,
|
|
|
|
|
2020-06-15 13:24:54 -07:00
|
|
|
args_map: std.AutoHashMap(u32, std.ArrayList([]const u8)),
|
|
|
|
|
2020-08-21 10:47:57 -07:00
|
|
|
listen_display_destroy: c.wl_listener = undefined,
|
2020-05-19 04:25:16 -07:00
|
|
|
|
|
|
|
pub fn init(self: *Self, server: *Server) !void {
|
2020-08-21 10:47:57 -07:00
|
|
|
self.* = .{
|
|
|
|
.wl_global = c.wl_global_create(
|
|
|
|
server.wl_display,
|
|
|
|
&c.zriver_control_v1_interface,
|
|
|
|
protocol_version,
|
|
|
|
self,
|
|
|
|
bind,
|
|
|
|
) orelse return error.OutOfMemory,
|
|
|
|
.args_map = std.AutoHashMap(u32, std.ArrayList([]const u8)).init(util.gpa),
|
|
|
|
};
|
2020-06-15 13:24:54 -07:00
|
|
|
|
2020-05-19 04:25:16 -07:00
|
|
|
self.listen_display_destroy.notify = handleDisplayDestroy;
|
|
|
|
c.wl_display_add_destroy_listener(server.wl_display, &self.listen_display_destroy);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handleDisplayDestroy(wl_listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
|
|
|
const self = @fieldParentPtr(Self, "listen_display_destroy", wl_listener.?);
|
|
|
|
c.wl_global_destroy(self.wl_global);
|
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
|
|
|
|
fn bind(wl_client: ?*c.wl_client, data: ?*c_void, version: u32, id: u32) callconv(.C) void {
|
2020-06-16 11:54:05 -07:00
|
|
|
const self = util.voidCast(Self, data.?);
|
2020-05-19 04:25:16 -07:00
|
|
|
const wl_resource = c.wl_resource_create(
|
|
|
|
wl_client,
|
2020-05-24 11:58:39 -07:00
|
|
|
&c.zriver_control_v1_interface,
|
2020-05-19 04:25:16 -07:00
|
|
|
@intCast(c_int, version),
|
|
|
|
id,
|
|
|
|
) orelse {
|
|
|
|
c.wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
};
|
2020-06-19 05:31:53 -07:00
|
|
|
self.args_map.putNoClobber(id, std.ArrayList([]const u8).init(util.gpa)) catch {
|
2020-06-15 13:24:54 -07:00
|
|
|
c.wl_resource_destroy(wl_resource);
|
|
|
|
c.wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
c.wl_resource_set_implementation(wl_resource, &implementation, self, handleResourceDestroy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Remove the resource from the hash map and free all stored args
|
|
|
|
fn handleResourceDestroy(wl_resource: ?*c.wl_resource) callconv(.C) void {
|
2020-06-16 11:54:05 -07:00
|
|
|
const self = util.voidCast(Self, c.wl_resource_get_user_data(wl_resource).?);
|
2020-06-15 13:24:54 -07:00
|
|
|
const id = c.wl_resource_get_id(wl_resource);
|
|
|
|
const list = self.args_map.remove(id).?.value;
|
|
|
|
for (list.items) |arg| list.allocator.free(arg);
|
|
|
|
list.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn destroy(wl_client: ?*c.wl_client, wl_resource: ?*c.wl_resource) callconv(.C) void {
|
|
|
|
c.wl_resource_destroy(wl_resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn addArgument(wl_client: ?*c.wl_client, wl_resource: ?*c.wl_resource, arg: ?[*:0]const u8) callconv(.C) void {
|
2020-06-16 11:54:05 -07:00
|
|
|
const self = util.voidCast(Self, c.wl_resource_get_user_data(wl_resource).?);
|
2020-06-15 13:24:54 -07:00
|
|
|
const id = c.wl_resource_get_id(wl_resource);
|
|
|
|
|
2020-06-19 05:31:53 -07:00
|
|
|
const owned_slice = std.mem.dupe(util.gpa, u8, std.mem.span(arg.?)) catch {
|
2020-06-15 13:24:54 -07:00
|
|
|
c.wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2020-08-31 06:23:01 -07:00
|
|
|
self.args_map.getEntry(id).?.value.append(owned_slice) catch {
|
2020-06-15 13:24:54 -07:00
|
|
|
c.wl_client_post_no_memory(wl_client);
|
2020-06-19 05:31:53 -07:00
|
|
|
util.gpa.free(owned_slice);
|
2020-06-15 13:24:54 -07:00
|
|
|
return;
|
|
|
|
};
|
2020-05-19 04:25:16 -07:00
|
|
|
}
|
|
|
|
|
2020-05-24 06:18:57 -07:00
|
|
|
fn runCommand(
|
|
|
|
wl_client: ?*c.wl_client,
|
|
|
|
wl_resource: ?*c.wl_resource,
|
2020-06-15 13:24:54 -07:00
|
|
|
seat_wl_resource: ?*c.wl_resource,
|
2020-05-24 06:18:57 -07:00
|
|
|
callback_id: u32,
|
|
|
|
) callconv(.C) void {
|
2020-06-16 11:54:05 -07:00
|
|
|
const self = util.voidCast(Self, c.wl_resource_get_user_data(wl_resource).?);
|
2020-06-15 13:24:54 -07:00
|
|
|
// This can be null if the seat is inert, in which case we ignore the request
|
|
|
|
const wlr_seat_client = c.wlr_seat_client_from_resource(seat_wl_resource) orelse return;
|
2020-06-16 11:54:05 -07:00
|
|
|
const seat = util.voidCast(Seat, wlr_seat_client.*.seat.*.data.?);
|
2020-05-19 09:22:22 -07:00
|
|
|
|
2020-05-24 06:18:57 -07:00
|
|
|
const callback_resource = c.wl_resource_create(
|
|
|
|
wl_client,
|
|
|
|
&c.zriver_command_callback_v1_interface,
|
|
|
|
protocol_version,
|
|
|
|
callback_id,
|
|
|
|
) orelse {
|
|
|
|
c.wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
c.wl_resource_set_implementation(callback_resource, null, null, null);
|
|
|
|
|
2020-08-31 06:23:01 -07:00
|
|
|
const args = self.args_map.get(c.wl_resource_get_id(wl_resource)).?.items;
|
2020-06-15 13:24:54 -07:00
|
|
|
|
2020-06-26 08:57:03 -07: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 => {
|
|
|
|
c.wl_client_post_no_memory(wl_client);
|
2020-06-01 05:41:44 -07:00
|
|
|
return;
|
2020-06-26 08:57:03 -07:00
|
|
|
},
|
|
|
|
command.Error.Other => std.cstr.addNullByte(util.gpa, out.?) catch {
|
|
|
|
c.wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
},
|
2020-06-26 09:43:20 -07:00
|
|
|
else => command.errToMsg(err),
|
2020-06-26 08:57:03 -07:00
|
|
|
};
|
|
|
|
defer if (err == command.Error.Other) util.gpa.free(failure_message);
|
|
|
|
c.zriver_command_callback_v1_send_failure(callback_resource, failure_message);
|
2020-05-24 06:18:57 -07:00
|
|
|
return;
|
|
|
|
};
|
2020-06-26 08:57:03 -07:00
|
|
|
|
|
|
|
const success_message = if (out) |s|
|
|
|
|
std.cstr.addNullByte(util.gpa, s) catch {
|
|
|
|
c.wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
"";
|
|
|
|
defer if (out != null) util.gpa.free(success_message);
|
|
|
|
c.zriver_command_callback_v1_send_success(callback_resource, success_message);
|
2020-05-19 04:25:16 -07:00
|
|
|
}
|