Skip to content

Commit 153bce3

Browse files
author
esp
committed
esp32_diagnostic_trace: add CircularDiagnosticBuffer class to improve design
1 parent 5a80c25 commit 153bce3

File tree

6 files changed

+150
-26
lines changed

6 files changed

+150
-26
lines changed

examples/temperature-measurement-app/esp32/main/diagnostic-logs-provider-delegate-impl.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ size_t LogProvider::GetSizeForIntent(IntentEnum intent)
8181
{
8282
case IntentEnum::kEndUserSupport: {
8383
#if CONFIG_ENABLE_ESP_DIAGNOSTICS_TRACE
84-
return DiagnosticStorageImpl::GetInstance().GetDataSize();
84+
return CircularDiagnosticBuffer::GetInstance().GetDataSize();
8585
#else
8686
return static_cast<size_t>(endUserSupportLogEnd - endUserSupportLogStart);
8787
#endif
@@ -119,7 +119,7 @@ CHIP_ERROR LogProvider::PrepareLogContextForIntent(LogContext * context, IntentE
119119
{
120120
case IntentEnum::kEndUserSupport: {
121121
#if CONFIG_ENABLE_ESP_DIAGNOSTICS_TRACE
122-
DiagnosticStorageImpl & diagnosticStorage = DiagnosticStorageImpl::GetInstance();
122+
CircularDiagnosticBuffer & diagnosticStorage = CircularDiagnosticBuffer::GetInstance();
123123
MutableByteSpan endUserSupportSpan(endUserBuffer, CONFIG_END_USER_BUFFER_SIZE);
124124

125125
if (diagnosticStorage.IsEmptyBuffer())

examples/temperature-measurement-app/esp32/main/main.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ extern "C" void app_main()
8888
#endif
8989

9090
#if CONFIG_ENABLE_ESP_DIAGNOSTICS_TRACE
91-
DiagnosticStorageImpl & diagnosticStorage = DiagnosticStorageImpl::GetInstance(endUserBuffer, CONFIG_END_USER_BUFFER_SIZE);
91+
CircularDiagnosticBuffer & diagnosticStorage = CircularDiagnosticBuffer::GetInstance();
92+
diagnosticStorage.Init(endUserBuffer, CONFIG_END_USER_BUFFER_SIZE);
9293
static ESP32Diagnostics diagnosticBackend(diagnosticStorage);
9394
Tracing::Register(diagnosticBackend);
9495
#endif

src/tracing/esp32_diagnostic_trace/BUILD.gn

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ static_library("backend") {
2727
sources = [
2828
"Counter.cpp",
2929
"Counter.h",
30-
"DiagnosticStorageManager.cpp",
3130
"DiagnosticStorageManager.h",
3231
"DiagnosticTracing.cpp",
3332
"DiagnosticTracing.h",

src/tracing/esp32_diagnostic_trace/Counter.h

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include <lib/support/CHIPMemString.h>
2626
#include <map>
2727
#include <string.h>
28-
#include <map>
2928

3029
namespace chip {
3130
namespace Tracing {

src/tracing/esp32_diagnostic_trace/DiagnosticStorageManager.h

+106-13
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,122 @@
2525
namespace chip {
2626
namespace Tracing {
2727
namespace Diagnostics {
28-
class DiagnosticStorageImpl : public DiagnosticStorageInterface
28+
class CircularDiagnosticBuffer : public chip::TLV::TLVCircularBuffer, public DiagnosticStorageInterface
2929
{
3030
public:
31-
static DiagnosticStorageImpl & GetInstance(uint8_t * buffer = nullptr, size_t bufferSize = 0);
31+
// Singleton instance getter
32+
static CircularDiagnosticBuffer & GetInstance()
33+
{
34+
static CircularDiagnosticBuffer instance;
35+
return instance;
36+
}
3237

33-
DiagnosticStorageImpl(const DiagnosticStorageImpl &) = delete;
34-
DiagnosticStorageImpl & operator=(const DiagnosticStorageImpl &) = delete;
38+
// Delete copy constructor and assignment operator to ensure singleton
39+
CircularDiagnosticBuffer(const CircularDiagnosticBuffer &) = delete;
40+
CircularDiagnosticBuffer & operator=(const CircularDiagnosticBuffer &) = delete;
3541

36-
CHIP_ERROR Store(DiagnosticEntry & diagnostic) override;
42+
void Init(uint8_t * buffer, size_t bufferLength) { chip::TLV::TLVCircularBuffer::Init(buffer, bufferLength); }
3743

38-
CHIP_ERROR Retrieve(MutableByteSpan & payload) override;
44+
CHIP_ERROR Store(DiagnosticEntry & entry) override
45+
{
46+
chip::TLV::CircularTLVWriter writer;
47+
writer.Init(*this);
3948

40-
bool IsEmptyBuffer();
49+
CHIP_ERROR err = entry.Encode(writer);
50+
if (err != CHIP_NO_ERROR)
51+
{
52+
ChipLogError(DeviceLayer, "Failed to write entry: %s", chip::ErrorStr(err));
53+
}
54+
return err;
55+
}
4156

42-
uint32_t GetDataSize();
57+
CHIP_ERROR Retrieve(MutableByteSpan & span) override
58+
{
59+
CHIP_ERROR err = CHIP_NO_ERROR;
60+
chip::TLV::TLVReader reader;
61+
reader.Init(*this);
4362

44-
private:
45-
DiagnosticStorageImpl(uint8_t * buffer, size_t bufferSize);
46-
DiagnosticStorageImpl();
47-
~DiagnosticStorageImpl();
63+
chip::TLV::TLVWriter writer;
64+
writer.Init(span.data(), span.size());
65+
66+
chip::TLV::TLVType outWriterContainer;
67+
err = writer.StartContainer(chip::TLV::AnonymousTag(), chip::TLV::kTLVType_List, outWriterContainer);
68+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to start container"));
69+
70+
while (CHIP_NO_ERROR == reader.Next())
71+
{
72+
VerifyOrReturnError(err == CHIP_NO_ERROR, err,
73+
ChipLogError(DeviceLayer, "Failed to read next TLV element: %s", ErrorStr(err)));
74+
75+
if (reader.GetType() == chip::TLV::kTLVType_Structure && reader.GetTag() == chip::TLV::AnonymousTag())
76+
{
77+
chip::TLV::TLVType outerReaderContainer;
78+
err = reader.EnterContainer(outerReaderContainer);
79+
VerifyOrReturnError(err == CHIP_NO_ERROR, err,
80+
ChipLogError(DeviceLayer, "Failed to enter outer TLV container: %s", ErrorStr(err)));
81+
82+
err = reader.Next();
83+
VerifyOrReturnError(
84+
err == CHIP_NO_ERROR, err,
85+
ChipLogError(DeviceLayer, "Failed to read next TLV element in outer container: %s", ErrorStr(err)));
86+
87+
if ((reader.GetType() == chip::TLV::kTLVType_Structure) &&
88+
(reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::METRIC) ||
89+
reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::TRACE) ||
90+
reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::COUNTER)))
91+
{
92+
if ((reader.GetLengthRead() - writer.GetLengthWritten()) < (writer.GetRemainingFreeLength()))
93+
{
94+
err = writer.CopyElement(reader);
95+
if (err == CHIP_ERROR_BUFFER_TOO_SMALL)
96+
{
97+
ChipLogProgress(DeviceLayer, "Buffer too small to occupy current element");
98+
break;
99+
}
100+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to copy TLV element"));
101+
}
102+
else
103+
{
104+
ChipLogProgress(DeviceLayer, "Buffer too small to occupy current TLV");
105+
break;
106+
}
107+
}
108+
else
109+
{
110+
ChipLogError(DeviceLayer, "Unexpected TLV element in outer container");
111+
reader.ExitContainer(outerReaderContainer);
112+
return CHIP_ERROR_WRONG_TLV_TYPE;
113+
}
114+
err = reader.ExitContainer(outerReaderContainer);
115+
VerifyOrReturnError(err == CHIP_NO_ERROR, err,
116+
ChipLogError(DeviceLayer, "Failed to exit outer TLV container: %s", ErrorStr(err)));
117+
}
118+
else
119+
{
120+
ChipLogError(DeviceLayer, "Unexpected TLV element type or tag in outer container");
121+
}
122+
}
48123

49-
chip::TLV::TLVCircularBuffer mEndUserCircularBuffer;
124+
err = writer.EndContainer(outWriterContainer);
125+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to close outer container"));
126+
err = writer.Finalize();
127+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to finalize TLV writing"));
128+
span.reduce_size(writer.GetLengthWritten());
129+
ChipLogProgress(DeviceLayer, "---------------Total written bytes successfully : %ld----------------\n",
130+
writer.GetLengthWritten());
131+
ChipLogProgress(DeviceLayer, "Retrieval successful");
132+
return CHIP_NO_ERROR;
133+
}
134+
135+
bool IsEmptyBuffer() override { return DataLength() == 0; }
136+
137+
uint32_t GetDataSize() override { return DataLength(); }
138+
139+
private:
140+
CircularDiagnosticBuffer() : chip::TLV::TLVCircularBuffer(nullptr, 0) {}
141+
~CircularDiagnosticBuffer() override = default;
50142
};
143+
51144
} // namespace Diagnostics
52145
} // namespace Tracing
53146
} // namespace chip

src/tracing/esp32_diagnostic_trace/Diagnostics.h

+40-8
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,14 @@ class Metric : public DiagnosticEntry
5959
CHIP_ERROR Encode(chip::TLV::CircularTLVWriter & writer) override
6060
{
6161
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)));
6266
chip::TLV::TLVType metricContainer;
6367
err = writer.StartContainer(chip::TLV::ContextTag(DIAGNOSTICS_TAG::METRIC), chip::TLV::kTLVType_Structure, metricContainer);
6468
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)));
6670

6771
// TIMESTAMP
6872
err = writer.Put(chip::TLV::ContextTag(DIAGNOSTICS_TAG::TIMESTAMP), timestamp_);
@@ -82,7 +86,13 @@ class Metric : public DiagnosticEntry
8286
ChipLogProgress(DeviceLayer, "Metric Value written to storage successfully. label: %s\n", label_);
8387
err = writer.EndContainer(metricContainer);
8488
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());
8696
return err;
8797
}
8898

