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,101 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/devicefarm/model/DeviceSelectionResult.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace DeviceFarm
{
namespace Model
{
DeviceSelectionResult::DeviceSelectionResult() :
m_filtersHasBeenSet(false),
m_matchedDevicesCount(0),
m_matchedDevicesCountHasBeenSet(false),
m_maxDevices(0),
m_maxDevicesHasBeenSet(false)
{
}
DeviceSelectionResult::DeviceSelectionResult(JsonView jsonValue) :
m_filtersHasBeenSet(false),
m_matchedDevicesCount(0),
m_matchedDevicesCountHasBeenSet(false),
m_maxDevices(0),
m_maxDevicesHasBeenSet(false)
{
*this = jsonValue;
}
DeviceSelectionResult& DeviceSelectionResult::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("filters"))
{
Array<JsonView> filtersJsonList = jsonValue.GetArray("filters");
for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex)
{
m_filters.push_back(filtersJsonList[filtersIndex].AsObject());
}
m_filtersHasBeenSet = true;
}
if(jsonValue.ValueExists("matchedDevicesCount"))
{
m_matchedDevicesCount = jsonValue.GetInteger("matchedDevicesCount");
m_matchedDevicesCountHasBeenSet = true;
}
if(jsonValue.ValueExists("maxDevices"))
{
m_maxDevices = jsonValue.GetInteger("maxDevices");
m_maxDevicesHasBeenSet = true;
}
return *this;
}
JsonValue DeviceSelectionResult::Jsonize() const
{
JsonValue payload;
if(m_filtersHasBeenSet)
{
Array<JsonValue> filtersJsonList(m_filters.size());
for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex)
{
filtersJsonList[filtersIndex].AsObject(m_filters[filtersIndex].Jsonize());
}
payload.WithArray("filters", std::move(filtersJsonList));
}
if(m_matchedDevicesCountHasBeenSet)
{
payload.WithInteger("matchedDevicesCount", m_matchedDevicesCount);
}
if(m_maxDevicesHasBeenSet)
{
payload.WithInteger("maxDevices", m_maxDevices);
}
return payload;
}
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws