mirror of
https://github.com/ziglang/zig.git
synced 2024-12-03 18:38:45 +00:00
f26dda2117
Most of this migration was performed automatically with `zig fmt`. There were a few exceptions which I had to manually fix: * `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten * `@truncate`'s fixup is incorrect for vectors * Test cases are not formatted, and their error locations change
437 lines
16 KiB
Zig
437 lines
16 KiB
Zig
const std = @import("std.zig");
|
|
const builtin = @import("builtin");
|
|
const root = @import("root");
|
|
const c = std.c;
|
|
|
|
const math = std.math;
|
|
const assert = std.debug.assert;
|
|
const os = std.os;
|
|
const fs = std.fs;
|
|
const mem = std.mem;
|
|
const meta = std.meta;
|
|
const File = std.fs.File;
|
|
|
|
pub const Mode = enum {
|
|
/// I/O operates normally, waiting for the operating system syscalls to complete.
|
|
blocking,
|
|
|
|
/// I/O functions are generated async and rely on a global event loop. Event-based I/O.
|
|
evented,
|
|
};
|
|
|
|
const mode = std.options.io_mode;
|
|
pub const is_async = mode != .blocking;
|
|
|
|
/// This is an enum value to use for I/O mode at runtime, since it takes up zero bytes at runtime,
|
|
/// and makes expressions comptime-known when `is_async` is `false`.
|
|
pub const ModeOverride = if (is_async) Mode else enum { blocking };
|
|
pub const default_mode: ModeOverride = if (is_async) Mode.evented else .blocking;
|
|
|
|
fn getStdOutHandle() os.fd_t {
|
|
if (builtin.os.tag == .windows) {
|
|
if (builtin.zig_backend == .stage2_aarch64) {
|
|
// TODO: this is just a temporary workaround until we advance aarch64 backend further along.
|
|
return os.windows.GetStdHandle(os.windows.STD_OUTPUT_HANDLE) catch os.windows.INVALID_HANDLE_VALUE;
|
|
}
|
|
return os.windows.peb().ProcessParameters.hStdOutput;
|
|
}
|
|
|
|
if (@hasDecl(root, "os") and @hasDecl(root.os, "io") and @hasDecl(root.os.io, "getStdOutHandle")) {
|
|
return root.os.io.getStdOutHandle();
|
|
}
|
|
|
|
return os.STDOUT_FILENO;
|
|
}
|
|
|
|
/// TODO: async stdout on windows without a dedicated thread.
|
|
/// https://github.com/ziglang/zig/pull/4816#issuecomment-604521023
|
|
pub fn getStdOut() File {
|
|
return File{
|
|
.handle = getStdOutHandle(),
|
|
.capable_io_mode = .blocking,
|
|
.intended_io_mode = default_mode,
|
|
};
|
|
}
|
|
|
|
fn getStdErrHandle() os.fd_t {
|
|
if (builtin.os.tag == .windows) {
|
|
if (builtin.zig_backend == .stage2_aarch64) {
|
|
// TODO: this is just a temporary workaround until we advance aarch64 backend further along.
|
|
return os.windows.GetStdHandle(os.windows.STD_ERROR_HANDLE) catch os.windows.INVALID_HANDLE_VALUE;
|
|
}
|
|
return os.windows.peb().ProcessParameters.hStdError;
|
|
}
|
|
|
|
if (@hasDecl(root, "os") and @hasDecl(root.os, "io") and @hasDecl(root.os.io, "getStdErrHandle")) {
|
|
return root.os.io.getStdErrHandle();
|
|
}
|
|
|
|
return os.STDERR_FILENO;
|
|
}
|
|
|
|
/// This returns a `File` that is configured to block with every write, in order
|
|
/// to facilitate better debugging. This can be changed by modifying the `intended_io_mode` field.
|
|
pub fn getStdErr() File {
|
|
return File{
|
|
.handle = getStdErrHandle(),
|
|
.capable_io_mode = .blocking,
|
|
.intended_io_mode = .blocking,
|
|
};
|
|
}
|
|
|
|
fn getStdInHandle() os.fd_t {
|
|
if (builtin.os.tag == .windows) {
|
|
if (builtin.zig_backend == .stage2_aarch64) {
|
|
// TODO: this is just a temporary workaround until we advance aarch64 backend further along.
|
|
return os.windows.GetStdHandle(os.windows.STD_INPUT_HANDLE) catch os.windows.INVALID_HANDLE_VALUE;
|
|
}
|
|
return os.windows.peb().ProcessParameters.hStdInput;
|
|
}
|
|
|
|
if (@hasDecl(root, "os") and @hasDecl(root.os, "io") and @hasDecl(root.os.io, "getStdInHandle")) {
|
|
return root.os.io.getStdInHandle();
|
|
}
|
|
|
|
return os.STDIN_FILENO;
|
|
}
|
|
|
|
/// TODO: async stdin on windows without a dedicated thread.
|
|
/// https://github.com/ziglang/zig/pull/4816#issuecomment-604521023
|
|
pub fn getStdIn() File {
|
|
return File{
|
|
.handle = getStdInHandle(),
|
|
.capable_io_mode = .blocking,
|
|
.intended_io_mode = default_mode,
|
|
};
|
|
}
|
|
|
|
pub const Reader = @import("io/reader.zig").Reader;
|
|
pub const Writer = @import("io/writer.zig").Writer;
|
|
pub const SeekableStream = @import("io/seekable_stream.zig").SeekableStream;
|
|
|
|
pub const BufferedWriter = @import("io/buffered_writer.zig").BufferedWriter;
|
|
pub const bufferedWriter = @import("io/buffered_writer.zig").bufferedWriter;
|
|
|
|
pub const BufferedReader = @import("io/buffered_reader.zig").BufferedReader;
|
|
pub const bufferedReader = @import("io/buffered_reader.zig").bufferedReader;
|
|
pub const bufferedReaderSize = @import("io/buffered_reader.zig").bufferedReaderSize;
|
|
|
|
pub const PeekStream = @import("io/peek_stream.zig").PeekStream;
|
|
pub const peekStream = @import("io/peek_stream.zig").peekStream;
|
|
|
|
pub const FixedBufferStream = @import("io/fixed_buffer_stream.zig").FixedBufferStream;
|
|
pub const fixedBufferStream = @import("io/fixed_buffer_stream.zig").fixedBufferStream;
|
|
|
|
pub const CWriter = @import("io/c_writer.zig").CWriter;
|
|
pub const cWriter = @import("io/c_writer.zig").cWriter;
|
|
|
|
pub const LimitedReader = @import("io/limited_reader.zig").LimitedReader;
|
|
pub const limitedReader = @import("io/limited_reader.zig").limitedReader;
|
|
|
|
pub const CountingWriter = @import("io/counting_writer.zig").CountingWriter;
|
|
pub const countingWriter = @import("io/counting_writer.zig").countingWriter;
|
|
pub const CountingReader = @import("io/counting_reader.zig").CountingReader;
|
|
pub const countingReader = @import("io/counting_reader.zig").countingReader;
|
|
|
|
pub const MultiWriter = @import("io/multi_writer.zig").MultiWriter;
|
|
pub const multiWriter = @import("io/multi_writer.zig").multiWriter;
|
|
|
|
pub const BitReader = @import("io/bit_reader.zig").BitReader;
|
|
pub const bitReader = @import("io/bit_reader.zig").bitReader;
|
|
|
|
pub const BitWriter = @import("io/bit_writer.zig").BitWriter;
|
|
pub const bitWriter = @import("io/bit_writer.zig").bitWriter;
|
|
|
|
pub const ChangeDetectionStream = @import("io/change_detection_stream.zig").ChangeDetectionStream;
|
|
pub const changeDetectionStream = @import("io/change_detection_stream.zig").changeDetectionStream;
|
|
|
|
pub const FindByteWriter = @import("io/find_byte_writer.zig").FindByteWriter;
|
|
pub const findByteWriter = @import("io/find_byte_writer.zig").findByteWriter;
|
|
|
|
pub const BufferedAtomicFile = @import("io/buffered_atomic_file.zig").BufferedAtomicFile;
|
|
|
|
pub const StreamSource = @import("io/stream_source.zig").StreamSource;
|
|
|
|
pub const tty = @import("io/tty.zig");
|
|
|
|
/// A Writer that doesn't write to anything.
|
|
pub const null_writer = @as(NullWriter, .{ .context = {} });
|
|
|
|
const NullWriter = Writer(void, error{}, dummyWrite);
|
|
fn dummyWrite(context: void, data: []const u8) error{}!usize {
|
|
_ = context;
|
|
return data.len;
|
|
}
|
|
|
|
test "null_writer" {
|
|
null_writer.writeAll("yay" ** 10) catch |err| switch (err) {};
|
|
}
|
|
|
|
pub fn poll(
|
|
allocator: std.mem.Allocator,
|
|
comptime StreamEnum: type,
|
|
files: PollFiles(StreamEnum),
|
|
) Poller(StreamEnum) {
|
|
const enum_fields = @typeInfo(StreamEnum).Enum.fields;
|
|
var result: Poller(StreamEnum) = undefined;
|
|
|
|
if (builtin.os.tag == .windows) result.windows = .{
|
|
.first_read_done = false,
|
|
.overlapped = [1]os.windows.OVERLAPPED{
|
|
mem.zeroes(os.windows.OVERLAPPED),
|
|
} ** enum_fields.len,
|
|
.active = .{
|
|
.count = 0,
|
|
.handles_buf = undefined,
|
|
.stream_map = undefined,
|
|
},
|
|
};
|
|
|
|
inline for (0..enum_fields.len) |i| {
|
|
result.fifos[i] = .{
|
|
.allocator = allocator,
|
|
.buf = &.{},
|
|
.head = 0,
|
|
.count = 0,
|
|
};
|
|
if (builtin.os.tag == .windows) {
|
|
result.windows.active.handles_buf[i] = @field(files, enum_fields[i].name).handle;
|
|
} else {
|
|
result.poll_fds[i] = .{
|
|
.fd = @field(files, enum_fields[i].name).handle,
|
|
.events = os.POLL.IN,
|
|
.revents = undefined,
|
|
};
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
pub const PollFifo = std.fifo.LinearFifo(u8, .Dynamic);
|
|
|
|
pub fn Poller(comptime StreamEnum: type) type {
|
|
return struct {
|
|
const enum_fields = @typeInfo(StreamEnum).Enum.fields;
|
|
const PollFd = if (builtin.os.tag == .windows) void else std.os.pollfd;
|
|
|
|
fifos: [enum_fields.len]PollFifo,
|
|
poll_fds: [enum_fields.len]PollFd,
|
|
windows: if (builtin.os.tag == .windows) struct {
|
|
first_read_done: bool,
|
|
overlapped: [enum_fields.len]os.windows.OVERLAPPED,
|
|
active: struct {
|
|
count: math.IntFittingRange(0, enum_fields.len),
|
|
handles_buf: [enum_fields.len]os.windows.HANDLE,
|
|
stream_map: [enum_fields.len]StreamEnum,
|
|
|
|
pub fn removeAt(self: *@This(), index: u32) void {
|
|
std.debug.assert(index < self.count);
|
|
for (index + 1..self.count) |i| {
|
|
self.handles_buf[i - 1] = self.handles_buf[i];
|
|
self.stream_map[i - 1] = self.stream_map[i];
|
|
}
|
|
self.count -= 1;
|
|
}
|
|
},
|
|
} else void,
|
|
|
|
const Self = @This();
|
|
|
|
pub fn deinit(self: *Self) void {
|
|
if (builtin.os.tag == .windows) {
|
|
// cancel any pending IO to prevent clobbering OVERLAPPED value
|
|
for (self.windows.active.handles_buf[0..self.windows.active.count]) |h| {
|
|
_ = os.windows.kernel32.CancelIo(h);
|
|
}
|
|
}
|
|
inline for (&self.fifos) |*q| q.deinit();
|
|
self.* = undefined;
|
|
}
|
|
|
|
pub fn poll(self: *Self) !bool {
|
|
if (builtin.os.tag == .windows) {
|
|
return pollWindows(self);
|
|
} else {
|
|
return pollPosix(self);
|
|
}
|
|
}
|
|
|
|
pub inline fn fifo(self: *Self, comptime which: StreamEnum) *PollFifo {
|
|
return &self.fifos[@intFromEnum(which)];
|
|
}
|
|
|
|
fn pollWindows(self: *Self) !bool {
|
|
const bump_amt = 512;
|
|
|
|
if (!self.windows.first_read_done) {
|
|
// Windows Async IO requires an initial call to ReadFile before waiting on the handle
|
|
for (0..enum_fields.len) |i| {
|
|
const handle = self.windows.active.handles_buf[i];
|
|
switch (try windowsAsyncRead(
|
|
handle,
|
|
&self.windows.overlapped[i],
|
|
&self.fifos[i],
|
|
bump_amt,
|
|
)) {
|
|
.pending => {
|
|
self.windows.active.handles_buf[self.windows.active.count] = handle;
|
|
self.windows.active.stream_map[self.windows.active.count] = @as(StreamEnum, @enumFromInt(i));
|
|
self.windows.active.count += 1;
|
|
},
|
|
.closed => {}, // don't add to the wait_objects list
|
|
}
|
|
}
|
|
self.windows.first_read_done = true;
|
|
}
|
|
|
|
while (true) {
|
|
if (self.windows.active.count == 0) return false;
|
|
|
|
const status = os.windows.kernel32.WaitForMultipleObjects(
|
|
self.windows.active.count,
|
|
&self.windows.active.handles_buf,
|
|
0,
|
|
os.windows.INFINITE,
|
|
);
|
|
if (status == os.windows.WAIT_FAILED)
|
|
return os.windows.unexpectedError(os.windows.kernel32.GetLastError());
|
|
|
|
if (status < os.windows.WAIT_OBJECT_0 or status > os.windows.WAIT_OBJECT_0 + enum_fields.len - 1)
|
|
unreachable;
|
|
|
|
const active_idx = status - os.windows.WAIT_OBJECT_0;
|
|
|
|
const handle = self.windows.active.handles_buf[active_idx];
|
|
const stream_idx = @intFromEnum(self.windows.active.stream_map[active_idx]);
|
|
var read_bytes: u32 = undefined;
|
|
if (0 == os.windows.kernel32.GetOverlappedResult(
|
|
handle,
|
|
&self.windows.overlapped[stream_idx],
|
|
&read_bytes,
|
|
0,
|
|
)) switch (os.windows.kernel32.GetLastError()) {
|
|
.BROKEN_PIPE => {
|
|
self.windows.active.removeAt(active_idx);
|
|
continue;
|
|
},
|
|
else => |err| return os.windows.unexpectedError(err),
|
|
};
|
|
|
|
self.fifos[stream_idx].update(read_bytes);
|
|
|
|
switch (try windowsAsyncRead(
|
|
handle,
|
|
&self.windows.overlapped[stream_idx],
|
|
&self.fifos[stream_idx],
|
|
bump_amt,
|
|
)) {
|
|
.pending => {},
|
|
.closed => self.windows.active.removeAt(active_idx),
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
fn pollPosix(self: *Self) !bool {
|
|
// We ask for ensureUnusedCapacity with this much extra space. This
|
|
// has more of an effect on small reads because once the reads
|
|
// start to get larger the amount of space an ArrayList will
|
|
// allocate grows exponentially.
|
|
const bump_amt = 512;
|
|
|
|
const err_mask = os.POLL.ERR | os.POLL.NVAL | os.POLL.HUP;
|
|
|
|
const events_len = try os.poll(&self.poll_fds, std.math.maxInt(i32));
|
|
if (events_len == 0) {
|
|
for (self.poll_fds) |poll_fd| {
|
|
if (poll_fd.fd != -1) return true;
|
|
} else return false;
|
|
}
|
|
|
|
var keep_polling = false;
|
|
inline for (&self.poll_fds, &self.fifos) |*poll_fd, *q| {
|
|
// Try reading whatever is available before checking the error
|
|
// conditions.
|
|
// It's still possible to read after a POLL.HUP is received,
|
|
// always check if there's some data waiting to be read first.
|
|
if (poll_fd.revents & os.POLL.IN != 0) {
|
|
const buf = try q.writableWithSize(bump_amt);
|
|
const amt = try os.read(poll_fd.fd, buf);
|
|
q.update(amt);
|
|
if (amt == 0) {
|
|
// Remove the fd when the EOF condition is met.
|
|
poll_fd.fd = -1;
|
|
} else {
|
|
keep_polling = true;
|
|
}
|
|
} else if (poll_fd.revents & err_mask != 0) {
|
|
// Exclude the fds that signaled an error.
|
|
poll_fd.fd = -1;
|
|
} else if (poll_fd.fd != -1) {
|
|
keep_polling = true;
|
|
}
|
|
}
|
|
return keep_polling;
|
|
}
|
|
};
|
|
}
|
|
|
|
fn windowsAsyncRead(
|
|
handle: os.windows.HANDLE,
|
|
overlapped: *os.windows.OVERLAPPED,
|
|
fifo: *PollFifo,
|
|
bump_amt: usize,
|
|
) !enum { pending, closed } {
|
|
while (true) {
|
|
const buf = try fifo.writableWithSize(bump_amt);
|
|
var read_bytes: u32 = undefined;
|
|
const read_result = os.windows.kernel32.ReadFile(handle, buf.ptr, math.cast(u32, buf.len) orelse math.maxInt(u32), &read_bytes, overlapped);
|
|
if (read_result == 0) return switch (os.windows.kernel32.GetLastError()) {
|
|
.IO_PENDING => .pending,
|
|
.BROKEN_PIPE => .closed,
|
|
else => |err| os.windows.unexpectedError(err),
|
|
};
|
|
fifo.update(read_bytes);
|
|
}
|
|
}
|
|
|
|
/// Given an enum, returns a struct with fields of that enum, each field
|
|
/// representing an I/O stream for polling.
|
|
pub fn PollFiles(comptime StreamEnum: type) type {
|
|
const enum_fields = @typeInfo(StreamEnum).Enum.fields;
|
|
var struct_fields: [enum_fields.len]std.builtin.Type.StructField = undefined;
|
|
for (&struct_fields, enum_fields) |*struct_field, enum_field| {
|
|
struct_field.* = .{
|
|
.name = enum_field.name,
|
|
.type = fs.File,
|
|
.default_value = null,
|
|
.is_comptime = false,
|
|
.alignment = @alignOf(fs.File),
|
|
};
|
|
}
|
|
return @Type(.{ .Struct = .{
|
|
.layout = .Auto,
|
|
.fields = &struct_fields,
|
|
.decls = &.{},
|
|
.is_tuple = false,
|
|
} });
|
|
}
|
|
|
|
test {
|
|
_ = @import("io/bit_reader.zig");
|
|
_ = @import("io/bit_writer.zig");
|
|
_ = @import("io/buffered_atomic_file.zig");
|
|
_ = @import("io/buffered_reader.zig");
|
|
_ = @import("io/buffered_writer.zig");
|
|
_ = @import("io/c_writer.zig");
|
|
_ = @import("io/counting_writer.zig");
|
|
_ = @import("io/counting_reader.zig");
|
|
_ = @import("io/fixed_buffer_stream.zig");
|
|
_ = @import("io/reader.zig");
|
|
_ = @import("io/writer.zig");
|
|
_ = @import("io/peek_stream.zig");
|
|
_ = @import("io/seekable_stream.zig");
|
|
_ = @import("io/stream_source.zig");
|
|
_ = @import("io/test.zig");
|
|
}
|