public final class AwsChunkedEncodingInputStream extends SdkInputStream
Modifier and Type | Field and Description |
---|---|
protected static String |
DEFAULT_ENCODING |
Constructor and Description |
---|
AwsChunkedEncodingInputStream(InputStream in,
byte[] kSigning,
String datetime,
String keyPath,
String headerSignature,
AWS4Signer aws4Signer) |
AwsChunkedEncodingInputStream(InputStream in,
int maxBufferSize,
byte[] kSigning,
String datetime,
String keyPath,
String headerSignature,
AWS4Signer aws4Signer)
A wrapper of InputStream that implements pseudo-chunked-encoding.
|
Modifier and Type | Method and Description |
---|---|
static long |
calculateStreamContentLength(long originalLength) |
protected InputStream |
getWrappedInputStream()
Returns the underlying input stream, if any, from the subclass; or null
if there is no underlying input stream.
|
void |
mark(int readlimit)
The readlimit parameter is ignored.
|
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
void |
reset()
Reset the stream, either by resetting the wrapped stream or using the
buffer created by this class.
|
long |
skip(long n) |
abort, abortIfNeeded, isMetricActivated, release
available, close, read
protected static final String DEFAULT_ENCODING
public AwsChunkedEncodingInputStream(InputStream in, byte[] kSigning, String datetime, String keyPath, String headerSignature, AWS4Signer aws4Signer)
public AwsChunkedEncodingInputStream(InputStream in, int maxBufferSize, byte[] kSigning, String datetime, String keyPath, String headerSignature, AWS4Signer aws4Signer)
in
- The original InputStream.maxBufferSize
- Maximum number of bytes buffered by this class.kSigning
- Signing key.datetime
- Datetime, as used in SigV4.keyPath
- Keypath/Scope, as used in SigV4.headerSignature
- The signature of the signed headers. This will be used for
calculating the signature of the first chunk.aws4Signer
- The AWS4Signer used for hashing and signing.public int read() throws IOException
read
in class InputStream
IOException
public int read(byte[] b, int off, int len) throws IOException
read
in class InputStream
IOException
public long skip(long n) throws IOException
skip
in class InputStream
IOException
public boolean markSupported()
markSupported
in class InputStream
InputStream.markSupported()
public void mark(int readlimit)
mark
in class InputStream
public void reset() throws IOException
reset
in class InputStream
IOException
public static long calculateStreamContentLength(long originalLength)
protected InputStream getWrappedInputStream()
SdkInputStream
getWrappedInputStream
in class SdkInputStream
Copyright © 2024. All rights reserved.