2 * collectd - src/utils_llist.c
3 * Copyright (C) 2006 Florian Forster <octo at verplant.org>
5 * This program is free software; you can redistribute it and/
6 * or modify it under the terms of the GNU General Public Li-
7 * cence as published by the Free Software Foundation; only
8 * version 2 of the Licence is applicable.
10 * This program is distributed in the hope that it will be use-
11 * ful, but WITHOUT ANY WARRANTY; without even the implied war-
12 * ranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public Licence for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Florian Forster <octo at verplant.org>
28 #include "utils_llist.h"
43 llist_t *llist_create (void)
47 ret = (llist_t *) malloc (sizeof (llist_t));
51 memset (ret, '\0', sizeof (llist_t));
56 void llist_destroy (llist_t *l)
64 for (e_this = l->head; e_this != NULL; e_this = e_next)
66 e_next = e_this->next;
67 llentry_destroy (e_this);
73 llentry_t *llentry_create (char *key, void *value)
77 e = (llentry_t *) malloc (sizeof (llentry_t));
88 void llentry_destroy (llentry_t *e)
93 void llist_append (llist_t *l, llentry_t *e)
107 void llist_prepend (llist_t *l, llentry_t *e)
118 void llist_remove (llist_t *l, llentry_t *e)
122 if ((l == NULL) || (e == NULL))
126 while ((prev != NULL) && (prev->next != e))
130 prev->next = e->next;
139 int llist_size (llist_t *l)
141 return (l ? l->size : 0);
144 static int llist_strcmp (llentry_t *e, void *ud)
146 if ((e == NULL) || (ud == NULL))
148 return (strcmp (e->key, (const char *)ud));
151 llentry_t *llist_search (llist_t *l, const char *key)
153 return (llist_search_custom (l, llist_strcmp, (void *)key));
156 llentry_t *llist_search_custom (llist_t *l,
157 int (*compare) (llentry_t *, void *), void *user_data)
166 llentry_t *next = e->next;
168 if (compare (e, user_data) == 0)
177 llentry_t *llist_head (llist_t *l)
184 llentry_t *llist_tail (llist_t *l)