@@ -59,10 +59,14 @@ class Metric : public DiagnosticEntry
59
59
CHIP_ERROR Encode (chip::TLV::CircularTLVWriter & writer) override
60
60
{
61
61
CHIP_ERROR err = CHIP_NO_ERROR;
62
+ chip::TLV::TLVType metricOuterContainer;
63
+ err = writer.StartContainer (chip::TLV::AnonymousTag (), chip::TLV::kTLVType_Structure , metricOuterContainer);
64
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err,
65
+ ChipLogError (DeviceLayer, " Failed to Start outer metric container: %s" , ErrorStr (err)));
62
66
chip::TLV::TLVType metricContainer;
63
67
err = writer.StartContainer (chip::TLV::ContextTag (DIAGNOSTICS_TAG::METRIC), chip::TLV::kTLVType_Structure , metricContainer);
64
68
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
65
- ChipLogError (DeviceLayer, " Failed to start TLV container for metric : %s" , ErrorStr (err)));
69
+ ChipLogError (DeviceLayer, " Failed to Start inner metric container : %s" , ErrorStr (err)));
66
70
67
71
// TIMESTAMP
68
72
err = writer.Put (chip::TLV::ContextTag (DIAGNOSTICS_TAG::TIMESTAMP), timestamp_);
@@ -82,7 +86,13 @@ class Metric : public DiagnosticEntry
82
86
ChipLogProgress (DeviceLayer, " Metric Value written to storage successfully. label: %s\n " , label_);
83
87
err = writer.EndContainer (metricContainer);
84
88
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
85
- ChipLogError (DeviceLayer, " Failed to end TLV container for metric : %s" , ErrorStr (err)));
89
+ ChipLogError (DeviceLayer, " Failed to end inner TLV container for Metric : %s" , ErrorStr (err)));
90
+ err = writer.EndContainer (metricOuterContainer);
91
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err,
92
+ ChipLogError (DeviceLayer, " Failed to end outer TLV container for Metric : %s" , ErrorStr (err)));
93
+ err = writer.Finalize ();
94
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err, ChipLogError (DeviceLayer, " Failed to Finalize writer : %s" , ErrorStr (err)));
95
+ ReturnErrorOnFailure (writer.Finalize ());
86
96
return err;
87
97
}
88
98
@@ -106,15 +116,18 @@ class Trace : public DiagnosticEntry
106
116
CHIP_ERROR Encode (chip::TLV::CircularTLVWriter & writer) override
107
117
{
108
118
CHIP_ERROR err = CHIP_NO_ERROR;
119
+ chip::TLV::TLVType traceOuterContainer;
120
+ err = writer.StartContainer (chip::TLV::AnonymousTag (), chip::TLV::kTLVType_Structure , traceOuterContainer);
121
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err,
122
+ ChipLogError (DeviceLayer, " Failed to Start outer trace container: %s" , ErrorStr (err)));
109
123
chip::TLV::TLVType traceContainer;
110
124
err = writer.StartContainer (chip::TLV::ContextTag (DIAGNOSTICS_TAG::TRACE), chip::TLV::kTLVType_Structure , traceContainer);
111
125
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
112
- ChipLogError (DeviceLayer, " Failed to start TLV container for Trace: %s" , ErrorStr (err)));
113
-
126
+ ChipLogError (DeviceLayer, " Failed to Start inner trace container: %s" , ErrorStr (err)));
114
127
// TIMESTAMP
115
128
err = writer.Put (chip::TLV::ContextTag (DIAGNOSTICS_TAG::TIMESTAMP), timestamp_);
116
129
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
117
- ChipLogError (DeviceLayer, " Failed to write TIMESTAMP for METRIC : %s" , ErrorStr (err)));
130
+ ChipLogError (DeviceLayer, " Failed to write TIMESTAMP for TRACE : %s" , ErrorStr (err)));
118
131
119
132
// GROUP
120
133
err = writer.PutString (chip::TLV::ContextTag (DIAGNOSTICS_TAG::GROUP), group_);
@@ -129,7 +142,13 @@ class Trace : public DiagnosticEntry
129
142
ChipLogProgress (DeviceLayer, " Trace Value written to storage successfully. label: %s value: %s\n " , label_, group_);
130
143
err = writer.EndContainer (traceContainer);
131
144
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
132
- ChipLogError (DeviceLayer, " Failed to end TLV container for Trace : %s" , ErrorStr (err)));
145
+ ChipLogError (DeviceLayer, " Failed to end inner TLV container for Trace : %s" , ErrorStr (err)));
146
+ err = writer.EndContainer (traceOuterContainer);
147
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err,
148
+ ChipLogError (DeviceLayer, " Failed to end outer TLV container for Trace : %s" , ErrorStr (err)));
149
+ err = writer.Finalize ();
150
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err, ChipLogError (DeviceLayer, " Failed to Finalize writer : %s" , ErrorStr (err)));
151
+ ReturnErrorOnFailure (writer.Finalize ());
133
152
return err;
134
153
}
135
154
@@ -153,11 +172,15 @@ class Counter : public DiagnosticEntry
153
172
CHIP_ERROR Encode (chip::TLV::CircularTLVWriter & writer) override
154
173
{
155
174
CHIP_ERROR err = CHIP_NO_ERROR;
175
+ chip::TLV::TLVType counterOuterContainer;
176
+ err = writer.StartContainer (chip::TLV::AnonymousTag (), chip::TLV::kTLVType_Structure , counterOuterContainer);
177
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err,
178
+ ChipLogError (DeviceLayer, " Failed to Start outer counter container: %s" , ErrorStr (err)));
156
179
chip::TLV::TLVType counterContainer;
157
180
err =
158
181
writer.StartContainer (chip::TLV::ContextTag (DIAGNOSTICS_TAG::COUNTER), chip::TLV::kTLVType_Structure , counterContainer);
159
182
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
160
- ChipLogError (DeviceLayer, " Failed to start TLV container for Counter : %s" , ErrorStr (err)));
183
+ ChipLogError (DeviceLayer, " Failed to Start inner counter container : %s" , ErrorStr (err)));
161
184
162
185
// TIMESTAMP
163
186
err = writer.Put (chip::TLV::ContextTag (DIAGNOSTICS_TAG::TIMESTAMP), timestamp_);
@@ -177,7 +200,12 @@ class Counter : public DiagnosticEntry
177
200
ChipLogProgress (DeviceLayer, " Counter Value written to storage successfully label: %s count: %ld\n " , label_, count_);
178
201
err = writer.EndContainer (counterContainer);
179
202
VerifyOrReturnError (err == CHIP_NO_ERROR, err,
180
- ChipLogError (DeviceLayer, " Failed to end TLV container for counter : %s" , ErrorStr (err)));
203
+ ChipLogError (DeviceLayer, " Failed to end inner TLV container for Counter : %s" , ErrorStr (err)));
204
+ err = writer.EndContainer (counterOuterContainer);
205
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err,
206
+ ChipLogError (DeviceLayer, " Failed to end outer TLV container for Counter : %s" , ErrorStr (err)));
207
+ err = writer.Finalize ();
208
+ VerifyOrReturnError (err == CHIP_NO_ERROR, err, ChipLogError (DeviceLayer, " Failed to Finalize writer : %s" , ErrorStr (err)));
181
209
return err;
182
210
}
183
211
@@ -213,6 +241,10 @@ class DiagnosticStorageInterface
213
241
* @return CHIP_ERROR Returns CHIP_NO_ERROR on success, or an appropriate error code on failure.
214
242
*/
215
243
virtual CHIP_ERROR Retrieve (MutableByteSpan & payload) = 0;
244
+
245
+ virtual bool IsEmptyBuffer () = 0;
246
+
247
+ virtual uint32_t GetDataSize () = 0;
216
248
};
217
249
218
250
} // namespace Diagnostics
0 commit comments