This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-medialive/source/model/MultiplexProgramPacketIdentifiersMap.cpp

290 lines
7.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/medialive/model/MultiplexProgramPacketIdentifiersMap.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace MediaLive
{
namespace Model
{
MultiplexProgramPacketIdentifiersMap::MultiplexProgramPacketIdentifiersMap() :
m_audioPidsHasBeenSet(false),
m_dvbSubPidsHasBeenSet(false),
m_dvbTeletextPid(0),
m_dvbTeletextPidHasBeenSet(false),
m_etvPlatformPid(0),
m_etvPlatformPidHasBeenSet(false),
m_etvSignalPid(0),
m_etvSignalPidHasBeenSet(false),
m_klvDataPidsHasBeenSet(false),
m_pcrPid(0),
m_pcrPidHasBeenSet(false),
m_pmtPid(0),
m_pmtPidHasBeenSet(false),
m_privateMetadataPid(0),
m_privateMetadataPidHasBeenSet(false),
m_scte27PidsHasBeenSet(false),
m_scte35Pid(0),
m_scte35PidHasBeenSet(false),
m_timedMetadataPid(0),
m_timedMetadataPidHasBeenSet(false),
m_videoPid(0),
m_videoPidHasBeenSet(false)
{
}
MultiplexProgramPacketIdentifiersMap::MultiplexProgramPacketIdentifiersMap(JsonView jsonValue) :
m_audioPidsHasBeenSet(false),
m_dvbSubPidsHasBeenSet(false),
m_dvbTeletextPid(0),
m_dvbTeletextPidHasBeenSet(false),
m_etvPlatformPid(0),
m_etvPlatformPidHasBeenSet(false),
m_etvSignalPid(0),
m_etvSignalPidHasBeenSet(false),
m_klvDataPidsHasBeenSet(false),
m_pcrPid(0),
m_pcrPidHasBeenSet(false),
m_pmtPid(0),
m_pmtPidHasBeenSet(false),
m_privateMetadataPid(0),
m_privateMetadataPidHasBeenSet(false),
m_scte27PidsHasBeenSet(false),
m_scte35Pid(0),
m_scte35PidHasBeenSet(false),
m_timedMetadataPid(0),
m_timedMetadataPidHasBeenSet(false),
m_videoPid(0),
m_videoPidHasBeenSet(false)
{
*this = jsonValue;
}
MultiplexProgramPacketIdentifiersMap& MultiplexProgramPacketIdentifiersMap::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("audioPids"))
{
Array<JsonView> audioPidsJsonList = jsonValue.GetArray("audioPids");
for(unsigned audioPidsIndex = 0; audioPidsIndex < audioPidsJsonList.GetLength(); ++audioPidsIndex)
{
m_audioPids.push_back(audioPidsJsonList[audioPidsIndex].AsInteger());
}
m_audioPidsHasBeenSet = true;
}
if(jsonValue.ValueExists("dvbSubPids"))
{
Array<JsonView> dvbSubPidsJsonList = jsonValue.GetArray("dvbSubPids");
for(unsigned dvbSubPidsIndex = 0; dvbSubPidsIndex < dvbSubPidsJsonList.GetLength(); ++dvbSubPidsIndex)
{
m_dvbSubPids.push_back(dvbSubPidsJsonList[dvbSubPidsIndex].AsInteger());
}
m_dvbSubPidsHasBeenSet = true;
}
if(jsonValue.ValueExists("dvbTeletextPid"))
{
m_dvbTeletextPid = jsonValue.GetInteger("dvbTeletextPid");
m_dvbTeletextPidHasBeenSet = true;
}
if(jsonValue.ValueExists("etvPlatformPid"))
{
m_etvPlatformPid = jsonValue.GetInteger("etvPlatformPid");
m_etvPlatformPidHasBeenSet = true;
}
if(jsonValue.ValueExists("etvSignalPid"))
{
m_etvSignalPid = jsonValue.GetInteger("etvSignalPid");
m_etvSignalPidHasBeenSet = true;
}
if(jsonValue.ValueExists("klvDataPids"))
{
Array<JsonView> klvDataPidsJsonList = jsonValue.GetArray("klvDataPids");
for(unsigned klvDataPidsIndex = 0; klvDataPidsIndex < klvDataPidsJsonList.GetLength(); ++klvDataPidsIndex)
{
m_klvDataPids.push_back(klvDataPidsJsonList[klvDataPidsIndex].AsInteger());
}
m_klvDataPidsHasBeenSet = true;
}
if(jsonValue.ValueExists("pcrPid"))
{
m_pcrPid = jsonValue.GetInteger("pcrPid");
m_pcrPidHasBeenSet = true;
}
if(jsonValue.ValueExists("pmtPid"))
{
m_pmtPid = jsonValue.GetInteger("pmtPid");
m_pmtPidHasBeenSet = true;
}
if(jsonValue.ValueExists("privateMetadataPid"))
{
m_privateMetadataPid = jsonValue.GetInteger("privateMetadataPid");
m_privateMetadataPidHasBeenSet = true;
}
if(jsonValue.ValueExists("scte27Pids"))
{
Array<JsonView> scte27PidsJsonList = jsonValue.GetArray("scte27Pids");
for(unsigned scte27PidsIndex = 0; scte27PidsIndex < scte27PidsJsonList.GetLength(); ++scte27PidsIndex)
{
m_scte27Pids.push_back(scte27PidsJsonList[scte27PidsIndex].AsInteger());
}
m_scte27PidsHasBeenSet = true;
}
if(jsonValue.ValueExists("scte35Pid"))
{
m_scte35Pid = jsonValue.GetInteger("scte35Pid");
m_scte35PidHasBeenSet = true;
}
if(jsonValue.ValueExists("timedMetadataPid"))
{
m_timedMetadataPid = jsonValue.GetInteger("timedMetadataPid");
m_timedMetadataPidHasBeenSet = true;
}
if(jsonValue.ValueExists("videoPid"))
{
m_videoPid = jsonValue.GetInteger("videoPid");
m_videoPidHasBeenSet = true;
}
return *this;
}
JsonValue MultiplexProgramPacketIdentifiersMap::Jsonize() const
{
JsonValue payload;
if(m_audioPidsHasBeenSet)
{
Array<JsonValue> audioPidsJsonList(m_audioPids.size());
for(unsigned audioPidsIndex = 0; audioPidsIndex < audioPidsJsonList.GetLength(); ++audioPidsIndex)
{
audioPidsJsonList[audioPidsIndex].AsInteger(m_audioPids[audioPidsIndex]);
}
payload.WithArray("audioPids", std::move(audioPidsJsonList));
}
if(m_dvbSubPidsHasBeenSet)
{
Array<JsonValue> dvbSubPidsJsonList(m_dvbSubPids.size());
for(unsigned dvbSubPidsIndex = 0; dvbSubPidsIndex < dvbSubPidsJsonList.GetLength(); ++dvbSubPidsIndex)
{
dvbSubPidsJsonList[dvbSubPidsIndex].AsInteger(m_dvbSubPids[dvbSubPidsIndex]);
}
payload.WithArray("dvbSubPids", std::move(dvbSubPidsJsonList));
}
if(m_dvbTeletextPidHasBeenSet)
{
payload.WithInteger("dvbTeletextPid", m_dvbTeletextPid);
}
if(m_etvPlatformPidHasBeenSet)
{
payload.WithInteger("etvPlatformPid", m_etvPlatformPid);
}
if(m_etvSignalPidHasBeenSet)
{
payload.WithInteger("etvSignalPid", m_etvSignalPid);
}
if(m_klvDataPidsHasBeenSet)
{
Array<JsonValue> klvDataPidsJsonList(m_klvDataPids.size());
for(unsigned klvDataPidsIndex = 0; klvDataPidsIndex < klvDataPidsJsonList.GetLength(); ++klvDataPidsIndex)
{
klvDataPidsJsonList[klvDataPidsIndex].AsInteger(m_klvDataPids[klvDataPidsIndex]);
}
payload.WithArray("klvDataPids", std::move(klvDataPidsJsonList));
}
if(m_pcrPidHasBeenSet)
{
payload.WithInteger("pcrPid", m_pcrPid);
}
if(m_pmtPidHasBeenSet)
{
payload.WithInteger("pmtPid", m_pmtPid);
}
if(m_privateMetadataPidHasBeenSet)
{
payload.WithInteger("privateMetadataPid", m_privateMetadataPid);
}
if(m_scte27PidsHasBeenSet)
{
Array<JsonValue> scte27PidsJsonList(m_scte27Pids.size());
for(unsigned scte27PidsIndex = 0; scte27PidsIndex < scte27PidsJsonList.GetLength(); ++scte27PidsIndex)
{
scte27PidsJsonList[scte27PidsIndex].AsInteger(m_scte27Pids[scte27PidsIndex]);
}
payload.WithArray("scte27Pids", std::move(scte27PidsJsonList));
}
if(m_scte35PidHasBeenSet)
{
payload.WithInteger("scte35Pid", m_scte35Pid);
}
if(m_timedMetadataPidHasBeenSet)
{
payload.WithInteger("timedMetadataPid", m_timedMetadataPid);
}
if(m_videoPidHasBeenSet)
{
payload.WithInteger("videoPid", m_videoPid);
}
return payload;
}
} // namespace Model
} // namespace MediaLive
} // namespace Aws