I'm attempting to run an external process with a timeout and read all of the output it produces. This is proving to be a surprisingly Herculean task. My basic strategy is to start a process using ProcessBuilder and read it's output in the main thread. Another thread is farmed off that waits for the timeout to expire and (if needed) call close() on the ReadableByteChannel that I have passed it, the call destroy() on the Process that was also passed to it.
This appears to work just fine on a process that prints infinite output, even getting the expected AsynchronousCloseException. However, when testing against a program that just sleeps infinitely the thread blocks on close:
private void terminateProcess() {
try {
System.out.println("About to close readChannel.");
readChannel.close();
System.out.println("Closed the readChannel.");
} catch (IOException e) {
// Not relevant
}
}
I never see the second print statement and my test hangs forever. The javadoc says close() can block if another close is in operation, but there are no other calls to close() in my code. What else can cause this?