This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-mediastore/source/model/MethodName.cpp

85 lines
2.3 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mediastore/model/MethodName.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/Globals.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
using namespace Aws::Utils;
namespace Aws
{
namespace MediaStore
{
namespace Model
{
namespace MethodNameMapper
{
static const int PUT_HASH = HashingUtils::HashString("PUT");
static const int GET__HASH = HashingUtils::HashString("GET");
static const int DELETE__HASH = HashingUtils::HashString("DELETE");
static const int HEAD_HASH = HashingUtils::HashString("HEAD");
MethodName GetMethodNameForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == PUT_HASH)
{
return MethodName::PUT;
}
else if (hashCode == GET__HASH)
{
return MethodName::GET_;
}
else if (hashCode == DELETE__HASH)
{
return MethodName::DELETE_;
}
else if (hashCode == HEAD_HASH)
{
return MethodName::HEAD;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<MethodName>(hashCode);
}
return MethodName::NOT_SET;
}
Aws::String GetNameForMethodName(MethodName enumValue)
{
switch(enumValue)
{
case MethodName::PUT:
return "PUT";
case MethodName::GET_:
return "GET";
case MethodName::DELETE_:
return "DELETE";
case MethodName::HEAD:
return "HEAD";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace MethodNameMapper
} // namespace Model
} // namespace MediaStore
} // namespace Aws