|
| 1 | +#include "SilabsTracing.h" |
| 2 | +#include <cstring> |
| 3 | +#include <lib/support/CodeUtils.h> |
| 4 | +#include <lib/support/PersistentData.h> |
| 5 | + |
| 6 | +#if !CONFIG_BUILD_FOR_HOST_UNIT_TEST |
| 7 | +#include <silabs_utils.h> // for isLogInitialized |
| 8 | +#endif |
| 9 | + |
| 10 | +// The following functions needs to be implemented by the application to allows logging or storing the traces / |
| 11 | +// metrics. If the application does not implement them, the traces will simply be ignored. |
| 12 | +bool __attribute__((weak)) isLogInitialized() |
| 13 | +{ |
| 14 | + return false; |
| 15 | +} |
| 16 | + |
| 17 | +namespace chip { |
| 18 | +namespace Tracing { |
| 19 | +namespace Silabs { |
| 20 | + |
| 21 | +static constexpr size_t kPersistentTimeTrackerBufferMax = SERIALIZED_TIME_TRACKERS_SIZE_BYTES; |
| 22 | + |
| 23 | +struct TimeTrackerStorage : public TimeTracker, PersistentData<kPersistentTimeTrackerBufferMax> |
| 24 | +{ |
| 25 | + // TODO implement the Persistent Array class and use it here for logging the watermark array |
| 26 | +}; |
| 27 | + |
| 28 | +SilabsTracer SilabsTracer::sInstance; |
| 29 | + |
| 30 | +SilabsTracer::SilabsTracer() |
| 31 | +{ |
| 32 | + Init(); |
| 33 | +} |
| 34 | + |
| 35 | +void SilabsTracer::Init() |
| 36 | +{ |
| 37 | + // Initialize the trace buffer and time trackers |
| 38 | + memset(mTraceBuffer, 0, sizeof(mTraceBuffer)); |
| 39 | + memset(mWatermark, 0, sizeof(mWatermark)); |
| 40 | +} |
| 41 | + |
| 42 | +CHIP_ERROR SilabsTracer::StartTraceStorage(PersistentStorageDelegate * storage) |
| 43 | +{ |
| 44 | + VerifyOrReturnError(nullptr != storage, CHIP_ERROR_INCORRECT_STATE); |
| 45 | + mStorage = storage; |
| 46 | + return CHIP_NO_ERROR; |
| 47 | +} |
| 48 | + |
| 49 | +void SilabsTracer::TimeTraceBegin(TimeTraceOperation aOperation) |
| 50 | +{ |
| 51 | + // Log the start time of the operation |
| 52 | + auto & tracker = mWatermark[static_cast<size_t>(aOperation)]; |
| 53 | + tracker.mTotalCount++; |
| 54 | + tracker.mStartTime = System::SystemClock().GetMonotonicTimestamp(); |
| 55 | +} |
| 56 | + |
| 57 | +void SilabsTracer::TimeTraceEnd(TimeTraceOperation aOperation, CHIP_ERROR error) |
| 58 | +{ |
| 59 | + if (error != CHIP_NO_ERROR) |
| 60 | + { |
| 61 | + // Log the error, no need to update the watermark for now as we can get the error count from the |
| 62 | + // total count - successfull count. We might want to have a separate count for errors in the future. |
| 63 | + TimeTraceInstant(aOperation); |
| 64 | + return; |
| 65 | + } |
| 66 | + |
| 67 | + // Calculate the duration and update the time tracker |
| 68 | + auto & tracker = mWatermark[static_cast<size_t>(aOperation)]; |
| 69 | + tracker.mEndTime = System::SystemClock().GetMonotonicTimestamp(); |
| 70 | + auto duration = (tracker.mEndTime - tracker.mStartTime).count(); |
| 71 | + |
| 72 | + tracker.mTotalDuration += System::Clock::Milliseconds64(duration); |
| 73 | + |
| 74 | + if (duration > tracker.mMaxTimeMs.count()) |
| 75 | + { |
| 76 | + tracker.mMaxTimeMs = System::Clock::Milliseconds32(duration); |
| 77 | + } |
| 78 | + |
| 79 | + if (tracker.mMinTimeMs.count() == 0 || duration < tracker.mMinTimeMs.count()) |
| 80 | + { |
| 81 | + tracker.mMinTimeMs = System::Clock::Milliseconds32(duration); |
| 82 | + } |
| 83 | + |
| 84 | + tracker.mSuccessfullCount++; |
| 85 | + tracker.mMovingAverage = System::Clock::Milliseconds32(tracker.mTotalDuration.count() / tracker.mSuccessfullCount); |
| 86 | + if (duration > tracker.mMovingAverage.count()) |
| 87 | + { |
| 88 | + tracker.mCountAboveAvg++; |
| 89 | + } |
| 90 | +} |
| 91 | + |
| 92 | +void SilabsTracer::TimeTraceInstant(TimeTraceOperation aOperation, CHIP_ERROR error) |
| 93 | +{ |
| 94 | + if (CHIP_NO_ERROR == error) |
| 95 | + { |
| 96 | + // Will be used to implement count for instant events that do not require watermarks such as failures and others |
| 97 | + // For now, just log in that order the timestamp and the operation |
| 98 | + ChipLogProgress(DeviceLayer, "Time: %llu, Instant Trace: %u, ", System::SystemClock().GetMonotonicTimestamp().count(), |
| 99 | + static_cast<uint8_t>(aOperation)); |
| 100 | + } |
| 101 | + else |
| 102 | + { |
| 103 | + // Log the error with timestamp and operation |
| 104 | + ChipLogError(DeviceLayer, "Time: %llu, Instant Trace: %u, Error: %" CHIP_ERROR_FORMAT, |
| 105 | + System::SystemClock().GetMonotonicTimestamp().count(), static_cast<uint8_t>(aOperation), error.Format()); |
| 106 | + } |
| 107 | +} |
| 108 | + |
| 109 | +void SilabsTracer::OutputTraces() |
| 110 | +{ |
| 111 | + if (isLogInitialized()) |
| 112 | + { |
| 113 | + // Output the traces from the buffer |
| 114 | + for (size_t i = 0; i < kNumTraces; ++i) |
| 115 | + { |
| 116 | + auto & tracker = mWatermark[i]; |
| 117 | + ChipLogProgress(DeviceLayer, |
| 118 | + "Trace %zu: TotalCount=%u, SuccessFullCount=%u, MaxTime=%u, MinTime=%u, AvgTime=%u, CountAboveAvg=%u", |
| 119 | + i, tracker.mTotalCount, tracker.mSuccessfullCount, tracker.mMaxTimeMs.count(), |
| 120 | + tracker.mMinTimeMs.count(), tracker.mMovingAverage.count(), tracker.mCountAboveAvg); |
| 121 | + } |
| 122 | + } |
| 123 | + else |
| 124 | + { |
| 125 | + // Buffer the traces if logs are not initialized |
| 126 | + static size_t bufferIndex = 0; |
| 127 | + if (bufferIndex < kBufferedTracesNumber - 1) |
| 128 | + { |
| 129 | + for (size_t i = 0; i < kNumTraces; ++i) |
| 130 | + { |
| 131 | + auto & tracker = mWatermark[i]; |
| 132 | + // TODO use c++ copy string |
| 133 | + snprintf(reinterpret_cast<char *>(mTraceBuffer[bufferIndex]), kBufferedTraceSize, |
| 134 | + "Trace %zu: TotalCount=%u, SuccessFullCount=%u, MaxTime=%u, MinTime=%u, AvgTime=%u, CountAboveAvg=%u", i, |
| 135 | + tracker.mTotalCount, tracker.mSuccessfullCount, tracker.mMaxTimeMs.count(), tracker.mMinTimeMs.count(), |
| 136 | + tracker.mMovingAverage.count(), tracker.mCountAboveAvg); |
| 137 | + bufferIndex++; |
| 138 | + } |
| 139 | + } |
| 140 | + else |
| 141 | + { |
| 142 | + snprintf(reinterpret_cast<char *>(mTraceBuffer[bufferIndex]), kBufferedTraceSize, "Buffer overflow: logs were lost"); |
| 143 | + } |
| 144 | + } |
| 145 | +} |
| 146 | + |
| 147 | +// Save the traces in the NVM |
| 148 | +CHIP_ERROR SilabsTracer::SaveWatermarks() |
| 149 | +{ |
| 150 | + VerifyOrReturnError(nullptr != mStorage, CHIP_ERROR_INCORRECT_STATE); |
| 151 | + // TODO implement the save of the watermarks in the NVM |
| 152 | + return CHIP_NO_ERROR; |
| 153 | +} |
| 154 | + |
| 155 | +CHIP_ERROR SilabsTracer::LoadWatermarks() |
| 156 | +{ |
| 157 | + VerifyOrReturnError(nullptr != mStorage, CHIP_ERROR_INCORRECT_STATE); |
| 158 | + // TODO implement the load of the watermarks from the NVM |
| 159 | + return CHIP_NO_ERROR; |
| 160 | +} |
| 161 | + |
| 162 | +} // namespace Silabs |
| 163 | +} // namespace Tracing |
| 164 | +} // namespace chip |
0 commit comments