blob: 836d0b47c55940ee9bbf3b347d80a2080a6040db (
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
55
56
57
58
59
60
61
62
63
64
65
66
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/client/AWSError.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/utils/event/EventStreamErrors.h>
using namespace Aws::Client;
// using namespace Aws::S3;
// using namespace Aws::Utils;
namespace Aws
{
namespace Utils
{
namespace Event
{
namespace EventStreamErrorsMapper
{
/*
static const int EVENT_STREAM_NO_ERROR_HASH = HashingUtils::HashString("EventStreamNoError");
static const int EVENT_STREAM_BUFFER_LENGTH_MISMATCH_HASH = HashingUtils::HashString("EventStreamBufferLengthMismatch");
static const int EVENT_STREAM_INSUFFICIENT_BUFFER_LEN_HASH = HashingUtils::HashString("EventStreamInsufficientBufferLen");
static const int EVENT_STREAM_MESSAGE_FIELD_SIZE_EXCEEDED_HASH = HashingUtils::HashString("EventStreamMessageFieldSizeExceeded");
static const int EVENT_STREAM_PRELUDE_CHECKSUM_FAILURE_HASH = HashingUtils::HashString("EventStreamPreludeChecksumFailure");
static const int EVENT_STREAM_MESSAGE_CHECKSUM_FAILURE_HASH = HashingUtils::HashString("EventStreamMessageChecksumFailure");
static const int EVENT_STREAM_MESSAGE_INVALID_HEADERS_LEN_HASH = HashingUtils::HashString("EventStreamMessageInvalidHeadersLen");
static const int EVENT_STREAM_MESSAGE_UNKNOWN_HEADER_TYPE_HASH = HashingUtils::HashString("EventStreamMessageUnknownHeaderType");
static const int EVENT_STREAM_MESSAGE_PARSER_ILLEGAL_STATE_HASH = HashingUtils::HashString("EventStreamMessageParserIllegalState");
*/
const char* GetNameForError(EventStreamErrors error)
{
switch (error)
{
case EventStreamErrors::EVENT_STREAM_NO_ERROR:
return "EventStreamNoError";
case EventStreamErrors::EVENT_STREAM_BUFFER_LENGTH_MISMATCH:
return "EventStreamBufferLengthMismatch";
case EventStreamErrors::EVENT_STREAM_INSUFFICIENT_BUFFER_LEN:
return "EventStreamInsufficientBufferLen";
case EventStreamErrors::EVENT_STREAM_MESSAGE_FIELD_SIZE_EXCEEDED:
return "EventStreamMessageFieldSizeExceeded";
case EventStreamErrors::EVENT_STREAM_PRELUDE_CHECKSUM_FAILURE:
return "EventStreamPreludeChecksumFailure";
case EventStreamErrors::EVENT_STREAM_MESSAGE_CHECKSUM_FAILURE:
return "EventStreamMessageChecksumFailure";
case EventStreamErrors::EVENT_STREAM_MESSAGE_INVALID_HEADERS_LEN:
return "EventStreamMessageInvalidHeadersLen";
case EventStreamErrors::EVENT_STREAM_MESSAGE_UNKNOWN_HEADER_TYPE:
return "EventStreamMessageUnknownHeaderType";
case EventStreamErrors::EVENT_STREAM_MESSAGE_PARSER_ILLEGAL_STATE:
return "EventStreamMessageParserIllegalState";
default:
return "EventStreamUnknownError";
}
}
AWSError<CoreErrors> GetAwsErrorForEventStreamError(EventStreamErrors error)
{
return AWSError<CoreErrors>(CoreErrors::UNKNOWN, GetNameForError(error), "", false);
}
} // namespace EventStreamErrorsMapper
} // namespace Event
} // namespace Utils
} // namespace Aws
|