river: allow settings child type of RuleList
This commit is contained in:
parent
470eb22280
commit
9b5ea39580
@ -25,7 +25,7 @@ const util = @import("util.zig");
|
|||||||
|
|
||||||
const Server = @import("Server.zig");
|
const Server = @import("Server.zig");
|
||||||
const Mode = @import("Mode.zig");
|
const Mode = @import("Mode.zig");
|
||||||
const RuleList = @import("RuleList.zig");
|
const RuleList = @import("rule_list.zig").RuleList;
|
||||||
|
|
||||||
pub const AttachMode = enum {
|
pub const AttachMode = enum {
|
||||||
top,
|
top,
|
||||||
@ -73,8 +73,8 @@ mode_to_id: std.StringHashMap(u32),
|
|||||||
/// All user-defined keymap modes, indexed by mode id
|
/// All user-defined keymap modes, indexed by mode id
|
||||||
modes: std.ArrayListUnmanaged(Mode),
|
modes: std.ArrayListUnmanaged(Mode),
|
||||||
|
|
||||||
float_rules: RuleList = .{},
|
float_rules: RuleList(bool) = .{},
|
||||||
ssd_rules: RuleList = .{},
|
ssd_rules: RuleList(bool) = .{},
|
||||||
|
|
||||||
/// The selected focus_follows_cursor mode
|
/// The selected focus_follows_cursor mode
|
||||||
focus_follows_cursor: FocusFollowsCursorMode = .disabled,
|
focus_follows_cursor: FocusFollowsCursorMode = .disabled,
|
||||||
|
@ -1,106 +0,0 @@
|
|||||||
// This file is part of river, a dynamic tiling wayland compositor.
|
|
||||||
//
|
|
||||||
// Copyright 2023 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 RuleList = @This();
|
|
||||||
|
|
||||||
const std = @import("std");
|
|
||||||
const mem = std.mem;
|
|
||||||
|
|
||||||
const globber = @import("globber");
|
|
||||||
const util = @import("util.zig");
|
|
||||||
|
|
||||||
const View = @import("View.zig");
|
|
||||||
|
|
||||||
const Rule = struct {
|
|
||||||
app_id_glob: []const u8,
|
|
||||||
title_glob: []const u8,
|
|
||||||
value: bool,
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Ordered from most specific to most general.
|
|
||||||
/// Ordered first by app-id generality then by title generality.
|
|
||||||
rules: std.ArrayListUnmanaged(Rule) = .{},
|
|
||||||
|
|
||||||
pub fn deinit(list: *RuleList) void {
|
|
||||||
for (list.rules.items) |rule| {
|
|
||||||
util.gpa.free(rule.app_id_glob);
|
|
||||||
util.gpa.free(rule.title_glob);
|
|
||||||
}
|
|
||||||
list.rules.deinit(util.gpa);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add(list: *RuleList, rule: Rule) error{OutOfMemory}!void {
|
|
||||||
const index = for (list.rules.items) |*existing, i| {
|
|
||||||
if (mem.eql(u8, rule.app_id_glob, existing.app_id_glob) and
|
|
||||||
mem.eql(u8, rule.title_glob, existing.title_glob))
|
|
||||||
{
|
|
||||||
existing.value = rule.value;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (globber.order(rule.app_id_glob, existing.app_id_glob)) {
|
|
||||||
.lt => break i,
|
|
||||||
.eq => {
|
|
||||||
if (globber.order(rule.title_glob, existing.title_glob) == .lt) {
|
|
||||||
break i;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
.gt => {},
|
|
||||||
}
|
|
||||||
} else list.rules.items.len;
|
|
||||||
|
|
||||||
const owned_app_id_glob = try util.gpa.dupe(u8, rule.app_id_glob);
|
|
||||||
errdefer util.gpa.free(owned_app_id_glob);
|
|
||||||
|
|
||||||
const owned_title_glob = try util.gpa.dupe(u8, rule.title_glob);
|
|
||||||
errdefer util.gpa.free(owned_title_glob);
|
|
||||||
|
|
||||||
try list.rules.insert(util.gpa, index, .{
|
|
||||||
.app_id_glob = owned_app_id_glob,
|
|
||||||
.title_glob = owned_title_glob,
|
|
||||||
.value = rule.value,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn del(list: *RuleList, rule: Rule) void {
|
|
||||||
for (list.rules.items) |existing, i| {
|
|
||||||
if (mem.eql(u8, rule.app_id_glob, existing.app_id_glob) and
|
|
||||||
mem.eql(u8, rule.title_glob, existing.title_glob))
|
|
||||||
{
|
|
||||||
util.gpa.free(existing.app_id_glob);
|
|
||||||
util.gpa.free(existing.title_glob);
|
|
||||||
_ = list.rules.orderedRemove(i);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns the value of the most specific rule matching the view.
|
|
||||||
/// Returns null if no rule matches.
|
|
||||||
pub fn match(list: *RuleList, view: *View) ?bool {
|
|
||||||
const app_id = mem.sliceTo(view.getAppId(), 0) orelse "";
|
|
||||||
const title = mem.sliceTo(view.getTitle(), 0) orelse "";
|
|
||||||
|
|
||||||
for (list.rules.items) |rule| {
|
|
||||||
if (globber.match(app_id, rule.app_id_glob) and
|
|
||||||
globber.match(title, rule.title_glob))
|
|
||||||
{
|
|
||||||
return rule.value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
@ -24,7 +24,6 @@ const server = &@import("../main.zig").server;
|
|||||||
const util = @import("../util.zig");
|
const util = @import("../util.zig");
|
||||||
|
|
||||||
const Error = @import("../command.zig").Error;
|
const Error = @import("../command.zig").Error;
|
||||||
const RuleList = @import("../RuleList.zig");
|
|
||||||
const Seat = @import("../Seat.zig");
|
const Seat = @import("../Seat.zig");
|
||||||
const View = @import("../View.zig");
|
const View = @import("../View.zig");
|
||||||
|
|
||||||
@ -95,14 +94,12 @@ pub fn ruleDel(_: *Seat, args: []const [:0]const u8, _: *?[]const u8) Error!void
|
|||||||
server.config.float_rules.del(.{
|
server.config.float_rules.del(.{
|
||||||
.app_id_glob = app_id_glob,
|
.app_id_glob = app_id_glob,
|
||||||
.title_glob = title_glob,
|
.title_glob = title_glob,
|
||||||
.value = (action == .float),
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
.ssd, .csd => {
|
.ssd, .csd => {
|
||||||
server.config.ssd_rules.del(.{
|
server.config.ssd_rules.del(.{
|
||||||
.app_id_glob = app_id_glob,
|
.app_id_glob = app_id_glob,
|
||||||
.title_glob = title_glob,
|
.title_glob = title_glob,
|
||||||
.value = (action == .ssd),
|
|
||||||
});
|
});
|
||||||
apply_ssd_rules();
|
apply_ssd_rules();
|
||||||
server.root.applyPending();
|
server.root.applyPending();
|
||||||
|
124
river/rule_list.zig
Normal file
124
river/rule_list.zig
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
// This file is part of river, a dynamic tiling wayland compositor.
|
||||||
|
//
|
||||||
|
// Copyright 2023 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 std = @import("std");
|
||||||
|
const mem = std.mem;
|
||||||
|
|
||||||
|
const globber = @import("globber");
|
||||||
|
const util = @import("util.zig");
|
||||||
|
|
||||||
|
const View = @import("View.zig");
|
||||||
|
|
||||||
|
pub fn RuleList(comptime T: type) type {
|
||||||
|
return struct {
|
||||||
|
const Self = @This();
|
||||||
|
|
||||||
|
const Rule = struct {
|
||||||
|
app_id_glob: []const u8,
|
||||||
|
title_glob: []const u8,
|
||||||
|
value: T,
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Ordered from most specific to most general.
|
||||||
|
/// Ordered first by app-id generality then by title generality.
|
||||||
|
rules: std.ArrayListUnmanaged(Rule) = .{},
|
||||||
|
|
||||||
|
pub fn deinit(list: *Self) void {
|
||||||
|
for (list.rules.items) |rule| {
|
||||||
|
util.gpa.free(rule.app_id_glob);
|
||||||
|
util.gpa.free(rule.title_glob);
|
||||||
|
}
|
||||||
|
list.rules.deinit(util.gpa);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn add(list: *Self, rule: Rule) error{OutOfMemory}!void {
|
||||||
|
const index = for (list.rules.items) |*existing, i| {
|
||||||
|
if (mem.eql(u8, rule.app_id_glob, existing.app_id_glob) and
|
||||||
|
mem.eql(u8, rule.title_glob, existing.title_glob))
|
||||||
|
{
|
||||||
|
existing.value = rule.value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (globber.order(rule.app_id_glob, existing.app_id_glob)) {
|
||||||
|
.lt => break i,
|
||||||
|
.eq => {
|
||||||
|
if (globber.order(rule.title_glob, existing.title_glob) == .lt) {
|
||||||
|
break i;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
.gt => {},
|
||||||
|
}
|
||||||
|
} else list.rules.items.len;
|
||||||
|
|
||||||
|
const owned_app_id_glob = try util.gpa.dupe(u8, rule.app_id_glob);
|
||||||
|
errdefer util.gpa.free(owned_app_id_glob);
|
||||||
|
|
||||||
|
const owned_title_glob = try util.gpa.dupe(u8, rule.title_glob);
|
||||||
|
errdefer util.gpa.free(owned_title_glob);
|
||||||
|
|
||||||
|
try list.rules.insert(util.gpa, index, .{
|
||||||
|
.app_id_glob = owned_app_id_glob,
|
||||||
|
.title_glob = owned_title_glob,
|
||||||
|
.value = rule.value,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn del(list: *Self, rule: struct { app_id_glob: []const u8, title_glob: []const u8 }) void {
|
||||||
|
for (list.rules.items) |existing, i| {
|
||||||
|
if (mem.eql(u8, rule.app_id_glob, existing.app_id_glob) and
|
||||||
|
mem.eql(u8, rule.title_glob, existing.title_glob))
|
||||||
|
{
|
||||||
|
util.gpa.free(existing.app_id_glob);
|
||||||
|
util.gpa.free(existing.title_glob);
|
||||||
|
_ = list.rules.orderedRemove(i);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the value of the most specific rule matching the view.
|
||||||
|
/// Returns null if no rule matches.
|
||||||
|
pub fn match(list: *Self, view: *View) ?T {
|
||||||
|
const app_id = mem.sliceTo(view.getAppId(), 0) orelse "";
|
||||||
|
const title = mem.sliceTo(view.getTitle(), 0) orelse "";
|
||||||
|
|
||||||
|
for (list.rules.items) |rule| {
|
||||||
|
if (globber.match(app_id, rule.app_id_glob) and
|
||||||
|
globber.match(title, rule.title_glob))
|
||||||
|
{
|
||||||
|
return rule.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the length of the longest globs.
|
||||||
|
pub fn getMaxGlobLen(self: *const Self) MaxGlobLen {
|
||||||
|
var app_id_len: usize = 0;
|
||||||
|
var title_len: usize = 0;
|
||||||
|
for (self.rules.items) |rule| {
|
||||||
|
app_id_len = @max(app_id_len, rule.app_id_glob.len);
|
||||||
|
title_len = @max(title_len, rule.title_glob.len);
|
||||||
|
}
|
||||||
|
return .{
|
||||||
|
.app_id = app_id_len,
|
||||||
|
.title = title_len,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user