Skip to content

Commit 9117b29

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

File tree

7 files changed

+152
-190
lines changed

7 files changed

+152
-190
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.cpp

-164
This file was deleted.

src/tracing/esp32_diagnostic_trace/DiagnosticStorageManager.h

+108-13
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,127 @@
2222
#include <lib/support/CHIPMem.h>
2323
#include <tracing/esp32_diagnostic_trace/Diagnostics.h>
2424

25+
#define TLV_CLOSING_BYTES 4
26+
2527
namespace chip {
2628
namespace Tracing {
2729
namespace Diagnostics {
28-
class DiagnosticStorageImpl : public DiagnosticStorageInterface
30+
class CircularDiagnosticBuffer : public chip::TLV::TLVCircularBuffer, public DiagnosticStorageInterface
2931
{
3032
public:
31-
static DiagnosticStorageImpl & GetInstance(uint8_t * buffer = nullptr, size_t bufferSize = 0);
33+
// Singleton instance getter
34+
static CircularDiagnosticBuffer & GetInstance()
35+
{
36+
static CircularDiagnosticBuffer instance;
37+
return instance;
38+
}
3239

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

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

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

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

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

44-
private:
45-
DiagnosticStorageImpl(uint8_t * buffer, size_t bufferSize);
46-
DiagnosticStorageImpl();
47-
~DiagnosticStorageImpl();
65+
chip::TLV::TLVWriter writer;
66+
writer.Init(span.data(), span.size());
67+
68+
chip::TLV::TLVType outWriterContainer;
69+
err = writer.StartContainer(chip::TLV::AnonymousTag(), chip::TLV::kTLVType_List, outWriterContainer);
70+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to start container"));
71+
72+
while (CHIP_NO_ERROR == reader.Next())
73+
{
74+
VerifyOrReturnError(err == CHIP_NO_ERROR, err,
75+
ChipLogError(DeviceLayer, "Failed to read next TLV element: %s", ErrorStr(err)));
76+
77+
if (reader.GetType() == chip::TLV::kTLVType_Structure && reader.GetTag() == chip::TLV::AnonymousTag())
78+
{
79+
chip::TLV::TLVType outerReaderContainer;
80+
err = reader.EnterContainer(outerReaderContainer);
81+
VerifyOrReturnError(err == CHIP_NO_ERROR, err,
82+
ChipLogError(DeviceLayer, "Failed to enter outer TLV container: %s", ErrorStr(err)));
83+
84+
err = reader.Next();
85+
VerifyOrReturnError(
86+
err == CHIP_NO_ERROR, err,
87+
ChipLogError(DeviceLayer, "Failed to read next TLV element in outer container: %s", ErrorStr(err)));
4888

49-
chip::TLV::TLVCircularBuffer mEndUserCircularBuffer;
89+
if ((reader.GetType() == chip::TLV::kTLVType_Structure) &&
90+
(reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::METRIC) ||
91+
reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::TRACE) ||
92+
reader.GetTag() == chip::TLV::ContextTag(DIAGNOSTICS_TAG::COUNTER)))
93+
{
94+
if ((reader.GetLengthRead() - writer.GetLengthWritten()) < ((writer.GetRemainingFreeLength() + TLV_CLOSING_BYTES)))
95+
{
96+
err = writer.CopyElement(reader);
97+
if (err == CHIP_ERROR_BUFFER_TOO_SMALL)
98+
{
99+
ChipLogProgress(DeviceLayer, "Buffer too small to occupy current element");
100+
break;
101+
}
102+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to copy TLV element"));
103+
}
104+
else
105+
{
106+
ChipLogProgress(DeviceLayer, "Buffer too small to occupy current TLV");
107+
break;
108+
}
109+
}
110+
else
111+
{
112+
ChipLogError(DeviceLayer, "Unexpected TLV element in outer container");
113+
reader.ExitContainer(outerReaderContainer);
114+
return CHIP_ERROR_WRONG_TLV_TYPE;
115+
}
116+
err = reader.ExitContainer(outerReaderContainer);
117+
VerifyOrReturnError(err == CHIP_NO_ERROR, err,
118+
ChipLogError(DeviceLayer, "Failed to exit outer TLV container: %s", ErrorStr(err)));
119+
}
120+
else
121+
{
122+
ChipLogError(DeviceLayer, "Unexpected TLV element type or tag in outer container");
123+
}
124+
}
125+
126+
err = writer.EndContainer(outWriterContainer);
127+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to close outer container"));
128+
err = writer.Finalize();
129+
VerifyOrReturnError(err == CHIP_NO_ERROR, err, ChipLogError(DeviceLayer, "Failed to finalize TLV writing"));
130+
span.reduce_size(writer.GetLengthWritten());
131+
ChipLogProgress(DeviceLayer, "---------------Total written bytes successfully : %ld----------------\n",
132+
writer.GetLengthWritten());
133+
ChipLogProgress(DeviceLayer, "Retrieval successful");
134+
return CHIP_NO_ERROR;
135+
}
136+
137+
bool IsEmptyBuffer() override { return DataLength() == 0; }
138+
139+
uint32_t GetDataSize() override { return DataLength(); }
140+
141+
private:
142+
CircularDiagnosticBuffer() : chip::TLV::TLVCircularBuffer(nullptr, 0) {}
143+
~CircularDiagnosticBuffer() override = default;
50144
};
145+
51146
} // namespace Diagnostics
52147
} // namespace Tracing
53148
} // namespace chip

0 commit comments

Comments
 (0)