/* * * Copyright (c) 2020-2022 Project CHIP Authors * Copyright (c) 2019-2020 Google LLC. * 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 generic implementation of ConfigurationManager features * for use on various platforms. */ #pragma once #include #include #include #if CHIP_ENABLE_ROTATING_DEVICE_ID && defined(CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID) #include #endif namespace chip { namespace DeviceLayer { class ProvisioningDataSet; namespace Internal { template class GenericDeviceInstanceInfoProvider; #if CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER template class LegacyTemporaryCommissionableDataProvider; #endif // CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER /** * Provides a generic implementation of ConfigurationManager features that works on multiple platforms. * * This template contains implementations of select features from the ConfigurationManager abstract * interface that are suitable for use on all platforms. It is intended to be inherited (directly * or indirectly) by the ConfigurationManagerImpl class. */ template class GenericConfigurationManagerImpl : public ConfigurationManager { public: // ===== Methods that implement the ConfigurationManager abstract interface. CHIP_ERROR Init() override; CHIP_ERROR StoreHardwareVersion(uint16_t hardwareVer) override; CHIP_ERROR GetSoftwareVersionString(char * buf, size_t bufSize) override; CHIP_ERROR GetSoftwareVersion(uint32_t & softwareVer) override; CHIP_ERROR StoreSoftwareVersion(uint32_t softwareVer) override; CHIP_ERROR GetFirmwareBuildChipEpochTime(System::Clock::Seconds32 & buildTime) override; CHIP_ERROR SetFirmwareBuildChipEpochTime(System::Clock::Seconds32 buildTime) override; CHIP_ERROR StoreSerialNumber(const char * serialNum, size_t serialNumLen) override; CHIP_ERROR GetPrimaryMACAddress(MutableByteSpan buf) override; CHIP_ERROR GetPrimaryWiFiMACAddress(uint8_t * buf) override; CHIP_ERROR GetPrimary802154MACAddress(uint8_t * buf) override; CHIP_ERROR StoreManufacturingDate(const char * mfgDate, size_t mfgDateLen) override; #if CHIP_ENABLE_ROTATING_DEVICE_ID && defined(CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID) CHIP_ERROR GetLifetimeCounter(uint16_t & lifetimeCounter) override; CHIP_ERROR IncrementLifetimeCounter() override; CHIP_ERROR SetRotatingDeviceIdUniqueId(const ByteSpan & uniqueIdSpan) override; CHIP_ERROR GetRotatingDeviceIdUniqueId(MutableByteSpan & uniqueIdSpan) override; #endif CHIP_ERROR GetFailSafeArmed(bool & val) override; CHIP_ERROR SetFailSafeArmed(bool val) override; CHIP_ERROR GetBLEDeviceIdentificationInfo(Ble::ChipBLEDeviceIdentificationInfo & deviceIdInfo) override; bool IsCommissionableDeviceTypeEnabled() override; CHIP_ERROR GetDeviceTypeId(uint32_t & deviceType) override; bool IsCommissionableDeviceNameEnabled() override; CHIP_ERROR GetCommissionableDeviceName(char * buf, size_t bufSize) override; CHIP_ERROR GetInitialPairingHint(uint16_t & pairingHint) override; CHIP_ERROR GetInitialPairingInstruction(char * buf, size_t bufSize) override; CHIP_ERROR GetSecondaryPairingHint(uint16_t & pairingHint) override; CHIP_ERROR GetSecondaryPairingInstruction(char * buf, size_t bufSize) override; CHIP_ERROR GetRegulatoryLocation(uint8_t & location) override; CHIP_ERROR StoreRegulatoryLocation(uint8_t location) override; CHIP_ERROR GetCountryCode(char * buf, size_t bufSize, size_t & codeLen) override; CHIP_ERROR StoreCountryCode(const char * code, size_t codeLen) override; 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 GetBootReason(uint32_t & bootReason) override; CHIP_ERROR StoreBootReason(uint32_t bootReason) override; CHIP_ERROR GetUniqueId(char * buf, size_t bufSize) override; CHIP_ERROR StoreUniqueId(const char * uniqueId, size_t uniqueIdLen) override; CHIP_ERROR GenerateUniqueId(char * buf, size_t bufSize) override; #if CHIP_CONFIG_TEST void RunUnitTests() override; #endif bool IsFullyProvisioned() override; void InitiateFactoryReset() override; #if CHIP_ENABLE_ADDITIONAL_DATA_ADVERTISING void NotifyOfAdvertisementStart() override; #else void NotifyOfAdvertisementStart(); #endif void LogDeviceConfig() override; ~GenericConfigurationManagerImpl() override = default; protected: #if CHIP_ENABLE_ROTATING_DEVICE_ID && defined(CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID) chip::LifetimePersistedCounter mLifetimePersistedCounter; uint8_t mRotatingDeviceIdUniqueId[CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID_LENGTH] = CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID; size_t mRotatingDeviceIdUniqueIdLength = kRotatingDeviceIDUniqueIDLength; #endif friend GenericDeviceInstanceInfoProvider; #if CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER friend LegacyTemporaryCommissionableDataProvider; #endif // CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER CHIP_ERROR PersistProvisioningData(ProvisioningDataSet & provData); // Methods to read and write configuration values, as well as run the configuration unit test. typedef typename ConfigClass::Key Key; virtual CHIP_ERROR ReadConfigValue(Key key, bool & val) = 0; virtual CHIP_ERROR ReadConfigValue(Key key, uint32_t & val) = 0; virtual CHIP_ERROR ReadConfigValue(Key key, uint64_t & val) = 0; virtual CHIP_ERROR ReadConfigValueStr(Key key, char * buf, size_t bufSize, size_t & outLen) = 0; virtual CHIP_ERROR ReadConfigValueBin(Key key, uint8_t * buf, size_t bufSize, size_t & outLen) = 0; virtual CHIP_ERROR WriteConfigValue(Key key, bool val) = 0; virtual CHIP_ERROR WriteConfigValue(Key key, uint32_t val) = 0; virtual CHIP_ERROR WriteConfigValue(Key key, uint64_t val) = 0; virtual CHIP_ERROR WriteConfigValueStr(Key key, const char * str) = 0; virtual CHIP_ERROR WriteConfigValueStr(Key key, const char * str, size_t strLen) = 0; virtual CHIP_ERROR WriteConfigValueBin(Key key, const uint8_t * data, size_t dataLen) = 0; virtual void RunConfigUnitTest(void) = 0; }; } // namespace Internal } // namespace DeviceLayer } // namespace chip