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-polly/source/model/OutputFormat.cpp

85 lines
2.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/polly/model/OutputFormat.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 Polly
{
namespace Model
{
namespace OutputFormatMapper
{
static const int json_HASH = HashingUtils::HashString("json");
static const int mp3_HASH = HashingUtils::HashString("mp3");
static const int ogg_vorbis_HASH = HashingUtils::HashString("ogg_vorbis");
static const int pcm_HASH = HashingUtils::HashString("pcm");
OutputFormat GetOutputFormatForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == json_HASH)
{
return OutputFormat::json;
}
else if (hashCode == mp3_HASH)
{
return OutputFormat::mp3;
}
else if (hashCode == ogg_vorbis_HASH)
{
return OutputFormat::ogg_vorbis;
}
else if (hashCode == pcm_HASH)
{
return OutputFormat::pcm;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<OutputFormat>(hashCode);
}
return OutputFormat::NOT_SET;
}
Aws::String GetNameForOutputFormat(OutputFormat enumValue)
{
switch(enumValue)
{
case OutputFormat::json:
return "json";
case OutputFormat::mp3:
return "mp3";
case OutputFormat::ogg_vorbis:
return "ogg_vorbis";
case OutputFormat::pcm:
return "pcm";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace OutputFormatMapper
} // namespace Model
} // namespace Polly
} // namespace Aws