Coverage Report

Created: 2026-06-30 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/connectedhomeip/zzz_generated/app-common/clusters/AvAnalysis/Events.ipp
Line
Count
Source
1
/*
2
 *
3
 *    Copyright (c) 2022 Project CHIP Authors
4
 *
5
 *    Licensed under the Apache License, Version 2.0 (the "License");
6
 *    you may not use this file except in compliance with the License.
7
 *    You may obtain a copy of the License at
8
 *
9
 *        http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 *    Unless required by applicable law or agreed to in writing, software
12
 *    distributed under the License is distributed on an "AS IS" BASIS,
13
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 *    See the License for the specific language governing permissions and
15
 *    limitations under the License.
16
 */
17
18
// THIS FILE IS GENERATED BY ZAP
19
// This file is generated from clusters-Events.ipp.zapt
20
21
#include <clusters/AvAnalysis/Events.h>
22
23
#include <app/data-model/Decode.h>
24
#include <app/data-model/Encode.h>
25
#include <app/data-model/StructDecodeIterator.h>
26
#include <app/data-model/WrappedStructEncoder.h>
27
28
namespace chip {
29
namespace app {
30
namespace Clusters {
31
namespace AvAnalysis {
32
namespace Events {
33
namespace AnalysisSessionStart {
34
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
35
0
{
36
0
    TLV::TLVType outer;
37
0
    ReturnErrorOnFailure(aWriter.StartContainer(aTag, TLV::kTLVType_Structure, outer));
38
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSessionID), sessionID));
39
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSourceNodeId), sourceNodeId));
40
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kTriggeredZones), triggeredZones));
41
0
    return aWriter.EndContainer(outer);
42
0
}
43
44
CHIP_ERROR DecodableType::Decode(TLV::TLVReader & reader)
45
0
{
46
0
    detail::StructDecodeIterator __iterator(reader);
47
0
    while (true)
48
0
    {
49
0
        uint8_t __context_tag = 0;
50
0
        CHIP_ERROR err        = __iterator.Next(__context_tag);
51
0
        VerifyOrReturnError(err != CHIP_ERROR_END_OF_TLV, CHIP_NO_ERROR);
52
0
        ReturnErrorOnFailure(err);
53
54
0
        if (__context_tag == to_underlying(Fields::kSessionID))
55
0
        {
56
0
            err = DataModel::Decode(reader, sessionID);
57
0
        }
58
0
        else if (__context_tag == to_underlying(Fields::kSourceNodeId))
59
0
        {
60
0
            err = DataModel::Decode(reader, sourceNodeId);
61
0
        }
62
0
        else if (__context_tag == to_underlying(Fields::kTriggeredZones))
63
0
        {
64
0
            err = DataModel::Decode(reader, triggeredZones);
65
0
        }
66
0
        else
67
0
        {
68
0
        }
69
70
0
        ReturnErrorOnFailure(err);
71
0
    }
72
0
}
73
} // namespace AnalysisSessionStart
74
namespace AnalysisSessionEnd {
75
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
76
0
{
77
0
    TLV::TLVType outer;
78
0
    ReturnErrorOnFailure(aWriter.StartContainer(aTag, TLV::kTLVType_Structure, outer));
79
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSessionID), sessionID));
80
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSourceNodeId), sourceNodeId));
81
0
    return aWriter.EndContainer(outer);
82
0
}
83
84
CHIP_ERROR DecodableType::Decode(TLV::TLVReader & reader)
85
0
{
86
0
    detail::StructDecodeIterator __iterator(reader);
87
0
    while (true)
88
0
    {
89
0
        uint8_t __context_tag = 0;
90
0
        CHIP_ERROR err        = __iterator.Next(__context_tag);
91
0
        VerifyOrReturnError(err != CHIP_ERROR_END_OF_TLV, CHIP_NO_ERROR);
92
0
        ReturnErrorOnFailure(err);
93
94
0
        if (__context_tag == to_underlying(Fields::kSessionID))
95
0
        {
96
0
            err = DataModel::Decode(reader, sessionID);
97
0
        }
98
0
        else if (__context_tag == to_underlying(Fields::kSourceNodeId))
99
0
        {
100
0
            err = DataModel::Decode(reader, sourceNodeId);
101
0
        }
102
0
        else
103
0
        {
104
0
        }
105
106
0
        ReturnErrorOnFailure(err);
107
0
    }
108
0
}
109
} // namespace AnalysisSessionEnd
110
namespace PerceivedContext {
111
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const
112
0
{
113
0
    TLV::TLVType outer;
114
0
    ReturnErrorOnFailure(aWriter.StartContainer(aTag, TLV::kTLVType_Structure, outer));
115
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSessionID), sessionID));
116
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSourceNodeId), sourceNodeId));
117
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kSourceStartTimestamp), sourceStartTimestamp));
118
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kNewIdentifiedContexts), newIdentifiedContexts));
119
0
    ReturnErrorOnFailure(
120
0
        DataModel::Encode(aWriter, TLV::ContextTag(Fields::kCurrentIdentifiedContexts), currentIdentifiedContexts));
121
0
    ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::kExpiredContexts), expiredContexts));
122
0
    return aWriter.EndContainer(outer);
123
0
}
124
125
CHIP_ERROR DecodableType::Decode(TLV::TLVReader & reader)
126
0
{
127
0
    detail::StructDecodeIterator __iterator(reader);
128
0
    while (true)
129
0
    {
130
0
        uint8_t __context_tag = 0;
131
0
        CHIP_ERROR err        = __iterator.Next(__context_tag);
132
0
        VerifyOrReturnError(err != CHIP_ERROR_END_OF_TLV, CHIP_NO_ERROR);
133
0
        ReturnErrorOnFailure(err);
134
135
0
        if (__context_tag == to_underlying(Fields::kSessionID))
136
0
        {
137
0
            err = DataModel::Decode(reader, sessionID);
138
0
        }
139
0
        else if (__context_tag == to_underlying(Fields::kSourceNodeId))
140
0
        {
141
0
            err = DataModel::Decode(reader, sourceNodeId);
142
0
        }
143
0
        else if (__context_tag == to_underlying(Fields::kSourceStartTimestamp))
144
0
        {
145
0
            err = DataModel::Decode(reader, sourceStartTimestamp);
146
0
        }
147
0
        else if (__context_tag == to_underlying(Fields::kNewIdentifiedContexts))
148
0
        {
149
0
            err = DataModel::Decode(reader, newIdentifiedContexts);
150
0
        }
151
0
        else if (__context_tag == to_underlying(Fields::kCurrentIdentifiedContexts))
152
0
        {
153
0
            err = DataModel::Decode(reader, currentIdentifiedContexts);
154
0
        }
155
0
        else if (__context_tag == to_underlying(Fields::kExpiredContexts))
156
0
        {
157
0
            err = DataModel::Decode(reader, expiredContexts);
158
0
        }
159
0
        else
160
0
        {
161
0
        }
162
163
0
        ReturnErrorOnFailure(err);
164
0
    }
165
0
}
166
} // namespace PerceivedContext
167
} // namespace Events
168
} // namespace AvAnalysis
169
} // namespace Clusters
170
} // namespace app
171
} // namespace chip