add global_allocator

This commit is contained in:
Luna 2021-04-13 21:31:58 -03:00
parent 11079f2c4d
commit 6a1f9a7a34
1 changed files with 9 additions and 6 deletions

View File

@ -7,7 +7,8 @@ const fmt = std.fmt;
const images_dir_path = "./images"; const images_dir_path = "./images";
var registry: mimetypes.Registry = undefined; var registry: ?mimetypes.Registry = null;
var global_allocator: ?*std.mem.Allocator = null;
pub fn main() anyerror!void { pub fn main() anyerror!void {
std.log.info("welcome to webscale", .{}); std.log.info("welcome to webscale", .{});
@ -16,8 +17,8 @@ pub fn main() anyerror!void {
defer _ = gpa.deinit(); defer _ = gpa.deinit();
registry = mimetypes.Registry.init(std.heap.page_allocator); registry = mimetypes.Registry.init(std.heap.page_allocator);
defer registry.deinit(); defer registry.?.deinit();
try registry.load(); try registry.?.load();
// TODO: configurable addr via env var // TODO: configurable addr via env var
const bind_addr = try std.net.Address.parseIp("0.0.0.0", 8080); const bind_addr = try std.net.Address.parseIp("0.0.0.0", 8080);
@ -26,6 +27,8 @@ pub fn main() anyerror!void {
// TODO: configurable path via env var // TODO: configurable path via env var
try std.fs.cwd().makePath(images_dir_path); try std.fs.cwd().makePath(images_dir_path);
global_allocator = &gpa.allocator;
try http.listenAndServe( try http.listenAndServe(
&gpa.allocator, &gpa.allocator,
bind_addr, bind_addr,
@ -66,7 +69,7 @@ const ContentDisposition = struct {
const Self = @This(); const Self = @This();
pub fn deinit(self: *Self) void { pub fn deinit(self: *const Self) void {
self.allocator.free(self.name); self.allocator.free(self.name);
self.allocator.free(self.filename); self.allocator.free(self.filename);
} }
@ -92,7 +95,7 @@ const Part = struct {
const Self = @This(); const Self = @This();
pub fn deinit(self: *Self) void { pub fn deinit(self: *const Self) void {
self.disposition.deinit(); self.disposition.deinit();
self.allocator.free(self.content_type); self.allocator.free(self.content_type);
} }
@ -168,7 +171,7 @@ const Multipart = struct {
var content_disposition: ?ContentDisposition = null; var content_disposition: ?ContentDisposition = null;
var content_type: ?[]const u8 = null; var content_type: ?[]const u8 = null;
std.log.debug("next bytes: {any}", .{self.stream.buffer[self.stream.pos..(self.stream.pos + 50)]}); std.log.debug("next bytes: {s}", .{self.stream.buffer[self.stream.pos..(self.stream.pos + 50)]});
while (try parser.next()) |event| { while (try parser.next()) |event| {
std.log.debug("got event: {}", .{event}); std.log.debug("got event: {}", .{event});