/* * * Copyright (c) 2020 Project CHIP Authors * Copyright (c) 2018 Nest Labs, Inc. * All rights reserved. * * 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 the stm32 platforms. */ #pragma once #include namespace chip { namespace DeviceLayer { /** * Concrete implementation of the PlatformManager singleton object for the STM32 platform. */ class PlatformManagerImpl final : public PlatformManager, public Internal::GenericPlatformManagerImpl_FreeRTOS { // Allow the PlatformManager interface class to delegate method calls to // the implementation methods provided by this class. friend PlatformManager; // Allow the generic implementation base class to call helper methods on // this class. #ifndef DOXYGEN_SHOULD_SKIP_THIS friend Internal::GenericPlatformManagerImpl_FreeRTOS; #endif public: // ===== Platform-specific members that may be accessed directly by the application. CHIP_ERROR InitLwIPCoreLock(void); private: // ===== Methods that implement the PlatformManager abstract interface. CHIP_ERROR _InitChipStack(void); void _RunEventLoop(void); void _Shutdown(); CHIP_ERROR _GetCurrentHeapFree(uint64_t & currentHeapFree); CHIP_ERROR _GetCurrentHeapUsed(uint64_t & currentHeapUsed); CHIP_ERROR _GetCurrentHeapHighWatermark(uint64_t & currentHeapHighWatermark); CHIP_ERROR _GetRebootCount(uint16_t & rebootCount); CHIP_ERROR _GetUpTime(uint64_t & upTime); CHIP_ERROR _GetTotalOperationalHours(uint32_t & totalOperationalHours); CHIP_ERROR _GetBootReasons(uint8_t & bootReasons); // ===== Members for internal use by the following friends. friend PlatformManager & PlatformMgr(void); friend PlatformManagerImpl & PlatformMgrImpl(void); uint64_t mStartTimeMilliseconds = 0; static PlatformManagerImpl sInstance; }; /** * Returns the public interface of the PlatformManager singleton object. * * Chip applications should use this to access features of the PlatformManager object * that are common to all platforms. */ inline PlatformManager & PlatformMgr(void) { return PlatformManagerImpl::sInstance; } /** * Returns the platform-specific implementation of the PlatformManager singleton object. * * Chip applications can use this to gain access to features of the PlatformManager * that are specific to the STM32 platform. */ inline PlatformManagerImpl & PlatformMgrImpl(void) { return PlatformManagerImpl::sInstance; } } // namespace DeviceLayer } // namespace chip