Description
Proposal
Problem statement
I would like to do I/O in a no_std
context, and it would be nice if I could use the standard library's existing safe abstractions for reading into an uninitialized buffer.
Motivating examples or use cases
First case: compiling to WASM with no_std
to avoid the large size and incomplete implementation of std
for wasm32
. I want to use BorrowedBuf
/ BorrowedCursor
as part of the interface between the WASM module and the host.
Second case: binaries for the Linux early boot environment (initrd), which has tight size constraints and therefore works best with no_std
binaries that do I/O via raw syscall. I want to use BorrowedBuf
/ BorrowedCursor
in the API that wraps SYS_read
/ SYS_readv
.
Solution sketch
Just move the existing implementation from library/std/src/io/readbuf.rs
into library/core/src/io/
. Maybe give it a different tracking feature like core_io_borrowed_buf
so it could be stabilized separately from feature(read_buf)
.
It's not a big diff:
$ git diff --stat
library/{std/src/io/readbuf.rs => core/src/io/borrowed_buf.rs} | 13 -------------
library/{std/src/io/readbuf => core/src/io/borrowed_buf}/tests.rs | 0
library/core/src/io/mod.rs | 6 ++++++
library/core/src/lib.rs | 2 ++
library/std/src/io/impls.rs | 13 +++++++++++++
library/std/src/io/mod.rs | 3 +--
library/std/src/lib.rs | 1 +
7 files changed, 23 insertions(+), 15 deletions(-)
Alternatives
Do nothing?
Links and related work
rust-lang/rust#78485: Tracking Issue for RFC 2930 (feature read_buf
)
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.