61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
/**
|
|
* 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/iot-jobs-data/IoTJobsDataPlaneErrors.h>
|
|
#include <aws/iot-jobs-data/model/ThrottlingException.h>
|
|
|
|
using namespace Aws::Client;
|
|
using namespace Aws::Utils;
|
|
using namespace Aws::IoTJobsDataPlane;
|
|
using namespace Aws::IoTJobsDataPlane::Model;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IoTJobsDataPlane
|
|
{
|
|
template<> AWS_IOTJOBSDATAPLANE_API ThrottlingException IoTJobsDataPlaneError::GetModeledError()
|
|
{
|
|
assert(this->GetErrorType() == IoTJobsDataPlaneErrors::THROTTLING);
|
|
return ThrottlingException(this->GetJsonPayload().View());
|
|
}
|
|
|
|
namespace IoTJobsDataPlaneErrorMapper
|
|
{
|
|
|
|
static const int TERMINAL_STATE_HASH = HashingUtils::HashString("TerminalStateException");
|
|
static const int INVALID_REQUEST_HASH = HashingUtils::HashString("InvalidRequestException");
|
|
static const int CERTIFICATE_VALIDATION_HASH = HashingUtils::HashString("CertificateValidationException");
|
|
static const int INVALID_STATE_TRANSITION_HASH = HashingUtils::HashString("InvalidStateTransitionException");
|
|
|
|
|
|
AWSError<CoreErrors> GetErrorForName(const char* errorName)
|
|
{
|
|
int hashCode = HashingUtils::HashString(errorName);
|
|
|
|
if (hashCode == TERMINAL_STATE_HASH)
|
|
{
|
|
return AWSError<CoreErrors>(static_cast<CoreErrors>(IoTJobsDataPlaneErrors::TERMINAL_STATE), false);
|
|
}
|
|
else if (hashCode == INVALID_REQUEST_HASH)
|
|
{
|
|
return AWSError<CoreErrors>(static_cast<CoreErrors>(IoTJobsDataPlaneErrors::INVALID_REQUEST), false);
|
|
}
|
|
else if (hashCode == CERTIFICATE_VALIDATION_HASH)
|
|
{
|
|
return AWSError<CoreErrors>(static_cast<CoreErrors>(IoTJobsDataPlaneErrors::CERTIFICATE_VALIDATION), false);
|
|
}
|
|
else if (hashCode == INVALID_STATE_TRANSITION_HASH)
|
|
{
|
|
return AWSError<CoreErrors>(static_cast<CoreErrors>(IoTJobsDataPlaneErrors::INVALID_STATE_TRANSITION), false);
|
|
}
|
|
return AWSError<CoreErrors>(CoreErrors::UNKNOWN, false);
|
|
}
|
|
|
|
} // namespace IoTJobsDataPlaneErrorMapper
|
|
} // namespace IoTJobsDataPlane
|
|
} // namespace Aws
|