| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * Copyright (c) 2020, Armink, <armink.ztl@gmail.com>
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file
- * @brief Initialize interface.
- *
- * Some initialize interface for this library.
- */
- #include <flashdb.h>
- #include <fdb_low_lvl.h>
- #define FDB_LOG_TAG ""
- fdb_err_t _fdb_init_ex(fdb_db_t db, const char *name, const char *part_name, fdb_db_type type, void *user_data)
- {
- size_t block_size;
- FDB_ASSERT(db);
- FDB_ASSERT(name);
- FDB_ASSERT(part_name);
- if (db->init_ok) {
- return FDB_NO_ERR;
- }
- db->name = name;
- db->type = type;
- db->user_data = user_data;
- /* FAL (Flash Abstraction Layer) initialization */
- fal_init();
- /* check the flash partition */
- if ((db->part = fal_partition_find(part_name)) == NULL) {
- FDB_INFO("Error: Partition (%s) not found.\n", part_name);
- return FDB_PART_NOT_FOUND;
- }
- block_size = fal_flash_device_find(db->part->flash_name)->blk_size;
- if (db->sec_size == 0) {
- db->sec_size = block_size;
- } else {
- /* must be aligned with block size */
- FDB_ASSERT(db->sec_size % block_size == 0);
- }
- return FDB_NO_ERR;
- }
- void _fdb_init_finish(fdb_db_t db, fdb_err_t result)
- {
- static bool log_is_show = false;
- if (result == FDB_NO_ERR) {
- db->init_ok = true;
- if (!log_is_show) {
- FDB_INFO("FlashDB V%s is initialize success.\n", FDB_SW_VERSION);
- // FDB_INFO("You can get the latest version on https://github.com/armink/FlashDB .\n");
- log_is_show = true;
- }
- } else {
- FDB_INFO("Error: %s (%s) is initialize fail (%d).\n", db->type == FDB_DB_TYPE_KV ? "KVDB" : "TSDB",
- db->name, (int)result);
- }
- }
|