The Java I/O classes java.io.Reader
, java.io.Writer
, java.io.InputStream
, java.io.OutpuStream
and their various subclasses all have a close()
method that can throw an IOException
.
Is there any consensus on the proper way to handle such exceptions?
I have often seen recommendations to just silently ignore them, but that feels wrong, and at least in case of resources opened for writing, a problem while closing the file might mean that unflushed data could not be written/sent.
On the other hand, when reading resources, I'm totally unclear on why close()
might throw and what to do about it.
So is there any standard recommendation?
A related question is Does close ever throw an IOException?, but that is more about which implementations really do throw, not about how to handle the exceptions.
Log it.
You can't really do anything about it (for example write some code that recovers from the error), but its generally worth letting somebody know about it.
Edit:
After further investigation and reading the other comments, I'd say that if you do want to handle it then you're going to have to know details of the implementation. Conversely you probably need to know details of the implementation to decide whether you need to handle it.
Realistically though, I can't think of any examples of streams where the reading or writing would work correctly without throwing an exception, but the closing would.
Theory
To answer you question directly: When this IO action failed, then depending on the circumstances, you may want to
You can often see the last 3 in dialog boxes shown to the user. Indeed, delegating choice to the user is a possibility.
I believe the main point is to not leave the system in an inconsistent state. Just swallowing a close exception might leave you with a crippled file, causing nasty errors later on.
Practice
It is a bit cumbersome to work with checked exceptions. Options arise:
Convert them to
RuntimeException
, throw them and leave them to be handled at a sufficiently high levelKeep using checked exceptions and suffer the syntactic pain
Use more composable error handling constructs, like the IO monad (not really available in Java, at least not without embarassingly many braces (see http://apocalisp.wordpress.com/2008/05/16/thrower-functor/) and not with full power)
More on IO monad
When you return a result in the IO monad context, you are not actually executing an IO action, but rather return the description of that action. Why? These actions have an API with which they compose nicely (versus the throws/try/catch massacre).
You can decide if you wish to do check exception style handling (with
Option
orValidation˙ in the return type), or dynamic style handling, with bracketing only on the final
unsafePerformIO` call (which actually executes the composed IO action).To get some idea, see my Scala gist http://gist.github.com/2709535, which hosts the
executeAndClose
method. It returns both the result of the resource processing (if available) and an unclosed resource (if closing failed). It is then the users decision how to deal with such an unclosable resource.It could be beefed up with
Validation
/ValidationNEL
instead ofOption
if one needs the one/more actual exceptions too.Your code that calls
InputStream.close()
orOutputStream.close()
is some high level code that delegates to the lower levelInputStream
orOutputStream
class to perform some high level computation.Whether to throw an exception
You have only 3 choices about what to do.
The last two options are similar in that your code throws an exception. So this question is actually a special case of the question of when should my code throw an exception. The correct answer to that question in this context is: if, and only if, the alternative, is to fail to meet a post condition of your code or to maintain an invariant of your code. The post conditions specify what your method is meant to do. The invariants specify characteristics of the class.
So, you need to ask yourself whether the
close()
throwing an exception prevents your method doing what is should do.close()
throwing does prevent your method doing its job, and the method may throwIOException
, you can do nothing, just letting the exception propagate upwards.close()
prevents your method doing its job, but the method may not throwIOException
, you must catch theIOException
and rethrow it as a different class of exception, recording theIOException
as the cause of the thrown exception.I know of no circumstances in which a
InputStream.close()
throwing an exception can prevent a computation succeeding. That call toclose()
naturally happens after you have finished reading whatever data you are interested in.Output streams, however, can buffer data to be written to the output destination, either internally (within the Java code) or at a lower level (within the operating system). You therefore can not be sure that write operations to an output stream have actually resulted in real output until
OutputStream.close()
has successfully returned (without throwing an exception). You should therefore treat an exception thrown byOutputStream.close()
just like a write failure.Your method is responsible for maintaining its invariants. Sometimes this will require a clean-up or roll-back operation if
close()
throws an exception. You should put the code for that in acatch
orfinally
clause for theIOException
, even if you would like the exception to propagate upwards. If you use a catch clause and you want to propagate it, you will have to rethrow it.Whether to log the exception
Some people will advise you to log the exception. This is almost always bad advice. Log messages are part of the user interface of your program. Fundamentally, you must always ask yourself whether to log anything at all, because useless verbiage can distract and confuse the users reading your log file ("users" includes system administrators). Every message logged should be for some useful purpose. Each should provide information that helps the user make decisions.
Reporting specifically that
close()
failed is rarely useful. How can it help a user make a decision? If the exception did not prevent your method from doing its job, there is no problem, and no actions by the user are necessary. If your program failed toclose()
the stream, and that is a problem, what can the user do to help?Low level code is not usually responsible for logging at all. It instead performs abstract operations, reporting failure to higher level parts of your program by throwing exceptions. Code closing a stream is typically rather low level, so the code that detects that
close()
is too low level to do any logging.The specific fact that
close()
failed is rarely useful. What can be useful is knowing that the abstract operation that your method is meant to perform failed. That can be done by having the higher level code catch all expected exceptions and reporting that the operation failed, rather than having your method precisely report that "close failed".