| /* |
| * |
| * 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-Commands.ipp.zapt |
| |
| #include <clusters/CommissionerControl/Commands.h> |
| |
| #include <app/data-model/Decode.h> |
| #include <app/data-model/StructDecodeIterator.h> |
| #include <app/data-model/WrappedStructEncoder.h> |
| |
| namespace chip { |
| namespace app { |
| namespace Clusters { |
| namespace CommissionerControl { |
| namespace Commands { |
| namespace RequestCommissioningApproval { |
| |
| CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const |
| { |
| DataModel::WrappedStructEncoder encoder{ aWriter, aTag }; |
| encoder.Encode(to_underlying(Fields::kRequestID), requestID); |
| encoder.Encode(to_underlying(Fields::kVendorID), vendorID); |
| encoder.Encode(to_underlying(Fields::kProductID), productID); |
| encoder.Encode(to_underlying(Fields::kLabel), label); |
| 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::kRequestID)) |
| { |
| err = DataModel::Decode(reader, requestID); |
| } |
| else if (__context_tag == to_underlying(Fields::kVendorID)) |
| { |
| err = DataModel::Decode(reader, vendorID); |
| } |
| else if (__context_tag == to_underlying(Fields::kProductID)) |
| { |
| err = DataModel::Decode(reader, productID); |
| } |
| else if (__context_tag == to_underlying(Fields::kLabel)) |
| { |
| err = DataModel::Decode(reader, label); |
| } |
| |
| ReturnErrorOnFailure(err); |
| } |
| } |
| } // namespace RequestCommissioningApproval. |
| namespace CommissionNode { |
| |
| CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const |
| { |
| DataModel::WrappedStructEncoder encoder{ aWriter, aTag }; |
| encoder.Encode(to_underlying(Fields::kRequestID), requestID); |
| encoder.Encode(to_underlying(Fields::kResponseTimeoutSeconds), responseTimeoutSeconds); |
| 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::kRequestID)) |
| { |
| err = DataModel::Decode(reader, requestID); |
| } |
| else if (__context_tag == to_underlying(Fields::kResponseTimeoutSeconds)) |
| { |
| err = DataModel::Decode(reader, responseTimeoutSeconds); |
| } |
| |
| ReturnErrorOnFailure(err); |
| } |
| } |
| } // namespace CommissionNode. |
| namespace ReverseOpenCommissioningWindow { |
| |
| CHIP_ERROR Type::Encode(DataModel::FabricAwareTLVWriter & aWriter, TLV::Tag aTag) const |
| { |
| DataModel::WrappedStructEncoder encoder{ aWriter, aTag }; |
| encoder.Encode(to_underlying(Fields::kCommissioningTimeout), commissioningTimeout); |
| encoder.Encode(to_underlying(Fields::kPAKEPasscodeVerifier), PAKEPasscodeVerifier); |
| encoder.Encode(to_underlying(Fields::kDiscriminator), discriminator); |
| encoder.Encode(to_underlying(Fields::kIterations), iterations); |
| encoder.Encode(to_underlying(Fields::kSalt), salt); |
| 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::kCommissioningTimeout)) |
| { |
| err = DataModel::Decode(reader, commissioningTimeout); |
| } |
| else if (__context_tag == to_underlying(Fields::kPAKEPasscodeVerifier)) |
| { |
| err = DataModel::Decode(reader, PAKEPasscodeVerifier); |
| } |
| else if (__context_tag == to_underlying(Fields::kDiscriminator)) |
| { |
| err = DataModel::Decode(reader, discriminator); |
| } |
| else if (__context_tag == to_underlying(Fields::kIterations)) |
| { |
| err = DataModel::Decode(reader, iterations); |
| } |
| else if (__context_tag == to_underlying(Fields::kSalt)) |
| { |
| err = DataModel::Decode(reader, salt); |
| } |
| |
| ReturnErrorOnFailure(err); |
| } |
| } |
| } // namespace ReverseOpenCommissioningWindow. |
| } // namespace Commands |
| } // namespace CommissionerControl |
| } // namespace Clusters |
| } // namespace app |
| } // namespace chip |