{GPL, other}: Relicense to MIT license.
[collectd.git] / src / utils_llist.c
1 /**
2  * collectd - src/utils_llist.c
3  * Copyright (C) 2006       Florian Forster <octo at collectd.org>
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian Forster <octo at collectd.org>
25  */
26
27 #include "config.h"
28
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include "utils_llist.h"
33
34 /*
35  * Private data types
36  */
37 struct llist_s
38 {
39         llentry_t *head;
40         llentry_t *tail;
41         int size;
42 };
43
44 /*
45  * Public functions
46  */
47 llist_t *llist_create (void)
48 {
49         llist_t *ret;
50
51         ret = (llist_t *) malloc (sizeof (llist_t));
52         if (ret == NULL)
53                 return (NULL);
54
55         memset (ret, '\0', sizeof (llist_t));
56
57         return (ret);
58 }
59
60 void llist_destroy (llist_t *l)
61 {
62         llentry_t *e_this;
63         llentry_t *e_next;
64
65         if (l == NULL)
66                 return;
67
68         for (e_this = l->head; e_this != NULL; e_this = e_next)
69         {
70                 e_next = e_this->next;
71                 llentry_destroy (e_this);
72         }
73
74         free (l);
75 }
76
77 llentry_t *llentry_create (char *key, void *value)
78 {
79         llentry_t *e;
80
81         e = (llentry_t *) malloc (sizeof (llentry_t));
82         if (e)
83         {
84                 e->key   = key;
85                 e->value = value;
86                 e->next  = NULL;
87         }
88
89         return (e);
90 }
91
92 void llentry_destroy (llentry_t *e)
93 {
94         free (e);
95 }
96
97 void llist_append (llist_t *l, llentry_t *e)
98 {
99         e->next = NULL;
100
101         if (l->tail == NULL)
102                 l->head = e;
103         else
104                 l->tail->next = e;
105
106         l->tail = e;
107
108         ++(l->size);
109 }
110
111 void llist_prepend (llist_t *l, llentry_t *e)
112 {
113         e->next = l->head;
114         l->head = e;
115
116         if (l->tail == NULL)
117                 l->tail = e;
118
119         ++(l->size);
120 }
121
122 void llist_remove (llist_t *l, llentry_t *e)
123 {
124         llentry_t *prev;
125
126         prev = l->head;
127         while ((prev != NULL) && (prev->next != e))
128                 prev = prev->next;
129
130         if (prev != NULL)
131                 prev->next = e->next;
132         if (l->head == e)
133                 l->head = e->next;
134         if (l->tail == e)
135                 l->tail = prev;
136
137         --(l->size);
138 }
139
140 int llist_size (llist_t *l)
141 {
142         return (l ? l->size : 0);
143 }
144
145 static int llist_strcmp (llentry_t *e, void *ud)
146 {
147         if ((e == NULL) || (ud == NULL))
148                 return (-1);
149         return (strcmp (e->key, (const char *)ud));
150 }
151
152 llentry_t *llist_search (llist_t *l, const char *key)
153 {
154         return (llist_search_custom (l, llist_strcmp, (void *)key));
155 }
156
157 llentry_t *llist_search_custom (llist_t *l,
158                 int (*compare) (llentry_t *, void *), void *user_data)
159 {
160         llentry_t *e;
161
162         if (l == NULL)
163                 return (NULL);
164
165         e = l->head;
166         while (e != NULL) {
167                 llentry_t *next = e->next;
168
169                 if (compare (e, user_data) == 0)
170                         break;
171
172                 e = next;
173         }
174
175         return (e);
176 }
177
178 llentry_t *llist_head (llist_t *l)
179 {
180         if (l == NULL)
181                 return (NULL);
182         return (l->head);
183 }
184
185 llentry_t *llist_tail (llist_t *l)
186 {
187         if (l == NULL)
188                 return (NULL);
189         return (l->tail);
190 }