2016-08-17 11:08:22 -04:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
#ifndef nvs_storage_hpp
|
|
|
|
#define nvs_storage_hpp
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include "nvs.hpp"
|
|
|
|
#include "nvs_types.hpp"
|
|
|
|
#include "nvs_page.hpp"
|
|
|
|
#include "nvs_pagemanager.hpp"
|
|
|
|
|
|
|
|
//extern void dumpBytes(const uint8_t* data, size_t count);
|
|
|
|
|
|
|
|
namespace nvs
|
|
|
|
{
|
|
|
|
|
2017-08-21 05:56:16 -04:00
|
|
|
class Storage : public intrusive_list_node<Storage>
|
2016-08-17 11:08:22 -04:00
|
|
|
{
|
|
|
|
enum class StorageState : uint32_t {
|
|
|
|
INVALID,
|
|
|
|
ACTIVE,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NamespaceEntry : public intrusive_list_node<NamespaceEntry> {
|
|
|
|
public:
|
|
|
|
char mName[Item::MAX_KEY_LENGTH + 1];
|
|
|
|
uint8_t mIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef intrusive_list<NamespaceEntry> TNamespaces;
|
|
|
|
|
2018-04-02 06:44:59 -04:00
|
|
|
struct UsedPageNode: public intrusive_list_node<UsedPageNode> {
|
|
|
|
public: Page* mPage;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef intrusive_list<UsedPageNode> TUsedPageList;
|
|
|
|
|
|
|
|
struct BlobIndexNode: public intrusive_list_node<BlobIndexNode> {
|
|
|
|
public:
|
|
|
|
char key[Item::MAX_KEY_LENGTH + 1];
|
|
|
|
uint8_t nsIndex;
|
2019-12-06 03:16:07 -05:00
|
|
|
uint8_t chunkCount;
|
|
|
|
VerOffset chunkStart;
|
2018-04-02 06:44:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef intrusive_list<BlobIndexNode> TBlobIndexList;
|
|
|
|
|
2016-08-17 11:08:22 -04:00
|
|
|
public:
|
|
|
|
~Storage();
|
|
|
|
|
2019-12-06 03:16:07 -05:00
|
|
|
Storage(const char *pName = NVS_DEFAULT_PART_NAME)
|
|
|
|
{
|
|
|
|
strncpy(mPartitionName, pName, NVS_PART_NAME_MAX_SIZE);
|
|
|
|
};
|
2017-08-21 05:56:16 -04:00
|
|
|
|
2016-08-17 11:08:22 -04:00
|
|
|
esp_err_t init(uint32_t baseSector, uint32_t sectorCount);
|
|
|
|
|
2016-11-15 05:24:56 -05:00
|
|
|
bool isValid() const;
|
|
|
|
|
2016-08-17 11:08:22 -04:00
|
|
|
esp_err_t createOrOpenNamespace(const char* nsName, bool canCreate, uint8_t& nsIndex);
|
|
|
|
|
|
|
|
esp_err_t writeItem(uint8_t nsIndex, ItemType datatype, const char* key, const void* data, size_t dataSize);
|
|
|
|
|
|
|
|
esp_err_t readItem(uint8_t nsIndex, ItemType datatype, const char* key, void* data, size_t dataSize);
|
|
|
|
|
|
|
|
esp_err_t getItemDataSize(uint8_t nsIndex, ItemType datatype, const char* key, size_t& dataSize);
|
|
|
|
|
|
|
|
esp_err_t eraseItem(uint8_t nsIndex, ItemType datatype, const char* key);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
esp_err_t writeItem(uint8_t nsIndex, const char* key, const T& value)
|
|
|
|
{
|
|
|
|
return writeItem(nsIndex, itemTypeOf(value), key, &value, sizeof(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
esp_err_t readItem(uint8_t nsIndex, const char* key, T& value)
|
|
|
|
{
|
|
|
|
return readItem(nsIndex, itemTypeOf(value), key, &value, sizeof(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t eraseItem(uint8_t nsIndex, const char* key)
|
|
|
|
{
|
2016-09-22 12:36:53 -04:00
|
|
|
return eraseItem(nsIndex, ItemType::ANY, key);
|
2016-08-17 11:08:22 -04:00
|
|
|
}
|
2019-12-06 03:16:07 -05:00
|
|
|
|
2016-09-22 12:36:53 -04:00
|
|
|
esp_err_t eraseNamespace(uint8_t nsIndex);
|
2016-09-22 09:05:47 -04:00
|
|
|
|
2017-08-21 05:56:16 -04:00
|
|
|
const char *getPartName() const
|
|
|
|
{
|
|
|
|
return mPartitionName;
|
|
|
|
}
|
2018-07-02 07:10:43 -04:00
|
|
|
uint32_t getBaseSector()
|
|
|
|
{
|
|
|
|
return mPageManager.getBaseSector();
|
|
|
|
}
|
2017-08-21 05:56:16 -04:00
|
|
|
|
2018-04-02 06:44:59 -04:00
|
|
|
esp_err_t writeMultiPageBlob(uint8_t nsIndex, const char* key, const void* data, size_t dataSize, VerOffset chunkStart);
|
|
|
|
|
|
|
|
esp_err_t readMultiPageBlob(uint8_t nsIndex, const char* key, void* data, size_t dataSize);
|
|
|
|
|
2019-04-15 15:06:57 -04:00
|
|
|
esp_err_t cmpMultiPageBlob(uint8_t nsIndex, const char* key, const void* data, size_t dataSize);
|
|
|
|
|
2018-04-02 06:44:59 -04:00
|
|
|
esp_err_t eraseMultiPageBlob(uint8_t nsIndex, const char* key, VerOffset chunkStart = VerOffset::VER_ANY);
|
|
|
|
|
2016-08-21 23:46:44 -04:00
|
|
|
void debugDump();
|
2019-12-06 03:16:07 -05:00
|
|
|
|
2016-08-21 23:46:44 -04:00
|
|
|
void debugCheck();
|
2016-08-17 11:08:22 -04:00
|
|
|
|
2018-02-20 02:11:56 -05:00
|
|
|
esp_err_t fillStats(nvs_stats_t& nvsStats);
|
|
|
|
|
|
|
|
esp_err_t calcEntriesInNamespace(uint8_t nsIndex, size_t& usedEntries);
|
2016-08-17 11:08:22 -04:00
|
|
|
|
2018-11-05 03:03:04 -05:00
|
|
|
bool findEntry(nvs_opaque_iterator_t*, const char* name);
|
|
|
|
|
|
|
|
bool nextEntry(nvs_opaque_iterator_t* it);
|
|
|
|
|
2016-08-17 11:08:22 -04:00
|
|
|
protected:
|
|
|
|
|
|
|
|
Page& getCurrentPage()
|
|
|
|
{
|
|
|
|
return mPageManager.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void clearNamespaces();
|
|
|
|
|
2019-12-06 01:36:28 -05:00
|
|
|
esp_err_t populateBlobIndices(TBlobIndexList&);
|
2018-04-02 06:44:59 -04:00
|
|
|
|
|
|
|
void eraseOrphanDataBlobs(TBlobIndexList&);
|
|
|
|
|
2018-11-05 03:03:04 -05:00
|
|
|
void fillEntryInfo(Item &item, nvs_entry_info_t &info);
|
2018-04-02 06:44:59 -04:00
|
|
|
|
|
|
|
esp_err_t findItem(uint8_t nsIndex, ItemType datatype, const char* key, Page* &page, Item& item, uint8_t chunkIdx = Page::CHUNK_ANY, VerOffset chunkStart = VerOffset::VER_ANY);
|
2016-08-17 11:08:22 -04:00
|
|
|
|
|
|
|
protected:
|
2019-12-06 03:16:07 -05:00
|
|
|
char mPartitionName [NVS_PART_NAME_MAX_SIZE + 1];
|
2016-08-17 11:08:22 -04:00
|
|
|
size_t mPageCount;
|
|
|
|
PageManager mPageManager;
|
|
|
|
TNamespaces mNamespaces;
|
|
|
|
CompressedEnumTable<bool, 1, 256> mNamespaceUsage;
|
|
|
|
StorageState mState = StorageState::INVALID;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace nvs
|
|
|
|
|
2018-11-05 03:03:04 -05:00
|
|
|
struct nvs_opaque_iterator_t
|
|
|
|
{
|
|
|
|
nvs_type_t type;
|
|
|
|
uint8_t nsIndex;
|
|
|
|
size_t entryIndex;
|
|
|
|
nvs::Storage *storage;
|
|
|
|
intrusive_list<nvs::Page>::iterator page;
|
|
|
|
nvs_entry_info_t entry_info;
|
|
|
|
};
|
2016-08-17 11:08:22 -04:00
|
|
|
|
|
|
|
#endif /* nvs_storage_hpp */
|