@@ -106,15 +116,18 @@ class Trace : public DiagnosticEntry
106116
CHIP_ERROR Encode(chip::TLV::CircularTLVWriter & writer) override
107117
{
108118
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)));
109123
chip::TLV::TLVType traceContainer;
110124
err = writer.StartContainer(chip::TLV::ContextTag(DIAGNOSTICS_TAG::TRACE), chip::TLV::kTLVType_Structure, traceContainer);
111125
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)));
114127
// TIMESTAMP
115128
err = writer.Put(chip::TLV::ContextTag(DIAGNOSTICS_TAG::TIMESTAMP), timestamp_);
116129
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)));
118131

119132
// GROUP
120133
err = writer.PutString(chip::TLV::ContextTag(DIAGNOSTICS_TAG::GROUP), group_);
@@ -129,7 +142,13 @@ class Trace : public DiagnosticEntry
129142
ChipLogProgress(DeviceLayer, "Trace Value written to storage successfully. label: %s value: %s\n", label_, group_);
130143
err = writer.EndContainer(traceContainer);
131144
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());
133152
return err;
134153
}
135154

@@ -153,11 +172,15 @@ class Counter : public DiagnosticEntry
153172
CHIP_ERROR Encode(chip::TLV::CircularTLVWriter & writer) override
154173
{
155174
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)));
156179
chip::TLV::TLVType counterContainer;
157180
err =
158181
writer.StartContainer(chip::TLV::ContextTag(DIAGNOSTICS_TAG::COUNTER), chip::TLV::kTLVType_Structure, counterContainer);
159182
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)));
161184

162185
// TIMESTAMP
163186
err = writer.Put(chip::TLV::ContextTag(DIAGNOSTICS_TAG::TIMESTAMP), timestamp_);
@@ -177,7 +200,12 @@ class Counter : public DiagnosticEntry
177200
ChipLogProgress(DeviceLayer, "Counter Value written to storage successfully label: %s count: %ld\n", label_, count_);
178201
err = writer.EndContainer(counterContainer);
179202
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)));
181209
return err;
182210
}
183211

@@ -213,6 +241,10 @@ class DiagnosticStorageInterface
213241
* @return CHIP_ERROR Returns CHIP_NO_ERROR on success, or an appropriate error code on failure.
214242
*/
215243
virtual CHIP_ERROR Retrieve(MutableByteSpan & payload) = 0;
244+
245+
virtual bool IsEmptyBuffer() = 0;
246+
247+
virtual uint32_t GetDataSize() = 0;
216248
};
217249

218250
} // namespace Diagnostics

0 commit comments

Comments
 (0)