/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Utils; namespace Aws { namespace CodeBuild { namespace Model { namespace ArtifactNamespaceMapper { static const int NONE_HASH = HashingUtils::HashString("NONE"); static const int BUILD_ID_HASH = HashingUtils::HashString("BUILD_ID"); ArtifactNamespace GetArtifactNamespaceForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == NONE_HASH) { return ArtifactNamespace::NONE; } else if (hashCode == BUILD_ID_HASH) { return ArtifactNamespace::BUILD_ID; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return ArtifactNamespace::NOT_SET; } Aws::String GetNameForArtifactNamespace(ArtifactNamespace enumValue) { switch(enumValue) { case ArtifactNamespace::NONE: return "NONE"; case ArtifactNamespace::BUILD_ID: return "BUILD_ID"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace ArtifactNamespaceMapper } // namespace Model } // namespace CodeBuild } // namespace Aws