| /* |
| * |
| * 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/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/Actions/ClusterId.h> |
| #include <clusters/Actions/CommandIds.h> |
| #include <clusters/Actions/Enums.h> |
| #include <clusters/Actions/Structs.h> |
| |
| #include <cstdint> |
| |
| namespace chip { |
| namespace app { |
| namespace Clusters { |
| namespace Actions { |
| namespace Commands { |
| // Forward-declarations so we can reference these later. |
| |
| namespace InstantAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace InstantAction |
| |
| namespace InstantActionWithTransition { |
| struct Type; |
| struct DecodableType; |
| } // namespace InstantActionWithTransition |
| |
| namespace StartAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace StartAction |
| |
| namespace StartActionWithDuration { |
| struct Type; |
| struct DecodableType; |
| } // namespace StartActionWithDuration |
| |
| namespace StopAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace StopAction |
| |
| namespace PauseAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace PauseAction |
| |
| namespace PauseActionWithDuration { |
| struct Type; |
| struct DecodableType; |
| } // namespace PauseActionWithDuration |
| |
| namespace ResumeAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace ResumeAction |
| |
| namespace EnableAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace EnableAction |
| |
| namespace EnableActionWithDuration { |
| struct Type; |
| struct DecodableType; |
| } // namespace EnableActionWithDuration |
| |
| namespace DisableAction { |
| struct Type; |
| struct DecodableType; |
| } // namespace DisableAction |
| |
| namespace DisableActionWithDuration { |
| struct Type; |
| struct DecodableType; |
| } // namespace DisableActionWithDuration |
| |
| } // namespace Commands |
| |
| namespace Commands { |
| namespace InstantAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::InstantAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::InstantAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace InstantAction |
| namespace InstantActionWithTransition { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| kTransitionTime = 2, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::InstantActionWithTransition::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint16_t transitionTime = static_cast<uint16_t>(0); |
| |
| 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::InstantActionWithTransition::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint16_t transitionTime = static_cast<uint16_t>(0); |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace InstantActionWithTransition |
| namespace StartAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::StartAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::StartAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace StartAction |
| namespace StartActionWithDuration { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| kDuration = 2, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::StartActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| 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::StartActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace StartActionWithDuration |
| namespace StopAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::StopAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::StopAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace StopAction |
| namespace PauseAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::PauseAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::PauseAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace PauseAction |
| namespace PauseActionWithDuration { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| kDuration = 2, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::PauseActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| 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::PauseActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace PauseActionWithDuration |
| namespace ResumeAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::ResumeAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::ResumeAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace ResumeAction |
| namespace EnableAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::EnableAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::EnableAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace EnableAction |
| namespace EnableActionWithDuration { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| kDuration = 2, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::EnableActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| 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::EnableActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace EnableActionWithDuration |
| namespace DisableAction { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::DisableAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| 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::DisableAction::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace DisableAction |
| namespace DisableActionWithDuration { |
| enum class Fields : uint8_t |
| { |
| kActionID = 0, |
| kInvokeID = 1, |
| kDuration = 2, |
| }; |
| |
| struct Type |
| { |
| public: |
| // Use GetCommandId instead of commandId directly to avoid naming conflict with CommandIdentification in ExecutionOfACommand |
| static constexpr CommandId GetCommandId() { return Commands::DisableActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| 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::DisableActionWithDuration::Id; } |
| static constexpr ClusterId GetClusterId() { return Clusters::Actions::Id; } |
| static constexpr bool kIsFabricScoped = false; |
| |
| uint16_t actionID = static_cast<uint16_t>(0); |
| Optional<uint32_t> invokeID; |
| uint32_t duration = static_cast<uint32_t>(0); |
| |
| CHIP_ERROR Decode(TLV::TLVReader & reader); |
| }; |
| }; // namespace DisableActionWithDuration |
| } // namespace Commands |
| } // namespace Actions |
| } // namespace Clusters |
| } // namespace app |
| } // namespace chip |