|
25 | 25 | namespace chip {
|
26 | 26 | namespace Tracing {
|
27 | 27 | namespace Diagnostics {
|
28 |
| -class DiagnosticStorageImpl : public DiagnosticStorageInterface |
| 28 | +class CircularDiagnosticBuffer : public chip::TLV::TLVCircularBuffer, public DiagnosticStorageInterface |
29 | 29 | {
|
30 | 30 | 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 | + } |
32 | 37 |
|
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; |
35 | 41 |
|
36 |
| - CHIP_ERROR Store(DiagnosticEntry & diagnostic) override; |
| 42 | + void Init(uint8_t * buffer, size_t bufferLength) { chip::TLV::TLVCircularBuffer::Init(buffer, bufferLength); } |
37 | 43 |
|
38 |
| - CHIP_ERROR Retrieve(MutableByteSpan & payload) override; |
| 44 | + CHIP_ERROR Store(DiagnosticEntry & entry) override |
| 45 | + { |
| 46 | + chip::TLV::CircularTLVWriter writer; |
| 47 | + writer.Init(*this); |
39 | 48 |
|
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 | + } |
41 | 56 |
|
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); |
43 | 62 |
|
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 | + } |
48 | 123 |
|
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; |
50 | 142 | };
|
| 143 | + |
51 | 144 | } // namespace Diagnostics
|
52 | 145 | } // namespace Tracing
|
53 | 146 | } // namespace chip
|
0 commit comments