/** * 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 EC2 { namespace Model { namespace AddressFamilyMapper { static const int ipv4_HASH = HashingUtils::HashString("ipv4"); static const int ipv6_HASH = HashingUtils::HashString("ipv6"); AddressFamily GetAddressFamilyForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == ipv4_HASH) { return AddressFamily::ipv4; } else if (hashCode == ipv6_HASH) { return AddressFamily::ipv6; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return AddressFamily::NOT_SET; } Aws::String GetNameForAddressFamily(AddressFamily enumValue) { switch(enumValue) { case AddressFamily::ipv4: return "ipv4"; case AddressFamily::ipv6: return "ipv6"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace AddressFamilyMapper } // namespace Model } // namespace EC2 } // namespace Aws