Class S3ChecksumValidatingInputStream
java.lang.Object
java.io.InputStream
software.amazon.awssdk.services.s3.internal.checksums.S3ChecksumValidatingInputStream
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Abortable
-
Constructor Summary
ConstructorsConstructorDescriptionS3ChecksumValidatingInputStream
(InputStream in, SdkChecksum cksum, long streamLength) Creates an input stream using the specified Checksum, input stream, and length. -
Method Summary
Modifier and TypeMethodDescriptionvoid
abort()
Aborts the execution of the task.void
close()
int
read()
Reads one byte at a time from the input stream, updates the checksum.int
read
(byte[] buf, int off, int len) Reads up to len bytes at a time from the input stream, updates the checksum.void
reset()
Resets stream state, including the running checksum.Methods inherited from class java.io.InputStream
available, mark, markSupported, read, skip
-
Constructor Details
-
S3ChecksumValidatingInputStream
Creates an input stream using the specified Checksum, input stream, and length.- Parameters:
in
- the input streamcksum
- the Checksum implementationstreamLength
- the total length of the expected stream (including the extra 4 bytes on the end).
-
-
Method Details
-
read
Reads one byte at a time from the input stream, updates the checksum. If the end of the stream has been reached the checksum will be compared to the stream's checksum amd a SdkClientException will be thrown.- Specified by:
read
in classInputStream
- Returns:
- byte read, if a read happened, otherwise -1 will be returned to indicate eos.
- Throws:
IOException
-
read
Reads up to len bytes at a time from the input stream, updates the checksum. If the end of the stream has been reached the checksum will be compared to the stream's checksum amd a SdkClientException will be thrown.- Overrides:
read
in classInputStream
- Parameters:
buf
- buffer to write intooff
- offset in the buffer to write tolen
- maximum number of bytes to attempt to read.- Returns:
- number of bytes written into buf, otherwise -1 will be returned to indicate eos.
- Throws:
IOException
-
reset
Resets stream state, including the running checksum.- Overrides:
reset
in classInputStream
- Throws:
IOException
-
abort
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-