193 lines
3.5 KiB
C
193 lines
3.5 KiB
C
/*
|
|
* uhub - A tiny ADC p2p connection hub
|
|
* Copyright (C) 2007-2009, Jan Vidar Krey
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "uhub.h"
|
|
|
|
struct linked_list* list_create()
|
|
{
|
|
struct linked_list* list = NULL;
|
|
list = (struct linked_list*) hub_malloc_zero(sizeof(struct linked_list));
|
|
if (list == NULL)
|
|
return NULL;
|
|
return list;
|
|
}
|
|
|
|
|
|
void list_destroy(struct linked_list* list)
|
|
{
|
|
if (list)
|
|
hub_free(list);
|
|
}
|
|
|
|
|
|
void list_clear(struct linked_list* list, void (*free_handle)(void* ptr))
|
|
{
|
|
struct node* node = list->first;
|
|
struct node* tmp = NULL;
|
|
while (node)
|
|
{
|
|
tmp = node->next;
|
|
free_handle(node->ptr);
|
|
hub_free(node);
|
|
node = tmp;
|
|
}
|
|
memset(list, 0, sizeof(struct linked_list));
|
|
}
|
|
|
|
|
|
void list_append(struct linked_list* list, void* data_ptr)
|
|
{
|
|
struct node* new_node = (struct node*) hub_malloc_zero(sizeof(struct node));
|
|
new_node->ptr = data_ptr;
|
|
|
|
if (list->last)
|
|
{
|
|
list->last->next = new_node;
|
|
new_node->prev = list->last;
|
|
}
|
|
else
|
|
{
|
|
list->first = new_node;
|
|
}
|
|
|
|
list->last = new_node;
|
|
list->size++;
|
|
}
|
|
|
|
|
|
void list_remove(struct linked_list* list, void* data_ptr)
|
|
{
|
|
struct node* node = list->first;
|
|
assert(data_ptr);
|
|
|
|
list->iterator = NULL;
|
|
|
|
while (node)
|
|
{
|
|
if (node->ptr == data_ptr)
|
|
{
|
|
if (node->next)
|
|
node->next->prev = node->prev;
|
|
|
|
if (node->prev)
|
|
node->prev->next = node->next;
|
|
|
|
if (node == list->last)
|
|
list->last = node->prev;
|
|
|
|
if (node == list->first)
|
|
list->first = node->next;
|
|
|
|
hub_free(node);
|
|
|
|
list->size--;
|
|
break;
|
|
}
|
|
node = node->next;
|
|
}
|
|
}
|
|
|
|
|
|
size_t list_size(struct linked_list* list)
|
|
{
|
|
return list->size;
|
|
}
|
|
|
|
|
|
void* list_get_index(struct linked_list* list, size_t offset)
|
|
{
|
|
struct node* node = list->first;
|
|
size_t n = 0;
|
|
for (n = 0; n < list->size; n++)
|
|
{
|
|
if (n == offset)
|
|
{
|
|
return node->ptr;
|
|
}
|
|
node = node->next;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void* list_get_first(struct linked_list* list)
|
|
{
|
|
list->iterator = list->first;
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
return list->iterator->ptr;
|
|
}
|
|
|
|
struct node* list_get_first_node(struct linked_list* list)
|
|
{
|
|
list->iterator = list->first;
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
return list->iterator;
|
|
}
|
|
|
|
void* list_get_last(struct linked_list* list)
|
|
{
|
|
list->iterator = list->last;
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
return list->iterator->ptr;
|
|
}
|
|
|
|
struct node* list_get_last_node(struct linked_list* list)
|
|
{
|
|
list->iterator = list->last;
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
return list->iterator;
|
|
|
|
}
|
|
|
|
void* list_get_next(struct linked_list* list)
|
|
{
|
|
if (list->iterator == NULL)
|
|
list->iterator = list->first;
|
|
else
|
|
list->iterator = list->iterator->next;
|
|
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
return list->iterator->ptr;
|
|
}
|
|
|
|
|
|
void* list_get_prev(struct linked_list* list)
|
|
{
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
list->iterator = list->iterator->prev;
|
|
|
|
if (list->iterator == NULL)
|
|
return NULL;
|
|
|
|
return list->iterator->ptr;
|
|
}
|
|
|