HL-PDJ-1/components/ble/peer_manager/peer_data_storage.h

252 lines
11 KiB
C
Raw Permalink Normal View History

2025-08-19 09:49:41 +08:00
/**
* Copyright (c) 2015 - 2020, Nordic Semiconductor ASA
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form, except as embedded into a Nordic
* Semiconductor ASA integrated circuit in a product or a software update for
* such product, must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other
* materials provided with the distribution.
*
* 3. Neither the name of Nordic Semiconductor ASA nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* 4. This software, with or without modification, must only be used with a
* Nordic Semiconductor ASA integrated circuit.
*
* 5. Any software provided in binary form under this license must not be reverse
* engineered, decompiled, modified and/or disassembled.
*
* THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef PEER_DATA_STORAGE_H__
#define PEER_DATA_STORAGE_H__
#include <stdint.h>
#include "sdk_errors.h"
#include "ble_gap.h"
#include "peer_manager_types.h"
#include "peer_manager_internal.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @cond NO_DOXYGEN
* @defgroup peer_data_storage Peer Data Storage
* @ingroup peer_manager
* @{
* @brief An internal module of @ref peer_manager. This module provides a Peer Manager-specific API
* to the persistent storage.
*
* @details This module uses Flash Data Storage (FDS) to interface with persistent storage.
*/
#define PDS_FIRST_RESERVED_FILE_ID (0xC000) /**< The beginning of the range of file IDs reserved for Peer Manager. */
#define PDS_LAST_RESERVED_FILE_ID (0xFFFE) /**< The end of the range of file IDs reserved for Peer Manager. */
#define PDS_FIRST_RESERVED_RECORD_KEY (0xC000) /**< The beginning of the range of record keys reserved for Peer Manager. */
#define PDS_LAST_RESERVED_RECORD_KEY (0xFFFE) /**< The end of the range of record keys reserved for Peer Manager. */
#define PEER_ID_TO_FILE_ID ( PDS_FIRST_RESERVED_FILE_ID) //!< Macro for converting a @ref pm_peer_id_t to an FDS file ID.
#define FILE_ID_TO_PEER_ID (-PDS_FIRST_RESERVED_FILE_ID) //!< Macro for converting an FDS file ID to a @ref pm_peer_id_t.
#define DATA_ID_TO_RECORD_KEY ( PDS_FIRST_RESERVED_RECORD_KEY) //!< Macro for converting a @ref pm_peer_data_id_t to an FDS record ID.
#define RECORD_KEY_TO_DATA_ID (-PDS_FIRST_RESERVED_RECORD_KEY) //!< Macro for converting an FDS record ID to a @ref pm_peer_data_id_t.
/**@brief Function for initializing the module.
*
* @retval NRF_SUCCESS If initialization was successful.
* @retval NRF_ERROR_STORAGE_FULL If no flash pages were available for use.
* @retval NRF_ERROR_INTERNAL If the module couldn't register with the flash filesystem.
*/
ret_code_t pds_init(void);
/**@brief Function for reading peer data in flash.
*
* @param[in] peer_id The peer the data belongs to.
* @param[in] data_id The data to retrieve.
* @param[out] p_data The peer data. May not be @c NULL. p_data.length_words and p_data.data_id
* are ignored. p_data.p_all_data is ignored if @p p_buf_len is @c NULL.
* @param[in] p_buf_len Length of the provided buffer, in bytes. Pass @c NULL to only copy
* a pointer to the data in flash.
*
* @retval NRF_SUCCESS If the operation was successful.
* @retval NRF_ERROR_INVALID_PARAM If @p peer_id or @p data_id are invalid.
* @retval NRF_ERROR_NOT_FOUND If the data was not found in flash.
* @retval NRF_ERROR_DATA_SIZE If the provided buffer is too small. The data is still copied,
* filling the provided buffer.
*/
ret_code_t pds_peer_data_read(pm_peer_id_t peer_id,
pm_peer_data_id_t data_id,
pm_peer_data_t * const p_data,
uint32_t const * const p_buf_len);
/**@brief Function to prepare iterating over peer data in flash using @ref pds_peer_data_iterate.
* Call this function once each time before iterating using @ref pds_peer_data_iterate.
*/
void pds_peer_data_iterate_prepare(void);
/**@brief Function for iterating peers' data in flash.
* Always call @ref pds_peer_data_iterate_prepare before starting iterating.
*
* @param[in] data_id The peer data to iterate over.
* @param[out] p_peer_id The peer the data belongs to.
* @param[out] p_data The peer data in flash.
*
* @retval true If the operation was successful.
* @retval false If the data was not found in flash, or another error occurred.
*/
bool pds_peer_data_iterate(pm_peer_data_id_t data_id,
pm_peer_id_t * const p_peer_id,
pm_peer_data_flash_t * const p_data);
/**@brief Function for storing peer data in flash. If the same piece of data already exists for the
* given peer, it will be updated. This operation is asynchronous.
* Expect a @ref PM_EVT_PEER_DATA_UPDATE_SUCCEEDED or @ref PM_EVT_PEER_DATA_UPDATE_FAILED
* event.
*
* @param[in] peer_id The peer the data belongs to.
* @param[in] p_peer_data The peer data. May not be @c NULL.
* @param[out] p_store_token A token identifying this particular store operation. The token can be
* used to identify events pertaining to this operation. Pass @p NULL
* if not used.
*
* @retval NRF_SUCCESS If the operation was initiated successfully.
* @retval NRF_ERROR_INVALID_PARAM If @p peer_id or the data ID in @p_peer_data are invalid.
* @retval NRF_ERROR_INVALID_ADDR If @p p_peer_data is not word-aligned.
* @retval NRF_ERROR_STORAGE_FULL If no space is available in flash.
* @retval NRF_ERROR_BUSY If the flash filesystem was busy.
* @retval NRF_ERROR_INTERNAL If an unexpected error occurred.
*/
ret_code_t pds_peer_data_store(pm_peer_id_t peer_id,
pm_peer_data_const_t const * p_peer_data,
pm_store_token_t * p_store_token);
/**@brief Function for deleting peer data in flash. This operation is asynchronous.
* Expect a @ref PM_EVT_PEER_DATA_UPDATE_SUCCEEDED or @ref PM_EVT_PEER_DATA_UPDATE_FAILED
* event.
*
* @param[in] peer_id The peer the data belongs to
* @param[in] data_id The data to delete.
*
* @retval NRF_SUCCESS If the operation was initiated successfully.
* @retval NRF_ERROR_INVALID_PARAM If @p peer_id or @p data_id are invalid.
* @retval NRF_ERROR_NOT_FOUND If data was not found in flash.
* @retval NRF_ERROR_BUSY If the flash filesystem was busy.
* @retval NRF_ERROR_INTERNAL If an unexpected error occurred.
*/
ret_code_t pds_peer_data_delete(pm_peer_id_t peer_id, pm_peer_data_id_t data_id);
/**@brief Function for claiming an unused peer ID.
*
* @retval PM_PEER_ID_INVALID If no peer ID was available.
*/
pm_peer_id_t pds_peer_id_allocate(void);
/**@brief Function for freeing a peer ID and deleting all data associated with it in flash.
*
* @param[in] peer_id The ID of the peer to free.
*
* @retval NRF_SUCCESS The operation was initiated successfully.
* @retval NRF_ERROR_INVALID_PARAM If @p peer_id is invalid.
*/
ret_code_t pds_peer_id_free(pm_peer_id_t peer_id);
/**@brief Function for finding out whether a peer ID is in use.
*
* @param[in] peer_id The peer ID to inquire about.
*
* @retval true @p peer_id is in use.
* @retval false @p peer_id is free.
*/
bool pds_peer_id_is_allocated(pm_peer_id_t peer_id);
/**@brief Function for finding out whether a peer ID is marked for deletion.
*
* @param[in] peer_id The peer ID to inquire about.
*
* @retval true @p peer_id is marked for deletion.
* @retval false @p peer_id is not marked for deletion.
*/
bool pds_peer_id_is_deleted(pm_peer_id_t peer_id);
/**@brief Function for getting the next peer ID in the sequence of all used peer IDs. Can be
* used to loop through all used peer IDs.
*
* @note @ref PM_PEER_ID_INVALID is considered to be before the first and after the last ordinary
* peer ID.
*
* @param[in] prev_peer_id The previous peer ID.
*
* @return The first ordinary peer ID If @p prev_peer_id is @ref PM_PEER_ID_INVALID.
* @retval PM_PEER_ID_INVALID If @p prev_peer_id is the last ordinary peer ID or the module
* is not initialized.
*/
pm_peer_id_t pds_next_peer_id_get(pm_peer_id_t prev_peer_id);
/**@brief Function for getting the next peer ID in the sequence of all peer IDs pending deletion.
* Can be used to loop through all used peer IDs.
*
* @note @ref PM_PEER_ID_INVALID is considered to be before the first and after the last ordinary
* peer ID.
*
* @param[in] prev_peer_id The previous peer ID.
*
* @return The next peer ID pending deletion.
* @return The first ordinary peer ID if prev_peer_id was @ref PM_PEER_ID_INVALID.
* @retval PM_PEER_ID_INVALID if prev_peer_id was the last ordinary peer ID or the module
* is not initialized.
*/
pm_peer_id_t pds_next_deleted_peer_id_get(pm_peer_id_t prev_peer_id);
/**@brief Function for querying the number of valid peer IDs available. I.E the number of peers
* in persistent storage.
*
* @return The number of valid peer IDs.
*/
uint32_t pds_peer_count_get(void);
/** @}
* @endcond
*/
#ifdef __cplusplus
}
#endif
#endif /* PEER_DATA_STORAGE_H__ */