* Open input on record written.
*/
private InputStream openInput() throws JournalException {
if (file != null) {
try {
return new ResettableTempFileInputStream(file);
} catch (IOException e) {
String msg = "Unable to open file input on: " + file.getPath();
throw new JournalException(msg, e);
}
} else {