X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ed2b5490d6323626eff2efb0021d1deba7e2fd60..509afa8dafbfc8a505586e5447a1ed4c76cf0ae3:/src/xbt/fifo.c diff --git a/src/xbt/fifo.c b/src/xbt/fifo.c index 25413c9300..d83903296b 100644 --- a/src/xbt/fifo.c +++ b/src/xbt/fifo.c @@ -1,18 +1,23 @@ -/* Authors: Arnaud Legrand */ +/* $Id$ */ + +/* Copyright (c) 2004 Arnaud Legrand. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ -#include +#include "xbt/sysdep.h" +#include "xbt/error.h" #include "fifo_private.h" +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(fifo,xbt,"FIFO"); + /* * xbt_fifo_new() */ xbt_fifo_t xbt_fifo_new(void) { xbt_fifo_t fifo; - fifo = (xbt_fifo_t) calloc(1, sizeof(struct xbt_fifo)); + fifo = xbt_new0(struct xbt_fifo,1); return fifo; } @@ -33,13 +38,72 @@ void xbt_fifo_free(xbt_fifo_t l) * xbt_fifo_push() * at the tail */ -void xbt_fifo_push(xbt_fifo_t l, void *t) +xbt_fifo_item_t xbt_fifo_push(xbt_fifo_t l, void *t) { xbt_fifo_item_t new; - (l->count)++; new = xbt_fifo_newitem(); new->content = t; + + xbt_fifo_push_item(l,new); + return new; +} + +/* + * xbt_fifo_pop() + * from the tail + */ +void *xbt_fifo_pop(xbt_fifo_t l) +{ + xbt_fifo_item_t item; + void *content; + + if(l==NULL) return NULL; + if(!(item = xbt_fifo_pop_item(l))) return NULL; + + content = item->content; + xbt_fifo_freeitem(item); + return content; +} + +/* + * xbt_fifo_unshift() + * at the head + */ +xbt_fifo_item_t xbt_fifo_unshift(xbt_fifo_t l, void *t) +{ + xbt_fifo_item_t new; + + new = xbt_fifo_newitem(); + new->content = t; + xbt_fifo_unshift_item(l,new); + return new; +} + +/* + * xbt_fifo_shift() + * from the head + */ +void *xbt_fifo_shift(xbt_fifo_t l) +{ + xbt_fifo_item_t item; + void *content; + + if(l==NULL) return NULL; + if(!(item = xbt_fifo_shift_item(l))) return NULL; + + content = item->content; + xbt_fifo_freeitem(item); + return content; +} + +/* + * xbt_fifo_push_item() + * at the tail + */ +void xbt_fifo_push_item(xbt_fifo_t l, xbt_fifo_item_t new) +{ + (l->count)++; if (l->head == NULL) { l->head = new; l->tail = new; @@ -48,23 +112,20 @@ void xbt_fifo_push(xbt_fifo_t l, void *t) new->prev = l->tail; new->prev->next = new; l->tail = new; - return; } /* - * xbt_fifo_pop() + * xbt_fifo_pop_item() * from the tail */ -void *xbt_fifo_pop(xbt_fifo_t l) +xbt_fifo_item_t xbt_fifo_pop_item(xbt_fifo_t l) { xbt_fifo_item_t item; - void *content; if (l->tail == NULL) return NULL; item = l->tail; - content = item->content; l->tail = item->prev; if (l->tail == NULL) @@ -72,22 +133,17 @@ void *xbt_fifo_pop(xbt_fifo_t l) else l->tail->next = NULL; - xbt_fifo_freeitem(item); (l->count)--; - return content; + return item; } /* - * xbt_fifo_unshift() + * xbt_fifo_unshift_item() * at the head */ -void xbt_fifo_unshift(xbt_fifo_t l, void *t) +void xbt_fifo_unshift_item(xbt_fifo_t l, xbt_fifo_item_t new) { - xbt_fifo_item_t new; - (l->count)++; - new = xbt_fifo_newitem(); - new->content = t; if (l->head == NULL) { l->head = new; l->tail = new; @@ -100,19 +156,17 @@ void xbt_fifo_unshift(xbt_fifo_t l, void *t) } /* - * xbt_fifo_shift() + * xbt_fifo_shift_item() * from the head */ -void *xbt_fifo_shift(xbt_fifo_t l) +xbt_fifo_item_t xbt_fifo_shift_item(xbt_fifo_t l) { xbt_fifo_item_t item; - void *content; if (l->head == NULL) return NULL; item = l->head; - content = item->content; l->head = item->next; if (l->head == NULL) @@ -120,9 +174,8 @@ void *xbt_fifo_shift(xbt_fifo_t l) else l->head->prev = NULL; - xbt_fifo_freeitem(item); (l->count)--; - return content; + return item; } /* @@ -140,6 +193,7 @@ void xbt_fifo_remove(xbt_fifo_t l, void *t) continue; /* remove the item */ xbt_fifo_remove_item(l, current); + xbt_fifo_freeitem(current); /* WILL NOT REMOVE DUPLICATES */ break; } @@ -155,7 +209,6 @@ void xbt_fifo_remove_item(xbt_fifo_t l, xbt_fifo_item_t current) if (l->head == l->tail) { /* special case */ l->head = NULL; l->tail = NULL; - xbt_fifo_freeitem(current); (l->count)--; return; } @@ -163,15 +216,12 @@ void xbt_fifo_remove_item(xbt_fifo_t l, xbt_fifo_item_t current) if (current == l->head) { /* It's the head */ l->head = current->next; l->head->prev = NULL; - xbt_fifo_freeitem(current); } else if (current == l->tail) { /* It's the tail */ l->tail = current->prev; l->tail->next = NULL; - xbt_fifo_freeitem(current); } else { /* It's in the middle */ current->prev->next = current->next; current->next->prev = current->prev; - xbt_fifo_freeitem(current); } (l->count)--; } @@ -202,7 +252,7 @@ void **xbt_fifo_to_array(xbt_fifo_t f) if (f->count == 0) return NULL; else - array = (void **) calloc(f->count, sizeof(void *)); + array = xbt_new0(void *, f->count); for (i = 0, b = xbt_fifo_getFirstitem(f); b; i++, b = b->next) { array[i] = b->content; @@ -231,7 +281,7 @@ xbt_fifo_t xbt_fifo_copy(xbt_fifo_t f) */ xbt_fifo_item_t xbt_fifo_newitem(void) { - return (xbt_fifo_item_t) calloc(1, sizeof(struct xbt_fifo_item)); + return xbt_new0(struct xbt_fifo_item,1); } void xbt_fifo_set_item_content(xbt_fifo_item_t i , void *v) @@ -258,4 +308,21 @@ int xbt_fifo_size(xbt_fifo_t f) return f->count; } +xbt_fifo_item_t xbt_fifo_getFirstItem(xbt_fifo_t l) +{ + return l->head; +} + +xbt_fifo_item_t xbt_fifo_getNextItem(xbt_fifo_item_t i) +{ + if(i) return i->next; + return NULL; +} + +xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i) +{ + if(i) return i->prev; + return NULL; +} +