Skip to content

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.

License

Notifications You must be signed in to change notification settings

ronny-antoon/DatabaseAPI

Repository files navigation

DatabaseAPI Library

Donate Latest Latest Integrated Test Unit Test

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.

Table of Contents

Introduction

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.

Features

  • 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.

Dependencies

The DatabaseAPI Library has the following dependencies:

  • C++ Standard Library
  • ESP32/Arduino NVS library (for the NVSDelegate implementation)
  • MultiPrinterLogger

Installation

Method 1: To use the DatabaseAPI library in your PlatformIO project, follow these steps:

  1. Open "platformio.ini", a project configuration file located in the root of PlatformIO project.

  2. Add the following line to the lib_deps option of [env:] section: ronny-antoon/DatabaseAPI@^7.0.0

  3. Build a project, PlatformIO will automatically install dependencies.

Method 2: To use the DatabaseAPI library in your Arduino project, follow these steps:

  1. Download the latest release from the GitHub repository.

  2. In the Arduino IDE, click "Sketch" -> "Include Library" -> "Add .ZIP Library" and select the downloaded .zip file.

  3. Make sure to link your project with the necessary ESP-IDF libraries for NVS support.

Usage

  1. 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.

Example

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.

License

This library is provided under the MIT License. You are free to use, modify, and distribute it as needed.

Contributions

If you'd like to contribute to the Database Library, please follow these guidelines:

  1. Fork the repository.
  2. Make your changes and document them.
  3. Submit a pull request.

Author

This library was created by Ronny Antoon. You can contact me at [ronny.antoon@gmail.com] for any questions or feedback.

Platformio Registry

https://registry.platformio.org/libraries/ronny-antoon/DatabaseAPI

For more information on the ESP-IDF's NVS API, refer to the official documentationy

About

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.

Resources

License

Stars

Watchers

Forks

Languages