list.c
5.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Library Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Mailutils 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with GNU Mailutils; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <errno.h>
#include <stdlib.h>
#include <list0.h>
int
list_create (list_t *plist)
{
list_t list;
int status;
if (plist == NULL)
return EINVAL;
list = calloc (sizeof (*list), 1);
if (list == NULL)
return ENOMEM;
status = monitor_create (&(list->monitor), 0, list);
if (status != 0)
{
free (list);
return status;
}
list->head.next = &(list->head);
list->head.prev = &(list->head);
*plist = list;
return 0;
}
void
list_destroy (list_t *plist)
{
if (plist && *plist)
{
list_t list = *plist;
struct list_data *current;
struct list_data *previous;
monitor_wrlock (list->monitor);
for (current = list->head.next; current != &(list->head);)
{
previous = current;
current = current->next;
free (previous);
}
monitor_unlock (list->monitor);
monitor_destroy (&(list->monitor), list);
free (list);
*plist = NULL;
}
}
int
list_append (list_t list, void *item)
{
struct list_data *ldata;
struct list_data *last;
if (list == NULL)
return EINVAL;
last = list->head.prev;
ldata = calloc (sizeof (*ldata), 1);
if (ldata == NULL)
return ENOMEM;
ldata->item = item;
monitor_wrlock (list->monitor);
ldata->next = &(list->head);
ldata->prev = list->head.prev;
last->next = ldata;
list->head.prev = ldata;
list->count++;
monitor_unlock (list->monitor);
return 0;
}
int
list_prepend (list_t list, void *item)
{
struct list_data *ldata;
struct list_data *first;
if (list == NULL)
return EINVAL;
first = list->head.next;
ldata = calloc (sizeof (*ldata), 1);
if (ldata == NULL)
return ENOMEM;
ldata->item = item;
monitor_wrlock (list->monitor);
ldata->prev = &(list->head);
ldata->next = list->head.next;
first->prev = ldata;
list->head.next = ldata;
list->count++;
monitor_unlock (list->monitor);
return 0;
}
int
list_is_empty (list_t list)
{
size_t n = 0;
list_count (list, &n);
return (n == 0);
}
int
list_count (list_t list, size_t *pcount)
{
if (list == NULL || pcount == NULL)
return EINVAL;
*pcount = list->count;
return 0;
}
list_comparator_t
list_set_comparator (list_t list, list_comparator_t comp)
{
list_comparator_t old_comp;
if (list == NULL)
return EINVAL;
old_comp = list->comp;
list->comp = comp;
return old_comp;
}
static int
def_comp (const void *item, const void *value)
{
return item != value;
}
int
list_remove (list_t list, void *item)
{
struct list_data *current, *previous;
list_comparator_t comp;
int status = ENOENT;
if (list == NULL)
return EINVAL;
comp = list->comp ? list->comp : def_comp;
monitor_wrlock (list->monitor);
for (previous = &(list->head), current = list->head.next;
current != &(list->head); previous = current, current = current->next)
{
if (comp (current->item, item) == 0)
{
previous->next = current->next;
current->next->prev = previous;
free (current);
list->count--;
status = 0;
break;
}
}
monitor_unlock (list->monitor);
return status;
}
int
list_replace (list_t list, void *old_item, void *new_item)
{
struct list_data *current, *previous;
list_comparator_t comp;
int status = ENOENT;
if (list == NULL)
return EINVAL;
comp = list->comp ? list->comp : def_comp;
monitor_wrlock (list->monitor);
for (previous = &(list->head), current = list->head.next;
current != &(list->head); previous = current, current = current->next)
{
if (comp (current->item, old_item) == 0)
{
current->item = new_item;
status = 0;
break;
}
}
monitor_unlock (list->monitor);
return status;
}
/* FIXME: FIXME: FIXME: URGENT:
Every time we iterate through the loop to get the data, an easy
fix is to a an index to the current. */
int
list_get (list_t list, size_t indx, void **pitem)
{
struct list_data *current;
size_t count;
int status = ENOENT;
if (list == NULL || pitem == NULL)
return EINVAL;
monitor_rdlock (list->monitor);
for (current = list->head.next, count = 0; current != &(list->head);
current = current->next, count++)
{
if (count == indx)
{
*pitem = current->item;
status = 0;
break;
}
}
monitor_unlock (list->monitor);
return status;
}
int
list_do (list_t list, list_action_t * action, void *cbdata)
{
struct list_data *current;
int status = 0;
if (list == NULL || action == NULL)
return EINVAL;
monitor_rdlock (list->monitor);
for (current = list->head.next; current != &(list->head);
current = current->next)
{
if ((status = action (current->item, cbdata)))
break;
}
monitor_unlock (list->monitor);
return status;
}