Skip to content
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

Intercept stdout so rogue printlns still work correctly #681

Open
JakeWharton opened this issue Feb 6, 2025 · 3 comments
Open

Intercept stdout so rogue printlns still work correctly #681

JakeWharton opened this issue Feb 6, 2025 · 3 comments
Labels

Comments

@JakeWharton
Copy link
Owner

No description provided.

@JakeWharton
Copy link
Owner Author

I think we'll do this as part of raw mode, since that will screw up your trailing newlines on a println anyway (you need a full CRLF).

On JVM we capture stdout and replace with our own thing. Flip back on close.

On native POSIX I think we can do a freopen to a pipe that we also read. Not quite sure how to flip back.

On native Windows we can SetStdHandle to an anonymous pipe. Flip back on close.

@JakeWharton
Copy link
Owner Author

Probably blocked on doing this until we fix #508 since reads from these will need to flow into static logs.

@JakeWharton
Copy link
Owner Author

What happens when you write hello\nworld (note the lack of trailing newline)? Do we output "hello\n" and then just wait for a newline before writing "world\n" some frame later?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant