com.sshtools.common.files.vfs.PathRandomAccessImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maverick-virtual-filesystem Show documentation
Show all versions of maverick-virtual-filesystem Show documentation
Support for mounting multiple back-end AbstractFile implementations in a virtual file structure
The newest version!
package com.sshtools.common.files.vfs;
/*-
* #%L
* Virtual File System
* %%
* Copyright (C) 2002 - 2024 JADAPTIVE Limited
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import com.sshtools.common.files.AbstractFileRandomAccess;
import com.sshtools.common.files.direct.NioFile;
import com.sshtools.common.files.direct.NioFileFactory;
/**
* Deprecated. Use {@link NioFileFactory} and {@link NioFile}.
*/
@Deprecated(since = "3.1.0", forRemoval = true)
public class PathRandomAccessImpl implements AbstractFileRandomAccess {
protected FileChannel raf;
protected Path f;
public PathRandomAccessImpl(Path f, boolean writeAccess) throws IOException {
this.f = f;
if(writeAccess)
raf = FileChannel.open(f, StandardOpenOption.READ, StandardOpenOption.WRITE);
else
raf = FileChannel.open(f, StandardOpenOption.READ);
}
public void write(int b) throws IOException {
raf.write(ByteBuffer.wrap(new byte[] {(byte)b}));
}
public void write(byte[] buf, int off, int len) throws IOException {
raf.write(ByteBuffer.wrap(buf, off, len));
}
public void close() throws IOException {
raf.close();
}
public void seek(long position) throws IOException {
raf.position(position);
}
public int read(byte[] buf, int off, int len) throws IOException {
ByteBuffer b = ByteBuffer.allocate(len);
int r = raf.read(b);
if(r != -1) {
byte[] arr = b.array();
System.arraycopy(arr, 0, buf, off, arr.length);
}
return r;
}
public void setLength(long length) throws IOException {
raf.truncate(length);
}
public long getFilePointer() throws IOException {
return raf.position();
}
@Override
public int read() throws IOException {
byte[] tmp = new byte[1];
int r = read(tmp, 0, 1);
if(r==1) {
return tmp[0] & 0xFF;
}
return r;
}
}