feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,168 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/sms/model/AppReplicationStatus.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 SMS
{
namespace Model
{
namespace AppReplicationStatusMapper
{
static const int READY_FOR_CONFIGURATION_HASH = HashingUtils::HashString("READY_FOR_CONFIGURATION");
static const int CONFIGURATION_IN_PROGRESS_HASH = HashingUtils::HashString("CONFIGURATION_IN_PROGRESS");
static const int CONFIGURATION_INVALID_HASH = HashingUtils::HashString("CONFIGURATION_INVALID");
static const int READY_FOR_REPLICATION_HASH = HashingUtils::HashString("READY_FOR_REPLICATION");
static const int VALIDATION_IN_PROGRESS_HASH = HashingUtils::HashString("VALIDATION_IN_PROGRESS");
static const int REPLICATION_PENDING_HASH = HashingUtils::HashString("REPLICATION_PENDING");
static const int REPLICATION_IN_PROGRESS_HASH = HashingUtils::HashString("REPLICATION_IN_PROGRESS");
static const int REPLICATED_HASH = HashingUtils::HashString("REPLICATED");
static const int PARTIALLY_REPLICATED_HASH = HashingUtils::HashString("PARTIALLY_REPLICATED");
static const int DELTA_REPLICATION_IN_PROGRESS_HASH = HashingUtils::HashString("DELTA_REPLICATION_IN_PROGRESS");
static const int DELTA_REPLICATED_HASH = HashingUtils::HashString("DELTA_REPLICATED");
static const int DELTA_REPLICATION_FAILED_HASH = HashingUtils::HashString("DELTA_REPLICATION_FAILED");
static const int REPLICATION_FAILED_HASH = HashingUtils::HashString("REPLICATION_FAILED");
static const int REPLICATION_STOPPING_HASH = HashingUtils::HashString("REPLICATION_STOPPING");
static const int REPLICATION_STOP_FAILED_HASH = HashingUtils::HashString("REPLICATION_STOP_FAILED");
static const int REPLICATION_STOPPED_HASH = HashingUtils::HashString("REPLICATION_STOPPED");
AppReplicationStatus GetAppReplicationStatusForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == READY_FOR_CONFIGURATION_HASH)
{
return AppReplicationStatus::READY_FOR_CONFIGURATION;
}
else if (hashCode == CONFIGURATION_IN_PROGRESS_HASH)
{
return AppReplicationStatus::CONFIGURATION_IN_PROGRESS;
}
else if (hashCode == CONFIGURATION_INVALID_HASH)
{
return AppReplicationStatus::CONFIGURATION_INVALID;
}
else if (hashCode == READY_FOR_REPLICATION_HASH)
{
return AppReplicationStatus::READY_FOR_REPLICATION;
}
else if (hashCode == VALIDATION_IN_PROGRESS_HASH)
{
return AppReplicationStatus::VALIDATION_IN_PROGRESS;
}
else if (hashCode == REPLICATION_PENDING_HASH)
{
return AppReplicationStatus::REPLICATION_PENDING;
}
else if (hashCode == REPLICATION_IN_PROGRESS_HASH)
{
return AppReplicationStatus::REPLICATION_IN_PROGRESS;
}
else if (hashCode == REPLICATED_HASH)
{
return AppReplicationStatus::REPLICATED;
}
else if (hashCode == PARTIALLY_REPLICATED_HASH)
{
return AppReplicationStatus::PARTIALLY_REPLICATED;
}
else if (hashCode == DELTA_REPLICATION_IN_PROGRESS_HASH)
{
return AppReplicationStatus::DELTA_REPLICATION_IN_PROGRESS;
}
else if (hashCode == DELTA_REPLICATED_HASH)
{
return AppReplicationStatus::DELTA_REPLICATED;
}
else if (hashCode == DELTA_REPLICATION_FAILED_HASH)
{
return AppReplicationStatus::DELTA_REPLICATION_FAILED;
}
else if (hashCode == REPLICATION_FAILED_HASH)
{
return AppReplicationStatus::REPLICATION_FAILED;
}
else if (hashCode == REPLICATION_STOPPING_HASH)
{
return AppReplicationStatus::REPLICATION_STOPPING;
}
else if (hashCode == REPLICATION_STOP_FAILED_HASH)
{
return AppReplicationStatus::REPLICATION_STOP_FAILED;
}
else if (hashCode == REPLICATION_STOPPED_HASH)
{
return AppReplicationStatus::REPLICATION_STOPPED;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<AppReplicationStatus>(hashCode);
}
return AppReplicationStatus::NOT_SET;
}
Aws::String GetNameForAppReplicationStatus(AppReplicationStatus enumValue)
{
switch(enumValue)
{
case AppReplicationStatus::READY_FOR_CONFIGURATION:
return "READY_FOR_CONFIGURATION";
case AppReplicationStatus::CONFIGURATION_IN_PROGRESS:
return "CONFIGURATION_IN_PROGRESS";
case AppReplicationStatus::CONFIGURATION_INVALID:
return "CONFIGURATION_INVALID";
case AppReplicationStatus::READY_FOR_REPLICATION:
return "READY_FOR_REPLICATION";
case AppReplicationStatus::VALIDATION_IN_PROGRESS:
return "VALIDATION_IN_PROGRESS";
case AppReplicationStatus::REPLICATION_PENDING:
return "REPLICATION_PENDING";
case AppReplicationStatus::REPLICATION_IN_PROGRESS:
return "REPLICATION_IN_PROGRESS";
case AppReplicationStatus::REPLICATED:
return "REPLICATED";
case AppReplicationStatus::PARTIALLY_REPLICATED:
return "PARTIALLY_REPLICATED";
case AppReplicationStatus::DELTA_REPLICATION_IN_PROGRESS:
return "DELTA_REPLICATION_IN_PROGRESS";
case AppReplicationStatus::DELTA_REPLICATED:
return "DELTA_REPLICATED";
case AppReplicationStatus::DELTA_REPLICATION_FAILED:
return "DELTA_REPLICATION_FAILED";
case AppReplicationStatus::REPLICATION_FAILED:
return "REPLICATION_FAILED";
case AppReplicationStatus::REPLICATION_STOPPING:
return "REPLICATION_STOPPING";
case AppReplicationStatus::REPLICATION_STOP_FAILED:
return "REPLICATION_STOP_FAILED";
case AppReplicationStatus::REPLICATION_STOPPED:
return "REPLICATION_STOPPED";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace AppReplicationStatusMapper
} // namespace Model
} // namespace SMS
} // namespace Aws