| /* |
| * |
| * 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 ConfigurationManager object |
| * for the ESP32 platform. |
| */ |
| |
| #pragma once |
| |
| #include <platform/ConnectivityManager.h> |
| #include <platform/internal/GenericConfigurationManagerImpl.h> |
| #if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE |
| #include <platform/internal/GenericConnectivityManagerImpl_BLE.h> |
| #else |
| #include <platform/internal/GenericConnectivityManagerImpl_NoBLE.h> |
| #endif |
| |
| #include <platform/ESP32/ESP32Config.h> |
| |
| namespace chip { |
| namespace DeviceLayer { |
| |
| /** |
| * Concrete implementation of the ConfigurationManager singleton object for the ESP32 platform. |
| */ |
| class ConfigurationManagerImpl : public Internal::GenericConfigurationManagerImpl<Internal::ESP32Config>, |
| #if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE |
| public Internal::GenericConnectivityManagerImpl_BLE<ConnectivityManagerImpl> |
| #else |
| public Internal::GenericConnectivityManagerImpl_NoBLE<ConnectivityManagerImpl> |
| #endif |
| { |
| public: |
| CHIP_ERROR GetRebootCount(uint32_t & rebootCount) override; |
| CHIP_ERROR StoreRebootCount(uint32_t rebootCount) override; |
| CHIP_ERROR GetTotalOperationalHours(uint32_t & totalOperationalHours) override; |
| CHIP_ERROR StoreTotalOperationalHours(uint32_t totalOperationalHours) override; |
| CHIP_ERROR GetSoftwareVersionString(char * buf, size_t bufSize); |
| CHIP_ERROR GetSoftwareVersion(uint32_t & softwareVer) override; |
| CHIP_ERROR GetLocationCapability(uint8_t & location) override; |
| static ConfigurationManagerImpl & GetDefaultInstance(); |
| |
| // Set the country code to esp_phy layer and also store it to NVS |
| // GenericConfigurationManagerImpl::GetCountryCode() API already reads from the NVS so its not implemented here |
| CHIP_ERROR StoreCountryCode(const char * code, size_t codeLen) override; |
| |
| private: |
| // ===== Members that implement the ConfigurationManager public interface. |
| |
| CHIP_ERROR Init(void) override; |
| #if CHIP_DEVICE_CONFIG_ENABLE_ETHERNET |
| CHIP_ERROR GetPrimaryMACAddress(MutableByteSpan buf) override; |
| CHIP_ERROR GetPrimaryEthernetMACAddress(MutableByteSpan buf); |
| #endif |
| CHIP_ERROR GetPrimaryWiFiMACAddress(uint8_t * buf) override; |
| bool CanFactoryReset(void) override; |
| void InitiateFactoryReset(void) override; |
| CHIP_ERROR MapConfigError(esp_err_t error); |
| CHIP_ERROR ReadPersistedStorageValue(::chip::Platform::PersistedStorage::Key key, uint32_t & value) override; |
| CHIP_ERROR WritePersistedStorageValue(::chip::Platform::PersistedStorage::Key key, uint32_t value) override; |
| |
| // NOTE: Other public interface methods are implemented by GenericConfigurationManagerImpl<>. |
| |
| // ===== Members that implement the GenericConfigurationManagerImpl protected interface. |
| CHIP_ERROR ReadConfigValue(Key key, bool & val) override; |
| CHIP_ERROR ReadConfigValue(Key key, uint32_t & val) override; |
| CHIP_ERROR ReadConfigValue(Key key, uint64_t & val) override; |
| CHIP_ERROR ReadConfigValueStr(Key key, char * buf, size_t bufSize, size_t & outLen) override; |
| CHIP_ERROR ReadConfigValueBin(Key key, uint8_t * buf, size_t bufSize, size_t & outLen) override; |
| CHIP_ERROR WriteConfigValue(Key key, bool val) override; |
| CHIP_ERROR WriteConfigValue(Key key, uint32_t val) override; |
| CHIP_ERROR WriteConfigValue(Key key, uint64_t val) override; |
| CHIP_ERROR WriteConfigValueStr(Key key, const char * str) override; |
| CHIP_ERROR WriteConfigValueStr(Key key, const char * str, size_t strLen) override; |
| CHIP_ERROR WriteConfigValueBin(Key key, const uint8_t * data, size_t dataLen) override; |
| void RunConfigUnitTest(void) override; |
| |
| // ===== Private members reserved for use by this class only. |
| |
| static void DoFactoryReset(intptr_t arg); |
| }; |
| |
| /** |
| * Returns the platform-specific implementation of the ConfigurationManager object. |
| * |
| * Applications can use this to gain access to features of the ConfigurationManager |
| * that are specific to the selected platform. |
| */ |
| ConfigurationManager & ConfigurationMgrImpl(); |
| |
| } // namespace DeviceLayer |
| } // namespace chip |