public class ChunkedNioFile extends Object implements ChunkedByteInput
ChunkedByteInput
that fetches data from a file chunk by chunk using
NIO FileChannel
.
If your operating system supports
zero-copy file transfer
such as sendfile()
, you might want to use FileRegion
instead.
Constructor and Description |
---|
ChunkedNioFile(File in)
Creates a new instance that fetches data from the specified file.
|
ChunkedNioFile(FileChannel in)
Creates a new instance that fetches data from the specified file.
|
ChunkedNioFile(FileChannel in,
int chunkSize)
Creates a new instance that fetches data from the specified file.
|
ChunkedNioFile(FileChannel in,
long offset,
long length,
int chunkSize)
Creates a new instance that fetches data from the specified file.
|
ChunkedNioFile(File in,
int chunkSize)
Creates a new instance that fetches data from the specified file.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Releases the resources associated with the input.
|
long |
currentOffset()
Returns the offset in the file where the transfer is happening currently.
|
long |
endOffset()
Returns the offset in the file where the transfer will end.
|
boolean |
isEndOfInput()
Return
true if and only if there is no data left in the stream
and the stream has reached at its end. |
boolean |
readChunk(ByteBuf buffer)
Fetches a chunked data from the stream.
|
long |
startOffset()
Returns the offset in the file where the transfer began.
|
public ChunkedNioFile(File in) throws IOException
IOException
public ChunkedNioFile(File in, int chunkSize) throws IOException
chunkSize
- the number of bytes to fetch on each
readChunk(ByteBuf)
callIOException
public ChunkedNioFile(FileChannel in) throws IOException
IOException
public ChunkedNioFile(FileChannel in, int chunkSize) throws IOException
chunkSize
- the number of bytes to fetch on each
readChunk(ByteBuf)
callIOException
public ChunkedNioFile(FileChannel in, long offset, long length, int chunkSize) throws IOException
offset
- the offset of the file where the transfer beginslength
- the number of bytes to transferchunkSize
- the number of bytes to fetch on each
readChunk(ByteBuf)
callIOException
public long startOffset()
public long endOffset()
public long currentOffset()
public boolean isEndOfInput() throws Exception
ChunkedInput
true
if and only if there is no data left in the stream
and the stream has reached at its end.isEndOfInput
in interface ChunkedInput<ByteBuf>
Exception
public void close() throws Exception
ChunkedInput
close
in interface ChunkedInput<ByteBuf>
Exception
public boolean readChunk(ByteBuf buffer) throws Exception
ChunkedInput
ChunkedInput.isEndOfInput()
call must return false
.readChunk
in interface ChunkedInput<ByteBuf>
buffer
- read the next chunk and transfer it to the given bufferException
Copyright © 2008-2013 The Netty Project. All Rights Reserved.