|
20 | 20 |
|
21 | 21 | using namespace chip;
|
22 | 22 |
|
| 23 | +namespace { |
| 24 | + |
| 25 | +constexpr char kFabricSyncLogFilePath[] = "/tmp/fabric_sync.log"; |
| 26 | + |
| 27 | +// File pointer for the log file |
| 28 | +FILE * sLogFile = nullptr; |
| 29 | + |
| 30 | +void OpenLogFile(const char * filePath) |
| 31 | +{ |
| 32 | + sLogFile = fopen(filePath, "a"); |
| 33 | + if (sLogFile == nullptr) |
| 34 | + { |
| 35 | + perror("Failed to open log file"); |
| 36 | + } |
| 37 | +} |
| 38 | + |
| 39 | +void CloseLogFile() |
| 40 | +{ |
| 41 | + if (sLogFile != nullptr) |
| 42 | + { |
| 43 | + fclose(sLogFile); |
| 44 | + sLogFile = nullptr; |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +void ENFORCE_FORMAT(3, 0) LoggingCallback(const char * module, uint8_t category, const char * msg, va_list args) |
| 49 | +{ |
| 50 | + if (sLogFile == nullptr) |
| 51 | + { |
| 52 | + return; |
| 53 | + } |
| 54 | + |
| 55 | + uint64_t timeMs = System::SystemClock().GetMonotonicMilliseconds64().count(); |
| 56 | + uint64_t seconds = timeMs / 1000; |
| 57 | + uint64_t milliseconds = timeMs % 1000; |
| 58 | + |
| 59 | + flockfile(sLogFile); |
| 60 | + |
| 61 | + fprintf(sLogFile, "[%llu.%06llu] CHIP:%s: ", static_cast<unsigned long long>(seconds), |
| 62 | + static_cast<unsigned long long>(milliseconds), module); |
| 63 | + vfprintf(sLogFile, msg, args); |
| 64 | + fprintf(sLogFile, "\n"); |
| 65 | + fflush(sLogFile); |
| 66 | + |
| 67 | + funlockfile(sLogFile); |
| 68 | +} |
| 69 | + |
| 70 | +} // namespace |
| 71 | + |
23 | 72 | void ApplicationInit()
|
24 | 73 | {
|
25 | 74 | ChipLogProgress(NotSpecified, "Fabric-Sync: ApplicationInit()");
|
| 75 | + |
| 76 | + OpenLogFile(kFabricSyncLogFilePath); |
| 77 | + |
| 78 | + // Redirect logs to the custom logging callback |
| 79 | + Logging::SetLogRedirectCallback(LoggingCallback); |
26 | 80 | }
|
27 | 81 |
|
28 | 82 | void ApplicationShutdown()
|
29 | 83 | {
|
30 | 84 | ChipLogDetail(NotSpecified, "Fabric-Sync: ApplicationShutdown()");
|
| 85 | + CloseLogFile(); |
31 | 86 | }
|
32 | 87 |
|
33 | 88 | int main(int argc, char * argv[])
|
|
0 commit comments