mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
62 lines
1.9 KiB
Zig
62 lines
1.9 KiB
Zig
const ThreadPool = @import("thread_pool");
|
|
const std = @import("std");
|
|
|
|
pub const Batch = ThreadPool.Batch;
|
|
pub const Task = ThreadPool.Task;
|
|
|
|
pub fn NewWorkPool(comptime max_threads: ?usize) type {
|
|
return struct {
|
|
var pool: ThreadPool = undefined;
|
|
var loaded: bool = false;
|
|
|
|
fn create() *ThreadPool {
|
|
@setCold(true);
|
|
|
|
pool = ThreadPool.init(.{
|
|
.max_threads = max_threads orelse @floatToInt(u32, @floor(@intToFloat(f32, @maximum(std.Thread.getCpuCount() catch 0, 2)) * 0.8)),
|
|
.stack_size = 2 * 1024 * 1024,
|
|
});
|
|
return &pool;
|
|
}
|
|
pub inline fn get() *ThreadPool {
|
|
// lil racy
|
|
if (loaded) return &pool;
|
|
loaded = true;
|
|
|
|
return create();
|
|
}
|
|
|
|
pub fn scheduleBatch(batch: ThreadPool.Batch) void {
|
|
get().schedule(batch);
|
|
}
|
|
|
|
pub fn schedule(task: *ThreadPool.Task) void {
|
|
get().schedule(ThreadPool.Batch.from(task));
|
|
}
|
|
|
|
pub fn go(allocator: std.mem.Allocator, comptime Context: type, context: Context, comptime function: fn (Context) void) !void {
|
|
const TaskType = struct {
|
|
task: Task,
|
|
context: Context,
|
|
allocator: std.mem.Allocator,
|
|
|
|
pub fn callback(task: *Task) void {
|
|
var this_task = @fieldParentPtr(@This(), "task", task);
|
|
function(this_task.context);
|
|
this_task.allocator.destroy(this_task);
|
|
}
|
|
};
|
|
|
|
var task_ = try allocator.create(TaskType);
|
|
task_.* = .{
|
|
.task = .{ .callback = TaskType.callback },
|
|
.context = context,
|
|
.allocator = allocator,
|
|
};
|
|
schedule(&task_.task);
|
|
}
|
|
};
|
|
}
|
|
|
|
pub const WorkPool = NewWorkPool(null);
|