blob: 8b62ae5e634d4a172673de683b8c2fc6f002ac01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/http/standard/StandardHttpResponse.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/logging/LogMacros.h>
#include <aws/core/utils/memory/AWSMemory.h>
#include <istream>
using namespace Aws::Http;
using namespace Aws::Http::Standard;
using namespace Aws::Utils;
static const char* STANDARD_HTTP_RESPONSE_LOG_TAG = "StandardHttpResponse";
HeaderValueCollection StandardHttpResponse::GetHeaders() const
{
HeaderValueCollection headerValueCollection;
for (Aws::Map<Aws::String, Aws::String>::const_iterator iter = headerMap.begin(); iter != headerMap.end(); ++iter)
{
headerValueCollection.emplace(HeaderValuePair(iter->first, iter->second));
}
return headerValueCollection;
}
bool StandardHttpResponse::HasHeader(const char* headerName) const
{
return headerMap.find(StringUtils::ToLower(headerName)) != headerMap.end();
}
const Aws::String& StandardHttpResponse::GetHeader(const Aws::String& headerName) const
{
Aws::Map<Aws::String, Aws::String>::const_iterator foundValue = headerMap.find(StringUtils::ToLower(headerName.c_str()));
assert(foundValue != headerMap.end());
if (foundValue == headerMap.end()) {
AWS_LOGSTREAM_ERROR(STANDARD_HTTP_RESPONSE_LOG_TAG, "Requested a header value for a missing header key: " << headerName);
static const Aws::String EMPTY_STRING = "";
return EMPTY_STRING;
}
return foundValue->second;
}
void StandardHttpResponse::AddHeader(const Aws::String& headerName, const Aws::String& headerValue)
{
headerMap[StringUtils::ToLower(headerName.c_str())] = headerValue;
}
|