Reduce number of allocations for serializing error messages

This commit is contained in:
Jarred Sumner
2021-09-12 00:37:59 -07:00
parent 57ca04444b
commit dfb65ef1ca
3 changed files with 125 additions and 53 deletions

32
src/string_builder.zig Normal file
View File

@@ -0,0 +1,32 @@
usingnamespace @import("string_types.zig");
const Allocator = @import("std").mem.Allocator;
const assert = @import("std").debug.assert;
const copy = @import("std").mem.copy;
const StringBuilder = @This();
len: usize = 0,
cap: usize = 0,
ptr: ?[*]u8 = null,
pub fn count(this: *StringBuilder, slice: string) void {
this.cap += slice.len;
}
pub fn allocate(this: *StringBuilder, allocator: *Allocator) !void {
var slice = try allocator.alloc(u8, this.cap);
this.ptr = slice.ptr;
this.len = 0;
}
pub fn append(this: *StringBuilder, slice: string) string {
assert(this.len <= this.cap); // didn't count everything
assert(this.ptr != null); // must call allocate first
copy(u8, this.ptr.?[this.len..this.cap], slice);
const result = this.ptr.?[this.len..this.cap][0..slice.len];
this.len += slice.len;
assert(this.len <= this.cap);
return result;
}