Class MemoryCacheImageOutputStream
- All Implemented Interfaces:
Closeable, DataInput, DataOutput, AutoCloseable, ImageInputStream, ImageOutputStream
ImageOutputStream
that writes its
output to a regular OutputStream
. A memory buffer is
used to cache at least the data between the discard position and
the current write position. The only constructor takes an
OutputStream
, so this class may not be used for
read/modify/write operations. Reading can occur only on parts of
the stream that have already been written to the cache and not
yet flushed.-
Field Summary
Fields declared in class ImageInputStreamImpl
bitOffset, byteOrder, flushedPos, streamPos
Modifier and TypeFieldDescriptionprotected int
The current bit offset within the stream.protected ByteOrder
The byte order of the stream as an instance of the enumeration classjava.nio.ByteOrder
, whereByteOrder.BIG_ENDIAN
indicates network byte order andByteOrder.LITTLE_ENDIAN
indicates the reverse order.protected long
The position prior to which data may be discarded.protected long
The current read position within the stream. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs aMemoryCacheImageOutputStream
that will write to a givenOutputStream
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes thisMemoryCacheImageOutputStream
.void
flushBefore
(long pos) Flushes all data prior to the given position to the underlying destination, such as anOutputStream
orFile
.boolean
isCached()
Returnstrue
since thisImageOutputStream
caches data in order to allow seeking backwards.boolean
Returnsfalse
since thisImageOutputStream
does not maintain a file cache.boolean
Returnstrue
since thisImageOutputStream
maintains a main memory cache.int
read()
Reads a single byte from the stream and returns it as anint
between 0 and 255.int
read
(byte[] b, int off, int len) Reads up tolen
bytes from the stream, and stores them intob
starting at indexoff
.void
write
(byte[] b, int off, int len) Writes a sequence of bytes to the stream at the current position.void
write
(int b) Writes a single byte to the stream at the current position.Methods declared in class ImageOutputStreamImpl
flushBits, write, writeBit, writeBits, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeChars, writeDouble, writeDoubles, writeFloat, writeFloats, writeInt, writeInts, writeLong, writeLongs, writeShort, writeShorts, writeUTF
Modifier and TypeMethodDescriptionprotected final void
If the bit offset is non-zero, forces the remaining bits in the current byte to 0 and advances the stream position by one.void
write
(byte[] b) Writes a sequence of bytes to the stream at the current position.void
writeBit
(int bit) Writes a single bit, given by the least significant bit of the argument, to the stream at the current bit offset within the current byte position.void
writeBits
(long bits, int numBits) Writes a sequence of bits, given by thenumBits
least significant bits of thebits
argument in left-to-right order, to the stream at the current bit offset within the current byte position.void
writeBoolean
(boolean v) Writes aboolean
value to the stream.void
writeByte
(int v) Writes the 8 low-order bits ofv
to the stream.void
writeBytes
(String s) Writes a string to the output stream.void
writeChar
(int v) This method is a synonym forwriteShort
.void
writeChars
(char[] c, int off, int len) Writes a sequence of chars to the stream at the current position.void
writeChars
(String s) Writes a string to the output stream.void
writeDouble
(double v) Writes adouble
value, which is comprised of four bytes, to the output stream.void
writeDoubles
(double[] d, int off, int len) Writes a sequence of doubles to the stream at the current position.void
writeFloat
(float v) Writes afloat
value, which is comprised of four bytes, to the output stream.void
writeFloats
(float[] f, int off, int len) Writes a sequence of floats to the stream at the current position.void
writeInt
(int v) Writes the 32 bits ofv
to the stream.void
writeInts
(int[] i, int off, int len) Writes a sequence of ints to the stream at the current position.void
writeLong
(long v) Writes the 64 bits ofv
to the stream.void
writeLongs
(long[] l, int off, int len) Writes a sequence of longs to the stream at the current position.void
writeShort
(int v) Writes the 16 low-order bits ofv
to the stream.void
writeShorts
(short[] s, int off, int len) Writes a sequence of shorts to the stream at the current position.void
Writes two bytes of length information to the output stream in network byte order, followed by the modified UTF-8 representation of every character in the strings
.Methods declared in class ImageInputStreamImpl
checkClosed, flush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, length, mark, read, readBit, readBits, readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedInt, readUnsignedShort, readUTF, reset, seek, setBitOffset, setByteOrder, skipBytes, skipBytes
Modifier and TypeMethodDescriptionprotected final void
Throws anIOException
if the stream has been closed.void
flush()
Discards the initial position of the stream prior to the current stream position.int
Returns the current bit offset, as an integer between 0 and 7, inclusive.Returns the byte order with which data values will be read from this stream as an instance of thejava.nio.ByteOrder
enumeration.long
Returns the earliest position in the stream to which seeking may be performed.long
Returns the current byte position of the stream.long
length()
Returns-1L
to indicate that the stream has unknown length.void
mark()
Pushes the current stream position onto a stack of marked positions.int
read
(byte[] b) A convenience method that callsread(b, 0, b.length)
.int
readBit()
Reads a single bit from the stream and returns it as anint
with the value0
or1
.long
readBits
(int numBits) Reads a bitstring from the stream and returns it as along
, with the first bit read becoming the most significant bit of the output.boolean
Reads a byte from the stream and returns aboolean
value oftrue
if it is nonzero,false
if it is zero.byte
readByte()
Reads a byte from the stream and returns it as abyte
value.void
readBytes
(IIOByteBuffer buf, int len) Reads up tolen
bytes from the stream, and modifies the suppliedIIOByteBuffer
to indicate the byte array, offset, and length where the data may be found.char
readChar()
Equivalent toreadUnsignedShort
, except that the result is returned using thechar
datatype.double
Reads 8 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as adouble
.float
Reads 4 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as afloat
.void
readFully
(byte[] b) Readsb.length
bytes from the stream, and stores them intob
starting at index0
.void
readFully
(byte[] b, int off, int len) Readslen
bytes from the stream, and stores them intob
starting at indexoff
.void
readFully
(char[] c, int off, int len) Readslen
chars (unsigned 16-bit integers) from the stream according to the current byte order, and stores them intoc
starting at indexoff
.void
readFully
(double[] d, int off, int len) Readslen
doubles (64-bit IEEE double-precision floats) from the stream according to the current byte order, and stores them intod
starting at indexoff
.void
readFully
(float[] f, int off, int len) Readslen
floats (32-bit IEEE single-precision floats) from the stream according to the current byte order, and stores them intof
starting at indexoff
.void
readFully
(int[] i, int off, int len) Readslen
ints (signed 32-bit integers) from the stream according to the current byte order, and stores them intoi
starting at indexoff
.void
readFully
(long[] l, int off, int len) Readslen
longs (signed 64-bit integers) from the stream according to the current byte order, and stores them intol
starting at indexoff
.void
readFully
(short[] s, int off, int len) Readslen
shorts (signed 16-bit integers) from the stream according to the current byte order, and stores them intos
starting at indexoff
.int
readInt()
Reads 4 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as anint
.readLine()
Reads the next line of text from the input stream.long
readLong()
Reads 8 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as along
.short
Reads two bytes from the stream, and (conceptually) concatenates them according to the current byte order, and returns the result as ashort
value.int
Reads a byte from the stream, and (conceptually) converts it to an int, masks it with0xff
in order to strip off any sign-extension bits, and returns it as abyte
value.long
Reads 4 bytes from the stream, and (conceptually) concatenates them according to the current byte order, converts the result to a long, masks it with0xffffffffL
in order to strip off any sign-extension bits, and returns the result as an unsignedlong
value.int
Reads two bytes from the stream, and (conceptually) concatenates them according to the current byte order, converts the resulting value to anint
, masks it with0xffff
in order to strip off any sign-extension buts, and returns the result as an unsignedint
value.readUTF()
Reads in a string that has been encoded using a modified UTF-8 format.void
reset()
Resets the current stream byte and bit positions from the stack of marked positions.void
seek
(long pos) Sets the current stream position to the desired location.void
setBitOffset
(int bitOffset) Sets the bit offset to an integer between 0 and 7, inclusive.void
setByteOrder
(ByteOrder byteOrder) Sets the desired byte order for future reads of data values from this stream.int
skipBytes
(int n) Advances the current stream position by callingseek(getStreamPosition() + n)
.long
skipBytes
(long n) Advances the current stream position by callingseek(getStreamPosition() + n)
.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
MemoryCacheImageOutputStream
Constructs aMemoryCacheImageOutputStream
that will write to a givenOutputStream
.- Parameters:
stream
- anOutputStream
to write to.- Throws:
IllegalArgumentException
- ifstream
isnull
.
-
-
Method Details
-
read
Description copied from class:ImageInputStreamImpl
Reads a single byte from the stream and returns it as anint
between 0 and 255. If EOF is reached,-1
is returned.Subclasses must provide an implementation for this method. The subclass implementation should update the stream position before exiting.
The bit offset within the stream must be reset to zero before the read occurs.
- Specified by:
read
in interfaceImageInputStream
- Specified by:
read
in classImageInputStreamImpl
- Returns:
- the value of the next byte in the stream, or
-1
if EOF is reached. - Throws:
IOException
- if the stream has been closed.
-
read
Description copied from class:ImageInputStreamImpl
Reads up tolen
bytes from the stream, and stores them intob
starting at indexoff
. If no bytes can be read because the end of the stream has been reached,-1
is returned.The bit offset within the stream must be reset to zero before the read occurs.
Subclasses must provide an implementation for this method. The subclass implementation should update the stream position before exiting.
- Specified by:
read
in interfaceImageInputStream
- Specified by:
read
in classImageInputStreamImpl
- Parameters:
b
- an array of bytes to be written to.off
- the starting position withinb
to write to.len
- the maximum number of bytes to read.- Returns:
- the number of bytes actually read, or
-1
to indicate EOF. - Throws:
IOException
- if an I/O error occurs.
-
write
Description copied from interface:ImageOutputStream
Writes a single byte to the stream at the current position. The 24 high-order bits ofb
are ignored.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write. Implementers can use the
flushBits
method ofImageOutputStreamImpl
to guarantee this.- Parameters:
b
- anint
whose lower 8 bits are to be written.- Throws:
IOException
- if an I/O error occurs.
-
write
Description copied from interface:ImageOutputStream
Writes a sequence of bytes to the stream at the current position. Iflen
is 0, nothing is written. The byteb[off]
is written first, then the byteb[off + 1]
, and so on.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write. Implementers can use the
flushBits
method ofImageOutputStreamImpl
to guarantee this.- Parameters:
b
- an array ofbyte
s to be written.off
- the start offset in the data.len
- the number ofbyte
s to write.- Throws:
IOException
- if an I/O error occurs.
-
isCached
public boolean isCached()Returnstrue
since thisImageOutputStream
caches data in order to allow seeking backwards.- Specified by:
isCached
in interfaceImageInputStream
- Overrides:
isCached
in classImageInputStreamImpl
- Returns:
true
.- See Also:
-
isCachedFile
public boolean isCachedFile()Returnsfalse
since thisImageOutputStream
does not maintain a file cache.- Specified by:
isCachedFile
in interfaceImageInputStream
- Overrides:
isCachedFile
in classImageInputStreamImpl
- Returns:
false
.- See Also:
-
isCachedMemory
public boolean isCachedMemory()Returnstrue
since thisImageOutputStream
maintains a main memory cache.- Specified by:
isCachedMemory
in interfaceImageInputStream
- Overrides:
isCachedMemory
in classImageInputStreamImpl
- Returns:
true
.- See Also:
-
close
Closes thisMemoryCacheImageOutputStream
. All pending data is flushed to the output, and the cache is released. The destinationOutputStream
is not closed.- Throws:
IOException
- if an I/O error occurs.
-
flushBefore
Flushes all data prior to the given position to the underlying destination, such as anOutputStream
orFile
. Attempting to seek to the flushed portion of the stream will result in anIndexOutOfBoundsException
.- Parameters:
pos
- along
containing the length of the stream prefix that may be flushed to the destination.- Throws:
IOException
- if an I/O error occurs.
-