| /* |
| * |
| * 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/GroupKeyManagement/Structs.h> |
| |
| #include <app/data-model/StructDecodeIterator.h> |
| #include <app/data-model/WrappedStructEncoder.h> |
| |
| namespace chip { |
| namespace app { |
| namespace Clusters { |
| namespace GroupKeyManagement { |
| namespace Structs { |
| |
| namespace GroupInfoMapStruct { |
| CHIP_ERROR Type::EncodeForWrite(TLV::TLVWriter & aWriter, TLV::Tag aTag) const |
| { |
| return DoEncode(aWriter, aTag, NullOptional); |
| } |
| |
| CHIP_ERROR Type::EncodeForRead(TLV::TLVWriter & aWriter, TLV::Tag aTag, FabricIndex aAccessingFabricIndex) const |
| { |
| return DoEncode(aWriter, aTag, MakeOptional(aAccessingFabricIndex)); |
| } |
| |
| CHIP_ERROR Type::DoEncode(TLV::TLVWriter & aWriter, TLV::Tag aTag, const Optional<FabricIndex> & aAccessingFabricIndex) const |
| { |
| |
| DataModel::WrappedStructEncoder encoder{ aWriter, aTag }; |
| |
| encoder.Encode(to_underlying(Fields::kGroupId), groupId); |
| encoder.Encode(to_underlying(Fields::kEndpoints), endpoints); |
| encoder.Encode(to_underlying(Fields::kGroupName), groupName); |
| if (aAccessingFabricIndex.HasValue()) |
| { |
| encoder.Encode(to_underlying(Fields::kFabricIndex), fabricIndex); |
| } |
| |
| 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::kGroupId)) |
| { |
| err = DataModel::Decode(reader, groupId); |
| } |
| else if (__context_tag == to_underlying(Fields::kEndpoints)) |
| { |
| err = DataModel::Decode(reader, endpoints); |
| } |
| else if (__context_tag == to_underlying(Fields::kGroupName)) |
| { |
| err = DataModel::Decode(reader, groupName); |
| } |
| else if (__context_tag == to_underlying(Fields::kFabricIndex)) |
| { |
| err = DataModel::Decode(reader, fabricIndex); |
| } |
| |
| ReturnErrorOnFailure(err); |
| } |
| } |
| |
| } // namespace GroupInfoMapStruct |
| |
| namespace GroupKeyMapStruct { |
| CHIP_ERROR Type::EncodeForWrite(TLV::TLVWriter & aWriter, TLV::Tag aTag) const |
| { |
| return DoEncode(aWriter, aTag, NullOptional); |
| } |
| |
| CHIP_ERROR Type::EncodeForRead(TLV::TLVWriter & aWriter, TLV::Tag aTag, FabricIndex aAccessingFabricIndex) const |
| { |
| return DoEncode(aWriter, aTag, MakeOptional(aAccessingFabricIndex)); |
| } |
| |
| CHIP_ERROR Type::DoEncode(TLV::TLVWriter & aWriter, TLV::Tag aTag, const Optional<FabricIndex> & aAccessingFabricIndex) const |
| { |
| |
| DataModel::WrappedStructEncoder encoder{ aWriter, aTag }; |
| |
| encoder.Encode(to_underlying(Fields::kGroupId), groupId); |
| encoder.Encode(to_underlying(Fields::kGroupKeySetID), groupKeySetID); |
| if (aAccessingFabricIndex.HasValue()) |
| { |
| encoder.Encode(to_underlying(Fields::kFabricIndex), fabricIndex); |
| } |
| |
| 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::kGroupId)) |
| { |
| err = DataModel::Decode(reader, groupId); |
| } |
| else if (__context_tag == to_underlying(Fields::kGroupKeySetID)) |
| { |
| err = DataModel::Decode(reader, groupKeySetID); |
| } |
| else if (__context_tag == to_underlying(Fields::kFabricIndex)) |
| { |
| err = DataModel::Decode(reader, fabricIndex); |
| } |
| |
| ReturnErrorOnFailure(err); |
| } |
| } |
| |
| } // namespace GroupKeyMapStruct |
| |
| namespace GroupKeySetStruct { |
| CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const |
| { |
| DataModel::WrappedStructEncoder encoder{ aWriter, aTag }; |
| encoder.Encode(to_underlying(Fields::kGroupKeySetID), groupKeySetID); |
| encoder.Encode(to_underlying(Fields::kGroupKeySecurityPolicy), groupKeySecurityPolicy); |
| encoder.Encode(to_underlying(Fields::kEpochKey0), epochKey0); |
| encoder.Encode(to_underlying(Fields::kEpochStartTime0), epochStartTime0); |
| encoder.Encode(to_underlying(Fields::kEpochKey1), epochKey1); |
| encoder.Encode(to_underlying(Fields::kEpochStartTime1), epochStartTime1); |
| encoder.Encode(to_underlying(Fields::kEpochKey2), epochKey2); |
| encoder.Encode(to_underlying(Fields::kEpochStartTime2), epochStartTime2); |
| 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::kGroupKeySetID)) |
| { |
| err = DataModel::Decode(reader, groupKeySetID); |
| } |
| else if (__context_tag == to_underlying(Fields::kGroupKeySecurityPolicy)) |
| { |
| err = DataModel::Decode(reader, groupKeySecurityPolicy); |
| } |
| else if (__context_tag == to_underlying(Fields::kEpochKey0)) |
| { |
| err = DataModel::Decode(reader, epochKey0); |
| } |
| else if (__context_tag == to_underlying(Fields::kEpochStartTime0)) |
| { |
| err = DataModel::Decode(reader, epochStartTime0); |
| } |
| else if (__context_tag == to_underlying(Fields::kEpochKey1)) |
| { |
| err = DataModel::Decode(reader, epochKey1); |
| } |
| else if (__context_tag == to_underlying(Fields::kEpochStartTime1)) |
| { |
| err = DataModel::Decode(reader, epochStartTime1); |
| } |
| else if (__context_tag == to_underlying(Fields::kEpochKey2)) |
| { |
| err = DataModel::Decode(reader, epochKey2); |
| } |
| else if (__context_tag == to_underlying(Fields::kEpochStartTime2)) |
| { |
| err = DataModel::Decode(reader, epochStartTime2); |
| } |
| |
| ReturnErrorOnFailure(err); |
| } |
| } |
| |
| } // namespace GroupKeySetStruct |
| } // namespace Structs |
| } // namespace GroupKeyManagement |
| } // namespace Clusters |
| } // namespace app |
| } // namespace chip |