| /* |
| * |
| * Copyright (c) 2020 Project CHIP Authors |
| * Copyright (c) 2018 Nest Labs, Inc. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| /** |
| * @file |
| * Provides an implementation of the PlatformManager object |
| * for Darwin platforms. |
| */ |
| |
| #include <platform/internal/CHIPDeviceLayerInternal.h> |
| |
| #if !CHIP_DISABLE_PLATFORM_KVS |
| #include <platform/Darwin/DeviceInstanceInfoProviderImpl.h> |
| #include <platform/DeviceInstanceInfoProvider.h> |
| #endif |
| |
| #include <platform/Darwin/DiagnosticDataProviderImpl.h> |
| #include <platform/PlatformManager.h> |
| |
| // Include the non-inline definitions for the GenericPlatformManagerImpl<> template, |
| #include <platform/internal/GenericPlatformManagerImpl.ipp> |
| |
| #include <CoreFoundation/CoreFoundation.h> |
| |
| namespace chip { |
| namespace DeviceLayer { |
| |
| Global<PlatformManagerImpl> PlatformManagerImpl::sInstance; |
| |
| CHIP_ERROR PlatformManagerImpl::_InitChipStack() |
| { |
| CHIP_ERROR err; |
| |
| // Initialize the configuration system. |
| #if !CHIP_DISABLE_PLATFORM_KVS |
| err = Internal::PosixConfig::Init(); |
| SuccessOrExit(err); |
| #endif // CHIP_DISABLE_PLATFORM_KVS |
| |
| #if !CHIP_SYSTEM_CONFIG_USE_LIBEV |
| // Ensure there is a dispatch queue available |
| static_cast<System::LayerSocketsLoop &>(DeviceLayer::SystemLayer()).SetDispatchQueue(GetWorkQueue()); |
| #endif |
| |
| // Call _InitChipStack() on the generic implementation base class |
| // to finish the initialization process. |
| err = Internal::GenericPlatformManagerImpl<PlatformManagerImpl>::_InitChipStack(); |
| SuccessOrExit(err); |
| |
| #if !CHIP_DISABLE_PLATFORM_KVS |
| // Now set up our device instance info provider. We couldn't do that |
| // earlier, because the generic implementation sets a generic one. |
| SetDeviceInstanceInfoProvider(&DeviceInstanceInfoProviderMgrImpl()); |
| #endif // CHIP_DISABLE_PLATFORM_KVS |
| |
| mStartTime = System::SystemClock().GetMonotonicTimestamp(); |
| |
| exit: |
| return err; |
| } |
| |
| CHIP_ERROR PlatformManagerImpl::_StartEventLoopTask() |
| { |
| if (mIsWorkQueueSuspended) |
| { |
| mIsWorkQueueSuspended = false; |
| dispatch_resume(mWorkQueue); |
| } |
| |
| return CHIP_NO_ERROR; |
| }; |
| |
| CHIP_ERROR PlatformManagerImpl::_StopEventLoopTask() |
| { |
| if (!mIsWorkQueueSuspended && !mIsWorkQueueSuspensionPending) |
| { |
| mIsWorkQueueSuspensionPending = true; |
| if (!IsWorkQueueCurrentQueue()) |
| { |
| // dispatch_sync is used in order to guarantee serialization of the caller with |
| // respect to any tasks that might already be on the queue, or running. |
| dispatch_sync(mWorkQueue, ^{ |
| dispatch_suspend(mWorkQueue); |
| }); |
| |
| mIsWorkQueueSuspended = true; |
| mIsWorkQueueSuspensionPending = false; |
| } |
| else |
| { |
| // We are called from a task running on our work queue. Dispatch async, |
| // so we don't deadlock ourselves. Note that we do have to dispatch to |
| // guarantee that we don't signal the semaphore until we have ensured |
| // that no more tasks will run on the queue. |
| dispatch_async(mWorkQueue, ^{ |
| dispatch_suspend(mWorkQueue); |
| mIsWorkQueueSuspended = true; |
| mIsWorkQueueSuspensionPending = false; |
| dispatch_semaphore_signal(mRunLoopSem); |
| }); |
| } |
| } |
| |
| return CHIP_NO_ERROR; |
| } |
| |
| void PlatformManagerImpl::_RunEventLoop() |
| { |
| mRunLoopSem = dispatch_semaphore_create(0); |
| |
| _StartEventLoopTask(); |
| |
| // |
| // Block on the semaphore till we're signalled to stop by |
| // _StopEventLoopTask() |
| // |
| dispatch_semaphore_wait(mRunLoopSem, DISPATCH_TIME_FOREVER); |
| dispatch_release(mRunLoopSem); |
| mRunLoopSem = nullptr; |
| } |
| |
| void PlatformManagerImpl::_Shutdown() |
| { |
| // Call up to the base class _Shutdown() to perform the bulk of the shutdown. |
| GenericPlatformManagerImpl<ImplClass>::_Shutdown(); |
| } |
| |
| CHIP_ERROR PlatformManagerImpl::_PostEvent(const ChipDeviceEvent * event) |
| { |
| if (mWorkQueue == nullptr) |
| { |
| return CHIP_ERROR_INCORRECT_STATE; |
| } |
| |
| const ChipDeviceEvent eventCopy = *event; |
| dispatch_async(mWorkQueue, ^{ |
| Impl()->DispatchEvent(&eventCopy); |
| }); |
| return CHIP_NO_ERROR; |
| } |
| |
| #if CHIP_STACK_LOCK_TRACKING_ENABLED |
| bool PlatformManagerImpl::_IsChipStackLockedByCurrentThread() const |
| { |
| // If we have no work queue, or it's suspended, then we assume our caller |
| // knows what they are doing in terms of their own concurrency. |
| return !mWorkQueue || mIsWorkQueueSuspended || IsWorkQueueCurrentQueue(); |
| }; |
| #endif |
| |
| static int sPlatformManagerKey; // We use pointer to this as key. |
| |
| dispatch_queue_t PlatformManagerImpl::GetWorkQueue() |
| { |
| if (mWorkQueue == nullptr) |
| { |
| mWorkQueue = |
| dispatch_queue_create(CHIP_CONTROLLER_QUEUE, |
| dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL_WITH_AUTORELEASE_POOL, |
| QOS_CLASS_USER_INITIATED, QOS_MIN_RELATIVE_PRIORITY)); |
| dispatch_suspend(mWorkQueue); |
| dispatch_queue_set_specific(mWorkQueue, &sPlatformManagerKey, this, nullptr); |
| mIsWorkQueueSuspended = true; |
| } |
| return mWorkQueue; |
| } |
| |
| bool PlatformManagerImpl::IsWorkQueueCurrentQueue() const |
| { |
| return dispatch_get_specific(&sPlatformManagerKey) == this; |
| } |
| |
| CHIP_ERROR PlatformManagerImpl::StartBleScan(BleScannerDelegate * delegate) |
| { |
| #if CONFIG_NETWORK_LAYER_BLE |
| ReturnErrorOnFailure(Internal::BLEMgrImpl().StartScan(delegate)); |
| #endif // CONFIG_NETWORK_LAYER_BLE |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR PlatformManagerImpl::StopBleScan() |
| { |
| #if CONFIG_NETWORK_LAYER_BLE |
| ReturnErrorOnFailure(Internal::BLEMgrImpl().StopScan()); |
| #endif // CONFIG_NETWORK_LAYER_BLE |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR PlatformManagerImpl::PrepareCommissioning() |
| { |
| #if CONFIG_NETWORK_LAYER_BLE |
| ReturnErrorOnFailure(Internal::BLEMgrImpl().StartScan()); |
| #endif // CONFIG_NETWORK_LAYER_BLE |
| return CHIP_NO_ERROR; |
| } |
| |
| } // namespace DeviceLayer |
| } // namespace chip |