/** * 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 StorageGateway { namespace Model { namespace HostEnvironmentMapper { static const int VMWARE_HASH = HashingUtils::HashString("VMWARE"); static const int HYPER_V_HASH = HashingUtils::HashString("HYPER-V"); static const int EC2_HASH = HashingUtils::HashString("EC2"); static const int KVM_HASH = HashingUtils::HashString("KVM"); static const int OTHER_HASH = HashingUtils::HashString("OTHER"); static const int SNOWBALL_HASH = HashingUtils::HashString("SNOWBALL"); HostEnvironment GetHostEnvironmentForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == VMWARE_HASH) { return HostEnvironment::VMWARE; } else if (hashCode == HYPER_V_HASH) { return HostEnvironment::HYPER_V; } else if (hashCode == EC2_HASH) { return HostEnvironment::EC2; } else if (hashCode == KVM_HASH) { return HostEnvironment::KVM; } else if (hashCode == OTHER_HASH) { return HostEnvironment::OTHER; } else if (hashCode == SNOWBALL_HASH) { return HostEnvironment::SNOWBALL; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return HostEnvironment::NOT_SET; } Aws::String GetNameForHostEnvironment(HostEnvironment enumValue) { switch(enumValue) { case HostEnvironment::VMWARE: return "VMWARE"; case HostEnvironment::HYPER_V: return "HYPER-V"; case HostEnvironment::EC2: return "EC2"; case HostEnvironment::KVM: return "KVM"; case HostEnvironment::OTHER: return "OTHER"; case HostEnvironment::SNOWBALL: return "SNOWBALL"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace HostEnvironmentMapper } // namespace Model } // namespace StorageGateway } // namespace Aws