blob: 06334e56c87e7159910c8ac12c69cb75ace03d7f [file] [log] [blame]
/*
*
* Copyright (c) 2022 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// THIS FILE IS GENERATED BY ZAP
// This file is generated from clusters-Structs.ipp.zapt
#include <clusters/ElectricalEnergyMeasurement/Structs.h>
#include <app/data-model/StructDecodeIterator.h>
#include <app/data-model/WrappedStructEncoder.h>
namespace chip {
namespace app {
namespace Clusters {
namespace ElectricalEnergyMeasurement {
namespace Structs {
namespace CumulativeEnergyResetStruct {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kImportedResetTimestamp), importedResetTimestamp);
encoder.Encode(to_underlying(Fields::kExportedResetTimestamp), exportedResetTimestamp);
encoder.Encode(to_underlying(Fields::kImportedResetSystime), importedResetSystime);
encoder.Encode(to_underlying(Fields::kExportedResetSystime), exportedResetSystime);
return encoder.Finalize();
}
CHIP_ERROR DecodableType::Decode(TLV::TLVReader & reader)
{
detail::StructDecodeIterator __iterator(reader);
while (true)
{
uint8_t __context_tag = 0;
CHIP_ERROR err = __iterator.Next(__context_tag);
VerifyOrReturnError(err != CHIP_ERROR_END_OF_TLV, CHIP_NO_ERROR);
ReturnErrorOnFailure(err);
if (__context_tag == to_underlying(Fields::kImportedResetTimestamp))
{
err = DataModel::Decode(reader, importedResetTimestamp);
}
else if (__context_tag == to_underlying(Fields::kExportedResetTimestamp))
{
err = DataModel::Decode(reader, exportedResetTimestamp);
}
else if (__context_tag == to_underlying(Fields::kImportedResetSystime))
{
err = DataModel::Decode(reader, importedResetSystime);
}
else if (__context_tag == to_underlying(Fields::kExportedResetSystime))
{
err = DataModel::Decode(reader, exportedResetSystime);
}
ReturnErrorOnFailure(err);
}
}
} // namespace CumulativeEnergyResetStruct
namespace EnergyMeasurementStruct {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kEnergy), energy);
encoder.Encode(to_underlying(Fields::kStartTimestamp), startTimestamp);
encoder.Encode(to_underlying(Fields::kEndTimestamp), endTimestamp);
encoder.Encode(to_underlying(Fields::kStartSystime), startSystime);
encoder.Encode(to_underlying(Fields::kEndSystime), endSystime);
encoder.Encode(to_underlying(Fields::kApparentEnergy), apparentEnergy);
encoder.Encode(to_underlying(Fields::kReactiveEnergy), reactiveEnergy);
return encoder.Finalize();
}
CHIP_ERROR DecodableType::Decode(TLV::TLVReader & reader)
{
detail::StructDecodeIterator __iterator(reader);
while (true)
{
uint8_t __context_tag = 0;
CHIP_ERROR err = __iterator.Next(__context_tag);
VerifyOrReturnError(err != CHIP_ERROR_END_OF_TLV, CHIP_NO_ERROR);
ReturnErrorOnFailure(err);
if (__context_tag == to_underlying(Fields::kEnergy))
{
err = DataModel::Decode(reader, energy);
}
else if (__context_tag == to_underlying(Fields::kStartTimestamp))
{
err = DataModel::Decode(reader, startTimestamp);
}
else if (__context_tag == to_underlying(Fields::kEndTimestamp))
{
err = DataModel::Decode(reader, endTimestamp);
}
else if (__context_tag == to_underlying(Fields::kStartSystime))
{
err = DataModel::Decode(reader, startSystime);
}
else if (__context_tag == to_underlying(Fields::kEndSystime))
{
err = DataModel::Decode(reader, endSystime);
}
else if (__context_tag == to_underlying(Fields::kApparentEnergy))
{
err = DataModel::Decode(reader, apparentEnergy);
}
else if (__context_tag == to_underlying(Fields::kReactiveEnergy))
{
err = DataModel::Decode(reader, reactiveEnergy);
}
ReturnErrorOnFailure(err);
}
}
} // namespace EnergyMeasurementStruct
} // namespace Structs
} // namespace ElectricalEnergyMeasurement
} // namespace Clusters
} // namespace app
} // namespace chip