Skip to content

Commit 43167a0

Browse files
authored
[Darwin] Print the queue name (or a shorter version for common queues) when using the stdio logging backend (project-chip#36764)
* [Darwin] Print the queue name (or a shorter version for common queues) when using the stdio logging backend * [darwin-framework-tool] Print the queue name (or a shorter version for common queues) when logging
1 parent 8606290 commit 43167a0

File tree

5 files changed

+125
-4
lines changed

5 files changed

+125
-4
lines changed

examples/darwin-framework-tool/logging/logging.mm

+12-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include <algorithm>
2424
#include <cstdio>
2525
#include <lib/support/logging/CHIPLogging.h>
26+
#include <platform/Darwin/DispatchQueueNames.h>
2627
#include <pthread.h>
2728

2829
namespace dft {
@@ -56,9 +57,17 @@ void LogMessage(MTRLogType type, NSString * component, NSString * message)
5657
int pid = [[NSProcessInfo processInfo] processIdentifier];
5758

5859
auto tid = pthread_mach_thread_np(pthread_self());
59-
60-
fprintf(stdout, "%s%s [%d:%u] [%s]: %s%s\n", loggingColor.UTF8String, formattedDate.UTF8String, pid, tid,
61-
component.UTF8String, message.UTF8String, kLoggingColorEnd.UTF8String);
60+
const char * label = chip::darwin::queues::CurrentLabel();
61+
62+
fprintf(stdout, "%s%s [%d:%u:%s] [%s]: %s%s\n",
63+
loggingColor.UTF8String,
64+
formattedDate.UTF8String,
65+
pid,
66+
tid,
67+
label,
68+
component.UTF8String,
69+
message.UTF8String,
70+
kLoggingColorEnd.UTF8String);
6271
}
6372

6473
void LogRedirectCallback(const char * moduleName, uint8_t category, const char * format, va_list args)

src/platform/Darwin/BUILD.gn

+2
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ source_set("tracing") {
149149

150150
static_library("logging") {
151151
sources = [
152+
"DispatchQueueNames.cpp",
153+
"DispatchQueueNames.h",
152154
"Logging.h",
153155
"Logging.mm",
154156
]
+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
/*
2+
* Copyright (c) 2024 Project CHIP Authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#include "DispatchQueueNames.h"
18+
19+
#include <dispatch/dispatch.h>
20+
21+
namespace {
22+
constexpr const char * kMainQueue = "com.apple.main-thread";
23+
constexpr const char * kChipQueue = "org.csa-iot.matter.workqueue";
24+
constexpr const char * kBleQueue = "org.csa-iot.matter.framework.ble.workqueue";
25+
constexpr const char * kXPCQueue = "org.csa-iot.matter.framework.xpc.workqueue";
26+
constexpr const char * kDeviceQueue = "org.csa-iot.matter.framework.device.workqueue";
27+
constexpr const char * kOTAProviderQueue = "org.csa-iot.matter.framework.otaprovider.workqueue";
28+
constexpr const char * kDeviceAttestationQueue = "org.csa-iot.matter.framework.device_attestation.workqueue";
29+
30+
constexpr const char * kMainQueueShort = "main";
31+
constexpr const char * kChipQueueShort = "chip";
32+
constexpr const char * kBleQueueShort = "ble";
33+
constexpr const char * kXPCQueueShort = "xpc";
34+
constexpr const char * kDeviceQueueShort = "device";
35+
constexpr const char * kOTAProviderQueueShort = "ota-provider";
36+
constexpr const char * kDeviceAttestationQueueShort = "device-attestation";
37+
} // namespace
38+
39+
namespace chip {
40+
namespace darwin {
41+
namespace queues {
42+
43+
const char * CurrentLabel()
44+
{
45+
const char * label = dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL);
46+
47+
if (strcmp(label, kMainQueue) == 0)
48+
{
49+
label = kMainQueueShort;
50+
}
51+
else if (strcmp(label, kChipQueue) == 0)
52+
{
53+
label = kChipQueueShort;
54+
}
55+
else if (strcmp(label, kBleQueue) == 0)
56+
{
57+
label = kBleQueueShort;
58+
}
59+
else if (strcmp(label, kXPCQueue) == 0)
60+
{
61+
label = kXPCQueueShort;
62+
}
63+
else if (strcmp(label, kDeviceQueue) == 0)
64+
{
65+
label = kDeviceQueueShort;
66+
}
67+
else if (strcmp(label, kOTAProviderQueue) == 0)
68+
{
69+
label = kOTAProviderQueueShort;
70+
}
71+
else if (strcmp(label, kDeviceAttestationQueue) == 0)
72+
{
73+
label = kDeviceAttestationQueueShort;
74+
}
75+
76+
return label;
77+
}
78+
79+
} // namespace queues
80+
} // namespace darwin
81+
} // namespace chip
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright (c) 2024 Project CHIP Authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#pragma once
18+
19+
namespace chip {
20+
namespace darwin {
21+
namespace queues {
22+
23+
const char * CurrentLabel();
24+
25+
} // namespace queues
26+
} // namespace darwin
27+
} // namespace chip

src/platform/logging/impl/Stdio.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <time.h>
2525

2626
#if defined(__APPLE__)
27+
#include <platform/Darwin/DispatchQueueNames.h>
2728
#include <pthread.h>
2829
#include <unistd.h>
2930
#elif defined(__gnu_linux__)
@@ -65,7 +66,8 @@ void LogV(const char * module, uint8_t category, const char * msg, va_list v)
6566
#if defined(__APPLE__)
6667
uint64_t ktid;
6768
pthread_threadid_np(nullptr, &ktid);
68-
printf("[%lld:%lld] ", static_cast<long long>(getpid()), static_cast<long long>(ktid));
69+
const char * label = darwin::queues::CurrentLabel();
70+
printf("[%lld:%lld:%s] ", static_cast<long long>(getpid()), static_cast<long long>(ktid), label);
6971
#elif defined(__gnu_linux__) && !defined(__NuttX__)
7072
// TODO: change to getpid() and gettid() after glib upgrade
7173
printf("[%lld:%lld] ", static_cast<long long>(syscall(SYS_getpid)), static_cast<long long>(syscall(SYS_gettid)));

0 commit comments

Comments
 (0)