mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 08:55:08 -05:00
c4ce1aebe7
* removed unnecessary synchronized locks * refactoring
66 lines
963 B
Java
66 lines
963 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
|
|
public class ByteBufferInputStream extends InputStream {
|
|
|
|
private final ByteBuffer buffer;
|
|
|
|
|
|
public ByteBufferInputStream(ByteBuffer buffer) {
|
|
this.buffer = buffer;
|
|
}
|
|
|
|
|
|
@Override
|
|
public int read() throws IOException {
|
|
if (buffer.remaining() <= 0)
|
|
return -1;
|
|
|
|
return buffer.get();
|
|
}
|
|
|
|
|
|
@Override
|
|
public int read(byte[] b, int off, int len) throws IOException {
|
|
if (buffer.remaining() <= 0)
|
|
return -1;
|
|
|
|
int length = Math.min(len, buffer.remaining());
|
|
|
|
buffer.get(b, off, length);
|
|
|
|
return length;
|
|
}
|
|
|
|
|
|
@Override
|
|
public int available() throws IOException {
|
|
return buffer.remaining();
|
|
}
|
|
|
|
|
|
@Override
|
|
public boolean markSupported() {
|
|
return true;
|
|
}
|
|
|
|
|
|
@Override
|
|
public void mark(int readlimit) {
|
|
buffer.mark();
|
|
}
|
|
|
|
|
|
@Override
|
|
public void reset() throws IOException {
|
|
buffer.reset();
|
|
}
|
|
|
|
}
|