hooks can now be deleted

This commit is contained in:
Squibid 2025-12-14 20:41:26 -05:00
parent 49e0875a85
commit 8d980ad032
Signed by: squibid
GPG key ID: BECE5684D3C4005D
4 changed files with 45 additions and 20 deletions

View file

@ -5,54 +5,70 @@ const zlua = @import("zlua");
const THook = @import("../types/Hook.zig");
const Utils = @import("../Utils.zig");
const LuaUtils = @import("LuaUtils.zig");
const gpa = std.heap.c_allocator;
const server = &@import("../main.zig").server;
/// ---Create a new hook on an event
/// ---@param string|string[] event(s)
/// ---@param table options
/// ---@param events string|string[]
/// ---@param options table
/// ---@return number id
pub fn add(L: *zlua.Lua) i32 {
L.checkType(2, .table);
errdefer Utils.oomPanic();
var hook: *THook = try gpa.create(THook);
hook.events = try std.ArrayList([]const u8).initCapacity(gpa, 1);
var hook: *THook = gpa.create(THook) catch Utils.oomPanic();
// We support both a string and a table of strings as the first value of
// add. Regardless of which type is passed in we create an arraylist of
// []const u8's
if (L.isTable(1)) {
hook.events = gpa.alloc(comptime []const u8, L.objectLen(1)) catch Utils.oomPanic();
var i: u32 = 0;
L.pushNil();
while (L.next(1)) {
if (L.isString(-1)) {
const s = L.checkString(-1);
try hook.events.append(gpa, s);
hook.events[i] = gpa.dupe(u8, s) catch Utils.oomPanic();
i += 1;
}
L.pop(1);
}
} else if (L.isString(1)) {
hook.events = gpa.alloc(comptime []const u8, 1) catch Utils.oomPanic();
const s = L.checkString(1);
try hook.events.append(gpa, s);
hook.events[0] = gpa.dupe(u8, s) catch Utils.oomPanic();
}
_ = L.pushString("callback");
_ = L.getTable(2);
if (L.isFunction(-1)) {
hook.options.lua_cb_ref_idx = try L.ref(zlua.registry_index);
hook.options.lua_cb_ref_idx = L.ref(zlua.registry_index) catch Utils.oomPanic();
}
try server.hooks.append(gpa, hook);
// TEST: this should be safe as the lua_cb_ref_idx's should never be the same
// but that all really depends on the implementation of the hashmap
server.hooks.put(hook.options.lua_cb_ref_idx, hook) catch Utils.oomPanic();
for (hook.events.items) |value| {
try server.events.put(value, hook);
for (hook.events) |value| {
server.events.put(value, hook) catch Utils.oomPanic();
}
return 0;
L.pushInteger(hook.options.lua_cb_ref_idx);
return 1;
}
/// ---Create an existing hook
/// ---@param id number
/// ---@return boolean has it been deleted
pub fn del(L: *zlua.Lua) i32 {
// TODO: impl
_ = L;
return 0;
const hook_id = LuaUtils.coerceInteger(i32, L.checkInteger(1)) catch L.raiseErrorStr("hook id must be a valid number", .{});
const hook = server.hooks.get(hook_id);
if (hook == null) L.raiseErrorStr("hook {} does not exist", .{hook_id});
for (hook.?.events) |value| {
server.events.del(value, hook.?);
}
L.pushBoolean(server.hooks.remove(hook_id));
return 1;
}