-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
4799358: BufferedOutputStream.write() should immediately throw IOException on closed stream #15361
Conversation
…ion on closed stream
👋 Welcome back vtewari! A progress list of the required criteria for merging this PR into |
Webrevs
|
/csr |
@AlanBateman has indicated that a compatibility and specification (CSR) request is needed for this pull request. @vyommani please create a CSR request for issue JDK-4799358 with the correct fix version. This pull request cannot be integrated until the CSR request is approved. |
|
* @return {@code true} if, and only if, this stream is open | ||
*/ | ||
boolean isOpen(){ | ||
return !closed; |
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.
Wouldn't you want synchronized (closeLock)
here?
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.
'closed' is volatile, we don't need synchronized (closeLock) here.
import java.io.IOException; | ||
import java.io.OutputStream; | ||
import java.io.File; | ||
import java.io.FileOutputStream; |
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.
The imports should be in alphabetical order per convention.
|
||
public static void main(String argv[]) throws IOException { | ||
var file = new File(System.getProperty("test.dir", "."), "test.txt"); | ||
file.createNewFile(); |
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.
Why not instead do something like?:
var dir = new File(System.getProperty("test.dir", "."));
File file = File.createTempFile("x", "y", dir);
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.
I don't think you need to specify test.dir
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.
'test.dir' is not necessary, but it's a convention currently used in more than 50 IO and NIO tests. Probably not so useful here.
The proposed change does not appear to add a great deal of value and breaks longstanding behavior. In such cases, the preferred approach is usually to modify the specification to match the current, albeit incorrect, behavior rather than to change the code itself. Given that this issue was filed more than two decades ago suggests that changing the implementation would be likely to break code which unwittingly depends on the longstanding behavior. |
The PR title should be changed to match the JBS issue summary. |
I am unable to understand how proposed change breaks longstanding behavior(what behavior). With current implementation if the underline stream is closed ‘BufferedOutputStream.write’ will throw IOException when the internal buffer is full. With the proposed change BufferedOutputStream will throw IOException immediately . I don’t see any reason in not throwing exception and waiting till internal buffer fills. All other OutputStream implementations internally checks and throw IOException immediately if the stream is close. So with the proposed change 'BufferedOutputStream' will behave the same. Do you really think there is code outside which do ‘write’ after closing the stream, and proposed change will break it ?. |
The change means that IOException will be thrown for cases where it isn't currently thrown. It also means that IOException may be thrown at different use-sites that it is now. I don't think anyone is disagreeing that there is a long standing bug, the issue is that changing the behavior will likely be observed. In cases like this, we will often decide to just specify long standing behavior as the compatibility impact of fixing something is too high. In this case, I don't object to fixing it early in JDK 22 but the change will need to be widely tested so as to shake out any bugs in code in the eco system as early as possible. It might be that after a few weeks/months that we get some confidence that it is okay, or it might be that we decide to introduce a system property to restore long standing behavior, or decide to just back it out. The question is whether we can get enough testing of JDK 22 builds to help decide on this. |
@vyommani This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration! |
@vyommani This pull request has been inactive for more than 8 weeks and will now be automatically closed. If you would like to continue working on this pull request in the future, feel free to reopen it! This can be done using the |
With the current implementation of BufferedOutputStream if you close the stream and try to write to the closed stream BufferedOutputStream does not throw an IOException until the internal buffer is full. To fix this issue i added a private "ensureOpen" function to BufferedOutputStream which will check if the underline stream is open. If the underline stream is closed "ensureOpen" will throw the IOException.
Progress
Issues
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15361/head:pull/15361
$ git checkout pull/15361
Update a local copy of the PR:
$ git checkout pull/15361
$ git pull https://git.openjdk.org/jdk.git pull/15361/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 15361
View PR using the GUI difftool:
$ git pr show -t 15361
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15361.diff
Webrev
Link to Webrev Comment