| /* |
| * |
| * 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.h.zapt |
| |
| #pragma once |
| |
| #include <app/data-model/DecodableList.h> |
| #include <app/data-model/Encode.h> |
| #include <app/data-model/List.h> |
| #include <app/data-model/NullObject.h> |
| #include <app/data-model/Nullable.h> |
| #include <lib/core/DataModelTypes.h> |
| #include <lib/core/Optional.h> |
| #include <lib/core/TLV.h> |
| #include <lib/support/BitMask.h> |
| |
| #include <clusters/shared/Enums.h> |
| #include <clusters/shared/Structs.h> |
| |
| #include <clusters/CommissionerControl/ClusterId.h> |
| #include <clusters/CommissionerControl/CommandIds.h> |
| #include <clusters/CommissionerControl/Enums.h> |
| #include <clusters/CommissionerControl/Structs.h> |
| |
| #include <cstdint> |
| |
| namespace chip { |
| namespace app { |
| namespace Clusters { |
| namespace CommissionerControl { |
| namespace Commands { |
| // Forward-declarations so we can reference these later. |
| |
| namespace RequestCommissioningApproval { |
| struct Type; |
| struct DecodableType; |
| } // namespace RequestCommissioningApproval |
| |
| namespace CommissionNode { |
| struct Type; |
| struct DecodableType; |
| } // namespace CommissionNode |
| |
| namespace ReverseOpenCommissioningWindow { |
| struct Type; |
| struct DecodableType; |
| } // namespace ReverseOpenCommissioningWindow |
| |
| } // namespace Commands |
| |
| namespace Commands { |
| namespace RequestCommissioningApproval { |
| enum class Fields : uint8_t |
| { |
| kRequestID = 0, |
| kVendorID = 1, |
| kProductID = 2, |
| kLabel = 3, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::RequestCommissioningApproval::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::CommissionerControl::Id; } |
| |
| uint64_t requestID = static_cast<uint64_t>(0); |
| chip::VendorId vendorID = static_cast<chip::VendorId>(0); |
| uint16_t productID = static_cast<uint16_t>(0); |
| Optional<chip::CharSpan> label; |
| |
| CHIP_ERROR Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const; |
| |
| using ResponseType = DataModel::NullObjectType; |
| |
| static constexpr bool MustUseTimedInvoke() { return false; } |
| }; |
| |
| struct DecodableType |
| { |
| public: |
| static constexpr CommandId GetCommandId() { return Commands::RequestCommissioningApproval::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::CommissionerControl::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint64_t requestID = static_cast<uint64_t>(0); |
| chip::VendorId vendorID = static_cast<chip::VendorId>(0); |
| uint16_t productID = static_cast<uint16_t>(0); |
| Optional<chip::CharSpan> label; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace RequestCommissioningApproval |
| namespace CommissionNode { |
| enum class Fields : uint8_t |
| { |
| kRequestID = 0, |
| kResponseTimeoutSeconds = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::CommissionNode::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::CommissionerControl::Id; } |
| |
| uint64_t requestID = static_cast<uint64_t>(0); |
| uint16_t responseTimeoutSeconds = static_cast<uint16_t>(0); |
| |
| CHIP_ERROR Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const; |
| |
| using ResponseType = Clusters::CommissionerControl::Commands::ReverseOpenCommissioningWindow::DecodableType; |
| |
| static constexpr bool MustUseTimedInvoke() { return false; } |
| }; |
| |
| struct DecodableType |
| { |
| public: |
| static constexpr CommandId GetCommandId() { return Commands::CommissionNode::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::CommissionerControl::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint64_t requestID = static_cast<uint64_t>(0); |
| uint16_t responseTimeoutSeconds = static_cast<uint16_t>(0); |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace CommissionNode |
| namespace ReverseOpenCommissioningWindow { |
| enum class Fields : uint8_t |
| { |
| kCommissioningTimeout = 0, |
| kPAKEPasscodeVerifier = 1, |
| kDiscriminator = 2, |
| kIterations = 3, |
| kSalt = 4, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::ReverseOpenCommissioningWindow::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::CommissionerControl::Id; } |
| |
| uint16_t commissioningTimeout = static_cast<uint16_t>(0); |
| chip::ByteSpan PAKEPasscodeVerifier; |
| uint16_t discriminator = static_cast<uint16_t>(0); |
| uint32_t iterations = static_cast<uint32_t>(0); |
| chip::ByteSpan salt; |
| |
| CHIP_ERROR Encode(DataModel::FabricAwareTLVWriter & aWriter, TLV::Tag aTag) const; |
| |
| using ResponseType = DataModel::NullObjectType; |
| |
| static constexpr bool MustUseTimedInvoke() { return false; } |
| }; |
| |
| struct DecodableType |
| { |
| public: |
| static constexpr CommandId GetCommandId() { return Commands::ReverseOpenCommissioningWindow::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::CommissionerControl::Id; } |
| |
| uint16_t commissioningTimeout = static_cast<uint16_t>(0); |
| chip::ByteSpan PAKEPasscodeVerifier; |
| uint16_t discriminator = static_cast<uint16_t>(0); |
| uint32_t iterations = static_cast<uint32_t>(0); |
| chip::ByteSpan salt; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace ReverseOpenCommissioningWindow |
| } // namespace Commands |
| } // namespace CommissionerControl |
| } // namespace Clusters |
| } // namespace app |
| } // namespace chip |