2016-09-26 13:37:39 +00:00
|
|
|
|
2019-06-30 08:39:00 +00:00
|
|
|
#include "bt_common.h"
|
2018-04-08 04:10:50 +00:00
|
|
|
#include "osi/allocator.h"
|
|
|
|
#include "osi/list.h"
|
|
|
|
#include "osi/osi.h"
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
struct list_node_t {
|
2016-11-24 18:10:15 +00:00
|
|
|
struct list_node_t *next;
|
|
|
|
void *data;
|
2016-09-26 13:37:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct list_t {
|
2016-11-24 18:10:15 +00:00
|
|
|
list_node_t *head;
|
|
|
|
list_node_t *tail;
|
|
|
|
size_t length;
|
|
|
|
list_free_cb free_cb;
|
2016-09-26 13:37:39 +00:00
|
|
|
} list_t;
|
|
|
|
|
|
|
|
//static list_node_t *list_free_node_(list_t *list, list_node_t *node);
|
|
|
|
|
|
|
|
// Hidden constructor, only to be used by the hash map for the allocation tracker.
|
|
|
|
// Behaves the same as |list_new|, except you get to specify the allocator.
|
2018-08-15 02:40:51 +00:00
|
|
|
list_t *list_new_internal(list_free_cb callback)
|
2016-11-24 18:10:15 +00:00
|
|
|
{
|
2018-08-15 02:40:51 +00:00
|
|
|
list_t *list = (list_t *) osi_calloc(sizeof(list_t));
|
2016-11-24 18:10:15 +00:00
|
|
|
if (!list) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list->head = list->tail = NULL;
|
|
|
|
list->length = 0;
|
|
|
|
list->free_cb = callback;
|
|
|
|
return list;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_t *list_new(list_free_cb callback)
|
|
|
|
{
|
2018-08-15 02:40:51 +00:00
|
|
|
return list_new_internal(callback);
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
void list_free(list_t *list)
|
|
|
|
{
|
|
|
|
if (!list) {
|
|
|
|
return;
|
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_clear(list);
|
2018-08-15 02:40:51 +00:00
|
|
|
osi_free(list);
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
bool list_is_empty(const list_t *list)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
return (list->length == 0);
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
bool list_contains(const list_t *list, const void *data)
|
|
|
|
{
|
2016-09-26 13:37:39 +00:00
|
|
|
assert(list != NULL);
|
|
|
|
assert(data != NULL);
|
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) {
|
2019-03-26 06:37:37 +00:00
|
|
|
if (list_node(node) == data) {
|
2016-09-26 13:37:39 +00:00
|
|
|
return true;
|
2019-03-26 06:37:37 +00:00
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
size_t list_length(const list_t *list)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
return list->length;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
void *list_front(const list_t *list)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(!list_is_empty(list));
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
return list->head->data;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *list_back(const list_t *list) {
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(!list_is_empty(list));
|
|
|
|
|
|
|
|
return list->tail->data;
|
|
|
|
}
|
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
list_node_t *list_back_node(const list_t *list) {
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(!list_is_empty(list));
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
return list->tail;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool list_insert_after(list_t *list, list_node_t *prev_node, void *data) {
|
2018-09-18 06:49:08 +00:00
|
|
|
assert(list != NULL);
|
|
|
|
assert(prev_node != NULL);
|
|
|
|
assert(data != NULL);
|
|
|
|
list_node_t *node = (list_node_t *)osi_calloc(sizeof(list_node_t));
|
|
|
|
if (!node) {
|
2019-09-18 09:43:35 +00:00
|
|
|
OSI_TRACE_ERROR("%s osi_calloc failed.\n", __FUNCTION__ );
|
2018-09-18 06:49:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-24 18:10:15 +00:00
|
|
|
node->next = prev_node->next;
|
|
|
|
node->data = data;
|
|
|
|
prev_node->next = node;
|
|
|
|
if (list->tail == prev_node) {
|
|
|
|
list->tail = node;
|
|
|
|
}
|
|
|
|
++list->length;
|
|
|
|
return true;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
bool list_prepend(list_t *list, void *data)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(data != NULL);
|
2018-08-15 02:40:51 +00:00
|
|
|
list_node_t *node = (list_node_t *)osi_calloc(sizeof(list_node_t));
|
2016-11-24 18:10:15 +00:00
|
|
|
if (!node) {
|
2019-09-18 09:43:35 +00:00
|
|
|
OSI_TRACE_ERROR("%s osi_calloc failed.\n", __FUNCTION__ );
|
2016-11-24 18:10:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
node->next = list->head;
|
|
|
|
node->data = data;
|
|
|
|
list->head = node;
|
|
|
|
if (list->tail == NULL) {
|
|
|
|
list->tail = list->head;
|
|
|
|
}
|
|
|
|
++list->length;
|
|
|
|
return true;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
bool list_append(list_t *list, void *data)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(data != NULL);
|
2018-08-15 02:40:51 +00:00
|
|
|
list_node_t *node = (list_node_t *)osi_calloc(sizeof(list_node_t));
|
2016-11-24 18:10:15 +00:00
|
|
|
if (!node) {
|
2019-09-18 09:43:35 +00:00
|
|
|
OSI_TRACE_ERROR("%s osi_calloc failed.\n", __FUNCTION__ );
|
2016-11-24 18:10:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
node->next = NULL;
|
|
|
|
node->data = data;
|
|
|
|
if (list->tail == NULL) {
|
|
|
|
list->head = node;
|
|
|
|
list->tail = node;
|
|
|
|
} else {
|
|
|
|
list->tail->next = node;
|
|
|
|
list->tail = node;
|
|
|
|
}
|
|
|
|
++list->length;
|
|
|
|
return true;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
bool list_remove(list_t *list, void *data)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(data != NULL);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
if (list_is_empty(list)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
if (list->head->data == data) {
|
|
|
|
list_node_t *next = list_free_node(list, list->head);
|
|
|
|
if (list->tail == list->head) {
|
|
|
|
list->tail = next;
|
|
|
|
}
|
|
|
|
list->head = next;
|
|
|
|
return true;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
for (list_node_t *prev = list->head, *node = list->head->next; node; prev = node, node = node->next)
|
|
|
|
if (node->data == data) {
|
|
|
|
prev->next = list_free_node(list, node);
|
|
|
|
if (list->tail == node) {
|
|
|
|
list->tail = prev;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
void list_clear(list_t *list)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
for (list_node_t *node = list->head; node; ) {
|
|
|
|
node = list_free_node(list, node);
|
|
|
|
}
|
|
|
|
list->head = NULL;
|
|
|
|
list->tail = NULL;
|
|
|
|
list->length = 0;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
list_node_t *list_foreach(const list_t *list, list_iter_cb callback, void *context)
|
2016-11-24 18:10:15 +00:00
|
|
|
{
|
2017-08-17 13:13:45 +00:00
|
|
|
assert(list != NULL);
|
|
|
|
assert(callback != NULL);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
for (list_node_t *node = list->head; node; ) {
|
|
|
|
list_node_t *next = node->next;
|
2019-03-26 06:37:37 +00:00
|
|
|
if (!callback(node->data, context)) {
|
2017-08-17 13:13:45 +00:00
|
|
|
return node;
|
2019-03-26 06:37:37 +00:00
|
|
|
}
|
2017-08-17 13:13:45 +00:00
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
return NULL;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_node_t *list_begin(const list_t *list)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
return list->head;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_node_t *list_end(UNUSED_ATTR const list_t *list)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
return NULL;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_node_t *list_next(const list_node_t *node)
|
|
|
|
{
|
|
|
|
assert(node != NULL);
|
|
|
|
return node->next;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
void *list_node(const list_node_t *node)
|
|
|
|
{
|
|
|
|
assert(node != NULL);
|
|
|
|
return node->data;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_node_t *list_free_node(list_t *list, list_node_t *node)
|
|
|
|
{
|
|
|
|
assert(list != NULL);
|
|
|
|
assert(node != NULL);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
list_node_t *next = node->next;
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
if (list->free_cb) {
|
|
|
|
list->free_cb(node->data);
|
|
|
|
}
|
2018-08-15 02:40:51 +00:00
|
|
|
osi_free(node);
|
2016-11-24 18:10:15 +00:00
|
|
|
--list->length;
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
return next;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|