blob: 79629281350ada06337a99465c5ae3d569f962f6 [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/ClosureControl/Structs.h>
#include <app/data-model/StructDecodeIterator.h>
#include <app/data-model/WrappedStructEncoder.h>
namespace chip {
namespace app {
namespace Clusters {
namespace ClosureControl {
namespace Structs {
namespace OverallStateStruct {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kPositioning), positioning);
encoder.Encode(to_underlying(Fields::kLatch), latch);
encoder.Encode(to_underlying(Fields::kSpeed), speed);
encoder.Encode(to_underlying(Fields::kSecureState), secureState);
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::kPositioning))
{
err = DataModel::Decode(reader, positioning);
}
else if (__context_tag == to_underlying(Fields::kLatch))
{
err = DataModel::Decode(reader, latch);
}
else if (__context_tag == to_underlying(Fields::kSpeed))
{
err = DataModel::Decode(reader, speed);
}
else if (__context_tag == to_underlying(Fields::kSecureState))
{
err = DataModel::Decode(reader, secureState);
}
ReturnErrorOnFailure(err);
}
}
} // namespace OverallStateStruct
namespace OverallTargetStruct {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kPosition), position);
encoder.Encode(to_underlying(Fields::kLatch), latch);
encoder.Encode(to_underlying(Fields::kSpeed), speed);
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::kPosition))
{
err = DataModel::Decode(reader, position);
}
else if (__context_tag == to_underlying(Fields::kLatch))
{
err = DataModel::Decode(reader, latch);
}
else if (__context_tag == to_underlying(Fields::kSpeed))
{
err = DataModel::Decode(reader, speed);
}
ReturnErrorOnFailure(err);
}
}
} // namespace OverallTargetStruct
} // namespace Structs
} // namespace ClosureControl
} // namespace Clusters
} // namespace app
} // namespace chip