Class UnsyncByteArrayInputStream

java.lang.Object
java.io.InputStream
org.apache.xml.security.utils.UnsyncByteArrayInputStream
All Implemented Interfaces:
Closeable, AutoCloseable

public class UnsyncByteArrayInputStream extends InputStream
A specialized InputStream for reading the contents of a byte array.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected byte[]
    The byte array containing the bytes to stream over.
    protected int
    The total number of bytes initially available in the byte array buf.
    protected int
    The current mark position.
    protected int
    The current position within the byte array.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs a new ByteArrayInputStream on the byte array buf.
    UnsyncByteArrayInputStream(byte[] buf, int offset, int length)
    Constructs a new ByteArrayInputStream on the byte array buf with the initial position set to offset and the number of bytes available set to offset + length.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the number of bytes that are available before this stream will block.
    void
    Closes this stream and frees resources associated with this stream.
    void
    mark(int readlimit)
    Sets a mark position in this ByteArrayInputStream.
    boolean
    Indicates whether this stream supports the mark() and reset() methods.
    int
    Reads a single byte from the source byte array and returns it as an integer in the range from 0 to 255.
    int
    read(byte[] b, int offset, int length)
    Reads at most len bytes from this stream and stores them in byte array b starting at offset.
    void
    Resets this stream to the last marked location.
    long
    skip(long n)
    Skips count number of bytes in this InputStream.

    Methods inherited from class java.io.InputStream

    read

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • buf

      protected byte[] buf
      The byte array containing the bytes to stream over.
    • pos

      protected int pos
      The current position within the byte array.
    • mark

      protected int mark
      The current mark position. Initially set to 0 or the offset parameter within the constructor.
    • count

      protected int count
      The total number of bytes initially available in the byte array buf.
  • Constructor Details

    • UnsyncByteArrayInputStream

      public UnsyncByteArrayInputStream(byte[] buf)
      Constructs a new ByteArrayInputStream on the byte array buf.
      Parameters:
      buf - the byte array to stream over.
    • UnsyncByteArrayInputStream

      public UnsyncByteArrayInputStream(byte[] buf, int offset, int length)
      Constructs a new ByteArrayInputStream on the byte array buf with the initial position set to offset and the number of bytes available set to offset + length.
      Parameters:
      buf - the byte array to stream over.
      offset - the initial position in buf to start streaming from.
      length - the number of bytes available for streaming.
  • Method Details

    • available

      public int available()
      Returns the number of bytes that are available before this stream will block. This method returns the number of bytes yet to be read from the source byte array.
      Overrides:
      available in class InputStream
      Returns:
      the number of bytes available before blocking.
    • close

      public void close() throws IOException
      Closes this stream and frees resources associated with this stream.
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Overrides:
      close in class InputStream
      Throws:
      IOException - if an I/O error occurs while closing this stream.
    • mark

      public void mark(int readlimit)
      Sets a mark position in this ByteArrayInputStream. The parameter readlimit is ignored. Sending reset() will reposition the stream back to the marked position.
      Overrides:
      mark in class InputStream
      Parameters:
      readlimit - ignored.
      See Also:
    • markSupported

      public boolean markSupported()
      Indicates whether this stream supports the mark() and reset() methods. Returns true since this class supports these methods.
      Overrides:
      markSupported in class InputStream
      Returns:
      always true.
      See Also:
    • read

      public int read()
      Reads a single byte from the source byte array and returns it as an integer in the range from 0 to 255. Returns -1 if the end of the source array has been reached.
      Specified by:
      read in class InputStream
      Returns:
      the byte read or -1 if the end of this stream has been reached.
    • read

      public int read(byte[] b, int offset, int length)
      Reads at most len bytes from this stream and stores them in byte array b starting at offset. This implementation reads bytes from the source byte array.
      Overrides:
      read in class InputStream
      Parameters:
      b - the byte array in which to store the bytes read.
      offset - the initial position in b to store the bytes read from this stream.
      length - the maximum number of bytes to store in b.
      Returns:
      the number of bytes actually read or -1 if no bytes were read and the end of the stream was encountered.
      Throws:
      IndexOutOfBoundsException - if offset < 0 or length < 0, or if offset + length is greater than the size of b.
      NullPointerException - if b is null.
    • reset

      public void reset()
      Resets this stream to the last marked location. This implementation resets the position to either the marked position, the start position supplied in the constructor or 0 if neither has been provided.
      Overrides:
      reset in class InputStream
      See Also:
    • skip

      public long skip(long n)
      Skips count number of bytes in this InputStream. Subsequent read()s will not return these bytes unless reset() is used. This implementation skips count number of bytes in the target stream. It does nothing and returns 0 if n is negative.
      Overrides:
      skip in class InputStream
      Parameters:
      n - the number of bytes to skip.
      Returns:
      the number of bytes actually skipped.