blob: 6d678404055b4836982f6a11148f6e9b604cde4c [file] [log] [blame]
/*
*
* Copyright (c) 2022 Project CHIP Authors
* 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 Beken platform.
*/
#pragma once
#include <platform/Beken/BekenConfig.h>
#include <platform/ConnectivityManager.h>
#include <platform/internal/GenericConfigurationManagerImpl.h>
namespace chip {
namespace DeviceLayer {
/**
* Concrete implementation of the ConfigurationManager singleton object for the Beken platform.
*/
class ConfigurationManagerImpl : public Internal::GenericConfigurationManagerImpl<Internal::BekenConfig>
{
public:
// This returns an instance of this class.
static ConfigurationManagerImpl & GetDefaultInstance();
private:
// ===== Members that implement the ConfigurationManager public interface.
CHIP_ERROR Init(void);
CHIP_ERROR GetPrimaryWiFiMACAddress(uint8_t * buf);
bool CanFactoryReset(void);
void InitiateFactoryReset(void);
CHIP_ERROR ReadPersistedStorageValue(::chip::Platform::PersistedStorage::Key key, uint32_t & value);
CHIP_ERROR WritePersistedStorageValue(::chip::Platform::PersistedStorage::Key key, uint32_t value);
CHIP_ERROR GetRebootCount(uint32_t & rebootCount);
CHIP_ERROR StoreRebootCount(uint32_t rebootCount);
CHIP_ERROR GetTotalOperationalHours(uint32_t & totalOperationalHours);
CHIP_ERROR StoreTotalOperationalHours(uint32_t totalOperationalHours);
CHIP_ERROR GetBootReason(uint32_t & bootReason);
CHIP_ERROR StoreBootReason(uint32_t bootReason);
// NOTE: Other public interface methods are implemented by GenericConfigurationManagerImpl<>.
// ===== Members that implement the GenericConfigurationManagerImpl protected interface.
CHIP_ERROR ReadConfigValue(Key key, bool & val);
CHIP_ERROR ReadConfigValue(Key key, uint32_t & val);
CHIP_ERROR ReadConfigValue(Key key, uint64_t & val);
CHIP_ERROR ReadConfigValueStr(Key key, char * buf, size_t bufSize, size_t & outLen);
CHIP_ERROR ReadConfigValueBin(Key key, uint8_t * buf, size_t bufSize, size_t & outLen);
CHIP_ERROR WriteConfigValue(Key key, bool val);
CHIP_ERROR WriteConfigValue(Key key, uint32_t val);
CHIP_ERROR WriteConfigValue(Key key, uint64_t val);
CHIP_ERROR WriteConfigValueStr(Key key, const char * str);
CHIP_ERROR WriteConfigValueStr(Key key, const char * str, size_t strLen);
CHIP_ERROR WriteConfigValueBin(Key key, const uint8_t * data, size_t dataLen);
void RunConfigUnitTest(void);
// ===== 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