-
Notifications
You must be signed in to change notification settings - Fork 636
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
async LineWriter
fix #2131
#2477
async LineWriter
fix #2131
#2477
Conversation
I'm having trouble on handling |
doing so saves me thinking on how to deal with pin and fields
- translate `std::io::LineWriter`'s unit test - rename `inner` field to `buf_writer` to avoid confusion with `BufWriter::inner` - the above lead me to re-write the logic accordingly - add methods to access `buf_writer`'s fields - sorting out types, cannot compile for now
- default `poll_write_vectored` behaves differently of `std::io::LineWriter::write_vectored` - ported from https://github.com/rust-lang/rust/blob/673d0db5e393e9c64897005b470bfeb6d5aec61b/library/std/src/io/buffered/tests.rs - that code has lots of comments, you may wanna check it out - translated tests for `std` 's `line_vectored` - added `inner_poll_write_vectored` to keep code explicit and verbose
I didn't finish porting the last unit test, but it should be good as it is right now. I rather not keep this going on for too long Maybe someone else will add it in the near future. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks @FelipeLema!
Published in 0.3.18. |
fix #2131
This is based on
std::io::LineWriter
and itsLineWriterShim
sidekick