1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/compute-optimizer/model/FileFormat.h>
7 #include <aws/core/utils/HashingUtils.h>
8 #include <aws/core/Globals.h>
9 #include <aws/core/utils/EnumParseOverflowContainer.h>
10 
11 using namespace Aws::Utils;
12 
13 
14 namespace Aws
15 {
16   namespace ComputeOptimizer
17   {
18     namespace Model
19     {
20       namespace FileFormatMapper
21       {
22 
23         static const int Csv_HASH = HashingUtils::HashString("Csv");
24 
25 
GetFileFormatForName(const Aws::String & name)26         FileFormat GetFileFormatForName(const Aws::String& name)
27         {
28           int hashCode = HashingUtils::HashString(name.c_str());
29           if (hashCode == Csv_HASH)
30           {
31             return FileFormat::Csv;
32           }
33           EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
34           if(overflowContainer)
35           {
36             overflowContainer->StoreOverflow(hashCode, name);
37             return static_cast<FileFormat>(hashCode);
38           }
39 
40           return FileFormat::NOT_SET;
41         }
42 
GetNameForFileFormat(FileFormat enumValue)43         Aws::String GetNameForFileFormat(FileFormat enumValue)
44         {
45           switch(enumValue)
46           {
47           case FileFormat::Csv:
48             return "Csv";
49           default:
50             EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
51             if(overflowContainer)
52             {
53               return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
54             }
55 
56             return {};
57           }
58         }
59 
60       } // namespace FileFormatMapper
61     } // namespace Model
62   } // namespace ComputeOptimizer
63 } // namespace Aws
64