Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
useless cosmetic
[simgrid.git] / src / xbt / fifo.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "xbt/sysdep.h"
8 #include "xbt/log.h"
9 #include "xbt/mallocator.h"
10 #include "fifo_private.h"
11 #include "xbt_modinter.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_fifo, xbt, "FIFO");
14
15 static void *fifo_item_mallocator_new_f(void);
16 #define fifo_item_mallocator_free_f xbt_free_f
17 static void fifo_item_mallocator_reset_f(void *item);
18
19 static xbt_mallocator_t item_mallocator = NULL;
20
21 /** Constructor
22  * \return a new fifo
23  */
24 xbt_fifo_t xbt_fifo_new(void)
25 {
26   xbt_fifo_t fifo;
27   fifo = xbt_new0(struct xbt_fifo, 1);
28
29   return fifo;
30 }
31
32
33 /** Destructor
34  * \param l poor victim
35  *
36  * Free the fifo structure. None of the objects that was in the fifo is however modified.
37  */
38 void xbt_fifo_free(xbt_fifo_t l)
39 {
40   xbt_fifo_reset(l);
41   xbt_free(l);
42 }
43
44 /**
45  * \brief Makes a fifo empty.
46  * \param l a fifo
47  *
48  * None of the objects that was in the fifo is however modified.
49  */
50 void xbt_fifo_reset(xbt_fifo_t l)
51 {
52   xbt_fifo_item_t b, tmp;
53
54   for (b = xbt_fifo_get_first_item(l); b;
55        tmp = b, b = b->next, xbt_fifo_free_item(tmp));
56   l->head = l->tail = NULL;
57 }
58
59 /** Push
60  * \param l list
61  * \param t element
62  * \return the bucket that was just added
63  *
64  * Add an object at the tail of the list
65  */
66 xbt_fifo_item_t xbt_fifo_push(xbt_fifo_t l, void *t)
67 {
68   xbt_fifo_item_t new;
69
70   new = xbt_fifo_new_item();
71   new->content = t;
72
73   xbt_fifo_push_item(l, new);
74   return new;
75 }
76
77 /** Pop
78  * \param l list
79  * \returns the object stored at the tail of the list.
80  *
81  * Removes and returns the object stored at the tail of the list.
82  * Returns NULL if the list is empty.
83  */
84 void *xbt_fifo_pop(xbt_fifo_t l)
85 {
86   xbt_fifo_item_t item;
87   void *content;
88
89   if (l == NULL)
90     return NULL;
91   if (!(item = xbt_fifo_pop_item(l)))
92     return NULL;
93
94   content = item->content;
95   xbt_fifo_free_item(item);
96   return content;
97 }
98
99 /**
100  * \param l list
101  * \param t element
102  * \return the bucket that was just added
103  *
104  * Add an object at the head of the list
105  */
106 xbt_fifo_item_t xbt_fifo_unshift(xbt_fifo_t l, void *t)
107 {
108   xbt_fifo_item_t new;
109
110   new = xbt_fifo_new_item();
111   new->content = t;
112   xbt_fifo_unshift_item(l, new);
113   return new;
114 }
115
116 /** Shift
117  * \param l list
118  * \returns the object stored at the head of the list.
119  *
120  * Removes and returns the object stored at the head of the list.
121  * Returns NULL if the list is empty.
122  */
123 void *xbt_fifo_shift(xbt_fifo_t l)
124 {
125   xbt_fifo_item_t item;
126   void *content;
127
128   if (l == NULL)
129     return NULL;
130   if (!(item = xbt_fifo_shift_item(l)))
131     return NULL;
132
133   content = item->content;
134   xbt_fifo_free_item(item);
135   return content;
136 }
137
138 /** Push a bucket
139  * \param l list
140  * \param new bucket
141  *
142  * Hook up this bucket at the tail of the list
143  */
144 void xbt_fifo_push_item(xbt_fifo_t l, xbt_fifo_item_t new)
145 {
146   xbt_assert((new->next == NULL) && (new->prev == NULL), "Invalid item!");
147   (l->count)++;
148   if (l->head == NULL) {
149     l->head = new;
150     l->tail = new;
151     return;
152   }
153   new->prev = l->tail;
154   new->prev->next = new;
155   l->tail = new;
156 }
157
158 /** Pop bucket
159  * \param l
160  * \returns the bucket that was at the tail of the list.
161  *
162  * Returns NULL if the list was empty.
163  */
164 xbt_fifo_item_t xbt_fifo_pop_item(xbt_fifo_t l)
165 {
166   xbt_fifo_item_t item;
167
168   if (l->tail == NULL)
169     return NULL;
170
171   item = l->tail;
172
173   l->tail = item->prev;
174   if (l->tail == NULL)
175     l->head = NULL;
176   else
177     l->tail->next = NULL;
178
179   (l->count)--;
180
181   item->prev = NULL;
182
183   return item;
184 }
185
186 /** Push a bucket
187  * \param l list
188  * \param new bucket
189  *
190  * Hook up this bucket at the head of the list
191  */
192 void xbt_fifo_unshift_item(xbt_fifo_t l, xbt_fifo_item_t new)
193 {
194   xbt_assert((new->next == NULL) && (new->prev == NULL), "Invalid item!");
195   (l->count)++;
196   if (l->head == NULL) {
197     l->head = new;
198     l->tail = new;
199     return;
200   }
201   new->next = l->head;
202   new->next->prev = new;
203   l->head = new;
204   return;
205 }
206
207 /** Shift bucket
208  * \param l
209  * \returns the bucket that was at the head of the list.
210  *
211  * Returns NULL if the list was empty.
212  */
213 xbt_fifo_item_t xbt_fifo_shift_item(xbt_fifo_t l)
214 {
215   xbt_fifo_item_t item;
216
217   if (l->head == NULL)
218     return NULL;
219
220   item = l->head;
221
222   l->head = item->next;
223   if (l->head == NULL)
224     l->tail = NULL;
225   else
226     l->head->prev = NULL;
227
228   (l->count)--;
229
230   item->next = NULL;
231
232   return item;
233 }
234
235 /**
236  * \param l
237  * \param t an objet
238  *
239  * removes the first occurence of \a t from \a l.
240  * \warning it will not remove duplicates
241  * \return 1 if an item was removed and 0 otherwise.
242  */
243 int xbt_fifo_remove(xbt_fifo_t l, void *t)
244 {
245   xbt_fifo_item_t current, current_next;
246
247
248   for (current = l->head; current; current = current_next) {
249     current_next = current->next;
250     if (current->content != t)
251       continue;
252     /* remove the item */
253     xbt_fifo_remove_item(l, current);
254     xbt_fifo_free_item(current);
255     /* WILL NOT REMOVE DUPLICATES */
256     return 1;
257   }
258   return 0;
259 }
260
261
262 /**
263  * \param l
264  * \param t an objet
265  *
266  * removes all occurences of \a t from \a l.
267  * \return 1 if an item was removed and 0 otherwise.
268  */
269 int xbt_fifo_remove_all(xbt_fifo_t l, void *t)
270 {
271   xbt_fifo_item_t current, current_next;
272   int res = 0;
273
274   for (current = l->head; current; current = current_next) {
275     current_next = current->next;
276     if (current->content != t)
277       continue;
278     /* remove the item */
279     xbt_fifo_remove_item(l, current);
280     xbt_fifo_free_item(current);
281     res = 1;
282   }
283   return res;
284 }
285
286 /**
287  * \param l a list
288  * \param current a bucket
289  *
290  * removes a bucket \a current from the list \a l. This function implicitely
291  * assumes (and doesn't check!) that this item belongs to this list...
292  */
293 void xbt_fifo_remove_item(xbt_fifo_t l, xbt_fifo_item_t current)
294 {
295   if (l->head == l->tail) {     /* special case */
296     xbt_assert((current == l->head), "This item is not in the list!");
297     l->head = NULL;
298     l->tail = NULL;
299     (l->count)--;
300     current->prev = current->next = NULL;
301     return;
302   }
303
304   if (current == l->head) {     /* It's the head */
305     l->head = current->next;
306     l->head->prev = NULL;
307   } else if (current == l->tail) {      /* It's the tail */
308     l->tail = current->prev;
309     l->tail->next = NULL;
310   } else {                      /* It's in the middle */
311     current->prev->next = current->next;
312     current->next->prev = current->prev;
313   }
314   (l->count)--;
315   current->prev = current->next = NULL;
316 }
317
318 /**
319  * \param f a list
320  * \param content an object
321  * \return 1 if \a content is in \a f.
322  */
323 int xbt_fifo_is_in(xbt_fifo_t f, void *content)
324 {
325   xbt_fifo_item_t item = xbt_fifo_get_first_item(f);
326   while (item) {
327     if (item->content == content)
328       return 1;
329     item = item->next;
330   }
331   return 0;
332 }
333
334 /**
335  * \param f a list
336  * \return a table with the objects stored in \a f.
337  */
338 void **xbt_fifo_to_array(xbt_fifo_t f)
339 {
340   void **array;
341   xbt_fifo_item_t b;
342   int i;
343
344   if (f->count == 0)
345     return NULL;
346   else
347     array = xbt_new0(void *, f->count);
348
349   for (i = 0, b = xbt_fifo_get_first_item(f); b; i++, b = b->next) {
350     array[i] = b->content;
351   }
352   return array;
353 }
354
355 /**
356  * \param f a list
357  * \return a copy of \a f.
358  */
359 xbt_fifo_t xbt_fifo_copy(xbt_fifo_t f)
360 {
361   xbt_fifo_t copy = NULL;
362   xbt_fifo_item_t b;
363
364   copy = xbt_fifo_new();
365
366   for (b = xbt_fifo_get_first_item(f); b; b = b->next) {
367     xbt_fifo_push(copy, b->content);
368   }
369   return copy;
370 }
371
372 /* Functions passed to the mallocator constructor */
373 static void *fifo_item_mallocator_new_f(void)
374 {
375   return xbt_new(s_xbt_fifo_item_t, 1);
376 }
377
378 static void fifo_item_mallocator_reset_f(void *item)
379 {
380   /* memset to zero like calloc */
381   memset(item, 0, sizeof(s_xbt_fifo_item_t));
382 }
383
384 /** Constructor
385  * \return a new bucket
386  */
387 XBT_INLINE xbt_fifo_item_t xbt_fifo_new_item(void)
388 {
389   return xbt_mallocator_get(item_mallocator);
390 }
391
392 /** \deprecated Use #xbt_fifo_new_item instead.
393  */
394 XBT_INLINE xbt_fifo_item_t xbt_fifo_newitem(void)
395 {
396   XBT_WARN("This function is deprecated. Use xbt_fifo_new_item.");
397   return xbt_fifo_new_item();
398 }
399
400 /**
401  * \param i a bucket
402  * \param v an object
403  *
404  * stores \a v in \a i.
405  */
406 XBT_INLINE void xbt_fifo_set_item_content(xbt_fifo_item_t i, void *v)
407 {
408   xbt_fifo_setItemcontent(i, v);
409 }
410
411 /**
412  * \param i a bucket
413  * \return the object stored \a i.
414  */
415 XBT_INLINE void *xbt_fifo_get_item_content(xbt_fifo_item_t i)
416 {
417   return xbt_fifo_getItemcontent(i);
418 }
419
420 /** Destructor
421  * \param b poor victim
422  *
423  * Free the bucket but does not modifies the object (if any) that was stored in it.
424  */
425 XBT_INLINE void xbt_fifo_free_item(xbt_fifo_item_t b)
426 {
427   xbt_mallocator_release(item_mallocator, b);
428   return;
429 }
430
431 /** Destructor
432  * \deprecated Use #xbt_fifo_free_item instead.
433  */
434 XBT_INLINE void xbt_fifo_freeitem(xbt_fifo_item_t b)
435 {
436   XBT_WARN("This function is deprecated. Use xbt_fifo_free_item.");
437   xbt_fifo_free_item(b);
438   return;
439 }
440
441 /**
442  * \param f a list
443  * \return the number of buckets in \a f.
444  */
445 XBT_INLINE int xbt_fifo_size(xbt_fifo_t f)
446 {
447   return f->count;
448 }
449
450 /**
451  * \param l a list
452  * \return the head of \a l.
453  *
454  * Returns NULL if the list is empty.
455  */
456 XBT_INLINE xbt_fifo_item_t xbt_fifo_get_first_item(xbt_fifo_t l)
457 {
458   return l->head;
459 }
460
461 /**
462  * \param l a list
463  * \return the tail of \a l.
464  *
465  * Returns NULL if the list is empty.
466  */
467 XBT_INLINE xbt_fifo_item_t xbt_fifo_get_last_item(xbt_fifo_t l)
468 {
469   return l->tail;
470 }
471
472 /** \deprecated Use #xbt_fifo_get_first_item instead.
473  */
474 XBT_INLINE xbt_fifo_item_t xbt_fifo_getFirstItem(xbt_fifo_t l)
475 {
476   XBT_WARN("This function is deprecated. Use xbt_fifo_get_first_item.");
477   return xbt_fifo_get_first_item(l);
478 }
479
480 /**
481  * \param i a bucket
482  * \return the bucket that comes next
483  *
484  * Returns NULL if \a i is the tail of the list.
485  */
486 XBT_INLINE xbt_fifo_item_t xbt_fifo_get_next_item(xbt_fifo_item_t i)
487 {
488   if (i)
489     return i->next;
490   return NULL;
491 }
492
493 /** \deprecated Use #xbt_fifo_get_next_item instead.
494  */
495 xbt_fifo_item_t xbt_fifo_getNextItem(xbt_fifo_item_t i)
496 {
497   XBT_WARN("This function is deprecated. Use xbt_fifo_get_next_item.");
498   return xbt_fifo_get_next_item(i);
499 }
500
501 /**
502  * \param i a bucket
503  * \return the bucket that is just before \a i.
504  *
505  * Returns NULL if \a i is the head of the list.
506  */
507 XBT_INLINE xbt_fifo_item_t xbt_fifo_get_prev_item(xbt_fifo_item_t i)
508 {
509   if (i)
510     return i->prev;
511   return NULL;
512 }
513
514 /** \deprecated Use #xbt_fifo_get_prev_item instead.
515  */
516 xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i)
517 {
518   XBT_WARN("This function is deprecated. Use xbt_fifo_get_prev_item.");
519   return xbt_fifo_get_prev_item(i);
520 }
521
522 /* Module init/exit handling the fifo item mallocator
523  * These are internal XBT functions called by xbt_preinit/postexit().
524  * It can be used several times to recreate the mallocator, for example when you switch to MC mode
525  */
526 void xbt_fifo_preinit(void)
527 {
528   item_mallocator = xbt_mallocator_new(65536,
529                                        fifo_item_mallocator_new_f,
530                                        fifo_item_mallocator_free_f,
531                                        fifo_item_mallocator_reset_f);
532 }
533
534 void xbt_fifo_postexit(void)
535 {
536   if (item_mallocator != NULL) {
537     xbt_mallocator_free(item_mallocator);
538     item_mallocator = NULL;
539   }
540 }
541
542 /* @} */