|
| 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 |
0 commit comments