-
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
Change to non-line buffered output if output is not a TTY #64861
Conversation
r? @KodrAus (rust_highfive has picked a reviewer for you, use r? to override) |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
8baed87
to
612524d
Compare
This matches glibc behavior. This is determined using the `isatty` function on Unixes, and not attempted at all for other operating systems. Fixes rust-lang#60673.
612524d
to
fb48c55
Compare
I get a 4x speed up for the worst case of the old implementation: fn main() {
for _ in 0..(1<<20) {
println!("y");
}
}
The old program is doing 1048576 Changing the program to use an infinite loop, I get a throughput of 3MB/s vs 20MB/s. |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
An interesting question here is what we should do
This doesn't output the |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
2436735
to
5279048
Compare
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.
Thanks for working on this @tbu-!
I've left a few comments. I think we can punt on Windows for a start if you're not too familiar with the platform :)
StdioReader::Fake => Ok(0), | ||
} | ||
} | ||
#[inline] |
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.
Is this inline necessary?
pub fn should_be_line_buffered(&self) -> bool { | ||
// FIXME: Fill in. I don't know how to check whether output is | ||
// redirected on Windows. | ||
true |
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.
For UWP I think we can also use GetConsoleMode
.
pub fn should_be_line_buffered(&self) -> bool { | ||
// FIXME: Fill in. I don't know how to check whether output is | ||
// redirected on Windows. | ||
true |
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.
On Windows there's a GetConsoleMode
function you can call. It's used in the atty
library's Windows implementation. It looks like that crate also has some more complex heuristics for Windows but those might not be so important here.
/// A writer that can either be line-buffered, buffered, unbuffered or fake. | ||
/// | ||
/// If it is fake, all outputs just succeed and are dropped silently. | ||
enum StdioWriter<W: Write> { |
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.
There was a comment in the original FIXME
suggesting we should call flush
when dropping the handle if we're panicking. Did you have any thoughts on this @tbu-?
StdioWriter::LineBuffered(i) => i.write_vectored(bufs), | ||
StdioWriter::Buffered(i) => i.write_vectored(bufs), | ||
StdioWriter::Unbuffered(i) => i.write_vectored(bufs), | ||
StdioWriter::Fake => Ok(bufs.iter().map(|b| b.len()).sum()), |
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.
This sum could probably wrap around, seems like it should saturate instead (not sure what's reasonable), or return the first non-empty len.
@tbu- waiting for you to answer the review |
Ping from Triage: @tbu- any updates? |
Too little time right now. |
This matches glibc behavior.
This is determined using the
isatty
function on Unixes, and notattempted at all for other operating systems.
Fixes #60673.