mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 00:03:10 +00:00
Merge pull request #21795 from ziglang/kqueue-watch
Build Runner: Implement File System Watching for kqueue
This commit is contained in:
commit
b8795b4d02
@ -447,10 +447,7 @@ pub fn main() !void {
|
|||||||
|
|
||||||
if (!watch) return cleanExit();
|
if (!watch) return cleanExit();
|
||||||
|
|
||||||
switch (builtin.os.tag) {
|
if (!Watch.have_impl) fatal("--watch not yet implemented for {s}", .{@tagName(builtin.os.tag)});
|
||||||
.linux, .windows => {},
|
|
||||||
else => fatal("--watch not yet implemented for {s}", .{@tagName(builtin.os.tag)}),
|
|
||||||
}
|
|
||||||
|
|
||||||
try w.update(gpa, run.step_stack.keys());
|
try w.update(gpa, run.step_stack.keys());
|
||||||
|
|
||||||
|
|||||||
@ -10,6 +10,8 @@ dir_table: DirTable,
|
|||||||
os: Os,
|
os: Os,
|
||||||
generation: Generation,
|
generation: Generation,
|
||||||
|
|
||||||
|
pub const have_impl = Os != void;
|
||||||
|
|
||||||
/// Key is the directory to watch which contains one or more files we are
|
/// Key is the directory to watch which contains one or more files we are
|
||||||
/// interested in noticing changes to.
|
/// interested in noticing changes to.
|
||||||
///
|
///
|
||||||
@ -89,6 +91,38 @@ const Os = switch (builtin.os.tag) {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fn init() !Watch {
|
||||||
|
const fan_fd = std.posix.fanotify_init(.{
|
||||||
|
.CLASS = .NOTIF,
|
||||||
|
.CLOEXEC = true,
|
||||||
|
.NONBLOCK = true,
|
||||||
|
.REPORT_NAME = true,
|
||||||
|
.REPORT_DIR_FID = true,
|
||||||
|
.REPORT_FID = true,
|
||||||
|
.REPORT_TARGET_FID = true,
|
||||||
|
}, 0) catch |err| switch (err) {
|
||||||
|
error.UnsupportedFlags => fatal("fanotify_init failed due to old kernel; requires 5.17+", .{}),
|
||||||
|
else => |e| return e,
|
||||||
|
};
|
||||||
|
return .{
|
||||||
|
.dir_table = .{},
|
||||||
|
.os = switch (builtin.os.tag) {
|
||||||
|
.linux => .{
|
||||||
|
.handle_table = .{},
|
||||||
|
.poll_fds = .{
|
||||||
|
.{
|
||||||
|
.fd = fan_fd,
|
||||||
|
.events = std.posix.POLL.IN,
|
||||||
|
.revents = undefined,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
else => {},
|
||||||
|
},
|
||||||
|
.generation = 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
fn getDirHandle(gpa: Allocator, path: std.Build.Cache.Path) !FileHandle {
|
fn getDirHandle(gpa: Allocator, path: std.Build.Cache.Path) !FileHandle {
|
||||||
var file_handle_buffer: [@sizeOf(std.os.linux.file_handle) + 128]u8 align(@alignOf(std.os.linux.file_handle)) = undefined;
|
var file_handle_buffer: [@sizeOf(std.os.linux.file_handle) + 128]u8 align(@alignOf(std.os.linux.file_handle)) = undefined;
|
||||||
var mount_id: i32 = undefined;
|
var mount_id: i32 = undefined;
|
||||||
@ -236,6 +270,16 @@ const Os = switch (builtin.os.tag) {
|
|||||||
w.generation +%= 1;
|
w.generation +%= 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn wait(w: *Watch, gpa: Allocator, timeout: Timeout) !WaitResult {
|
||||||
|
const events_len = try std.posix.poll(&w.os.poll_fds, timeout.to_i32_ms());
|
||||||
|
return if (events_len == 0)
|
||||||
|
.timeout
|
||||||
|
else if (try Os.markDirtySteps(w, gpa))
|
||||||
|
.dirty
|
||||||
|
else
|
||||||
|
.clean;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
.windows => struct {
|
.windows => struct {
|
||||||
const windows = std.os.windows;
|
const windows = std.os.windows;
|
||||||
@ -356,6 +400,21 @@ const Os = switch (builtin.os.tag) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fn init() !Watch {
|
||||||
|
return .{
|
||||||
|
.dir_table = .{},
|
||||||
|
.os = switch (builtin.os.tag) {
|
||||||
|
.windows => .{
|
||||||
|
.handle_table = .{},
|
||||||
|
.dir_list = .{},
|
||||||
|
.io_cp = null,
|
||||||
|
},
|
||||||
|
else => {},
|
||||||
|
},
|
||||||
|
.generation = 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
fn getFileId(handle: windows.HANDLE) !FileId {
|
fn getFileId(handle: windows.HANDLE) !FileId {
|
||||||
var file_id: FileId = undefined;
|
var file_id: FileId = undefined;
|
||||||
var io_status: windows.IO_STATUS_BLOCK = undefined;
|
var io_status: windows.IO_STATUS_BLOCK = undefined;
|
||||||
@ -509,59 +568,258 @@ const Os = switch (builtin.os.tag) {
|
|||||||
w.generation +%= 1;
|
w.generation +%= 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn wait(w: *Watch, gpa: Allocator, timeout: Timeout) !WaitResult {
|
||||||
|
var bytes_transferred: std.os.windows.DWORD = undefined;
|
||||||
|
var key: usize = undefined;
|
||||||
|
var overlapped_ptr: ?*std.os.windows.OVERLAPPED = undefined;
|
||||||
|
return while (true) switch (std.os.windows.GetQueuedCompletionStatus(
|
||||||
|
w.os.io_cp.?,
|
||||||
|
&bytes_transferred,
|
||||||
|
&key,
|
||||||
|
&overlapped_ptr,
|
||||||
|
@bitCast(timeout.to_i32_ms()),
|
||||||
|
)) {
|
||||||
|
.Normal => {
|
||||||
|
if (bytes_transferred == 0)
|
||||||
|
break error.Unexpected;
|
||||||
|
|
||||||
|
// This 'orelse' detects a race condition that happens when we receive a
|
||||||
|
// completion notification for a directory that no longer exists in our list.
|
||||||
|
const dir = w.os.dir_list.get(key) orelse break .clean;
|
||||||
|
|
||||||
|
break if (try Os.markDirtySteps(w, gpa, dir))
|
||||||
|
.dirty
|
||||||
|
else
|
||||||
|
.clean;
|
||||||
|
},
|
||||||
|
.Timeout => break .timeout,
|
||||||
|
// This status is issued because CancelIo was called, skip and try again.
|
||||||
|
.Cancelled => continue,
|
||||||
|
else => break error.Unexpected,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
.dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos, .haiku => struct {
|
||||||
|
const posix = std.posix;
|
||||||
|
|
||||||
|
kq_fd: i32,
|
||||||
|
/// Indexes correspond 1:1 with `dir_table`.
|
||||||
|
handles: std.MultiArrayList(struct {
|
||||||
|
rs: ReactionSet,
|
||||||
|
/// If the corresponding dir_table Path has sub_path == "", then it
|
||||||
|
/// suffices as the open directory handle, and this value will be
|
||||||
|
/// -1. Otherwise, it needs to be opened in update(), and will be
|
||||||
|
/// stored here.
|
||||||
|
dir_fd: i32,
|
||||||
|
/// Number of files being watched by this directory handle.
|
||||||
|
ref_count: u32,
|
||||||
|
}),
|
||||||
|
|
||||||
|
const dir_open_flags: posix.O = f: {
|
||||||
|
var f: posix.O = .{
|
||||||
|
.ACCMODE = .RDONLY,
|
||||||
|
.NOFOLLOW = false,
|
||||||
|
.DIRECTORY = true,
|
||||||
|
.CLOEXEC = true,
|
||||||
|
};
|
||||||
|
if (@hasField(posix.O, "EVTONLY")) f.EVTONLY = true;
|
||||||
|
if (@hasField(posix.O, "PATH")) f.PATH = true;
|
||||||
|
break :f f;
|
||||||
|
};
|
||||||
|
|
||||||
|
const EV = std.c.EV;
|
||||||
|
const NOTE = std.c.NOTE;
|
||||||
|
|
||||||
|
fn init() !Watch {
|
||||||
|
const kq_fd = try posix.kqueue();
|
||||||
|
errdefer posix.close(kq_fd);
|
||||||
|
return .{
|
||||||
|
.dir_table = .{},
|
||||||
|
.os = .{
|
||||||
|
.kq_fd = kq_fd,
|
||||||
|
.handles = .empty,
|
||||||
|
},
|
||||||
|
.generation = 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
fn update(w: *Watch, gpa: Allocator, steps: []const *Step) !void {
|
||||||
|
const handles = &w.os.handles;
|
||||||
|
for (steps) |step| {
|
||||||
|
for (step.inputs.table.keys(), step.inputs.table.values()) |path, *files| {
|
||||||
|
const reaction_set = rs: {
|
||||||
|
const gop = try w.dir_table.getOrPut(gpa, path);
|
||||||
|
if (!gop.found_existing) {
|
||||||
|
const skip_open_dir = path.sub_path.len == 0;
|
||||||
|
const dir_fd = if (skip_open_dir)
|
||||||
|
path.root_dir.handle.fd
|
||||||
|
else
|
||||||
|
posix.openat(path.root_dir.handle.fd, path.sub_path, dir_open_flags, 0) catch |err| {
|
||||||
|
fatal("failed to open directory {}: {s}", .{ path, @errorName(err) });
|
||||||
|
};
|
||||||
|
// Empirically the dir has to stay open or else no events are triggered.
|
||||||
|
errdefer if (!skip_open_dir) posix.close(dir_fd);
|
||||||
|
const changes = [1]posix.Kevent{.{
|
||||||
|
.ident = @bitCast(@as(isize, dir_fd)),
|
||||||
|
.filter = std.c.EVFILT.VNODE,
|
||||||
|
.flags = EV.ADD | EV.ENABLE | EV.CLEAR,
|
||||||
|
.fflags = NOTE.DELETE | NOTE.WRITE | NOTE.RENAME | NOTE.REVOKE,
|
||||||
|
.data = 0,
|
||||||
|
.udata = gop.index,
|
||||||
|
}};
|
||||||
|
_ = try posix.kevent(w.os.kq_fd, &changes, &.{}, null);
|
||||||
|
assert(handles.len == gop.index);
|
||||||
|
try handles.append(gpa, .{
|
||||||
|
.rs = .{},
|
||||||
|
.dir_fd = if (skip_open_dir) -1 else dir_fd,
|
||||||
|
.ref_count = 1,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
handles.items(.ref_count)[gop.index] += 1;
|
||||||
|
}
|
||||||
|
break :rs &handles.items(.rs)[gop.index];
|
||||||
|
};
|
||||||
|
for (files.items) |basename| {
|
||||||
|
const gop = try reaction_set.getOrPut(gpa, basename);
|
||||||
|
if (!gop.found_existing) gop.value_ptr.* = .{};
|
||||||
|
try gop.value_ptr.put(gpa, step, w.generation);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
// Remove marks for files that are no longer inputs.
|
||||||
|
var i: usize = 0;
|
||||||
|
while (i < handles.len) {
|
||||||
|
{
|
||||||
|
const reaction_set = &handles.items(.rs)[i];
|
||||||
|
var step_set_i: usize = 0;
|
||||||
|
while (step_set_i < reaction_set.entries.len) {
|
||||||
|
const step_set = &reaction_set.values()[step_set_i];
|
||||||
|
var dirent_i: usize = 0;
|
||||||
|
while (dirent_i < step_set.entries.len) {
|
||||||
|
const generations = step_set.values();
|
||||||
|
if (generations[dirent_i] == w.generation) {
|
||||||
|
dirent_i += 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
step_set.swapRemoveAt(dirent_i);
|
||||||
|
}
|
||||||
|
if (step_set.entries.len > 0) {
|
||||||
|
step_set_i += 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
reaction_set.swapRemoveAt(step_set_i);
|
||||||
|
}
|
||||||
|
if (reaction_set.entries.len > 0) {
|
||||||
|
i += 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const ref_count_ptr = &handles.items(.ref_count)[i];
|
||||||
|
ref_count_ptr.* -= 1;
|
||||||
|
if (ref_count_ptr.* > 0) continue;
|
||||||
|
|
||||||
|
// If the sub_path == "" then this patch has already the
|
||||||
|
// dir fd that we need to use as the ident to remove the
|
||||||
|
// event. If it was opened above with openat() then we need
|
||||||
|
// to access that data via the dir_fd field.
|
||||||
|
const path = w.dir_table.keys()[i];
|
||||||
|
const dir_fd = if (path.sub_path.len == 0)
|
||||||
|
path.root_dir.handle.fd
|
||||||
|
else
|
||||||
|
handles.items(.dir_fd)[i];
|
||||||
|
assert(dir_fd != -1);
|
||||||
|
|
||||||
|
// The changelist also needs to update the udata field of the last
|
||||||
|
// event, since we are doing a swap remove, and we store the dir_table
|
||||||
|
// index in the udata field.
|
||||||
|
const last_dir_fd = fd: {
|
||||||
|
const last_path = w.dir_table.keys()[handles.len - 1];
|
||||||
|
const last_dir_fd = if (last_path.sub_path.len != 0)
|
||||||
|
last_path.root_dir.handle.fd
|
||||||
|
else
|
||||||
|
handles.items(.dir_fd)[i];
|
||||||
|
assert(last_dir_fd != -1);
|
||||||
|
break :fd last_dir_fd;
|
||||||
|
};
|
||||||
|
const changes = [_]posix.Kevent{
|
||||||
|
.{
|
||||||
|
.ident = @bitCast(@as(isize, dir_fd)),
|
||||||
|
.filter = std.c.EVFILT.VNODE,
|
||||||
|
.flags = EV.DELETE,
|
||||||
|
.fflags = 0,
|
||||||
|
.data = 0,
|
||||||
|
.udata = i,
|
||||||
|
},
|
||||||
|
.{
|
||||||
|
.ident = @bitCast(@as(isize, last_dir_fd)),
|
||||||
|
.filter = std.c.EVFILT.VNODE,
|
||||||
|
.flags = EV.ADD,
|
||||||
|
.fflags = NOTE.DELETE | NOTE.WRITE | NOTE.RENAME | NOTE.REVOKE,
|
||||||
|
.data = 0,
|
||||||
|
.udata = i,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
const filtered_changes = if (i == handles.len - 1) changes[0..1] else &changes;
|
||||||
|
_ = try posix.kevent(w.os.kq_fd, filtered_changes, &.{}, null);
|
||||||
|
if (path.sub_path.len != 0) posix.close(dir_fd);
|
||||||
|
|
||||||
|
w.dir_table.swapRemoveAt(i);
|
||||||
|
handles.swapRemove(i);
|
||||||
|
}
|
||||||
|
w.generation +%= 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn wait(w: *Watch, gpa: Allocator, timeout: Timeout) !WaitResult {
|
||||||
|
var timespec_buffer: posix.timespec = undefined;
|
||||||
|
var event_buffer: [100]posix.Kevent = undefined;
|
||||||
|
var n = try posix.kevent(w.os.kq_fd, &.{}, &event_buffer, timeout.toTimespec(×pec_buffer));
|
||||||
|
if (n == 0) return .timeout;
|
||||||
|
const reaction_sets = w.os.handles.items(.rs);
|
||||||
|
var any_dirty = markDirtySteps(gpa, reaction_sets, event_buffer[0..n], false);
|
||||||
|
timespec_buffer = .{ .sec = 0, .nsec = 0 };
|
||||||
|
while (n == event_buffer.len) {
|
||||||
|
n = try posix.kevent(w.os.kq_fd, &.{}, &event_buffer, ×pec_buffer);
|
||||||
|
if (n == 0) break;
|
||||||
|
any_dirty = markDirtySteps(gpa, reaction_sets, event_buffer[0..n], any_dirty);
|
||||||
|
}
|
||||||
|
return if (any_dirty) .dirty else .clean;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn markDirtySteps(
|
||||||
|
gpa: Allocator,
|
||||||
|
reaction_sets: []ReactionSet,
|
||||||
|
events: []const std.c.Kevent,
|
||||||
|
start_any_dirty: bool,
|
||||||
|
) bool {
|
||||||
|
var any_dirty = start_any_dirty;
|
||||||
|
for (events) |event| {
|
||||||
|
const index: usize = @intCast(event.udata);
|
||||||
|
const reaction_set = &reaction_sets[index];
|
||||||
|
// If we knew the basename of the changed file, here we would
|
||||||
|
// mark only the step set dirty, and possibly the glob set:
|
||||||
|
//if (reaction_set.getPtr(".")) |glob_set|
|
||||||
|
// any_dirty = markStepSetDirty(gpa, glob_set, any_dirty);
|
||||||
|
//if (reaction_set.getPtr(file_name)) |step_set|
|
||||||
|
// any_dirty = markStepSetDirty(gpa, step_set, any_dirty);
|
||||||
|
// However we don't know the file name so just mark all the
|
||||||
|
// sets dirty for this directory.
|
||||||
|
for (reaction_set.values()) |*step_set| {
|
||||||
|
any_dirty = markStepSetDirty(gpa, step_set, any_dirty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return any_dirty;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
else => void,
|
else => void,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn init() !Watch {
|
pub fn init() !Watch {
|
||||||
switch (builtin.os.tag) {
|
return Os.init();
|
||||||
.linux => {
|
|
||||||
const fan_fd = std.posix.fanotify_init(.{
|
|
||||||
.CLASS = .NOTIF,
|
|
||||||
.CLOEXEC = true,
|
|
||||||
.NONBLOCK = true,
|
|
||||||
.REPORT_NAME = true,
|
|
||||||
.REPORT_DIR_FID = true,
|
|
||||||
.REPORT_FID = true,
|
|
||||||
.REPORT_TARGET_FID = true,
|
|
||||||
}, 0) catch |err| switch (err) {
|
|
||||||
error.UnsupportedFlags => fatal("fanotify_init failed due to old kernel; requires 5.17+", .{}),
|
|
||||||
else => |e| return e,
|
|
||||||
};
|
|
||||||
return .{
|
|
||||||
.dir_table = .{},
|
|
||||||
.os = switch (builtin.os.tag) {
|
|
||||||
.linux => .{
|
|
||||||
.handle_table = .{},
|
|
||||||
.poll_fds = .{
|
|
||||||
.{
|
|
||||||
.fd = fan_fd,
|
|
||||||
.events = std.posix.POLL.IN,
|
|
||||||
.revents = undefined,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
else => {},
|
|
||||||
},
|
|
||||||
.generation = 0,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
.windows => {
|
|
||||||
return .{
|
|
||||||
.dir_table = .{},
|
|
||||||
.os = switch (builtin.os.tag) {
|
|
||||||
.windows => .{
|
|
||||||
.handle_table = .{},
|
|
||||||
.dir_list = .{},
|
|
||||||
.io_cp = null,
|
|
||||||
},
|
|
||||||
else => {},
|
|
||||||
},
|
|
||||||
.generation = 0,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
else => @panic("unimplemented"),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const Match = struct {
|
pub const Match = struct {
|
||||||
@ -609,10 +867,7 @@ fn markStepSetDirty(gpa: Allocator, step_set: *StepSet, any_dirty: bool) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn update(w: *Watch, gpa: Allocator, steps: []const *Step) !void {
|
pub fn update(w: *Watch, gpa: Allocator, steps: []const *Step) !void {
|
||||||
switch (builtin.os.tag) {
|
return Os.update(w, gpa, steps);
|
||||||
.linux, .windows => return Os.update(w, gpa, steps),
|
|
||||||
else => @compileError("unimplemented"),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const Timeout = union(enum) {
|
pub const Timeout = union(enum) {
|
||||||
@ -625,6 +880,20 @@ pub const Timeout = union(enum) {
|
|||||||
.ms => |ms| ms,
|
.ms => |ms| ms,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn toTimespec(t: Timeout, buf: *std.posix.timespec) ?*std.posix.timespec {
|
||||||
|
return switch (t) {
|
||||||
|
.none => null,
|
||||||
|
.ms => |ms_u16| {
|
||||||
|
const ms: isize = ms_u16;
|
||||||
|
buf.* = .{
|
||||||
|
.sec = @divTrunc(ms, std.time.ms_per_s),
|
||||||
|
.nsec = @rem(ms, std.time.ms_per_s) * std.time.ns_per_ms,
|
||||||
|
};
|
||||||
|
return buf;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const WaitResult = enum {
|
pub const WaitResult = enum {
|
||||||
@ -638,46 +907,5 @@ pub const WaitResult = enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
pub fn wait(w: *Watch, gpa: Allocator, timeout: Timeout) !WaitResult {
|
pub fn wait(w: *Watch, gpa: Allocator, timeout: Timeout) !WaitResult {
|
||||||
switch (builtin.os.tag) {
|
return Os.wait(w, gpa, timeout);
|
||||||
.linux => {
|
|
||||||
const events_len = try std.posix.poll(&w.os.poll_fds, timeout.to_i32_ms());
|
|
||||||
return if (events_len == 0)
|
|
||||||
.timeout
|
|
||||||
else if (try Os.markDirtySteps(w, gpa))
|
|
||||||
.dirty
|
|
||||||
else
|
|
||||||
.clean;
|
|
||||||
},
|
|
||||||
.windows => {
|
|
||||||
var bytes_transferred: std.os.windows.DWORD = undefined;
|
|
||||||
var key: usize = undefined;
|
|
||||||
var overlapped_ptr: ?*std.os.windows.OVERLAPPED = undefined;
|
|
||||||
return while (true) switch (std.os.windows.GetQueuedCompletionStatus(
|
|
||||||
w.os.io_cp.?,
|
|
||||||
&bytes_transferred,
|
|
||||||
&key,
|
|
||||||
&overlapped_ptr,
|
|
||||||
@bitCast(timeout.to_i32_ms()),
|
|
||||||
)) {
|
|
||||||
.Normal => {
|
|
||||||
if (bytes_transferred == 0)
|
|
||||||
break error.Unexpected;
|
|
||||||
|
|
||||||
// This 'orelse' detects a race condition that happens when we receive a
|
|
||||||
// completion notification for a directory that no longer exists in our list.
|
|
||||||
const dir = w.os.dir_list.get(key) orelse break .clean;
|
|
||||||
|
|
||||||
break if (try Os.markDirtySteps(w, gpa, dir))
|
|
||||||
.dirty
|
|
||||||
else
|
|
||||||
.clean;
|
|
||||||
},
|
|
||||||
.Timeout => break .timeout,
|
|
||||||
// This status is issued because CancelIo was called, skip and try again.
|
|
||||||
.Cancelled => continue,
|
|
||||||
else => break error.Unexpected,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
else => @compileError("unimplemented"),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user