|
const std = @import("../std.zig");
const RwLock = std.event.RwLock;
|
RwLocked()Thread-safe async/await RW lock that protects one piece of data. Functions which are waiting for the lock are suspended, and are resumed when the lock is released, in order. |
pub fn RwLocked(comptime T: type) type {
return struct {
lock: RwLock,
locked_data: T,
const Self = @This();
pub const HeldReadLock = struct {
value: *const T,
held: RwLock.HeldRead,
|
release() |
pub fn release(self: HeldReadLock) void {
self.held.release();
}
};
pub const HeldWriteLock = struct {
value: *T,
held: RwLock.HeldWrite,
|
release() |
pub fn release(self: HeldWriteLock) void {
self.held.release();
}
};
|
init() |
pub fn init(data: T) Self {
return Self{
.lock = RwLock.init(),
.locked_data = data,
};
}
|
deinit() |
pub fn deinit(self: *Self) void {
self.lock.deinit();
}
|
acquireRead() |
pub fn acquireRead(self: *Self) callconv(.Async) HeldReadLock {
return HeldReadLock{
.held = self.lock.acquireRead(),
.value = &self.locked_data,
};
}
|
acquireWrite() |
pub fn acquireWrite(self: *Self) callconv(.Async) HeldWriteLock {
return HeldWriteLock{
.held = self.lock.acquireWrite(),
.value = &self.locked_data,
};
}
};
}
|
| Generated by zstd-browse2 on 2023-11-04 14:12:31 -0400. |