2005-10-06 17:40:48 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* linked list helper functions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Glenn McGrath
|
|
|
|
* Copyright (C) 2005 Vladimir Oleynik
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright (C) 2005 Bernhard Reutner-Fischer
|
2006-05-11 23:55:24 +05:30
|
|
|
* Copyright (C) 2006 Rob Landley <rob@landley.net>
|
2005-10-06 17:40:48 +05:30
|
|
|
*
|
2006-09-13 22:09:19 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2005-10-06 17:40:48 +05:30
|
|
|
*/
|
2006-07-10 17:11:19 +05:30
|
|
|
|
2005-09-29 18:25:10 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
2005-10-06 17:40:48 +05:30
|
|
|
/* Add data to the start of the linked list. */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC llist_add_to(llist_t **old_head, void *data)
|
2005-09-29 18:25:10 +05:30
|
|
|
{
|
2006-05-27 05:14:51 +05:30
|
|
|
llist_t *new_head = xmalloc(sizeof(llist_t));
|
2007-02-05 02:02:38 +05:30
|
|
|
|
2006-05-27 04:30:10 +05:30
|
|
|
new_head->data = data;
|
2006-05-27 05:14:51 +05:30
|
|
|
new_head->link = *old_head;
|
|
|
|
*old_head = new_head;
|
2005-09-29 18:25:10 +05:30
|
|
|
}
|
|
|
|
|
2005-10-06 17:40:48 +05:30
|
|
|
/* Add data to the end of the linked list. */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC llist_add_to_end(llist_t **list_head, void *data)
|
2005-09-29 18:25:10 +05:30
|
|
|
{
|
2006-05-27 05:14:51 +05:30
|
|
|
llist_t *new_item = xmalloc(sizeof(llist_t));
|
2007-02-05 02:02:38 +05:30
|
|
|
|
2005-09-29 18:25:10 +05:30
|
|
|
new_item->data = data;
|
|
|
|
new_item->link = NULL;
|
|
|
|
|
2007-02-05 02:02:38 +05:30
|
|
|
if (!*list_head)
|
|
|
|
*list_head = new_item;
|
2006-05-27 05:14:51 +05:30
|
|
|
else {
|
|
|
|
llist_t *tail = *list_head;
|
2007-02-05 02:02:38 +05:30
|
|
|
|
|
|
|
while (tail->link)
|
|
|
|
tail = tail->link;
|
2005-10-06 17:40:48 +05:30
|
|
|
tail->link = new_item;
|
2005-09-29 18:25:10 +05:30
|
|
|
}
|
2005-10-06 17:40:48 +05:30
|
|
|
}
|
2005-09-29 18:25:10 +05:30
|
|
|
|
2006-05-09 00:33:07 +05:30
|
|
|
/* Remove first element from the list and return it */
|
2008-06-27 08:22:20 +05:30
|
|
|
void* FAST_FUNC llist_pop(llist_t **head)
|
2005-10-06 17:40:48 +05:30
|
|
|
{
|
2007-03-07 04:23:10 +05:30
|
|
|
void *data, *next;
|
2006-05-09 00:33:07 +05:30
|
|
|
|
2007-02-05 02:02:38 +05:30
|
|
|
if (!*head)
|
2007-03-07 04:23:10 +05:30
|
|
|
return NULL;
|
2007-02-05 02:02:38 +05:30
|
|
|
|
2007-03-07 04:23:10 +05:30
|
|
|
data = (*head)->data;
|
|
|
|
next = (*head)->link;
|
|
|
|
free(*head);
|
|
|
|
*head = next;
|
2006-05-09 00:33:07 +05:30
|
|
|
|
|
|
|
return data;
|
2005-09-29 18:25:10 +05:30
|
|
|
}
|
|
|
|
|
2007-03-07 04:23:10 +05:30
|
|
|
/* Unlink arbitrary given element from the list */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC llist_unlink(llist_t **head, llist_t *elm)
|
2007-03-07 04:23:10 +05:30
|
|
|
{
|
|
|
|
llist_t *crt;
|
|
|
|
|
|
|
|
if (!(elm && *head))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (elm == *head) {
|
|
|
|
*head = (*head)->link;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (crt = *head; crt; crt = crt->link) {
|
|
|
|
if (crt->link == elm) {
|
|
|
|
crt->link = elm->link;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-09 00:33:07 +05:30
|
|
|
/* Recursively free all elements in the linked list. If freeit != NULL
|
|
|
|
* call it on each datum in the list */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC llist_free(llist_t *elm, void (*freeit) (void *data))
|
2005-10-06 17:40:48 +05:30
|
|
|
{
|
2006-05-09 00:33:07 +05:30
|
|
|
while (elm) {
|
|
|
|
void *data = llist_pop(&elm);
|
2007-02-05 02:02:38 +05:30
|
|
|
|
|
|
|
if (freeit)
|
|
|
|
freeit(data);
|
2006-05-09 00:33:07 +05:30
|
|
|
}
|
2005-10-06 17:40:48 +05:30
|
|
|
}
|
2006-10-25 06:03:44 +05:30
|
|
|
|
2007-04-08 20:38:42 +05:30
|
|
|
/* Reverse list order. */
|
2008-06-27 08:22:20 +05:30
|
|
|
llist_t* FAST_FUNC llist_rev(llist_t *list)
|
2006-10-25 06:03:44 +05:30
|
|
|
{
|
2007-04-08 20:38:42 +05:30
|
|
|
llist_t *rev = NULL;
|
2007-02-05 02:02:38 +05:30
|
|
|
|
2006-10-25 06:03:44 +05:30
|
|
|
while (list) {
|
|
|
|
llist_t *next = list->link;
|
2007-02-05 02:02:38 +05:30
|
|
|
|
2007-04-08 20:38:42 +05:30
|
|
|
list->link = rev;
|
|
|
|
rev = list;
|
2006-10-25 06:03:44 +05:30
|
|
|
list = next;
|
|
|
|
}
|
2007-04-08 20:38:42 +05:30
|
|
|
return rev;
|
2006-10-25 06:03:44 +05:30
|
|
|
}
|