httz/src/main.zig

162 lines
5.2 KiB
Zig
Raw Normal View History

2024-03-25 14:49:43 -06:00
const std = @import("std");
const mem = std.mem;
const net = std.net;
const http = std.http;
const heap = std.heap;
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
defer _ = gpa.deinit();
const allocator = gpa.allocator();
2024-03-25 15:58:40 -06:00
const router = BasicRouter.init(allocator);
defer router.deinit();
2024-03-25 14:49:43 -06:00
const address = try net.Address.parseIp("0.0.0.0", 8080);
2024-03-25 15:58:40 -06:00
var listener = Listener.init(address, allocator, &handle);
2024-03-25 14:49:43 -06:00
defer listener.deinit();
try listener.listen();
}
2024-03-25 15:58:40 -06:00
pub fn handle(event: *Listener.Event) anyerror!void {
2024-03-25 14:49:43 -06:00
try event.res.body.appendSlice("hello there");
}
pub const Listener = struct {
address: net.Address,
arena: heap.ArenaAllocator,
2024-03-25 15:58:40 -06:00
handlerFn: *const fn (event: *Event) anyerror!void,
2024-03-25 14:49:43 -06:00
2024-03-25 15:58:40 -06:00
pub fn init(address: net.Address, allocator: mem.Allocator, handler: *const fn (event: *Event) anyerror!void) Listener {
2024-03-25 14:49:43 -06:00
return .{
.address = address,
.arena = heap.ArenaAllocator.init(allocator),
2024-03-25 15:58:40 -06:00
.handlerFn = handler,
2024-03-25 14:49:43 -06:00
};
}
pub fn deinit(self: *Listener) void {
self.arena.deinit();
}
pub fn listen(self: *Listener) !void {
var tcp = try self.address.listen(.{});
defer tcp.deinit();
std.debug.print("listening at: {any}\n", .{self.address});
while (true) {
const read_buf = try self.arena.allocator().alloc(u8, 1024 * 32);
const connection = try tcp.accept();
var server = http.Server.init(connection, read_buf);
try self.handle(&server);
_ = self.arena.reset(.retain_capacity);
}
}
fn handle(self: *Listener, server: *http.Server) !void {
handler: while (true) {
var req = server.receiveHead() catch |e| if (e == error.HttpConnectionClosing) break :handler else return e;
var event = Event{
.req = .{
.uri = try std.Uri.parseWithoutScheme(req.head.target),
.headers = std.ArrayList(*const http.Header).init(self.arena.allocator()),
},
.res = .{
.status = .ok,
.headers = std.StringHashMap(*http.Header).init(self.arena.allocator()),
.body = std.ArrayList(u8).init(self.arena.allocator()),
},
};
var header_it = req.iterateHeaders();
while (header_it.next()) |header| try event.req.headers.append(&header);
2024-03-25 15:58:40 -06:00
try self.handlerFn(&event);
2024-03-25 14:49:43 -06:00
try self.respondFromEvent(&event, &req);
}
}
fn respondFromEvent(self: *Listener, event: *Event, req: *http.Server.Request) !void {
const res_body = try event.res.body.toOwnedSlice();
const res_headers = try self.arena.allocator().alloc(http.Header, event.res.headers.count());
var i: usize = 0;
var header_it = event.res.headers.iterator();
while (header_it.next()) |header_ptr| : (i += 1) res_headers[i] = header_ptr.value_ptr.*.*;
try req.respond(res_body, .{
.status = event.res.status,
.extra_headers = res_headers,
});
}
pub const Event = struct {
req: Request,
res: Response,
pub const Request = struct {
uri: std.Uri,
// head: http.Server.Request.Head,
headers: std.ArrayList(*const http.Header),
};
pub const Response = struct {
status: http.Status,
headers: std.StringHashMap(*http.Header),
body: std.ArrayList(u8),
};
};
};
2024-03-25 15:58:40 -06:00
pub const BasicRouter = Router(Listener.Event);
pub fn Router(comptime Context: type) type {
return struct {
ctx: Context,
allocator: mem.Allocator,
static_routes: std.StringHashMap(*Node),
pub fn init(allocator: mem.Allocator, ctx: Context) Self {
return .{
.ctx = ctx,
.allocator = allocator,
.static_routes = std.StringHashMap(*Node).init(allocator),
};
}
pub fn deinit(self: *Self) void {
self.static_routes.deinit();
}
pub fn addRoute(self: *Self, path: []const u8, handler: HandlerFn) !void {
try self.addStaticRoute(path, handler);
}
fn addStaticRoute(self: *Self, path: []const u8, handler: HandlerFn) !void {
try self.static_routes.put(path, .{
.type = .normal,
.max_depth = 1,
.children = std.StringHashMap(*Node).init(self.allocator),
.handler = handler,
.placeholder_children = std.ArrayList(*Node).init(self.allocator),
});
}
pub const Node = struct {
type: Type,
max_depth: usize, // TODO: what is best here
parent: ?*Node = null,
children: std.StringHashMap(*Node),
handler: HandlerFn,
wildcard_child_node: ?*Node = null,
placeholder_children: std.ArrayList(*Node),
pub const Type = enum { normal, wildcard, placeholder };
};
pub const HandlerFn = *const fn (ctx: *Context) anyerror!void;
const Self = @This();
};
}