mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
We already have a LICENSE file that covers the Zig Standard Library. We no longer need to remind everyone that the license is MIT in every single file. Previously this was introduced to clarify the situation for a fork of Zig that made Zig's LICENSE file harder to find, and replaced it with their own license that required annual payments to their company. However that fork now appears to be dead. So there is no need to reinforce the copyright notice in every single file.
104 lines
3.6 KiB
Zig
104 lines
3.6 KiB
Zig
const std = @import("../std.zig");
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
/// This allocator is used in front of another allocator and logs to the provided writer
|
|
/// on every call to the allocator. Writer errors are ignored.
|
|
pub fn LogToWriterAllocator(comptime Writer: type) type {
|
|
return struct {
|
|
allocator: Allocator,
|
|
parent_allocator: *Allocator,
|
|
writer: Writer,
|
|
|
|
const Self = @This();
|
|
|
|
pub fn init(parent_allocator: *Allocator, writer: Writer) Self {
|
|
return Self{
|
|
.allocator = Allocator{
|
|
.allocFn = alloc,
|
|
.resizeFn = resize,
|
|
},
|
|
.parent_allocator = parent_allocator,
|
|
.writer = writer,
|
|
};
|
|
}
|
|
|
|
fn alloc(
|
|
allocator: *Allocator,
|
|
len: usize,
|
|
ptr_align: u29,
|
|
len_align: u29,
|
|
ra: usize,
|
|
) error{OutOfMemory}![]u8 {
|
|
const self = @fieldParentPtr(Self, "allocator", allocator);
|
|
self.writer.print("alloc : {}", .{len}) catch {};
|
|
const result = self.parent_allocator.allocFn(self.parent_allocator, len, ptr_align, len_align, ra);
|
|
if (result) |_| {
|
|
self.writer.print(" success!\n", .{}) catch {};
|
|
} else |_| {
|
|
self.writer.print(" failure!\n", .{}) catch {};
|
|
}
|
|
return result;
|
|
}
|
|
|
|
fn resize(
|
|
allocator: *Allocator,
|
|
buf: []u8,
|
|
buf_align: u29,
|
|
new_len: usize,
|
|
len_align: u29,
|
|
ra: usize,
|
|
) error{OutOfMemory}!usize {
|
|
const self = @fieldParentPtr(Self, "allocator", allocator);
|
|
if (new_len == 0) {
|
|
self.writer.print("free : {}\n", .{buf.len}) catch {};
|
|
} else if (new_len <= buf.len) {
|
|
self.writer.print("shrink: {} to {}\n", .{ buf.len, new_len }) catch {};
|
|
} else {
|
|
self.writer.print("expand: {} to {}", .{ buf.len, new_len }) catch {};
|
|
}
|
|
if (self.parent_allocator.resizeFn(self.parent_allocator, buf, buf_align, new_len, len_align, ra)) |resized_len| {
|
|
if (new_len > buf.len) {
|
|
self.writer.print(" success!\n", .{}) catch {};
|
|
}
|
|
return resized_len;
|
|
} else |e| {
|
|
std.debug.assert(new_len > buf.len);
|
|
self.writer.print(" failure!\n", .{}) catch {};
|
|
return e;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
/// This allocator is used in front of another allocator and logs to the provided writer
|
|
/// on every call to the allocator. Writer errors are ignored.
|
|
pub fn logToWriterAllocator(
|
|
parent_allocator: *Allocator,
|
|
writer: anytype,
|
|
) LogToWriterAllocator(@TypeOf(writer)) {
|
|
return LogToWriterAllocator(@TypeOf(writer)).init(parent_allocator, writer);
|
|
}
|
|
|
|
test "LogToWriterAllocator" {
|
|
var log_buf: [255]u8 = undefined;
|
|
var fbs = std.io.fixedBufferStream(&log_buf);
|
|
|
|
var allocator_buf: [10]u8 = undefined;
|
|
var fixedBufferAllocator = std.mem.validationWrap(std.heap.FixedBufferAllocator.init(&allocator_buf));
|
|
const allocator = &logToWriterAllocator(&fixedBufferAllocator.allocator, fbs.writer()).allocator;
|
|
|
|
var a = try allocator.alloc(u8, 10);
|
|
a = allocator.shrink(a, 5);
|
|
try std.testing.expect(a.len == 5);
|
|
try std.testing.expectError(error.OutOfMemory, allocator.resize(a, 20));
|
|
allocator.free(a);
|
|
|
|
try std.testing.expectEqualSlices(u8,
|
|
\\alloc : 10 success!
|
|
\\shrink: 10 to 5
|
|
\\expand: 5 to 20 failure!
|
|
\\free : 5
|
|
\\
|
|
, fbs.getWritten());
|
|
}
|