aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/nRF5_SDK_15.0.0_a53641a/components/ble/ble_link_ctx_manager/ble_link_ctx_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/nRF5_SDK_15.0.0_a53641a/components/ble/ble_link_ctx_manager/ble_link_ctx_manager.h')
-rw-r--r--thirdparty/nRF5_SDK_15.0.0_a53641a/components/ble/ble_link_ctx_manager/ble_link_ctx_manager.h127
1 files changed, 127 insertions, 0 deletions
diff --git a/thirdparty/nRF5_SDK_15.0.0_a53641a/components/ble/ble_link_ctx_manager/ble_link_ctx_manager.h b/thirdparty/nRF5_SDK_15.0.0_a53641a/components/ble/ble_link_ctx_manager/ble_link_ctx_manager.h
new file mode 100644
index 0000000..2ac3693
--- /dev/null
+++ b/thirdparty/nRF5_SDK_15.0.0_a53641a/components/ble/ble_link_ctx_manager/ble_link_ctx_manager.h
@@ -0,0 +1,127 @@
+/**
+ * Copyright (c) 2017 - 2018, 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.
+ *
+ */
+/** @file
+ *
+ * @defgroup ble_link_ctx_manager BLE Link Context Manager
+ * @{
+ * @ingroup ble_sdk_lib
+ * @brief Storage for link-related data.
+ *
+ * @details BLE Link Context Manager can be used as a simple storage for link-related data.
+ * Each link context data is uniquely identified within the storage by its connection
+ * handle and can be retrieved from it by using this handle.
+ *
+ */
+#ifndef BLE_LINK_CTX_MANAGER_H__
+#define BLE_LINK_CTX_MANAGER_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+#include "ble_conn_state.h"
+#include "sdk_errors.h"
+
+
+/**@brief Macro for defining a blcm_link_ctx_storage instance.
+ *
+ * @param[in] _name Name of the instance.
+ * @param[in] _max_clients Maximum number of clients connected at a time.
+ * @param[in] _link_ctx_size Context size in bytes for a single link.
+ */
+#define BLE_LINK_CTX_MANAGER_DEF(_name, _max_clients, _link_ctx_size) \
+ STATIC_ASSERT((_max_clients) < BLE_CONN_STATE_MAX_CONNECTIONS); \
+ static uint32_t CONCAT_2(_name, _ctx_data_pool)[(_max_clients)*BYTES_TO_WORDS(_link_ctx_size)]; \
+ static blcm_link_ctx_storage_t _name = \
+ { \
+ .p_ctx_data_pool = CONCAT_2(_name, _ctx_data_pool), \
+ .max_links_cnt = (_max_clients), \
+ .link_ctx_size = sizeof(CONCAT_2(_name, _ctx_data_pool))/(_max_clients) \
+ }
+
+
+/**
+ * @brief Type of description that is used for registry of all current connections.
+ */
+typedef struct
+{
+ void * const p_ctx_data_pool; /**< Pointer to links context memory pool. */
+ uint8_t const max_links_cnt; /**< Maximum number of concurrent links. */
+ uint16_t const link_ctx_size; /**< Context size in bytes for a single link (word-aligned). */
+} blcm_link_ctx_storage_t;
+
+
+/**
+ * @brief Function for getting the link context from the link registry.
+ *
+ * This function finds the link context in the registry. The link to find is identified by the
+ * connection handle within the registry.
+ *
+ * The context is preserved for the lifetime of the connection. When a new connection occurs, the
+ * value of its context is undefined, and should be initialized.
+ *
+ * @param[in] p_link_ctx_storage Pointer to the link storage descriptor.
+ * @param[in] conn_handle Connection whose context to find.
+ * @param[out] pp_ctx_data Pointer to data with context for the connection.
+ *
+ * @retval NRF_ERROR_NULL If \p p_link_ctx_storage is NULL or contains a NULL pointer, or if
+ * \p pp_ctx_data is NULL.
+ * @retval NRF_ERROR_INVALID_PARAM If \p p_link_ctx_storage::link_ctx_size is not multiple of word
+ * size.
+ * @retval NRF_ERROR_NOT_FOUND If \p conn_handle does not refer to an active or recently
+ * disconnected link.
+ * @retval NRF_ERROR_NO_MEM If there is not enough memory to store context for the given
+ * connection handle. This can happen if the number of links is
+ * greater than \p p_link_ctx_storage::max_links_cnt.
+ * @retval NRF_SUCCESS If the operation was successful.
+ */
+ret_code_t blcm_link_ctx_get(blcm_link_ctx_storage_t const * const p_link_ctx_storage,
+ uint16_t const conn_handle,
+ void ** const pp_ctx_data);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // BLE_LINK_CTX_MANAGER_H__
+
+/** @} */