Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ops, wasn't compilable under windows
[simgrid.git] / src / xbt / dynar.c
1 /* $Id$ */
2
3 /* a generic DYNamic ARray implementation.                                  */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "portable.h" /* SIZEOF_MAX */
11 #include "xbt/misc.h"
12 #include "xbt/sysdep.h"
13 #include "xbt/log.h"
14 #include "xbt/ex.h"
15 #include "xbt/dynar.h"
16 #include <sys/types.h>
17
18 #include "xbt/dynar_private.h" /* type definition, which we share with the 
19                                   code in charge of sending this across the net */
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dyn,xbt,"Dynamic arrays");
22
23
24 #define __sanity_check_dynar(dynar)       \
25            xbt_assert0(dynar,           \
26                         "dynar is NULL")
27 #define __sanity_check_idx(idx)                \
28            xbt_assert1(idx >= 0,             \
29                         "dynar idx(=%d) < 0", \
30                         (int) (idx))
31 #define __check_inbound_idx(dynar, idx)                                                \
32            xbt_assert2(idx < dynar->used,                                             \
33                         "dynar is not that long. You asked %d, but it's only %lu long", \
34                         (int) (idx), (unsigned long) dynar->used)
35 #define __check_sloppy_inbound_idx(dynar, idx)                                         \
36            xbt_assert2(idx <= dynar->used,                                            \
37                         "dynar is not that long. You asked %d, but it's only %lu long (could have been equal to it)", \
38                         (int) (idx), (unsigned long) dynar->used)
39 #define __check_populated_dynar(dynar)            \
40            xbt_assert1(dynar->used,              \
41                         "dynar %p contains nothing",(void*)dynar)
42
43 static XBT_INLINE 
44 void _xbt_clear_mem(void * const ptr,
45                      const unsigned long length) {
46   memset(ptr, 0, length);
47 }
48
49 static XBT_INLINE
50 void
51 _xbt_dynar_expand(xbt_dynar_t const dynar,
52                    const int          nb) {
53   const unsigned long old_size    = dynar->size;
54
55   if (nb > old_size) {
56     char * const old_data    = (char *) dynar->data;
57
58     const unsigned long elmsize     = dynar->elmsize;
59     const unsigned long old_length  = old_size*elmsize;
60
61     const unsigned long used        = dynar->used;
62     const unsigned long used_length = used*elmsize;
63
64     const unsigned long new_size    = nb > (2*(old_size+1)) ? nb : (2*(old_size+1));
65     const unsigned long new_length  = new_size*elmsize;
66     char * const new_data    = (char *) xbt_malloc0(elmsize*new_size);
67
68     DEBUG3("expend %p from %lu to %d elements", (void*)dynar, (unsigned long)old_size, nb);
69
70     if (old_data) {
71       memcpy(new_data, old_data, used_length);
72       _xbt_clear_mem(old_data, old_length);
73       free(old_data);
74     }
75
76     _xbt_clear_mem(new_data + used_length, new_length - used_length);
77
78     dynar->size = new_size;
79     dynar->data = new_data;
80   }
81 }
82
83 static XBT_INLINE
84 void *
85 _xbt_dynar_elm(const xbt_dynar_t  dynar,
86                 const unsigned long idx) {
87   char * const data    = (char*) dynar->data;
88   const unsigned long elmsize = dynar->elmsize;
89
90   return data + idx*elmsize;
91 }
92
93 static XBT_INLINE
94 void
95 _xbt_dynar_get_elm(void  * const       dst,
96                     const xbt_dynar_t  dynar,
97                     const unsigned long idx) {
98   void * const elm     = _xbt_dynar_elm(dynar, idx);
99
100   memcpy(dst, elm, dynar->elmsize);
101 }
102
103 static XBT_INLINE
104 void
105 _xbt_dynar_put_elm(const xbt_dynar_t  dynar,
106                     const unsigned long idx,
107                     const void * const  src) {
108   void * const elm     = _xbt_dynar_elm(dynar, idx);
109   const unsigned long elmsize = dynar->elmsize;
110
111   memcpy(elm, src, elmsize);
112 }
113
114 void
115 xbt_dynar_dump(xbt_dynar_t dynar) {
116   INFO5("Dynar dump: size=%lu; used=%lu; elmsize=%lu; data=%p; free_f=%p",
117         dynar->size, dynar->used, dynar->elmsize, dynar->data, dynar->free_f);
118 }       
119
120 /** @brief Constructor
121  * 
122  * \param elmsize size of each element in the dynar
123  * \param free_f function to call each time we want to get rid of an element (or NULL if nothing to do).
124  *
125  * Creates a new dynar. If a free_func is provided, the elements have to be
126  * pointer of pointer. That is to say that dynars can contain either base
127  * types (int, char, double, etc) or pointer of pointers (struct **).
128  */
129 xbt_dynar_t 
130 xbt_dynar_new(const unsigned long elmsize,
131                void_f_pvoid_t * const free_f) {
132    
133   xbt_dynar_t dynar = xbt_new0(s_xbt_dynar_t,1);
134
135   dynar->size    = 0;
136   dynar->used    = 0;
137   dynar->elmsize = elmsize;
138   dynar->data    = NULL;
139   dynar->free_f    = free_f;
140
141   return dynar;
142 }
143
144 /** @brief Destructor of the structure not touching to the content
145  * 
146  * \param dynar poor victim
147  *
148  * kilkil a dynar BUT NOT its content. Ie, the array is freed, but the content
149  * is not touched (the \a free_f function is not used)
150  */
151 void
152 xbt_dynar_free_container(xbt_dynar_t *dynar) {
153   if (dynar && *dynar) {
154
155     if ((*dynar)->data) {
156       _xbt_clear_mem((*dynar)->data, (*dynar)->size);
157       free((*dynar)->data);
158     }
159
160     _xbt_clear_mem(*dynar, sizeof(s_xbt_dynar_t));
161
162     free(*dynar);
163     *dynar=NULL;
164   }
165 }
166
167 /** @brief Frees the content and set the size to 0
168  *
169  * \param dynar who to squeeze
170  */
171 void
172 xbt_dynar_reset(xbt_dynar_t const dynar) {
173
174   __sanity_check_dynar(dynar);
175
176   DEBUG1("Reset the dynar %p",(void*)dynar);
177   if (dynar->free_f) {
178     xbt_dynar_map(dynar, dynar->free_f);
179   }
180 /*
181   if (dynar->data)
182     free(dynar->data);
183
184   dynar->size = 0;
185   */
186   dynar->used = 0;
187 /*  dynar->data = NULL;*/
188 }
189
190 /**
191  * \brief Shrink the dynar by removing empty slots at the end of the internal array
192  * \param dynar a dynar
193  * \param empty_slots_wanted number of empty slots you want to keep at the end of the
194  * internal array for further insertions
195  * 
196  * Reduces the internal array size of the dynar to the number of elements plus
197  * \a empty_slots_wanted.
198  * After removing elements from the dynar, you can call this function to make
199  * the dynar use less memory.
200  * Set \a empty_slots_wanted to zero to reduce the dynar internal array as much
201  * as possible.
202  * Note that if \a empty_slots_wanted is greater than the array size, the internal
203  * array is not expanded and nothing is done.
204  */
205 void xbt_dynar_shrink(xbt_dynar_t dynar, int empty_slots_wanted) {
206   int size_wanted = dynar->used + empty_slots_wanted;
207   if (size_wanted < dynar->size) {
208     dynar->size = size_wanted;
209     dynar->data = xbt_realloc(dynar->data, sizeof(void*) * dynar->size);
210   }
211 }
212
213 /** @brief Destructor
214  * 
215  * \param dynar poor victim
216  *
217  * kilkil a dynar and its content
218  */
219
220 void
221 xbt_dynar_free(xbt_dynar_t * dynar) {
222   if (dynar && *dynar) {
223     xbt_dynar_reset(*dynar);
224     xbt_dynar_free_container(dynar);
225   }
226 }
227 /** \brief free a dynar passed as void* (handy to store dynar in dynars or dict) */
228 void xbt_dynar_free_voidp(void *d) {
229    xbt_dynar_free( (xbt_dynar_t*) d);
230 }
231    
232 /** @brief Count of dynar's elements
233  * 
234  * \param dynar the dynar we want to mesure
235  */
236 unsigned long
237 xbt_dynar_length(const xbt_dynar_t dynar) {
238   return (dynar ? (unsigned long) dynar->used : (unsigned long)0);
239 }
240
241 /** @brief Retrieve a copy of the Nth element of a dynar.
242  *
243  * \param dynar information dealer
244  * \param idx index of the slot we want to retrieve
245  * \param[out] dst where to put the result to.
246  */
247 void
248 xbt_dynar_get_cpy(const xbt_dynar_t dynar,
249                    const int          idx,
250                    void       * const dst) {
251
252   __sanity_check_dynar(dynar);
253   __sanity_check_idx(idx);
254   __check_inbound_idx(dynar, idx);
255
256   _xbt_dynar_get_elm(dst, dynar, idx);
257 }
258
259 /** @brief Retrieve a pointer to the Nth element of a dynar.
260  *
261  * \param dynar information dealer
262  * \param idx index of the slot we want to retrieve
263  * \return the \a idx-th element of \a dynar.
264  *
265  * \warning The returned value is the actual content of the dynar. 
266  * Make a copy before fooling with it.
267  */
268 void*
269 xbt_dynar_get_ptr(const xbt_dynar_t dynar, const int idx) {
270
271   __sanity_check_dynar(dynar);
272   __sanity_check_idx(idx);
273   __check_inbound_idx(dynar, idx);
274
275   return _xbt_dynar_elm(dynar, idx);
276 }
277
278 /** @brief Set the Nth element of a dynar (expended if needed). Previous value at this position is NOT freed
279  * 
280  * \param dynar information dealer
281  * \param idx index of the slot we want to modify
282  * \param src What will be feeded to the dynar
283  *
284  * If you want to free the previous content, use xbt_dynar_replace().
285  */
286 void
287 xbt_dynar_set(xbt_dynar_t         dynar,
288                const int            idx,
289                const void   * const src) {
290
291   __sanity_check_dynar(dynar);
292   __sanity_check_idx(idx);
293
294   _xbt_dynar_expand(dynar, idx+1);
295
296   if (idx >= dynar->used) {
297     dynar->used = idx+1;
298   }
299
300   _xbt_dynar_put_elm(dynar, idx, src);
301 }
302
303 /** @brief Set the Nth element of a dynar (expended if needed). Previous value is freed
304  *
305  * \param dynar
306  * \param idx
307  * \param object
308  *
309  * Set the Nth element of a dynar, expanding the dynar if needed, AND DO
310  * free the previous value at this position. If you don't want to free the
311  * previous content, use xbt_dynar_set().
312  */
313 void
314 xbt_dynar_replace(xbt_dynar_t         dynar,
315                    const int            idx,
316                    const void   * const object) {
317
318   __sanity_check_dynar(dynar);
319   __sanity_check_idx(idx);
320
321   if (idx < dynar->used && dynar->free_f) {
322     void * const old_object = _xbt_dynar_elm(dynar, idx);
323
324     dynar->free_f(old_object);
325   }
326
327   xbt_dynar_set(dynar, idx, object);
328 }
329
330 /** @brief Make room for a new element, and return a pointer to it
331  * 
332  * You can then use regular affectation to set its value instead of relying 
333  * on the slow memcpy. This is what xbt_dynar_insert_at_as() does.
334  */
335 void *
336 xbt_dynar_insert_at_ptr(xbt_dynar_t const dynar,
337                         const int            idx) {
338    
339   __sanity_check_dynar(dynar);
340   __sanity_check_idx(idx);
341   __check_sloppy_inbound_idx(dynar, idx);
342
343   {
344     const unsigned long old_used = dynar->used;
345     const unsigned long new_used = old_used + 1;
346
347     _xbt_dynar_expand(dynar, new_used);
348
349     {
350       const unsigned long nb_shift =  old_used - idx;
351
352       if (nb_shift)
353          memmove(_xbt_dynar_elm(dynar, idx+1), 
354                  _xbt_dynar_elm(dynar, idx), 
355                  nb_shift * dynar->elmsize);
356     }
357
358     dynar->used = new_used;
359     return _xbt_dynar_elm(dynar,idx);
360   }
361 }
362
363 /** @brief Set the Nth dynar's element, expending the dynar and sliding the previous values to the right
364  * 
365  * Set the Nth element of a dynar, expanding the dynar if needed, and
366  * moving the previously existing value and all subsequent ones to one
367  * position right in the dynar.
368  */
369 void
370 xbt_dynar_insert_at(xbt_dynar_t  const dynar,
371                     const int            idx,
372                     const void   * const src) {
373
374   /* checks done in xbt_dynar_insert_at_ptr */
375   memcpy(xbt_dynar_insert_at_ptr(dynar,idx),
376          src,
377          dynar->elmsize);
378 }
379
380 /** @brief Remove the Nth dynar's element, sliding the previous values to the left
381  *
382  * Get the Nth element of a dynar, removing it from the dynar and moving
383  * all subsequent values to one position left in the dynar.
384  * 
385  * If the object argument of this function is a non-null pointer, the removed 
386  * element is copied to this address. If not, the element is freed using the 
387  * free_f function passed at dynar creation.
388  */
389 void
390 xbt_dynar_remove_at(xbt_dynar_t  const dynar,
391                      const int            idx,
392                      void         * const object) {
393
394   unsigned long nb_shift;
395   unsigned long offset;
396
397   __sanity_check_dynar(dynar);
398   __sanity_check_idx(idx);
399   __check_inbound_idx(dynar, idx);
400
401   if (object) {
402     _xbt_dynar_get_elm(object, dynar, idx);
403   } else if (dynar->free_f) {
404     if (dynar->elmsize <= SIZEOF_MAX) {
405        char elm[SIZEOF_MAX];
406        _xbt_dynar_get_elm(elm, dynar, idx);
407        (*dynar->free_f)(elm);
408     } else {
409        char *elm=malloc(dynar->elmsize);
410        _xbt_dynar_get_elm(elm, dynar, idx);
411        (*dynar->free_f)(elm);
412        free(elm);
413     }
414   }
415
416   nb_shift =  dynar->used-1 - idx;
417   offset   =  nb_shift * dynar->elmsize;
418
419   memmove(_xbt_dynar_elm(dynar, idx),
420           _xbt_dynar_elm(dynar, idx+1), 
421           offset);
422
423   dynar->used--;
424 }
425
426 /** @brief Returns the position of the element in the dynar
427  *
428  * Raises not_found_error if not found.
429  */
430 int
431 xbt_dynar_search(xbt_dynar_t  const dynar,
432                  void        *const elem) {
433   int it;
434    
435   for (it=0; it< dynar->used; it++) 
436     if (!memcmp(_xbt_dynar_elm(dynar, it),elem,dynar->elmsize))
437       return it;
438
439   THROW2(not_found_error,0,"Element %p not part of dynar %p",elem,dynar);
440 }
441
442 /** @brief Returns a boolean indicating whether the element is part of the dynar */
443 int
444 xbt_dynar_member(xbt_dynar_t  const dynar,
445                  void        *const elem) {
446
447   xbt_ex_t e;
448    
449   TRY {
450      xbt_dynar_search(dynar,elem);
451   } CATCH(e) {
452      if (e.category == not_found_error) {
453         xbt_ex_free(e);
454         return 0;
455      }
456      RETHROW;
457   }
458   return 1;
459 }
460
461 /** @brief Make room at the end of the dynar for a new element, and return a pointer to it.
462  *
463  * You can then use regular affectation to set its value instead of relying 
464  * on the slow memcpy. This is what xbt_dynar_push_as() does.
465  */
466 void *
467 xbt_dynar_push_ptr(xbt_dynar_t  const dynar) {
468   return xbt_dynar_insert_at_ptr(dynar, dynar->used);    
469 }
470
471 /** @brief Add an element at the end of the dynar */
472 void
473 xbt_dynar_push(xbt_dynar_t  const dynar,
474                 const void   * const src) {
475   /* sanity checks done by insert_at */
476   xbt_dynar_insert_at(dynar, dynar->used, src); 
477 }
478
479 /** @brief Mark the last dynar's element as unused and return a pointer to it.
480  *
481  * You can then use regular affectation to set its value instead of relying 
482  * on the slow memcpy. This is what xbt_dynar_pop_as() does.
483  */
484 void *
485 xbt_dynar_pop_ptr(xbt_dynar_t  const dynar) {
486
487   __check_populated_dynar(dynar);
488   DEBUG1("Pop %p",(void*)dynar);
489   dynar->used--;
490   return _xbt_dynar_elm(dynar,dynar->used);
491 }
492
493 /** @brief Get and remove the last element of the dynar */
494 void
495 xbt_dynar_pop(xbt_dynar_t  const dynar,
496               void         * const dst) {
497
498   /* sanity checks done by remove_at */
499   DEBUG1("Pop %p",(void*)dynar);
500   xbt_dynar_remove_at(dynar, dynar->used-1, dst);
501 }
502
503 /** @brief Add an element at the begining of the dynar.
504  *
505  * This is less efficient than xbt_dynar_push()
506  */
507 void
508 xbt_dynar_unshift(xbt_dynar_t  const dynar,
509                    const void   * const src) {
510   
511   /* sanity checks done by insert_at */
512   xbt_dynar_insert_at(dynar, 0, src);
513 }
514
515 /** @brief Get and remove the first element of the dynar.
516  *
517  * This is less efficient than xbt_dynar_pop()
518  */
519 void
520 xbt_dynar_shift(xbt_dynar_t  const dynar,
521                  void         * const dst) {
522
523   /* sanity checks done by remove_at */
524   xbt_dynar_remove_at(dynar, 0, dst);
525 }
526
527 /** @brief Apply a function to each member of a dynar
528  *
529  * The mapped function may change the value of the element itself, 
530  * but should not mess with the structure of the dynar.
531  */
532 void
533 xbt_dynar_map(const xbt_dynar_t  dynar,
534                void_f_pvoid_t     * const op) {
535
536   __sanity_check_dynar(dynar);
537
538   {
539     char         elm[SIZEOF_MAX];
540     const unsigned long used = dynar->used;
541     unsigned long       i    = 0;
542
543     for (i = 0; i < used; i++) {
544       _xbt_dynar_get_elm(elm, dynar, i);
545       op(elm);
546     }
547   }
548 }
549
550 /** @brief Put the cursor at the begining of the dynar.
551  *
552  * Actually, the cursor is set one step before the begining, so that you
553  * can iterate over the dynar with a for loop.
554  */
555 void
556 xbt_dynar_cursor_first(const xbt_dynar_t dynar,
557                        int        * const cursor) {
558
559   DEBUG1("Set cursor on %p to the first position",(void*)dynar);
560   *cursor = 0;
561 }
562
563 /** @brief Move the cursor to the next value */
564 void
565 xbt_dynar_cursor_step(const xbt_dynar_t dynar,
566                        int        * const cursor) {
567   
568   (*cursor)++;
569 }
570
571 /** @brief Get the data currently pointed by the cursor */
572 int
573 xbt_dynar_cursor_get(const xbt_dynar_t dynar,
574                       int                * const cursor,
575                       void               * const dst) {
576
577   __sanity_check_dynar(dynar);
578   {
579
580     const int idx = *cursor;
581
582     if (idx >= dynar->used) {
583       DEBUG1("Cursor on %p already on last elem",(void*)dynar);
584       return FALSE;
585     }
586     DEBUG2("Cash out cursor on %p at %d",(void*)dynar,idx);
587
588     _xbt_dynar_get_elm(dst, dynar, idx);
589   }
590   return TRUE;
591
592 }
593
594 /** @brief Removes and free the entry pointed by the cursor 
595  *
596  * This function can be used while traversing without problem.
597  */
598 void xbt_dynar_cursor_rm(xbt_dynar_t dynar,
599                           int          * const cursor) {
600   
601   xbt_dynar_remove_at(dynar,(*cursor)--,NULL);
602 }
603
604 #ifdef SIMGRID_TEST
605
606 #define NB_ELEM 5000
607
608 XBT_TEST_SUITE("dynar","Dynar data container");
609 XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
610 XBT_LOG_DEFAULT_CATEGORY(xbt_dyn);
611
612 XBT_TEST_UNIT("int",test_dynar_int,"Dyars of integers") {
613    /* Vars_decl [doxygen cruft] */
614    xbt_dynar_t d;
615    int i,cpt,cursor;
616    int *iptr;
617    
618    xbt_test_add0("==== Traverse the empty dynar");
619    d=xbt_dynar_new(sizeof(int),NULL);
620    xbt_dynar_foreach(d,cursor,i){
621      xbt_assert0(0,"Damnit, there is something in the empty dynar");
622    }
623    xbt_dynar_free(&d);
624    xbt_dynar_free(&d);
625
626    xbt_test_add1("==== Push %d int, set them again 3 times, traverse them, shift them",
627         NB_ELEM);
628    /* Populate_ints [doxygen cruft] */
629    /* 1. Populate the dynar */
630    d=xbt_dynar_new(sizeof(int),NULL);
631    for (cpt=0; cpt< NB_ELEM; cpt++) {
632      xbt_dynar_push_as(d,int,cpt); /* This is faster (and possible only with scalars) */
633      /* xbt_dynar_push(d,&cpt);       This would also work */
634      xbt_test_log2("Push %d, length=%lu",cpt, xbt_dynar_length(d));
635    }
636    
637    /* 2. Traverse manually the dynar */
638    for (cursor=0; cursor< NB_ELEM; cursor++) {
639      iptr=xbt_dynar_get_ptr(d,cursor);
640      xbt_test_assert2(cursor == *iptr,
641                       "The retrieved value is not the same than the injected one (%d!=%d)",
642                       cursor,cpt);
643    }
644    
645    /* 3. Traverse the dynar using the neat macro to that extend */
646    xbt_dynar_foreach(d,cursor,cpt){
647      xbt_test_assert2(cursor == cpt,
648                       "The retrieved value is not the same than the injected one (%d!=%d)",
649                       cursor,cpt);
650    }
651    /* end_of_traversal */
652    
653    for (cpt=0; cpt< NB_ELEM; cpt++)
654      *(int*)xbt_dynar_get_ptr(d,cpt) = cpt;
655
656    for (cpt=0; cpt< NB_ELEM; cpt++) 
657      *(int*)xbt_dynar_get_ptr(d,cpt) = cpt;
658 /*     xbt_dynar_set(d,cpt,&cpt);*/
659    
660    for (cpt=0; cpt< NB_ELEM; cpt++) 
661      *(int*)xbt_dynar_get_ptr(d,cpt) = cpt;
662    
663    cpt=0;
664    xbt_dynar_foreach(d,cursor,i){
665      xbt_test_assert2(i == cpt,
666                       "The retrieved value is not the same than the injected one (%d!=%d)",
667                       i,cpt);
668      cpt++;
669    }
670    xbt_test_assert2(cpt == NB_ELEM,
671                     "Cannot retrieve my %d values. Last got one is %d",
672                     NB_ELEM, cpt);
673
674    /* shifting [doxygen cruft] */
675    /* 4. Shift all the values */
676    for (cpt=0; cpt< NB_ELEM; cpt++) {
677      xbt_dynar_shift(d,&i);
678      xbt_test_assert2(i == cpt,
679                       "The retrieved value is not the same than the injected one (%d!=%d)",
680                       i,cpt);
681      xbt_test_log2("Pop %d, length=%lu",cpt, xbt_dynar_length(d));
682    }
683    
684    /* 5. Free the resources */
685    xbt_dynar_free(&d);
686    xbt_dynar_free(&d);
687
688    
689    xbt_test_add1("==== Unshift/pop %d int",NB_ELEM);
690    d=xbt_dynar_new(sizeof(int),NULL);
691    for (cpt=0; cpt< NB_ELEM; cpt++) {
692      xbt_dynar_unshift(d,&cpt);
693      DEBUG2("Push %d, length=%lu",cpt, xbt_dynar_length(d));
694    }
695    for (cpt=0; cpt< NB_ELEM; cpt++) {
696      i=xbt_dynar_pop_as(d,int);
697      xbt_test_assert2(i == cpt,
698                       "The retrieved value is not the same than the injected one (%d!=%d)",
699                       i,cpt);
700      xbt_test_log2("Pop %d, length=%lu",cpt, xbt_dynar_length(d));
701    }
702    xbt_dynar_free(&d);
703    xbt_dynar_free(&d);
704
705    
706    xbt_test_add1("==== Push %d int, insert 1000 int in the middle, shift everything",NB_ELEM);
707    d=xbt_dynar_new(sizeof(int),NULL);
708    for (cpt=0; cpt< NB_ELEM; cpt++) {
709      xbt_dynar_push_as(d,int,cpt);
710      DEBUG2("Push %d, length=%lu",cpt, xbt_dynar_length(d));
711    }
712    for (cpt=0; cpt< 1000; cpt++) {
713      xbt_dynar_insert_at_as(d,2500,int,cpt);
714      DEBUG2("Push %d, length=%lu",cpt, xbt_dynar_length(d));
715    }
716
717    for (cpt=0; cpt< 2500; cpt++) {
718      xbt_dynar_shift(d,&i);
719      xbt_test_assert2(i == cpt,
720              "The retrieved value is not the same than the injected one at the begining (%d!=%d)",
721                i,cpt);
722      DEBUG2("Pop %d, length=%lu",cpt, xbt_dynar_length(d));
723    }
724    for (cpt=999; cpt>=0; cpt--) {
725      xbt_dynar_shift(d,&i);
726      xbt_test_assert2(i == cpt,
727            "The retrieved value is not the same than the injected one in the middle (%d!=%d)",
728                       i,cpt);
729    }
730    for (cpt=2500; cpt< NB_ELEM; cpt++) {
731      xbt_dynar_shift(d,&i);
732       xbt_test_assert2(i == cpt,
733            "The retrieved value is not the same than the injected one at the end (%d!=%d)",
734                        i,cpt);
735    }
736    xbt_dynar_free(&d);
737    xbt_dynar_free(&d);
738
739
740    xbt_test_add1("==== Push %d int, remove 2000-4000. free the rest",NB_ELEM);
741    d=xbt_dynar_new(sizeof(int),NULL);
742    for (cpt=0; cpt< NB_ELEM; cpt++) 
743      xbt_dynar_push_as(d,int,cpt);
744    
745    for (cpt=2000; cpt< 4000; cpt++) {
746      xbt_dynar_remove_at(d,2000,&i);
747      xbt_test_assert2(i == cpt,
748                       "Remove a bad value. Got %d, expected %d",
749                       i,cpt);
750      DEBUG2("remove %d, length=%lu",cpt, xbt_dynar_length(d));
751    }
752    xbt_dynar_free(&d);
753    xbt_dynar_free(&d);
754 }
755
756 XBT_TEST_UNIT("double",test_dynar_double,"Dyars of doubles") {
757    xbt_dynar_t d;
758    int cpt,cursor;
759    double d1,d2;
760    
761    xbt_test_add0("==== Traverse the empty dynar");
762    d=xbt_dynar_new(sizeof(int),NULL);
763    xbt_dynar_foreach(d,cursor,cpt){
764      xbt_test_assert0(FALSE,
765              "Damnit, there is something in the empty dynar");
766    }
767    xbt_dynar_free(&d);
768    xbt_dynar_free(&d);
769
770    xbt_test_add0("==== Push/shift 5000 doubles");
771    d=xbt_dynar_new(sizeof(double),NULL);
772    for (cpt=0; cpt< 5000; cpt++) {
773      d1=(double)cpt;
774      xbt_dynar_push(d,&d1);
775    }
776    xbt_dynar_foreach(d,cursor,d2){
777      d1=(double)cursor;
778      xbt_test_assert2(d1 == d2,
779            "The retrieved value is not the same than the injected one (%f!=%f)",
780                   d1,d2);
781    }
782    for (cpt=0; cpt< 5000; cpt++) {
783      d1=(double)cpt;
784      xbt_dynar_shift(d,&d2);
785      xbt_test_assert2(d1 == d2,
786            "The retrieved value is not the same than the injected one (%f!=%f)",
787                   d1,d2);
788    }
789    xbt_dynar_free(&d);
790    xbt_dynar_free(&d);
791
792
793    xbt_test_add0("==== Unshift/pop 5000 doubles");
794    d=xbt_dynar_new(sizeof(double),NULL);
795    for (cpt=0; cpt< 5000; cpt++) {
796      d1=(double)cpt;
797      xbt_dynar_unshift(d,&d1);
798    }
799    for (cpt=0; cpt< 5000; cpt++) {
800      d1=(double)cpt;
801      xbt_dynar_pop(d,&d2);
802      xbt_test_assert2 (d1 == d2,
803            "The retrieved value is not the same than the injected one (%f!=%f)",
804                    d1,d2);
805    }
806    xbt_dynar_free(&d);
807    xbt_dynar_free(&d);
808
809
810
811    xbt_test_add0("==== Push 5000 doubles, insert 1000 doubles in the middle, shift everything");
812    d=xbt_dynar_new(sizeof(double),NULL);
813    for (cpt=0; cpt< 5000; cpt++) {
814      d1=(double)cpt;
815      xbt_dynar_push(d,&d1);
816    }
817    for (cpt=0; cpt< 1000; cpt++) {
818      d1=(double)cpt;
819      xbt_dynar_insert_at(d,2500,&d1);
820    }
821
822    for (cpt=0; cpt< 2500; cpt++) {
823      d1=(double)cpt;
824      xbt_dynar_shift(d,&d2);
825      xbt_test_assert2(d1 == d2,
826            "The retrieved value is not the same than the injected one at the begining (%f!=%f)",
827                   d1,d2);
828      DEBUG2("Pop %d, length=%lu",cpt, xbt_dynar_length(d));
829    }
830    for (cpt=999; cpt>=0; cpt--) {
831      d1=(double)cpt;
832      xbt_dynar_shift(d,&d2);
833      xbt_test_assert2 (d1 == d2,
834            "The retrieved value is not the same than the injected one in the middle (%f!=%f)",
835                    d1,d2);
836    }
837    for (cpt=2500; cpt< 5000; cpt++) {
838      d1=(double)cpt;
839      xbt_dynar_shift(d,&d2);
840      xbt_test_assert2 (d1 == d2,
841            "The retrieved value is not the same than the injected one at the end (%f!=%f)",
842                    d1,d2);
843    }
844    xbt_dynar_free(&d);
845    xbt_dynar_free(&d);
846
847
848    xbt_test_add0("==== Push 5000 double, remove 2000-4000. free the rest");
849    d=xbt_dynar_new(sizeof(double),NULL);
850    for (cpt=0; cpt< 5000; cpt++) {
851      d1=(double)cpt;
852      xbt_dynar_push(d,&d1);
853    }
854    for (cpt=2000; cpt< 4000; cpt++) {
855      d1=(double)cpt;
856      xbt_dynar_remove_at(d,2000,&d2);
857      xbt_test_assert2 (d1 == d2,
858            "Remove a bad value. Got %f, expected %f",
859                d2,d1);
860    }
861    xbt_dynar_free(&d);
862    xbt_dynar_free(&d);
863 }
864
865
866 /* doxygen_string_cruft */
867
868 /* The function we will use to free the data */
869 static void free_string(void *d){
870   free(*(void**)d);
871 }
872
873 XBT_TEST_UNIT("string",test_dynar_string,"Dyars of strings") {
874    xbt_dynar_t d;
875    int cpt;
876    char buf[1024];
877    char *s1,*s2;
878    
879    xbt_test_add0("==== Traverse the empty dynar");
880    d=xbt_dynar_new(sizeof(char *),&free_string);
881    xbt_dynar_foreach(d,cpt,s1){
882      xbt_test_assert0(FALSE,
883                   "Damnit, there is something in the empty dynar");
884    }
885    xbt_dynar_free(&d);
886    xbt_dynar_free(&d);
887
888    xbt_test_add1("==== Push %d strings, set them again 3 times, shift them",NB_ELEM);
889    /* Populate_str [doxygen cruft] */
890    d=xbt_dynar_new(sizeof(char*),&free_string);
891    /* 1. Populate the dynar */
892    for (cpt=0; cpt< NB_ELEM; cpt++) {
893      sprintf(buf,"%d",cpt);
894      s1=strdup(buf);
895      xbt_dynar_push(d,&s1);
896    }
897    for (cpt=0; cpt< NB_ELEM; cpt++) {
898      sprintf(buf,"%d",cpt);
899      s1=strdup(buf);
900      xbt_dynar_replace(d,cpt,&s1);
901    }
902    for (cpt=0; cpt< NB_ELEM; cpt++) {
903      sprintf(buf,"%d",cpt);
904      s1=strdup(buf);
905      xbt_dynar_replace(d,cpt,&s1);
906    }
907    for (cpt=0; cpt< NB_ELEM; cpt++) {
908      sprintf(buf,"%d",cpt);
909      s1=strdup(buf);
910      xbt_dynar_replace(d,cpt,&s1);
911    }
912    for (cpt=0; cpt< NB_ELEM; cpt++) {
913      sprintf(buf,"%d",cpt);
914      xbt_dynar_shift(d,&s2);
915      xbt_test_assert2 (!strcmp(buf,s2),
916             "The retrieved value is not the same than the injected one (%s!=%s)",
917                    buf,s2);
918      free(s2);
919    }
920    xbt_dynar_free(&d);
921    xbt_dynar_free(&d);
922
923
924    xbt_test_add1("==== Unshift, traverse and pop %d strings",NB_ELEM);
925    d=xbt_dynar_new(sizeof(char**),&free_string);
926    for (cpt=0; cpt< NB_ELEM; cpt++) {
927      sprintf(buf,"%d",cpt);
928      s1=strdup(buf);
929      xbt_dynar_unshift(d,&s1);
930    }
931    /* 2. Traverse the dynar with the macro */
932    xbt_dynar_foreach(d,cpt,s1) {
933      sprintf(buf,"%d",NB_ELEM - cpt -1);
934      xbt_test_assert2 (!strcmp(buf,s1),
935            "The retrieved value is not the same than the injected one (%s!=%s)",
936                buf,s1);
937    }
938    /* 3. Traverse the dynar with the macro */
939    for (cpt=0; cpt< NB_ELEM; cpt++) {
940      sprintf(buf,"%d",cpt);
941      xbt_dynar_pop(d,&s2);
942      xbt_test_assert2 (!strcmp(buf,s2),
943            "The retrieved value is not the same than the injected one (%s!=%s)",
944                buf,s2);
945      free(s2);
946    }
947    /* 4. Free the resources */
948    xbt_dynar_free(&d);
949    xbt_dynar_free(&d);
950
951
952    xbt_test_add2("==== Push %d strings, insert %d strings in the middle, shift everything",NB_ELEM,NB_ELEM/5);
953    d=xbt_dynar_new(sizeof(char*),&free_string);
954    for (cpt=0; cpt< NB_ELEM; cpt++) {
955      sprintf(buf,"%d",cpt);
956      s1=strdup(buf);
957      xbt_dynar_push(d,&s1);
958    }
959    for (cpt=0; cpt< NB_ELEM/5; cpt++) {
960      sprintf(buf,"%d",cpt);
961      s1=strdup(buf);
962      xbt_dynar_insert_at(d,NB_ELEM/2,&s1);
963    }
964
965    for (cpt=0; cpt< NB_ELEM/2; cpt++) {
966      sprintf(buf,"%d",cpt);
967      xbt_dynar_shift(d,&s2);
968      xbt_test_assert2(!strcmp(buf,s2),
969            "The retrieved value is not the same than the injected one at the begining (%s!=%s)",
970                buf,s2);
971       free(s2);
972    }
973    for (cpt=(NB_ELEM/5)-1; cpt>=0; cpt--) {
974      sprintf(buf,"%d",cpt);
975      xbt_dynar_shift(d,&s2);
976      xbt_test_assert2 (!strcmp(buf,s2),
977            "The retrieved value is not the same than the injected one in the middle (%s!=%s)",
978                buf,s2);
979      free(s2);
980    }
981    for (cpt=NB_ELEM/2; cpt< NB_ELEM; cpt++) {
982      sprintf(buf,"%d",cpt);
983      xbt_dynar_shift(d,&s2);
984      xbt_test_assert2 (!strcmp(buf,s2),
985            "The retrieved value is not the same than the injected one at the end (%s!=%s)",
986                buf,s2);
987      free(s2);
988    }
989    xbt_dynar_free(&d);
990    xbt_dynar_free(&d);
991
992
993    xbt_test_add3("==== Push %d strings, remove %d-%d. free the rest",NB_ELEM,2*(NB_ELEM/5),4*(NB_ELEM/5));
994    d=xbt_dynar_new(sizeof(char*),&free_string);
995    for (cpt=0; cpt< NB_ELEM; cpt++) {
996      sprintf(buf,"%d",cpt);
997      s1=strdup(buf);
998      xbt_dynar_push(d,&s1);
999    }
1000    for (cpt=2*(NB_ELEM/5); cpt< 4*(NB_ELEM/5); cpt++) {
1001      sprintf(buf,"%d",cpt);
1002      xbt_dynar_remove_at(d,2*(NB_ELEM/5),&s2);
1003      xbt_test_assert2(!strcmp(buf,s2),
1004                   "Remove a bad value. Got %s, expected %s",
1005                   s2,buf);
1006       free(s2);
1007    }
1008    xbt_dynar_free(&d); /* end_of_doxygen */
1009 }
1010 #endif /* SIMGRID_TEST */