Package ghidra.app.util.bin
Class ByteProviderPaddedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- ghidra.app.util.bin.ByteProviderPaddedInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class ByteProviderPaddedInputStream extends java.io.InputStreamWraps aByteProviderand presents it as anInputStream.This InputStream will be limited to a region of the underlying ByteProvider, and has an optional amount of padding at the end of the stream where the stream will appear to have bytes with a value of zero.
-
-
Constructor Summary
Constructors Constructor Description ByteProviderPaddedInputStream(ByteProvider provider, long startOffset, long length, long padCount)Create a newByteProviderInputStreaminstance, using the specifiedByteProvideras the source of the bytes returned from this stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()voidclose()intread()
-
-
-
Constructor Detail
-
ByteProviderPaddedInputStream
public ByteProviderPaddedInputStream(ByteProvider provider, long startOffset, long length, long padCount)
Create a newByteProviderInputStreaminstance, using the specifiedByteProvideras the source of the bytes returned from this stream.The source ByteProvider is not closed when this stream is closed.
The total number of bytes that can be read from this instance will be length + padCount.
- Parameters:
provider- theByteProviderto wrap.startOffset- the starting offset in the ByteProvider.length- the number of bytes from theByteProviderto allow to be read by this InputStream.padCount- the number of fake zero bytes to add after the reallengthbytes.
-
-
Method Detail
-
close
public void close()
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.InputStream
-
read
public int read() throws java.io.IOException- Specified by:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
available
public int available()
- Overrides:
availablein classjava.io.InputStream
-
-