A proposed WebAssembly System Interface API.
WASI I/O is currently in Phase 3.
- Dan Gohman
WASI I/O must have host implementations which can pass the testsuite on at least Windows, macOS, and Linux.
WASI I/O must have at least two complete independent implementations.
- Introduction
- Goals [or Motivating Use Cases, or Scenarios]
- Non-goals
- API walk-through
- Detailed design discussion
- Stakeholder Interest & Feedback
- References & acknowledgements
Wasi I/O is an API providing I/O stream abstractions. There are two
types, input-stream
, and output-stream
, which support read
and
write
, respectively, as well as a number of utility functions.
- Be usable by wasi-libc to implement POSIX-like file and socket APIs.
- Support many different kinds of host streams, including files, sockets, pipes, character devices, and more.
- Support for async. That will be addressed in the component-model async design, where we can have the benefit of tighter integration with language bindings.
- Bidirectional streams.
fn copy_data(input: InputStream, output: OutputStream) -> Result<(), StreamError> {
const BUFFER_LEN: usize = 4096;
let wait_input = [subscribe_to_input_stream(input)];
let wait_output = [subscribe_to_output_stream(output)];
loop {
let (mut data, mut eos) = input.read(BUFFER_LEN)?;
// If we didn't get any data promptly, wait for it.
if data.len() == 0 {
let _ = poll_list(&wait_input[..]);
(data, eos) = input.read(BUFFER_LEN)?;
}
let mut remaining = &data[..];
while !remaining.is_empty() {
let mut num_written = output.write(remaining)?;
// If we didn't put any data promptly, wait for it.
if num_written == 0 {
let _ = poll_list(&wait_output[..]);
num_written = output.write(remaining)?;
}
remaining = &remaining[num_written..];
}
if eos {
break;
}
}
Ok(())
}
fn copy_data(input: InputStream, output: OutputStream) -> Result<(), StreamError> {
let wait_input = [subscribe_to_input_stream(input)];
loop {
let (num_copied, eos) = output.splice(input, u64::MAX)?;
if eos {
break;
}
// If we didn't get any data promptly, wait for it.
if num_copied == 0 {
let _ = poll_list(&wait_input[..]);
}
}
Ok(())
}
fn copy_data(input: InputStream, output: OutputStream) -> Result<(), StreamError> {
output.forward(input)?;
Ok(())
}
This may be something we'll need to revisit, but currently, the way non-blocking streams work is that they perform reads or writes that read or write fewer bytes than requested.
This is to make the API independent of the address space size of the caller. Callees are still advised to avoid using sizes that are larger than their instances will be able to allocate.
This seems like it'll be a common use case, and forward
addresses it in a very simple way.
Wasi-io is a dependency of wasi-filesystem, wasi-sockets, and wasi-http, and is a foundational piece of WASI Preview 2.
Many thanks for valuable feedback and advice from:
- Thanks to Luke Wagner for many design functions and the design of the component-model async streams which inform the design here.
- Thanks to Calvin Prewitt for the idea to include a
forward
function in this API.