alluxio.PositionReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alluxio-core-common Show documentation
Show all versions of alluxio-core-common Show documentation
Common utilities shared in Alluxio core modules
/*
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
* (the "License"). You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied, as more fully set forth in the License.
*
* See the NOTICE file distributed with this work for information regarding copyright ownership.
*/
package alluxio;
import alluxio.file.ByteArrayTargetBuffer;
import alluxio.file.ByteBufferTargetBuffer;
import alluxio.file.NettyBufTargetBuffer;
import alluxio.file.ReadTargetBuffer;
import com.google.common.base.Preconditions;
import io.netty.buffer.ByteBuf;
import java.io.Closeable;
import java.io.IOException;
import java.nio.ByteBuffer;
import javax.annotation.concurrent.ThreadSafe;
/**
* Position read interface. All implementer should be thread-safe.
*/
@ThreadSafe
public interface PositionReader extends Closeable {
/**
* @param position position of the file to start reading data
* @param buffer target byte array
* @param length bytes to read
* @return bytes read, or -1 none of data is read
*/
default int read(long position, byte[] buffer, int length)
throws IOException {
return read(position, new ByteArrayTargetBuffer(buffer, 0), length);
}
/**
* @param position position of the file to start reading data
* @param buffer target byte array
* @param offset the offset of the buffer
* @param length bytes to read
* @return bytes read, or -1 none of data is read
*/
default int read(long position, byte[] buffer, int offset, int length)
throws IOException {
return read(position, new ByteArrayTargetBuffer(buffer, offset), length);
}
/**
* @param position position of the file to start reading data
* @param buffer target byte buffer
* @param length bytes to read
* @return bytes read, or -1 none of data is read
*/
default int read(long position, ByteBuffer buffer, int length) throws IOException {
return read(position, new ByteBufferTargetBuffer(buffer), length);
}
/**
* @param position position of the file to start reading data
* @param buffer target byte buf
* @param length bytes to read
* @return bytes read, or -1 none of data is read
*/
default int read(long position, ByteBuf buffer, int length) throws IOException {
return read(position, new NettyBufTargetBuffer(buffer), length);
}
/**
* @param position position of the file to start reading data
* @param buffer target byte buffer
* @param length bytes to read
* @return bytes read, or -1 none of data is read
*/
default int read(long position, ReadTargetBuffer buffer, int length)
throws IOException {
Preconditions.checkArgument(length >= 0, "length should be non-negative");
Preconditions.checkArgument(position >= 0, "position should be non-negative");
Preconditions.checkArgument(buffer.remaining() >= length,
"given buffer should have enough space to write given length");
if (length == 0) {
return 0;
}
return readInternal(position, buffer, length);
}
/**
* @param position position of the file to start reading data
* @param buffer target byte buffer
* @param length bytes to read
* @return bytes read, or -1 none of data is read
*/
int readInternal(long position, ReadTargetBuffer buffer, int length)
throws IOException;
/**
* Closes the positon reader and do cleanup job if any.
*/
default void close() throws IOException {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy