blob: 6f36cb6bd3859966b886c034cc1f7918c9e10a0f [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-Commands.ipp.zapt
#include <clusters/Actions/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 Actions {
namespace Commands {
namespace InstantAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace InstantAction.
namespace InstantActionWithTransition {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
encoder.Encode(to_underlying(Fields::kTransitionTime), transitionTime);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
else if (__context_tag == to_underlying(Fields::kTransitionTime))
{
err = DataModel::Decode(reader, transitionTime);
}
ReturnErrorOnFailure(err);
}
}
} // namespace InstantActionWithTransition.
namespace StartAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace StartAction.
namespace StartActionWithDuration {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
encoder.Encode(to_underlying(Fields::kDuration), duration);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
else if (__context_tag == to_underlying(Fields::kDuration))
{
err = DataModel::Decode(reader, duration);
}
ReturnErrorOnFailure(err);
}
}
} // namespace StartActionWithDuration.
namespace StopAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace StopAction.
namespace PauseAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace PauseAction.
namespace PauseActionWithDuration {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
encoder.Encode(to_underlying(Fields::kDuration), duration);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
else if (__context_tag == to_underlying(Fields::kDuration))
{
err = DataModel::Decode(reader, duration);
}
ReturnErrorOnFailure(err);
}
}
} // namespace PauseActionWithDuration.
namespace ResumeAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace ResumeAction.
namespace EnableAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace EnableAction.
namespace EnableActionWithDuration {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
encoder.Encode(to_underlying(Fields::kDuration), duration);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
else if (__context_tag == to_underlying(Fields::kDuration))
{
err = DataModel::Decode(reader, duration);
}
ReturnErrorOnFailure(err);
}
}
} // namespace EnableActionWithDuration.
namespace DisableAction {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
ReturnErrorOnFailure(err);
}
}
} // namespace DisableAction.
namespace DisableActionWithDuration {
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
{
DataModel::WrappedStructEncoder encoder{ aWriter, aTag };
encoder.Encode(to_underlying(Fields::kActionID), actionID);
encoder.Encode(to_underlying(Fields::kInvokeID), invokeID);
encoder.Encode(to_underlying(Fields::kDuration), duration);
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::kActionID))
{
err = DataModel::Decode(reader, actionID);
}
else if (__context_tag == to_underlying(Fields::kInvokeID))
{
err = DataModel::Decode(reader, invokeID);
}
else if (__context_tag == to_underlying(Fields::kDuration))
{
err = DataModel::Decode(reader, duration);
}
ReturnErrorOnFailure(err);
}
}
} // namespace DisableActionWithDuration.
} // namespace Commands
} // namespace Actions
} // namespace Clusters
} // namespace app
} // namespace chip