package org.apache.commons.vfs2.provider.sftp;
import java.io.DataInputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
import org.apache.commons.vfs2.FileSystemException;
import org.apache.commons.vfs2.provider.AbstractRandomAccessStreamContent;
import org.apache.commons.vfs2.util.RandomAccessMode;
class SftpRandomAccessContent extends AbstractRandomAccessStreamContent {
protected long filePointer = 0;
private final SftpFileObject fileObject;
private DataInputStream dis = null;
private InputStream mis = null;
SftpRandomAccessContent(final SftpFileObject fileObject, final RandomAccessMode mode) {
super(mode);
this.fileObject = fileObject;
}
@Override
public long getFilePointer() throws IOException {
return filePointer;
}
@Override
public void seek(final long pos) throws IOException {
if (pos == filePointer) {
return;
}
if (pos < 0) {
throw new FileSystemException("vfs.provider/random-access-invalid-position.error", Long.valueOf(pos));
}
if (dis != null) {
close();
}
filePointer = pos;
}
@Override
protected DataInputStream getDataInputStream() throws IOException {
if (dis != null) {
return dis;
}
mis = fileObject.getInputStream(filePointer);
dis = new DataInputStream(new FilterInputStream(mis) {
@Override
public int read() throws IOException {
final int ret = super.read();
if (ret > -1) {
filePointer++;
}
return ret;
}
@Override
public int read(final byte[] b) throws IOException {
final int ret = super.read(b);
if (ret > -1) {
filePointer += ret;
}
return ret;
}
@Override
public int read(final byte[] b, final int off, final int len) throws IOException {
final int ret = super.read(b, off, len);
if (ret > -1) {
filePointer += ret;
}
return ret;
}
@Override
public void close() throws IOException {
SftpRandomAccessContent.this.close();
}
});
return dis;
}
@Override
public void close() throws IOException {
if (dis != null) {
mis.close();
final DataInputStream oldDis = dis;
dis = null;
oldDis.close();
mis = null;
}
}
@Override
public long length() throws IOException {
return fileObject.getContent().getSize();
}
}