-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider moving parts of libstd::io to libcore #15568
Comments
If we had I think this would make the majority of the change user-invisible. |
I have toyed with the idea of moving One of the major problems I am unsure of how to deal with is In general, I've been wary about having a |
My personal opinion is that having the reader/writer traits parameterized by an error is a non-starter. Using the encodable/decodable traits are quite painful to have to have an extra type parameter all over the place, and the reader/writer traits are even more common. To make a change such as that I would rather wait for something like associated items or the typedef that @huonw mentioned. |
The IO reform RFC should be taking care of this now. |
Replace format-args parser with upstream fork Turns out we can't bump rustc_abi right now because it got its generics removed accidentally rust-lang#107163
A decent chunk of
libstd::io
looks like it could be moved over tolibcore
, which would be really handy for low level systems. While this would ultimately be convenient, there'd be some transitional pain making this move. The biggest source would be that'd we'd have to parameterize theReader
/Writer
types on the error. We'd also have to convert a couple of the default methods over into generic functions to make this work.Here are the things that I believe could be moved over:
RefReader
,Writer
,RefWriter
,Stream
,Buffer
,Seek
,Listener
,Acceptor
,IncomingConnection
std::io::extensions
std::io::mem::BufWriter
andstd::io::mem::BufReader
std::io::util::LimitReader
,std::io::util::NullWriter
,std::io::util::ZeroReader
,std::io::util::NullReader
,std::io::util::ChainedReader
,std::io::util::TeeReader
,std::io::util::IterReader
.With some modification:
Reader
andBuffer
with these methods converted into generic functions:Reader::push
,Reader::push_at_least
,Reader::read_exact
,Reader::read_to_end
, andReader::read_to_string
,Buffer::read_line
,Buffer::read_until
FileMode
,FileAccess
,FileType
,FileStat
, andUnstableFileStat
, but it might be better to leave os-specific stuff inlibstd
.There are a couple that we could probably rewrite to not use things like
Vec
, such asstd::io::util::MultiWriter
.The text was updated successfully, but these errors were encountered: