Package software.amazon.awssdk.core.io
Class SdkFilterInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
software.amazon.awssdk.core.io.SdkFilterInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable,Releasable
- Direct Known Subclasses:
BytesReadTrackingInputStream,BytesWrittenTrackingInputStream,Crc32ChecksumCalculatingInputStream,Crc32ChecksumValidatingInputStream,ReleasableInputStream,ResponseInputStream
Base class for AWS Java SDK specific
FilterInputStream.-
Field Summary
Fields inherited from class java.io.FilterInputStream
in -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidabort()Can be used to provide abortion logic prior to throwing the AbortedException.protected final voidAborts with subclass specific abortion logic executed if needed.intvoidclose()voidmark(int readlimit) booleanintread()intread(byte[] b, int off, int len) voidrelease()Releases the allocated resource.voidreset()longskip(long n) Methods inherited from class java.io.FilterInputStream
read
-
Constructor Details
-
SdkFilterInputStream
-
-
Method Details
-
abortIfNeeded
protected final void abortIfNeeded()Aborts with subclass specific abortion logic executed if needed. Note the interrupted status of the thread will not be cleared by this method.- Throws:
AbortedException- if found necessary.
-
abort
protected void abort()Can be used to provide abortion logic prior to throwing the AbortedException. No-op by default. -
read
- Overrides:
readin classFilterInputStream- Throws:
IOException
-
read
- Overrides:
readin classFilterInputStream- Throws:
IOException
-
skip
- Overrides:
skipin classFilterInputStream- Throws:
IOException
-
available
- Overrides:
availablein classFilterInputStream- Throws:
IOException
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classFilterInputStream- Throws:
IOException
-
mark
public void mark(int readlimit) - Overrides:
markin classFilterInputStream
-
reset
- Overrides:
resetin classFilterInputStream- Throws:
IOException
-
markSupported
public boolean markSupported()- Overrides:
markSupportedin classFilterInputStream
-
release
public void release()Description copied from interface:ReleasableReleases the allocated resource. This method should not be called except by the caller who allocated the resource at the very top of the call stack. This allows, typically, aCloseableresource to be not unintentionally released owing to the calling of theCloseable.close()methods by implementation deep down in the call stack.For example, the creation of a
ResettableInputStreamwould entail physically opening a file. If the opened file is meant to be closed only (in a finally block) by the very same code block that created it, then it is necessary that the release method must not be called while the execution is made in other stack frames. In such case, as other stack frames may inadvertently or indirectly call the close method of the stream, the creator of the stream would need to explicitly disable the accidental closing viaResettableInputStream#disableClose(), so that the release method becomes the only way to truly close the opened file.- Specified by:
releasein interfaceReleasable
-