| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * Copyright (C) 2014 BlueKitchen GmbH
- *
- * 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 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 the copyright holders nor the names of
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * 4. Any redistribution, use, or modification is done solely for
- * personal benefit and not for any commercial purpose or for
- * monetary gain.
- *
- * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
- * RINGWALD 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.
- *
- * Please inquire about commercial licensing options at
- * contact@bluekitchen-gmbh.com
- *
- */
- #define BTSTACK_FILE__ "btstack_link_key_db_memory.c"
- #include <string.h>
- #include <stdlib.h>
- #include "classic/btstack_link_key_db_memory.h"
- #include "btstack_debug.h"
- #include "btstack_linked_list.h"
- #include "btstack_memory.h"
- #include "btstack_util.h"
- #include "classic/core.h"
- // This list should be directly accessed only by tests
- btstack_linked_list_t db_mem_link_keys = NULL;
- // Device info
- static void db_open(void){
- }
- static void db_set_local_bd_addr(bd_addr_t bd_addr){
- (void)bd_addr;
- }
- static void db_close(void){
- }
- static btstack_link_key_db_memory_entry_t * get_item(btstack_linked_list_t list, bd_addr_t bd_addr) {
- btstack_linked_item_t *it;
- for (it = (btstack_linked_item_t *) list; it ; it = it->next){
- btstack_link_key_db_memory_entry_t * item = (btstack_link_key_db_memory_entry_t *) it;
- if (bd_addr_cmp(item->bd_addr, bd_addr) == 0) {
- return item;
- }
- }
- return NULL;
- }
- static int get_link_key(bd_addr_t bd_addr, link_key_t link_key, link_key_type_t * link_key_type) {
- btstack_link_key_db_memory_entry_t * item = get_item(db_mem_link_keys, bd_addr);
-
- if (!item) return 0;
-
- (void)memcpy(link_key, item->link_key, LINK_KEY_LEN);
- if (link_key_type) {
- *link_key_type = item->link_key_type;
- }
- btstack_linked_list_remove(&db_mem_link_keys, (btstack_linked_item_t *) item);
- btstack_linked_list_add(&db_mem_link_keys, (btstack_linked_item_t *) item);
- return 1;
- }
- static void delete_link_key(bd_addr_t bd_addr){
- btstack_link_key_db_memory_entry_t * item = get_item(db_mem_link_keys, bd_addr);
-
- if (!item) return;
-
- btstack_linked_list_remove(&db_mem_link_keys, (btstack_linked_item_t *) item);
- btstack_memory_btstack_link_key_db_memory_entry_free((btstack_link_key_db_memory_entry_t*)item);
- }
- static void put_link_key(bd_addr_t bd_addr, link_key_t link_key, link_key_type_t link_key_type){
- // check for existing record and remove if found
- btstack_link_key_db_memory_entry_t * record = get_item(db_mem_link_keys, bd_addr);
- if (record){
- btstack_linked_list_remove(&db_mem_link_keys, (btstack_linked_item_t*) record);
- }
- // record not found, get new one from memory pool
- if (!record) {
- record = btstack_memory_btstack_link_key_db_memory_entry_get();
- }
- // if none left, re-use last item and remove from list
- if (!record){
- record = (btstack_link_key_db_memory_entry_t*) btstack_linked_list_get_last_item(&db_mem_link_keys);
- if (record) {
- btstack_linked_list_remove(&db_mem_link_keys, (btstack_linked_item_t*) record);
- }
- }
-
- if (!record) return;
-
- (void)memcpy(record->bd_addr, bd_addr, sizeof(bd_addr_t));
- (void)memcpy(record->link_key, link_key, LINK_KEY_LEN);
- record->link_key_type = link_key_type;
- btstack_linked_list_add(&db_mem_link_keys, (btstack_linked_item_t *) record);
- }
- static int iterator_init(btstack_link_key_iterator_t * it){
- it->context = (void*) db_mem_link_keys;
- return 1;
- }
- static int iterator_get_next(btstack_link_key_iterator_t * it, bd_addr_t bd_addr, link_key_t link_key, link_key_type_t * link_key_type){
- btstack_link_key_db_memory_entry_t *item = (btstack_link_key_db_memory_entry_t *) it->context;
- if (item == NULL) return 0;
- // fetch values
- (void)memcpy(bd_addr, item->bd_addr, 6);
- (void)memcpy(link_key, item->link_key, 16);
- *link_key_type = item->link_key_type;
- // next
- it->context = (void *) item->item.next;
- return 1;
- }
- static void iterator_done(btstack_link_key_iterator_t * it){
- UNUSED(it);
- }
- const btstack_link_key_db_t btstack_link_key_db_memory = {
- db_open,
- db_set_local_bd_addr,
- db_close,
- get_link_key,
- put_link_key,
- delete_link_key,
- iterator_init,
- iterator_get_next,
- iterator_done,
- };
- const btstack_link_key_db_t * btstack_link_key_db_memory_instance(void){
- return &btstack_link_key_db_memory;
- }
|