The DatabaseAPI Library is a C++ library that provides an interface and implementation for a simple key-value database. It is designed to work on the ESP32/Arduino platform, making use of the Non-Volatile Storage (NVS) capabilities for data storage.
- Introduction
- Features
- Dependencies
- Installation
- Usage
- Example
- License
- Contributions
- Platformio Registry
The DatabaseAPI Library is designed to simplify the management of key-value pairs in a non-volatile storage environment. It provides a flexible and easy-to-use interface for interacting with a database.
Key-Value Storage
: Store and retrieve key-value pairs.Error Handling
: Comprehensive error handling with error codes.ESP32/Arduino NVS Support
: Includes an implementation for the ESP32/Arduino NVS database.Mocking Support
: Facilitates unit testing through the use of mocks for the NVS delegate.Integrated Testing
: Provides integrated tests using the actual NVS implementation for comprehensive testing.
The DatabaseAPI Library has the following dependencies:
- C++ Standard Library
- ESP32/Arduino NVS library (for the NVSDelegate implementation)
- MultiPrinterLogger
Method 1: To use the DatabaseAPI library in your PlatformIO project, follow these steps:
-
Open "platformio.ini", a project configuration file located in the root of PlatformIO project.
-
Add the following line to the
lib_deps
option of[env:]
section:ronny-antoon/DatabaseAPI@^7.0.0
-
Build a project, PlatformIO will automatically install dependencies.
Method 2: To use the DatabaseAPI library in your Arduino project, follow these steps:
-
Download the latest release from the GitHub repository.
-
In the Arduino IDE, click "Sketch" -> "Include Library" -> "Add .ZIP Library" and select the downloaded
.zip
file. -
Make sure to link your project with the necessary ESP-IDF libraries for NVS support.
- Initialize the database delegate, such as
NVSDelegate
for ESP32/Arduino NVS, and the DatabaseAPI
#include "DatabaseAPI.hpp"
#include "NVSDelegate.hpp"
// Create an instance of NVSDelegate (use MockNVSDelegate for unit testing)
NVSDelegate *nvsDelegate = new NVSDelegate();
// Create an instance of DatabaseAPI
DatabaseAPI *databaseAPI = new DatabaseAPI(nvsDelegate, "myNamespace");
Basic Operations
Set a Value
const char *key = "your_key";
const char *value = "your_value";
DatabaseError_t err = databaseAPI->set(key, value);
Get a Value
const char *key = "your_key";
char actualValue[NVS_DELEGATE_MAX_VALUE_LENGTH];
size_t maxValueLength = NVS_DELEGATE_MAX_VALUE_LENGTH;
DatabaseError_t err = databaseAPI->get(key, actualValue, maxValueLength);
Check if a Key Exists
const char *key = "your_key";
DatabaseError_t err = databaseAPI->isExist(key);
Get the Length of a Value
const char *key = "your_key";
size_t valueLength = 0;
DatabaseError_t err = databaseAPI->getValueLength(key, &valueLength);
Erase All Key-Value Pairs
DatabaseError_t err = databaseAPI->eraseAll();
Detailed documentation and usage examples can be found in the library source code.
Here's a simple example of how to use the DatabaseAPI library to store and retrieve data from the NVS database:
#include <DatabaseAPI.hpp>
#include <NVSDelegate.hpp>
#include <DatabaseError.hpp>
// Initialize the database delegate
NVSDelegate nvsDelegate();
// Initialize the database API class
DatabaseAPI database(&nvsDelegate, "MyPartition");
// Set a new key-value pair in database.
DatabaseError_t result = database.set("key", "value");
if (result == DATABASE_OK) {
// Key-Value pair successfully set.
} else {
// Handle the error.
}
For a complete list of methods and error codes, refer to the class documentation in the source code.
This library is provided under the MIT License. You are free to use, modify, and distribute it as needed.
If you'd like to contribute to the Database Library, please follow these guidelines:
- Fork the repository.
- Make your changes and document them.
- Submit a pull request.
This library was created by Ronny Antoon. You can contact me at [ronny.antoon@gmail.com] for any questions or feedback.
https://registry.platformio.org/libraries/ronny-antoon/DatabaseAPI
For more information on the ESP-IDF's NVS API, refer to the official documentationy