Class FilterStreamInput

java.lang.Object
java.io.InputStream
org.elasticsearch.common.io.stream.StreamInput
org.elasticsearch.common.io.stream.FilterStreamInput
All Implemented Interfaces:
java.io.Closeable, java.lang.AutoCloseable
Direct Known Subclasses:
BufferedChecksumStreamInput, NamedWriteableAwareStreamInput

public abstract class FilterStreamInput
extends StreamInput
Wraps a StreamInput and delegates to it. To be used to add functionality to an existing stream by subclassing.
  • Field Details

  • Constructor Details

    • FilterStreamInput

      protected FilterStreamInput​(StreamInput delegate)
  • Method Details

    • readByte

      public byte readByte() throws java.io.IOException
      Description copied from class: StreamInput
      Reads and returns a single byte.
      Specified by:
      readByte in class StreamInput
      Throws:
      java.io.IOException
    • readBytes

      public void readBytes​(byte[] b, int offset, int len) throws java.io.IOException
      Description copied from class: StreamInput
      Reads a specified number of bytes into an array at the specified offset.
      Specified by:
      readBytes in class StreamInput
      Parameters:
      b - the array to read bytes into
      offset - the offset in the array to start storing bytes
      len - the number of bytes to read
      Throws:
      java.io.IOException
    • readReleasableBytesReference

      public ReleasableBytesReference readReleasableBytesReference() throws java.io.IOException
      Description copied from class: StreamInput
      Reads a releasable bytes reference from this stream. Unlike StreamInput.readBytesReference() the returned bytes reference may reference bytes in a pooled buffer and must be explicitly released via ReleasableBytesReference.close() once no longer used. Prefer this method over StreamInput.readBytesReference() when reading large bytes references to avoid allocations and copying.
      Overrides:
      readReleasableBytesReference in class StreamInput
      Throws:
      java.io.IOException
    • readShort

      public short readShort() throws java.io.IOException
      Overrides:
      readShort in class StreamInput
      Throws:
      java.io.IOException
    • readInt

      public int readInt() throws java.io.IOException
      Description copied from class: StreamInput
      Reads four bytes and returns an int.
      Overrides:
      readInt in class StreamInput
      Throws:
      java.io.IOException
    • readLong

      public long readLong() throws java.io.IOException
      Description copied from class: StreamInput
      Reads eight bytes and returns a long.
      Overrides:
      readLong in class StreamInput
      Throws:
      java.io.IOException
    • reset

      public void reset() throws java.io.IOException
      Overrides:
      reset in class java.io.InputStream
      Throws:
      java.io.IOException
    • read

      public int read() throws java.io.IOException
      Specified by:
      read in class java.io.InputStream
      Throws:
      java.io.IOException
    • close

      public void close() throws java.io.IOException
      Description copied from class: StreamInput
      Closes the stream to further operations.
      Specified by:
      close in interface java.lang.AutoCloseable
      Specified by:
      close in interface java.io.Closeable
      Specified by:
      close in class StreamInput
      Throws:
      java.io.IOException
    • available

      public int available() throws java.io.IOException
      Specified by:
      available in class StreamInput
      Throws:
      java.io.IOException
    • getVersion

      public Version getVersion()
      Description copied from class: StreamInput
      The version of the node on the other side of this stream.
      Overrides:
      getVersion in class StreamInput
    • setVersion

      public void setVersion​(Version version)
      Description copied from class: StreamInput
      Set the version of the node on the other side of this stream.
      Overrides:
      setVersion in class StreamInput
    • ensureCanReadBytes

      protected void ensureCanReadBytes​(int length) throws java.io.EOFException
      Description copied from class: StreamInput
      This method throws an EOFException if the given number of bytes can not be read from the this stream. This method might be a no-op depending on the underlying implementation if the information of the remaining bytes is not present.
      Specified by:
      ensureCanReadBytes in class StreamInput
      Throws:
      java.io.EOFException
    • namedWriteableRegistry

      public NamedWriteableRegistry namedWriteableRegistry()
      Description copied from class: StreamInput
      Get the registry of named writeables if this stream has one, null otherwise.
      Overrides:
      namedWriteableRegistry in class StreamInput