Package com.adobe.internal.io.stream
Class InputByteStreamImpl
- java.lang.Object
-
- com.adobe.internal.io.stream.InputByteStreamImpl
-
- All Implemented Interfaces:
InputByteStream
- Direct Known Subclasses:
PaddedInputByteStream
,RangeInputByteStream
public abstract class InputByteStreamImpl extends java.lang.Object implements InputByteStream
Only for internal engineering use. This api can change without notice.
-
-
Field Summary
-
Fields inherited from interface com.adobe.internal.io.stream.InputByteStream
EOF
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description long
bytesAvailable()
Only for internal engineering use.abstract void
close()
Closes this InputByteStream and releases any system resources associated with the stream.boolean
eof()
Only for internal engineering use.abstract long
getPosition()
Only for internal engineering use.abstract long
length()
Only for internal engineering use.abstract int
read()
Only for internal engineering use.int
read(byte[] bytes)
Only for internal engineering use.abstract int
read(byte[] bytes, int position, int length)
Only for internal engineering use.abstract InputByteStream
seek(long position)
Only for internal engineering use.InputByteStream
slice()
Only for internal engineering use.abstract InputByteStream
slice(long begin, long length)
Only for internal engineering use.java.io.InputStream
toInputStream()
Create an InputStream that represents the same data as this InputByteStream.java.lang.String
toString()
Only for internal engineering use.int
unget()
Only for internal engineering use.
-
-
-
Method Detail
-
slice
public abstract InputByteStream slice(long begin, long length) throws java.io.IOException
Only for internal engineering use. This api can change without notice. Create a newInputByteStream
that that provides another view on the underlying data. This newInputByteStream
is completely independent and can be read from and positioned without affecting the original or any other sliceInputByteStream
objects. The initial position of the slice is at zero - the beginning of the slice.- Specified by:
slice
in interfaceInputByteStream
- Parameters:
begin
- Offset within the currentInputByteStream
to start the slice.length
- The length of the slice.- Returns:
- A slice of the original
InputByteStream
. - Throws:
java.io.IOException
-
slice
public InputByteStream slice() throws java.io.IOException
Only for internal engineering use. This api can change without notice. Create a newInputByteStream
that that provides another view on the underlying data. This newInputByteStream
is completely independent and can be read from and positioned without affecting the original or any other sliceInputByteStream
objects. The initial position of the slice is at zero - the beginning of the slice. The slice has the same bounds as the originalInputByteStream
. One common but probably incorrect usage of this method is to create a temporary "view" on the data that is used briefly within a method and then discarded. This is pretty wasteful and creates a number of small objects. In that case it would be better to find the current position usinggetPosition()
and store it locally in the method and then restore the position withsetPosition()
before returning from the method.- Specified by:
slice
in interfaceInputByteStream
- Returns:
- A slice of the original
InputByteStream
. - Throws:
java.io.IOException
-
read
public abstract int read() throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. Read the byte at the current position. If the current position is at or beyond the end of the underlying data return a-1
. If not beyond the end of the underlying data the current position is incremented by 1.- Specified by:
read
in interfaceInputByteStream
- Returns:
- The byte at the current position or
-1
if at or beyond EOF. - Throws:
java.io.IOException
-
read
public abstract int read(byte[] bytes, int position, int length) throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. Read an array of bytes starting at the current position. The position is incremented by the length of the array that has been read.- Specified by:
read
in interfaceInputByteStream
- Parameters:
bytes
- The destination array.position
- The offset in the byte array to put the first byte read.length
- The number of bytes to read.- Throws:
java.io.IOException
-
read
public int read(byte[] bytes) throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. Read an array of bytes starting at the current position. The position is incremented by the length of the array that has been read.- Specified by:
read
in interfaceInputByteStream
- Parameters:
bytes
- The destination array.- Throws:
java.io.IOException
-
unget
public int unget() throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. "Unget" the byte from underlying data. This essentially returns the byte just before the current position and sets the current position to point at that byte (one before the current position).- Specified by:
unget
in interfaceInputByteStream
- Throws:
java.io.IOException
-
seek
public abstract InputByteStream seek(long position) throws java.io.IOException
Only for internal engineering use. This api can change without notice. Set the current position in the underlying data. This position is pegged to be no less than zero and no greater than the length of the InputByteStream.- Specified by:
seek
in interfaceInputByteStream
- Parameters:
position
- Where to set the current position.- Returns:
- This object.
- Throws:
java.io.IOException
-
getPosition
public abstract long getPosition() throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. Get the current position.- Specified by:
getPosition
in interfaceInputByteStream
- Returns:
- The current position.
- Throws:
java.io.IOException
-
length
public abstract long length() throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. The maximum number of bytes that can be read from thisInputByteStream
.- Specified by:
length
in interfaceInputByteStream
- Returns:
- Total number of bytes available in this
InputByteStream
. - Throws:
java.io.IOException
-
bytesAvailable
public long bytesAvailable() throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. The number of bytes available to be read from the current position.- Specified by:
bytesAvailable
in interfaceInputByteStream
- Returns:
- Number of bytes available from the current position in this
InputByteStream
. - Throws:
java.io.IOException
-
eof
public boolean eof() throws java.io.IOException
Description copied from interface:InputByteStream
Only for internal engineering use. This api can change without notice. Is the current position of thisInputByteStream
at or beyond the end of the underlying data.- Specified by:
eof
in interfaceInputByteStream
- Returns:
- True if the current position is beyond the end of the underlying data, false otherwise.
- Throws:
java.io.IOException
-
close
public abstract void close() throws java.io.IOException
Description copied from interface:InputByteStream
Closes this InputByteStream and releases any system resources associated with the stream. After this method is called then any further calls to this instance are errors.- Specified by:
close
in interfaceInputByteStream
- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
Only for internal engineering use. This api can change without notice.- Overrides:
toString
in classjava.lang.Object
-
toInputStream
public java.io.InputStream toInputStream() throws java.io.IOException
Description copied from interface:InputByteStream
Create an InputStream that represents the same data as this InputByteStream. The new InputStream is independent of the InputByteStream and operations on one will not affect the other including closing of either stream.- Specified by:
toInputStream
in interfaceInputByteStream
- Returns:
- an InputStream that refers to the same underlying data
- Throws:
java.io.IOException
-
-