public final class AwsChunkedEncodingInputStream extends com.amazonaws.internal.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)
A wrapper of InputStream that implements pseudo-chunked-encoding.
|
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)
calculates the content length of the stream.
|
protected InputStream |
getWrappedInputStream() |
void |
mark(int readlimit)
The read limit parameter is ignored if an internal buffer is being used
because the underlying input stream does not support mark, or INTEGER_MAX
if underlying input stream does support marking.
|
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
available, close, read
protected static final String DEFAULT_ENCODING
public AwsChunkedEncodingInputStream(InputStream in, byte[] kSigning, String datetime, String keyPath, String headerSignature, AWS4Signer aws4Signer)
in
- The original InputStream.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 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)
originalLength
- the original content length.protected InputStream getWrappedInputStream()
getWrappedInputStream
in class com.amazonaws.internal.SdkInputStream
Copyright © 2017. All rights reserved.