From f3962470792c3b33970dd34b5b38a68d37c1224c Mon Sep 17 00:00:00 2001 From: Jeeves Date: Tue, 26 Mar 2024 08:33:50 -0600 Subject: [PATCH] i forgor --- src/main.zig | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index f5b13b2..6603f4a 100644 --- a/src/main.zig +++ b/src/main.zig @@ -227,8 +227,9 @@ pub const Listener = struct { var node: *Node = &self.root_node; var wildcard_param: ?[]const u8 = null; + var remaining = mem.count(u8, path, "/") + 1; var sections = mem.splitScalar(u8, path, '/'); - while (sections.next()) |section| { + while (sections.next()) |section| : (remaining -= 1) { if (node.wildcard_child_node) |wildcard_child_node| { wildcard_node = wildcard_child_node; wildcard_param = sections.rest(); @@ -242,6 +243,12 @@ pub const Listener = struct { var child_node: ?*Node = null; if (node.placeholder_children.items.len > 1) { // TODO + for (node.placeholder_children.items) |child| place: { + if (child.max_depth == remaining) { + child_node = child; + break :place; + } + } } else if (node.placeholder_children.items.len == 1) child_node = node.placeholder_children.items[0];