allow stopping a TypedInputStream on EOF
This commit is contained in:
parent
e65a448ac4
commit
84668c7e15
1 changed files with 15 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
package de.tudbut.io;
|
package de.tudbut.io;
|
||||||
|
|
||||||
|
import java.io.EOFException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
|
||||||
|
@ -12,6 +13,7 @@ public class TypedInputStream {
|
||||||
public int last = -1;
|
public int last = -1;
|
||||||
private final Object waitForInputLock = new Object();
|
private final Object waitForInputLock = new Object();
|
||||||
private final Object readLock = new Object();
|
private final Object readLock = new Object();
|
||||||
|
private boolean stopOnEOF = false;
|
||||||
|
|
||||||
public InputStream getStream() {
|
public InputStream getStream() {
|
||||||
return stream;
|
return stream;
|
||||||
|
@ -23,6 +25,11 @@ public class TypedInputStream {
|
||||||
this.stream = stream;
|
this.stream = stream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TypedInputStream stopOnEOF() {
|
||||||
|
stopOnEOF = true;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public byte readByte() throws IOException {
|
public byte readByte() throws IOException {
|
||||||
return (byte) read();
|
return (byte) read();
|
||||||
}
|
}
|
||||||
|
@ -141,7 +148,9 @@ public class TypedInputStream {
|
||||||
synchronized (waitForInputLock) {
|
synchronized (waitForInputLock) {
|
||||||
if(last != -1)
|
if(last != -1)
|
||||||
return;
|
return;
|
||||||
while ((last = stream.read()) == -1) ;
|
while ((last = stream.read()) == -1 && !stopOnEOF) ;
|
||||||
|
if(last == -1)
|
||||||
|
throw new EOFException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -150,7 +159,9 @@ public class TypedInputStream {
|
||||||
synchronized (waitForInputLock) {
|
synchronized (waitForInputLock) {
|
||||||
int i;
|
int i;
|
||||||
if (last == -1) {
|
if (last == -1) {
|
||||||
while ((i = stream.read()) == -1) ;
|
while ((i = stream.read()) == -1 && !stopOnEOF) ;
|
||||||
|
if(i == -1)
|
||||||
|
throw new EOFException();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
i = last;
|
i = last;
|
||||||
|
|
Loading…
Reference in a new issue