mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 10:24:47 +01:00
240 lines
6.9 KiB
Zig
240 lines
6.9 KiB
Zig
//! A lock that supports one writer or many readers.
|
|
const RwLock = @This();
|
|
|
|
const builtin = @import("builtin");
|
|
|
|
const std = @import("../std.zig");
|
|
const Io = std.Io;
|
|
const assert = std.debug.assert;
|
|
const testing = std.testing;
|
|
|
|
state: usize,
|
|
mutex: Io.Mutex,
|
|
semaphore: Io.Semaphore,
|
|
|
|
pub const init: RwLock = .{
|
|
.state = 0,
|
|
.mutex = .init,
|
|
.semaphore = .{},
|
|
};
|
|
|
|
const is_writing: usize = 1;
|
|
const writer: usize = 1 << 1;
|
|
const reader: usize = 1 << (1 + @bitSizeOf(Count));
|
|
const writer_mask: usize = std.math.maxInt(Count) << @ctz(writer);
|
|
const reader_mask: usize = std.math.maxInt(Count) << @ctz(reader);
|
|
const Count = @Int(.unsigned, @divFloor(@bitSizeOf(usize) - 1, 2));
|
|
|
|
pub fn tryLock(rl: *RwLock, io: Io) bool {
|
|
if (rl.mutex.tryLock()) {
|
|
const state = @atomicLoad(usize, &rl.state, .seq_cst);
|
|
if (state & reader_mask == 0) {
|
|
_ = @atomicRmw(usize, &rl.state, .Or, is_writing, .seq_cst);
|
|
return true;
|
|
}
|
|
|
|
rl.mutex.unlock(io);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
pub fn lockUncancelable(rl: *RwLock, io: Io) void {
|
|
_ = @atomicRmw(usize, &rl.state, .Add, writer, .seq_cst);
|
|
rl.mutex.lockUncancelable(io);
|
|
|
|
const state = @atomicRmw(usize, &rl.state, .Add, is_writing -% writer, .seq_cst);
|
|
if (state & reader_mask != 0)
|
|
rl.semaphore.waitUncancelable(io);
|
|
}
|
|
|
|
pub fn unlock(rl: *RwLock, io: Io) void {
|
|
_ = @atomicRmw(usize, &rl.state, .And, ~is_writing, .seq_cst);
|
|
rl.mutex.unlock(io);
|
|
}
|
|
|
|
pub fn tryLockShared(rl: *RwLock, io: Io) bool {
|
|
const state = @atomicLoad(usize, &rl.state, .seq_cst);
|
|
if (state & (is_writing | writer_mask) == 0) {
|
|
_ = @cmpxchgStrong(
|
|
usize,
|
|
&rl.state,
|
|
state,
|
|
state + reader,
|
|
.seq_cst,
|
|
.seq_cst,
|
|
) orelse return true;
|
|
}
|
|
|
|
if (rl.mutex.tryLock()) {
|
|
_ = @atomicRmw(usize, &rl.state, .Add, reader, .seq_cst);
|
|
rl.mutex.unlock(io);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
pub fn lockSharedUncancelable(rl: *RwLock, io: Io) void {
|
|
var state = @atomicLoad(usize, &rl.state, .seq_cst);
|
|
while (state & (is_writing | writer_mask) == 0) {
|
|
state = @cmpxchgWeak(
|
|
usize,
|
|
&rl.state,
|
|
state,
|
|
state + reader,
|
|
.seq_cst,
|
|
.seq_cst,
|
|
) orelse return;
|
|
}
|
|
|
|
rl.mutex.lockUncancelable(io);
|
|
_ = @atomicRmw(usize, &rl.state, .Add, reader, .seq_cst);
|
|
rl.mutex.unlock(io);
|
|
}
|
|
|
|
pub fn unlockShared(rl: *RwLock, io: Io) void {
|
|
const state = @atomicRmw(usize, &rl.state, .Sub, reader, .seq_cst);
|
|
|
|
if ((state & reader_mask == reader) and (state & is_writing != 0))
|
|
rl.semaphore.post(io);
|
|
}
|
|
|
|
test "internal state" {
|
|
const io = testing.io;
|
|
|
|
var rl: Io.RwLock = .init;
|
|
|
|
// The following failed prior to the fix for Issue #13163,
|
|
// where the WRITER flag was subtracted by the lock method.
|
|
|
|
rl.lockUncancelable(io);
|
|
rl.unlock(io);
|
|
try testing.expectEqual(rl, Io.RwLock.init);
|
|
}
|
|
|
|
test "smoke test" {
|
|
if (builtin.target.cpu.arch.isAARCH64() and builtin.target.os.tag == .netbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31393
|
|
|
|
const io = testing.io;
|
|
|
|
var rl: Io.RwLock = .init;
|
|
|
|
rl.lockUncancelable(io);
|
|
try testing.expect(!rl.tryLock(io));
|
|
try testing.expect(!rl.tryLockShared(io));
|
|
rl.unlock(io);
|
|
|
|
try testing.expect(rl.tryLock(io));
|
|
try testing.expect(!rl.tryLock(io));
|
|
try testing.expect(!rl.tryLockShared(io));
|
|
rl.unlock(io);
|
|
|
|
rl.lockSharedUncancelable(io);
|
|
try testing.expect(!rl.tryLock(io));
|
|
try testing.expect(rl.tryLockShared(io));
|
|
rl.unlockShared(io);
|
|
rl.unlockShared(io);
|
|
|
|
try testing.expect(rl.tryLockShared(io));
|
|
try testing.expect(!rl.tryLock(io));
|
|
try testing.expect(rl.tryLockShared(io));
|
|
rl.unlockShared(io);
|
|
rl.unlockShared(io);
|
|
|
|
rl.lockUncancelable(io);
|
|
rl.unlock(io);
|
|
}
|
|
|
|
test "concurrent access" {
|
|
if (builtin.single_threaded) return;
|
|
|
|
const io = testing.io;
|
|
const num_writers: usize = 2;
|
|
const num_readers: usize = 4;
|
|
const num_writes: usize = 1000;
|
|
const num_reads: usize = 2000;
|
|
|
|
const Runner = struct {
|
|
const Runner = @This();
|
|
|
|
io: Io,
|
|
|
|
rl: Io.RwLock,
|
|
writes: usize,
|
|
reads: std.atomic.Value(usize),
|
|
|
|
val_a: usize,
|
|
val_b: usize,
|
|
|
|
fn reader(run: *Runner, thread_idx: usize) !void {
|
|
var prng = std.Random.DefaultPrng.init(thread_idx);
|
|
const rnd = prng.random();
|
|
while (true) {
|
|
run.rl.lockSharedUncancelable(run.io);
|
|
defer run.rl.unlockShared(run.io);
|
|
|
|
try testing.expect(run.writes <= num_writes);
|
|
if (run.reads.fetchAdd(1, .monotonic) >= num_reads) break;
|
|
|
|
// We use `volatile` accesses so that we can make sure the memory is accessed either
|
|
// side of a yield, maximising chances of a race.
|
|
const a_ptr: *const volatile usize = &run.val_a;
|
|
const b_ptr: *const volatile usize = &run.val_b;
|
|
|
|
const old_a = a_ptr.*;
|
|
if (rnd.boolean()) try std.Thread.yield();
|
|
const old_b = b_ptr.*;
|
|
try testing.expect(old_a == old_b);
|
|
}
|
|
}
|
|
|
|
fn writer(run: *Runner, thread_idx: usize) !void {
|
|
var prng = std.Random.DefaultPrng.init(thread_idx);
|
|
const rnd = prng.random();
|
|
while (true) {
|
|
run.rl.lockUncancelable(run.io);
|
|
defer run.rl.unlock(run.io);
|
|
|
|
try testing.expect(run.writes <= num_writes);
|
|
if (run.writes == num_writes) break;
|
|
|
|
// We use `volatile` accesses so that we can make sure the memory is accessed either
|
|
// side of a yield, maximising chances of a race.
|
|
const a_ptr: *volatile usize = &run.val_a;
|
|
const b_ptr: *volatile usize = &run.val_b;
|
|
|
|
const new_val = rnd.int(usize);
|
|
|
|
const old_a = a_ptr.*;
|
|
a_ptr.* = new_val;
|
|
if (rnd.boolean()) try std.Thread.yield();
|
|
const old_b = b_ptr.*;
|
|
b_ptr.* = new_val;
|
|
try testing.expect(old_a == old_b);
|
|
|
|
run.writes += 1;
|
|
}
|
|
}
|
|
};
|
|
|
|
var run: Runner = .{
|
|
.io = io,
|
|
.rl = .init,
|
|
.writes = 0,
|
|
.reads = .init(0),
|
|
.val_a = 0,
|
|
.val_b = 0,
|
|
};
|
|
var write_threads: [num_writers]std.Thread = undefined;
|
|
var read_threads: [num_readers]std.Thread = undefined;
|
|
|
|
for (&write_threads, 0..) |*t, i| t.* = try .spawn(.{}, Runner.writer, .{ &run, i });
|
|
for (&read_threads, num_writers..) |*t, i| t.* = try .spawn(.{}, Runner.reader, .{ &run, i });
|
|
|
|
for (write_threads) |t| t.join();
|
|
for (read_threads) |t| t.join();
|
|
|
|
try testing.expect(run.writes == num_writes);
|
|
try testing.expect(run.reads.raw >= num_reads);
|
|
}
|