mirror of
https://github.com/armink/FlashDB.git
synced 2025-01-29 04:32:53 +08:00
158 lines
4.8 KiB
C
158 lines
4.8 KiB
C
/* Hello World Example
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
*/
|
|
#include <stdio.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "semphr.h"
|
|
#include "esp_system.h"
|
|
#include "esp_spi_flash.h"
|
|
|
|
#include <flashdb.h>
|
|
|
|
#define FDB_LOG_TAG "[main]"
|
|
|
|
static uint32_t boot_count = 0;
|
|
static time_t boot_time[10] = {0, 1, 2, 3};
|
|
/* default KV nodes */
|
|
static struct fdb_default_kv_node default_kv_table[] = {
|
|
{"username", "armink", 0}, /* string KV */
|
|
{"password", "123456", 0}, /* string KV */
|
|
{"boot_count", &boot_count, sizeof(boot_count)}, /* int type KV */
|
|
{"boot_time", &boot_time, sizeof(boot_time)}, /* int array type KV */
|
|
};
|
|
/* KVDB object */
|
|
static struct fdb_kvdb kvdb = { 0 };
|
|
/* TSDB object */
|
|
struct fdb_tsdb tsdb = { 0 };
|
|
/* counts for simulated timestamp */
|
|
static int counts = 0;
|
|
static SemaphoreHandle_t s_lock = NULL;
|
|
|
|
extern void kvdb_basic_sample(fdb_kvdb_t kvdb);
|
|
extern void kvdb_type_string_sample(fdb_kvdb_t kvdb);
|
|
extern void kvdb_type_blob_sample(fdb_kvdb_t kvdb);
|
|
extern void tsdb_sample(fdb_tsdb_t tsdb);
|
|
|
|
static void lock(fdb_db_t db)
|
|
{
|
|
xSemaphoreTake(s_lock, portMAX_DELAY);
|
|
}
|
|
|
|
static void unlock(fdb_db_t db)
|
|
{
|
|
xSemaphoreGive(s_lock);
|
|
}
|
|
|
|
static fdb_time_t get_time(void)
|
|
{
|
|
/* Using the counts instead of timestamp.
|
|
* Please change this function to return RTC time.
|
|
*/
|
|
return ++counts;
|
|
}
|
|
|
|
int flashdb_demo(void)
|
|
{
|
|
fdb_err_t result;
|
|
|
|
if (s_lock == NULL) {
|
|
s_lock = xSemaphoreCreateCounting(1, 1);
|
|
assert(s_lock != NULL);
|
|
}
|
|
|
|
#ifdef FDB_USING_KVDB
|
|
{ /* KVDB Sample */
|
|
struct fdb_default_kv default_kv;
|
|
|
|
default_kv.kvs = default_kv_table;
|
|
default_kv.num = sizeof(default_kv_table) / sizeof(default_kv_table[0]);
|
|
/* set the lock and unlock function if you want */
|
|
fdb_kvdb_control(&kvdb, FDB_KVDB_CTRL_SET_LOCK, lock);
|
|
fdb_kvdb_control(&kvdb, FDB_KVDB_CTRL_SET_UNLOCK, unlock);
|
|
/* Key-Value database initialization
|
|
*
|
|
* &kvdb: database object
|
|
* "env": database name
|
|
* "fdb_kvdb1": The flash partition name base on FAL. Please make sure it's in FAL partition table.
|
|
* Please change to YOUR partition name.
|
|
* &default_kv: The default KV nodes. It will auto add to KVDB when first initialize successfully.
|
|
* NULL: The user data if you need, now is empty.
|
|
*/
|
|
result = fdb_kvdb_init(&kvdb, "env", "fdb_kvdb1", &default_kv, NULL);
|
|
|
|
if (result != FDB_NO_ERR) {
|
|
return -1;
|
|
}
|
|
|
|
/* run basic KV samples */
|
|
kvdb_basic_sample(&kvdb);
|
|
/* run string KV samples */
|
|
kvdb_type_string_sample(&kvdb);
|
|
/* run blob KV samples */
|
|
kvdb_type_blob_sample(&kvdb);
|
|
}
|
|
#endif /* FDB_USING_KVDB */
|
|
|
|
#ifdef FDB_USING_TSDB
|
|
{ /* TSDB Sample */
|
|
/* set the lock and unlock function if you want */
|
|
fdb_tsdb_control(&tsdb, FDB_TSDB_CTRL_SET_LOCK, lock);
|
|
fdb_tsdb_control(&tsdb, FDB_TSDB_CTRL_SET_UNLOCK, unlock);
|
|
/* Time series database initialization
|
|
*
|
|
* &tsdb: database object
|
|
* "log": database name
|
|
* "fdb_tsdb1": The flash partition name base on FAL. Please make sure it's in FAL partition table.
|
|
* Please change to YOUR partition name.
|
|
* get_time: The get current timestamp function.
|
|
* 128: maximum length of each log
|
|
* NULL: The user data if you need, now is empty.
|
|
*/
|
|
result = fdb_tsdb_init(&tsdb, "log", "fdb_tsdb1", get_time, 128, NULL);
|
|
/* read last saved time for simulated timestamp */
|
|
fdb_tsdb_control(&tsdb, FDB_TSDB_CTRL_GET_LAST_TIME, &counts);
|
|
|
|
if (result != FDB_NO_ERR) {
|
|
return -1;
|
|
}
|
|
|
|
/* run TSDB sample */
|
|
tsdb_sample(&tsdb);
|
|
}
|
|
#endif /* FDB_USING_TSDB */
|
|
|
|
return 0;
|
|
}
|
|
|
|
void app_main()
|
|
{
|
|
printf("Hello world!\n");
|
|
|
|
/* Print chip information */
|
|
esp_chip_info_t chip_info;
|
|
esp_chip_info(&chip_info);
|
|
printf("This is ESP8266 chip with %d CPU cores, WiFi, ",
|
|
chip_info.cores);
|
|
|
|
printf("silicon revision %d, ", chip_info.revision);
|
|
|
|
printf("%dMB %s flash\n", spi_flash_get_chip_size() / (1024 * 1024),
|
|
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");
|
|
|
|
flashdb_demo();
|
|
|
|
for (int i = 1000; i >= 0; i--) {
|
|
printf("Restarting in %d seconds...\n", i);
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
}
|
|
printf("Restarting now.\n");
|
|
fflush(stdout);
|
|
esp_restart();
|
|
}
|