Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc++'
[simgrid.git] / src / xbt / dynar.c
1 /* a generic DYNamic ARray implementation.                                  */
2
3 /* Copyright (c) 2004-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt/misc.h"
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 #include "xbt/ex.h"
13 #include "xbt/dynar.h"
14 #include <sys/types.h>
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dyn, xbt, "Dynamic arrays");
17
18 static XBT_INLINE void _sanity_check_dynar(xbt_dynar_t dynar)
19 {
20   xbt_assert(dynar, "dynar is NULL");
21 }
22
23 static XBT_INLINE void _sanity_check_idx(int idx)
24 {
25   xbt_assert(idx >= 0, "dynar idx(=%d) < 0", (int) (idx));
26 }
27
28 static XBT_INLINE void _check_inbound_idx(xbt_dynar_t dynar, int idx)
29 {
30   if (idx < 0 || idx >= dynar->used) {
31     THROWF(bound_error, idx,
32            "dynar is not that long. You asked %d, but it's only %lu long",
33            (int) (idx), (unsigned long) dynar->used);
34   }
35 }
36
37 static XBT_INLINE void _check_populated_dynar(xbt_dynar_t dynar)
38 {
39   if (dynar->used == 0) {
40     THROWF(bound_error, 0, "dynar %p is empty", dynar);
41   }
42 }
43
44 static XBT_INLINE
45 void _xbt_dynar_resize(xbt_dynar_t dynar, unsigned long new_size)
46 {
47   if (new_size != dynar->size) {
48     dynar->size = new_size;
49     dynar->data = xbt_realloc(dynar->data, new_size * dynar->elmsize);
50   }
51 }
52
53 static XBT_INLINE
54     void _xbt_dynar_expand(xbt_dynar_t const dynar, const unsigned long nb)
55 {
56   const unsigned long old_size = dynar->size;
57
58   if (nb > old_size) {
59     const unsigned long expand = 2 * (old_size + 1);
60     _xbt_dynar_resize(dynar, (nb > expand ? nb : expand));
61     XBT_DEBUG("expand %p from %lu to %lu elements",
62               dynar, old_size, dynar->size);
63   }
64 }
65
66 static XBT_INLINE
67     void *_xbt_dynar_elm(const xbt_dynar_t dynar, const unsigned long idx)
68 {
69   char *const data = (char *) dynar->data;
70   const unsigned long elmsize = dynar->elmsize;
71
72   return data + idx * elmsize;
73 }
74
75 static XBT_INLINE
76     void
77 _xbt_dynar_get_elm(void *const dst,
78                    const xbt_dynar_t dynar, const unsigned long idx)
79 {
80   void *const elm = _xbt_dynar_elm(dynar, idx);
81
82   memcpy(dst, elm, dynar->elmsize);
83 }
84
85 void xbt_dynar_dump(xbt_dynar_t dynar)
86 {
87   XBT_INFO("Dynar dump: size=%lu; used=%lu; elmsize=%lu; data=%p; free_f=%p",
88         dynar->size, dynar->used, dynar->elmsize, dynar->data,
89         dynar->free_f);
90 }
91
92 /** @brief Constructor
93  *
94  * \param elmsize size of each element in the dynar
95  * \param free_f function to call each time we want to get rid of an element (or NULL if nothing to do).
96  *
97  * Creates a new dynar. If a free_func is provided, the elements have to be
98  * pointer of pointer. That is to say that dynars can contain either base
99  * types (int, char, double, etc) or pointer of pointers (struct **).
100  */
101 xbt_dynar_t
102 xbt_dynar_new(const unsigned long elmsize, void_f_pvoid_t const free_f)
103 {
104
105   xbt_dynar_t dynar = xbt_new0(s_xbt_dynar_t, 1);
106
107   dynar->size = 0;
108   dynar->used = 0;
109   dynar->elmsize = elmsize;
110   dynar->data = NULL;
111   dynar->free_f = free_f;
112
113   return dynar;
114 }
115
116 /** @brief Destructor of the structure not touching to the content
117  *
118  * \param dynar poor victim
119  *
120  * kilkil a dynar BUT NOT its content. Ie, the array is freed, but the content
121  * is not touched (the \a free_f function is not used)
122  */
123 void xbt_dynar_free_container(xbt_dynar_t * dynar)
124 {
125   if (dynar && *dynar) {
126     xbt_dynar_t d = *dynar;
127     free(d->data);
128     free(d);
129     *dynar = NULL;
130   }
131 }
132
133 /** @brief Frees the content and set the size to 0
134  *
135  * \param dynar who to squeeze
136  */
137 XBT_INLINE void xbt_dynar_reset(xbt_dynar_t const dynar)
138 {
139   _sanity_check_dynar(dynar);
140
141   XBT_CDEBUG(xbt_dyn, "Reset the dynar %p", (void *) dynar);
142   if (dynar->free_f) {
143     xbt_dynar_map(dynar, dynar->free_f);
144   }
145   dynar->used = 0;
146 }
147
148 /** @brief Merge dynar d2 into d1
149  *
150  * \param d1 dynar to keep
151  * \param d2 dynar to merge into d1. This dynar is free at end.
152  */
153 void xbt_dynar_merge(xbt_dynar_t *d1, xbt_dynar_t *d2)
154 {
155   if((*d1)->elmsize != (*d2)->elmsize)
156     xbt_die("Element size must are not equal");
157
158   const unsigned long elmsize = (*d1)->elmsize;
159
160   void *ptr = _xbt_dynar_elm((*d2), 0);
161   _xbt_dynar_resize(*d1, (*d1)->size + (*d2)->size);
162   void *elm = _xbt_dynar_elm((*d1), (*d1)->used);
163
164   memcpy(elm, ptr, ((*d2)->size)*elmsize);
165   (*d1)->used += (*d2)->used;
166   (*d2)->used = 0;
167   xbt_dynar_free(d2);
168 }
169
170 /**
171  * \brief Shrink the dynar by removing empty slots at the end of the internal array
172  * \param dynar a dynar
173  * \param empty_slots_wanted number of empty slots you want to keep at the end of the
174  * internal array for further insertions
175  *
176  * Reduces the internal array size of the dynar to the number of elements plus
177  * \a empty_slots_wanted.
178  * After removing elements from the dynar, you can call this function to make
179  * the dynar use less memory.
180  * Set \a empty_slots_wanted to zero to reduce the dynar internal array as much
181  * as possible.
182  * Note that if \a empty_slots_wanted is greater than the array size, the internal
183  * array is expanded instead of shriked.
184  */
185 void xbt_dynar_shrink(xbt_dynar_t dynar, int empty_slots_wanted)
186 {
187   _xbt_dynar_resize(dynar, dynar->used + empty_slots_wanted);
188 }
189
190 /** @brief Destructor
191  *
192  * \param dynar poor victim
193  *
194  * kilkil a dynar and its content
195  */
196
197 XBT_INLINE void xbt_dynar_free(xbt_dynar_t * dynar)
198 {
199   if (dynar && *dynar) {
200     xbt_dynar_reset(*dynar);
201     xbt_dynar_free_container(dynar);
202   }
203 }
204
205 /** \brief free a dynar passed as void* (handy to store dynar in dynars or dict) */
206 void xbt_dynar_free_voidp(void *d)
207 {
208   xbt_dynar_t dynar = (xbt_dynar_t)d;
209   xbt_dynar_free(&dynar);
210 }
211
212 /** @brief Count of dynar's elements
213  *
214  * \param dynar the dynar we want to mesure
215  */
216 XBT_INLINE unsigned long xbt_dynar_length(const xbt_dynar_t dynar)
217 {
218   return (dynar ? (unsigned long) dynar->used : (unsigned long) 0);
219 }
220
221  /**@brief check if a dynar is empty
222  *
223  *\param dynar the dynat we want to check
224  */
225
226 XBT_INLINE int xbt_dynar_is_empty(const xbt_dynar_t dynar)
227 {
228   return (xbt_dynar_length(dynar) == 0);
229 }
230
231 /** @brief Retrieve a copy of the Nth element of a dynar.
232  *
233  * \param dynar information dealer
234  * \param idx index of the slot we want to retrieve
235  * \param[out] dst where to put the result to.
236  */
237 XBT_INLINE void
238 xbt_dynar_get_cpy(const xbt_dynar_t dynar,
239                   const unsigned long idx, void *const dst)
240 {
241   _sanity_check_dynar(dynar);
242   _check_inbound_idx(dynar, idx);
243
244   _xbt_dynar_get_elm(dst, dynar, idx);
245 }
246
247 /** @brief Retrieve a pointer to the Nth element of a dynar.
248  *
249  * \param dynar information dealer
250  * \param idx index of the slot we want to retrieve
251  * \return the \a idx-th element of \a dynar.
252  *
253  * \warning The returned value is the actual content of the dynar.
254  * Make a copy before fooling with it.
255  */
256 XBT_INLINE void *xbt_dynar_get_ptr(const xbt_dynar_t dynar,
257                                    const unsigned long idx)
258 {
259
260   void *res;
261   _sanity_check_dynar(dynar);
262   _check_inbound_idx(dynar, idx);
263
264   res = _xbt_dynar_elm(dynar, idx);
265   return res;
266 }
267
268 XBT_INLINE void *xbt_dynar_set_at_ptr(const xbt_dynar_t dynar,
269                                       const unsigned long idx)
270 {
271   _sanity_check_dynar(dynar);
272
273   if (idx >= dynar->used) {
274     _xbt_dynar_expand(dynar, idx + 1);
275     if (idx > dynar->used) {
276       memset(_xbt_dynar_elm(dynar, dynar->used), 0,
277              (idx - dynar->used) * dynar->elmsize);
278     }
279     dynar->used = idx + 1;
280   }
281   return _xbt_dynar_elm(dynar, idx);
282 }
283
284 /** @brief Set the Nth element of a dynar (expanded if needed). Previous value at this position is NOT freed
285  *
286  * \param dynar information dealer
287  * \param idx index of the slot we want to modify
288  * \param src What will be feeded to the dynar
289  *
290  * If you want to free the previous content, use xbt_dynar_replace().
291  */
292 XBT_INLINE void xbt_dynar_set(xbt_dynar_t dynar, const int idx,
293                               const void *const src)
294 {
295
296   memcpy(xbt_dynar_set_at_ptr(dynar, idx), src, dynar->elmsize);
297 }
298
299 /** @brief Set the Nth element of a dynar (expanded if needed). Previous value is freed
300  *
301  * \param dynar
302  * \param idx
303  * \param object
304  *
305  * Set the Nth element of a dynar, expanding the dynar if needed, AND DO
306  * free the previous value at this position. If you don't want to free the
307  * previous content, use xbt_dynar_set().
308  */
309 void
310 xbt_dynar_replace(xbt_dynar_t dynar,
311                   const unsigned long idx, const void *const object)
312 {
313   _sanity_check_dynar(dynar);
314
315   if (idx < dynar->used && dynar->free_f) {
316     void *const old_object = _xbt_dynar_elm(dynar, idx);
317
318     dynar->free_f(old_object);
319   }
320
321   xbt_dynar_set(dynar, idx, object);
322 }
323
324 /** @brief Make room for a new element, and return a pointer to it
325  *
326  * You can then use regular affectation to set its value instead of relying
327  * on the slow memcpy. This is what xbt_dynar_insert_at_as() does.
328  */
329 void *xbt_dynar_insert_at_ptr(xbt_dynar_t const dynar, const int idx)
330 {
331   void *res;
332   unsigned long old_used;
333   unsigned long new_used;
334   long nb_shift;
335
336   _sanity_check_dynar(dynar);
337   _sanity_check_idx(idx);
338
339   old_used = dynar->used;
340   new_used = old_used + 1;
341
342   _xbt_dynar_expand(dynar, new_used);
343
344   nb_shift = old_used - idx;
345
346   if (nb_shift>0) {
347     memmove(_xbt_dynar_elm(dynar, idx + 1),
348             _xbt_dynar_elm(dynar, idx), nb_shift * dynar->elmsize);
349   }
350
351   dynar->used = new_used;
352   res = _xbt_dynar_elm(dynar, idx);
353   return res;
354 }
355
356 /** @brief Set the Nth dynar's element, expanding the dynar and sliding the previous values to the right
357  *
358  * Set the Nth element of a dynar, expanding the dynar if needed, and
359  * moving the previously existing value and all subsequent ones to one
360  * position right in the dynar.
361  */
362 XBT_INLINE void
363 xbt_dynar_insert_at(xbt_dynar_t const dynar,
364                     const int idx, const void *const src)
365 {
366
367   /* checks done in xbt_dynar_insert_at_ptr */
368   memcpy(xbt_dynar_insert_at_ptr(dynar, idx), src, dynar->elmsize);
369 }
370
371 /** @brief Remove the Nth dynar's element, sliding the previous values to the left
372  *
373  * Get the Nth element of a dynar, removing it from the dynar and moving
374  * all subsequent values to one position left in the dynar.
375  *
376  * If the object argument of this function is a non-null pointer, the removed
377  * element is copied to this address. If not, the element is freed using the
378  * free_f function passed at dynar creation.
379  */
380 void
381 xbt_dynar_remove_at(xbt_dynar_t const dynar,
382                     const int idx, void *const object)
383 {
384   unsigned long nb_shift;
385   unsigned long offset;
386
387   _sanity_check_dynar(dynar);
388   _check_inbound_idx(dynar, idx);
389
390   if (object) {
391     _xbt_dynar_get_elm(object, dynar, idx);
392   } else if (dynar->free_f) {
393     dynar->free_f(_xbt_dynar_elm(dynar, idx));
394   }
395
396   nb_shift = dynar->used - 1 - idx;
397
398   if (nb_shift) {
399     offset = nb_shift * dynar->elmsize;
400     memmove(_xbt_dynar_elm(dynar, idx), _xbt_dynar_elm(dynar, idx + 1),
401             offset);
402   }
403
404   dynar->used--;
405 }
406
407 /** @brief Remove a slice of the dynar, sliding the rest of the values to the left
408  *
409  * This function removes an n-sized slice that starts at element idx. It is equivalent
410  * to xbt_dynar_remove_at with a NULL object argument if n equals to 1.
411  *
412  * Each of the removed elements is freed using the free_f function passed at dynar
413  * creation.
414  */
415 void
416 xbt_dynar_remove_n_at(xbt_dynar_t const dynar,
417                     const unsigned int n, const int idx)
418 {
419   unsigned long nb_shift;
420   unsigned long offset;
421   unsigned long cur;
422
423   if (!n) return;
424
425   _sanity_check_dynar(dynar);
426   _check_inbound_idx(dynar, idx);
427   _check_inbound_idx(dynar, idx + n - 1);
428
429   if (dynar->free_f) {
430     for (cur = idx; cur < idx + n; cur++) {
431       dynar->free_f(_xbt_dynar_elm(dynar, cur));
432     }
433   }
434
435   nb_shift = dynar->used - n - idx;
436
437   if (nb_shift) {
438     offset = nb_shift * dynar->elmsize;
439     memmove(_xbt_dynar_elm(dynar, idx), _xbt_dynar_elm(dynar, idx + n),
440             offset);
441   }
442
443   dynar->used -= n;
444 }
445
446 /** @brief Returns the position of the element in the dynar
447  *
448  * Beware that if your dynar contains pointed values (such as strings) instead 
449  * of scalar, this function compares the pointer value, not what's pointed. The only
450  * solution to search for a pointed value is then to write the foreach loop yourself:
451  * \code
452  * signed int position = -1;
453  * xbt_dynar_foreach(dynar, iter, elem) {
454  *    if (!memcmp(elem, searched_element, sizeof(*elem))) {
455  *        position = iter;
456  *        break;
457  *    }
458  * }
459  * \endcode
460  * 
461  * Raises not_found_error if not found. If you have less than 2 millions elements,
462  * you probably want to use #xbt_dynar_search_or_negative() instead, so that you
463  * don't have to TRY/CATCH on element not found.
464  */
465 unsigned int xbt_dynar_search(xbt_dynar_t const dynar, void *const elem)
466 {
467   unsigned long it;
468
469   for (it = 0; it < dynar->used; it++)
470     if (!memcmp(_xbt_dynar_elm(dynar, it), elem, dynar->elmsize)) {
471       return it;
472     }
473
474   THROWF(not_found_error, 0, "Element %p not part of dynar %p", elem,
475          dynar);
476 }
477
478 /** @brief Returns the position of the element in the dynar (or -1 if not found)
479  *
480  * Beware that if your dynar contains pointed values (such as
481  * strings) instead of scalar, this function is probably not what you
482  * want. Check the documentation of xbt_dynar_search() for more info.
483  * 
484  * Note that usually, the dynar indices are unsigned integers. If you have more
485  * than 2 million elements in your dynar, this very function will not work (but the other will).
486  */
487 signed int xbt_dynar_search_or_negative(xbt_dynar_t const dynar, void *const elem)
488 {
489   unsigned long it;
490
491   for (it = 0; it < dynar->used; it++)
492     if (!memcmp(_xbt_dynar_elm(dynar, it), elem, dynar->elmsize)) {
493       return it;
494     }
495
496   return -1;
497 }
498
499 /** @brief Returns a boolean indicating whether the element is part of the dynar 
500  *
501  * Beware that if your dynar contains pointed values (such as
502  * strings) instead of scalar, this function is probably not what you
503  * want. Check the documentation of xbt_dynar_search() for more info.
504  */
505 int xbt_dynar_member(xbt_dynar_t const dynar, void *const elem)
506 {
507
508   xbt_ex_t e;
509
510   TRY {
511     xbt_dynar_search(dynar, elem);
512   }
513   CATCH(e) {
514     if (e.category == not_found_error) {
515       xbt_ex_free(e);
516       return 0;
517     }
518     RETHROW;
519   }
520   return 1;
521 }
522
523 /** @brief Make room at the end of the dynar for a new element, and return a pointer to it.
524  *
525  * You can then use regular affectation to set its value instead of relying
526  * on the slow memcpy. This is what xbt_dynar_push_as() does.
527  */
528 XBT_INLINE void *xbt_dynar_push_ptr(xbt_dynar_t const dynar)
529 {
530   return xbt_dynar_insert_at_ptr(dynar, dynar->used);
531 }
532
533 /** @brief Add an element at the end of the dynar */
534 XBT_INLINE void xbt_dynar_push(xbt_dynar_t const dynar,
535                                const void *const src)
536 {
537   /* checks done in xbt_dynar_insert_at_ptr */
538   memcpy(xbt_dynar_insert_at_ptr(dynar, dynar->used), src, dynar->elmsize);
539 }
540
541 /** @brief Mark the last dynar's element as unused and return a pointer to it.
542  *
543  * You can then use regular affectation to set its value instead of relying
544  * on the slow memcpy. This is what xbt_dynar_pop_as() does.
545  */
546 XBT_INLINE void *xbt_dynar_pop_ptr(xbt_dynar_t const dynar)
547 {
548   _check_populated_dynar(dynar);
549   XBT_CDEBUG(xbt_dyn, "Pop %p", (void *) dynar);
550   dynar->used--;
551   return _xbt_dynar_elm(dynar, dynar->used);
552 }
553
554 /** @brief Get and remove the last element of the dynar */
555 XBT_INLINE void xbt_dynar_pop(xbt_dynar_t const dynar, void *const dst)
556 {
557
558   /* sanity checks done by remove_at */
559   XBT_CDEBUG(xbt_dyn, "Pop %p", (void *) dynar);
560   xbt_dynar_remove_at(dynar, dynar->used - 1, dst);
561 }
562
563 /** @brief Add an element at the begining of the dynar.
564  *
565  * This is less efficient than xbt_dynar_push()
566  */
567 XBT_INLINE void xbt_dynar_unshift(xbt_dynar_t const dynar,
568                                   const void *const src)
569 {
570
571   /* sanity checks done by insert_at */
572   xbt_dynar_insert_at(dynar, 0, src);
573 }
574
575 /** @brief Get and remove the first element of the dynar.
576  *
577  * This is less efficient than xbt_dynar_pop()
578  */
579 XBT_INLINE void xbt_dynar_shift(xbt_dynar_t const dynar, void *const dst)
580 {
581
582   /* sanity checks done by remove_at */
583   xbt_dynar_remove_at(dynar, 0, dst);
584 }
585
586 /** @brief Apply a function to each member of a dynar
587  *
588  * The mapped function may change the value of the element itself,
589  * but should not mess with the structure of the dynar.
590  */
591 XBT_INLINE void xbt_dynar_map(const xbt_dynar_t dynar,
592                               void_f_pvoid_t const op)
593 {
594   char *const data = (char *) dynar->data;
595   const unsigned long elmsize = dynar->elmsize;
596   const unsigned long used = dynar->used;
597   unsigned long i;
598
599   _sanity_check_dynar(dynar);
600
601   for (i = 0; i < used; i++) {
602     char* elm = (char*) data + i * elmsize;
603     op(elm);
604   }
605 }
606
607
608 /** @brief Removes and free the entry pointed by the cursor
609  *
610  * This function can be used while traversing without problem.
611  */
612 XBT_INLINE void xbt_dynar_cursor_rm(xbt_dynar_t dynar,
613                                     unsigned int *const cursor)
614 {
615
616   xbt_dynar_remove_at(dynar, (*cursor)--, NULL);
617 }
618
619 /** @brief Sorts a dynar according to the function <tt>compar_fn</tt>
620  *
621  * \param dynar the dynar to sort
622  * \param compar_fn comparison function of type (int (compar_fn*) (void*) (void*)).
623  *
624  * Remark: if the elements stored in the dynar are structures, the compar_fn
625  * function has to retrieve the field to sort first.
626  */
627 XBT_INLINE void xbt_dynar_sort(xbt_dynar_t dynar,
628                                int_f_cpvoid_cpvoid_t compar_fn)
629 {
630   qsort(dynar->data, dynar->used, dynar->elmsize, compar_fn);
631 }
632
633 /** @brief Sorts a dynar according to their color assuming elements can have only three colors.
634  * Since there are only three colors, it is linear and much faster than a classical sort.
635  * See for example http://en.wikipedia.org/wiki/Dutch_national_flag_problem
636  *
637  * \param dynar the dynar to sort
638  * \param color the color function of type (int (compar_fn*) (void*) (void*)). The return value of color is assumed to be 0, 1, or 2.
639  *
640  * At the end of the call, elements with color 0 are at the beginning of the dynar, elements with color 2 are at the end and elements with color 1 are in the middle.
641  *
642  * Remark: if the elements stored in the dynar are structures, the color
643  * function has to retrieve the field to sort first.
644  */
645 XBT_PUBLIC(void) xbt_dynar_three_way_partition(xbt_dynar_t const dynar,
646                                                int_f_pvoid_t color)
647 {
648   unsigned long int i;
649   unsigned long int p = -1;
650   unsigned long int q = dynar->used;
651   const unsigned long elmsize = dynar->elmsize;
652   void *tmp = xbt_malloc(elmsize);
653   void *elm;
654
655   for (i = 0; i < q;) {
656     void *elmi = _xbt_dynar_elm(dynar, i);
657     int colori = color(elmi);
658
659     if (colori == 1) {
660       ++i;
661     } else {
662       if (colori == 0) {
663         elm = _xbt_dynar_elm(dynar, ++p);
664         ++i;
665       } else {                  /* colori == 2 */
666         elm = _xbt_dynar_elm(dynar, --q);
667       }
668       if (elm != elmi) {
669         memcpy(tmp,  elm,  elmsize);
670         memcpy(elm,  elmi, elmsize);
671         memcpy(elmi, tmp,  elmsize);
672       }
673     }
674   }
675   xbt_free(tmp);
676 }
677
678 /** @brief Transform a dynar into a NULL terminated array. 
679  *
680  *  \param dynar the dynar to transform
681  *  \return pointer to the first element of the array
682  *
683  *  Note: The dynar won't be usable afterwards.
684  */
685 XBT_INLINE void *xbt_dynar_to_array(xbt_dynar_t dynar)
686 {
687   void *res;
688   xbt_dynar_shrink(dynar, 1);
689   memset(xbt_dynar_push_ptr(dynar), 0, dynar->elmsize);
690   res = dynar->data;
691   free(dynar);
692   return res;
693 }
694
695 /** @brief Compare two dynars
696  *
697  *  \param d1 first dynar to compare
698  *  \param d2 second dynar to compare
699  *  \param compar function to use to compare elements
700  *  \return 0 if d1 and d2 are equal and 1 if not equal
701  *
702  *  d1 and d2 should be dynars of pointers. The compar function takes two
703  *  elements and returns 0 when they are considered equal, and a value different
704  *  of zero when they are considered different. Finally, d2 is destroyed
705  *  afterwards.
706  */
707 int xbt_dynar_compare(xbt_dynar_t d1, xbt_dynar_t d2,
708           int(*compar)(const void *, const void *))
709 {
710   int i ;
711   int size;
712   if((!d1) && (!d2)) return 0;
713   if((!d1) || (!d2))
714   {
715     XBT_DEBUG("NULL dynar d1=%p d2=%p",d1,d2);
716     xbt_dynar_free(&d2);
717     return 1;
718   }
719   if((d1->elmsize)!=(d2->elmsize))
720   {
721     XBT_DEBUG("Size of elmsize d1=%lu d2=%lu",d1->elmsize,d2->elmsize);
722     xbt_dynar_free(&d2);
723     return 1; // xbt_die
724   }
725   if(xbt_dynar_length(d1) != xbt_dynar_length(d2))
726   {
727     XBT_DEBUG("Size of dynar d1=%lu d2=%lu",xbt_dynar_length(d1),xbt_dynar_length(d2));
728     xbt_dynar_free(&d2);
729     return 1;
730   }
731
732   size = xbt_dynar_length(d1);
733   for(i=0;i<size;i++)
734   {
735     void *data1 = xbt_dynar_get_as(d1, i, void *);
736     void *data2 = xbt_dynar_get_as(d2, i, void *);
737     XBT_DEBUG("link[%d] d1=%p d2=%p",i,data1,data2);
738     if(compar(data1,data2)){
739       xbt_dynar_free(&d2);
740       return 1;
741     }
742   }
743   xbt_dynar_free(&d2);
744   return 0;
745 }
746
747 #ifdef SIMGRID_TEST
748
749 #define NB_ELEM 5000
750
751 XBT_TEST_SUITE("dynar", "Dynar data container");
752 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_dyn);
753
754 XBT_TEST_UNIT("int", test_dynar_int, "Dynars of integers")
755 {
756   /* Vars_decl [doxygen cruft] */
757   xbt_dynar_t d;
758   int i, cpt;
759   unsigned int cursor;
760   int *iptr;
761
762   xbt_test_add("==== Traverse the empty dynar");
763   d = xbt_dynar_new(sizeof(int), NULL);
764   xbt_dynar_foreach(d, cursor, i) {
765     xbt_die( "Damnit, there is something in the empty dynar");
766   }
767   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
768   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
769   /* in your code is naturally the way to go outside a regression test */
770
771   xbt_test_add
772       ("==== Push %d int, set them again 3 times, traverse them, shift them",
773        NB_ELEM);
774   /* Populate_ints [doxygen cruft] */
775   /* 1. Populate the dynar */
776   d = xbt_dynar_new(sizeof(int), NULL);
777   for (cpt = 0; cpt < NB_ELEM; cpt++) {
778     xbt_dynar_push_as(d, int, cpt);     /* This is faster (and possible only with scalars) */
779     /* xbt_dynar_push(d,&cpt);       This would also work */
780     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
781   }
782
783   /* 2. Traverse manually the dynar */
784   for (cursor = 0; cursor < NB_ELEM; cursor++) {
785     iptr = xbt_dynar_get_ptr(d, cursor);
786     xbt_test_assert(cursor == *iptr,
787                      "The retrieved value is not the same than the injected one (%u!=%d)",
788                      cursor, cpt);
789   }
790
791   /* 3. Traverse the dynar using the neat macro to that extend */
792   xbt_dynar_foreach(d, cursor, cpt) {
793     xbt_test_assert(cursor == cpt,
794                      "The retrieved value is not the same than the injected one (%u!=%d)",
795                      cursor, cpt);
796   }
797   /* end_of_traversal */
798
799   for (cpt = 0; cpt < NB_ELEM; cpt++)
800     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
801
802   for (cpt = 0; cpt < NB_ELEM; cpt++)
803     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
804   /*     xbt_dynar_set(d,cpt,&cpt); */
805
806   for (cpt = 0; cpt < NB_ELEM; cpt++)
807     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
808
809   cpt = 0;
810   xbt_dynar_foreach(d, cursor, i) {
811     xbt_test_assert(i == cpt,
812                      "The retrieved value is not the same than the injected one (%d!=%d)",
813                      i, cpt);
814     cpt++;
815   }
816   xbt_test_assert(cpt == NB_ELEM,
817                    "Cannot retrieve my %d values. Last got one is %d",
818                    NB_ELEM, cpt);
819
820   /* shifting [doxygen cruft] */
821   /* 4. Shift all the values */
822   for (cpt = 0; cpt < NB_ELEM; cpt++) {
823     xbt_dynar_shift(d, &i);
824     xbt_test_assert(i == cpt,
825                      "The retrieved value is not the same than the injected one (%d!=%d)",
826                      i, cpt);
827     xbt_test_log("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
828   }
829
830   /* 5. Free the resources */
831   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
832   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
833   /* in your code is naturally the way to go outside a regression test */
834
835   xbt_test_add("==== Unshift/pop %d int", NB_ELEM);
836   d = xbt_dynar_new(sizeof(int), NULL);
837   for (cpt = 0; cpt < NB_ELEM; cpt++) {
838     xbt_dynar_unshift(d, &cpt);
839     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
840   }
841   for (cpt = 0; cpt < NB_ELEM; cpt++) {
842     i = xbt_dynar_pop_as(d, int);
843     xbt_test_assert(i == cpt,
844                      "The retrieved value is not the same than the injected one (%d!=%d)",
845                      i, cpt);
846     xbt_test_log("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
847   }
848   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
849   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
850   /* in your code is naturally the way to go outside a regression test */
851
852
853   xbt_test_add
854       ("==== Push %d int, insert 1000 int in the middle, shift everything",
855        NB_ELEM);
856   d = xbt_dynar_new(sizeof(int), NULL);
857   for (cpt = 0; cpt < NB_ELEM; cpt++) {
858     xbt_dynar_push_as(d, int, cpt);
859     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
860   }
861   for (cpt = 0; cpt < NB_ELEM/5; cpt++) {
862     xbt_dynar_insert_at_as(d, NB_ELEM/2, int, cpt);
863     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
864   }
865
866   for (cpt = 0; cpt < NB_ELEM/2; cpt++) {
867     xbt_dynar_shift(d, &i);
868     xbt_test_assert(i == cpt,
869                      "The retrieved value is not the same than the injected one at the begining (%d!=%d)",
870                      i, cpt);
871     XBT_DEBUG("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
872   }
873   for (cpt = 999; cpt >= 0; cpt--) {
874     xbt_dynar_shift(d, &i);
875     xbt_test_assert(i == cpt,
876                      "The retrieved value is not the same than the injected one in the middle (%d!=%d)",
877                      i, cpt);
878   }
879   for (cpt = 2500; cpt < NB_ELEM; cpt++) {
880     xbt_dynar_shift(d, &i);
881     xbt_test_assert(i == cpt,
882                      "The retrieved value is not the same than the injected one at the end (%d!=%d)",
883                      i, cpt);
884   }
885   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
886   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
887   /* in your code is naturally the way to go outside a regression test */
888
889   xbt_test_add("==== Push %d int, remove 2000-4000. free the rest",
890                 NB_ELEM);
891   d = xbt_dynar_new(sizeof(int), NULL);
892   for (cpt = 0; cpt < NB_ELEM; cpt++)
893     xbt_dynar_push_as(d, int, cpt);
894
895   for (cpt = 2000; cpt < 4000; cpt++) {
896     xbt_dynar_remove_at(d, 2000, &i);
897     xbt_test_assert(i == cpt,
898                      "Remove a bad value. Got %d, expected %d", i, cpt);
899     XBT_DEBUG("remove %d, length=%lu", cpt, xbt_dynar_length(d));
900   }
901   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
902   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
903   /* in your code is naturally the way to go outside a regression test */
904 }
905
906 /*******************************************************************************/
907 /*******************************************************************************/
908 /*******************************************************************************/
909 XBT_TEST_UNIT("insert",test_dynar_insert,"Using the xbt_dynar_insert and xbt_dynar_remove functions")
910 {
911   xbt_dynar_t d = xbt_dynar_new(sizeof(unsigned int), NULL);
912   unsigned int cursor;
913   int cpt;
914
915   xbt_test_add("==== Insert %d int, traverse them, remove them",NB_ELEM);
916   /* Populate_ints [doxygen cruft] */
917   /* 1. Populate the dynar */
918   for (cpt = 0; cpt < NB_ELEM; cpt++) {
919     xbt_dynar_insert_at(d, cpt, &cpt);
920     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
921   }
922
923   /* 3. Traverse the dynar */
924   xbt_dynar_foreach(d, cursor, cpt) {
925     xbt_test_assert(cursor == cpt,
926                      "The retrieved value is not the same than the injected one (%u!=%d)",
927                      cursor, cpt);
928   }
929   /* end_of_traversal */
930
931   /* Re-fill with the same values using set_as (and re-verify) */
932   for (cpt = 0; cpt < NB_ELEM; cpt++)
933     xbt_dynar_set_as(d, cpt, int, cpt);
934   xbt_dynar_foreach(d, cursor, cpt)
935     xbt_test_assert(cursor == cpt,
936                      "The retrieved value is not the same than the injected one (%u!=%d)",
937                      cursor, cpt);
938
939   for (cpt = 0; cpt < NB_ELEM; cpt++) {
940     int val;
941     xbt_dynar_remove_at(d,0,&val);
942     xbt_test_assert(cpt == val,
943                      "The retrieved value is not the same than the injected one (%u!=%d)",
944                      cursor, cpt);
945   }
946   xbt_test_assert(xbt_dynar_is_empty(d),
947                    "There is still %lu elements in the dynar after removing everything",
948                    xbt_dynar_length(d));
949   xbt_dynar_free(&d);
950
951   /* ********************* */
952   xbt_test_add("==== Insert %d int in reverse order, traverse them, remove them",NB_ELEM);
953   d = xbt_dynar_new(sizeof(int), NULL);
954   for (cpt = NB_ELEM-1; cpt >=0; cpt--) {
955     xbt_dynar_replace(d, cpt, &cpt);
956     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
957   }
958
959   /* 3. Traverse the dynar */
960   xbt_dynar_foreach(d, cursor, cpt) {
961     xbt_test_assert(cursor == cpt,
962                      "The retrieved value is not the same than the injected one (%u!=%d)",
963                      cursor, cpt);
964   }
965   /* end_of_traversal */
966
967   for (cpt =NB_ELEM-1; cpt >=0; cpt--) {
968     int val;
969     xbt_dynar_remove_at(d,xbt_dynar_length(d)-1,&val);
970     xbt_test_assert(cpt == val,
971                      "The retrieved value is not the same than the injected one (%u!=%d)",
972                      cursor, cpt);
973   }
974   xbt_test_assert(xbt_dynar_is_empty(d),
975                    "There is still %lu elements in the dynar after removing everything",
976                    xbt_dynar_length(d));
977   xbt_dynar_free(&d);
978 }
979
980 /*******************************************************************************/
981 /*******************************************************************************/
982 /*******************************************************************************/
983 XBT_TEST_UNIT("double", test_dynar_double, "Dynars of doubles")
984 {
985   xbt_dynar_t d;
986   int cpt;
987   unsigned int cursor;
988   double d1, d2;
989
990   xbt_test_add("==== Traverse the empty dynar");
991   d = xbt_dynar_new(sizeof(int), NULL);
992   xbt_dynar_foreach(d, cursor, cpt) {
993     xbt_test_assert(FALSE,
994                      "Damnit, there is something in the empty dynar");
995   }
996   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
997   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
998   /* in your code is naturally the way to go outside a regression test */
999
1000   xbt_test_add("==== Push/shift 5000 doubles");
1001   d = xbt_dynar_new(sizeof(double), NULL);
1002   for (cpt = 0; cpt < 5000; cpt++) {
1003     d1 = (double) cpt;
1004     xbt_dynar_push(d, &d1);
1005   }
1006   xbt_dynar_foreach(d, cursor, d2) {
1007     d1 = (double) cursor;
1008     xbt_test_assert(d1 == d2,
1009                      "The retrieved value is not the same than the injected one (%f!=%f)",
1010                      d1, d2);
1011   }
1012   for (cpt = 0; cpt < 5000; cpt++) {
1013     d1 = (double) cpt;
1014     xbt_dynar_shift(d, &d2);
1015     xbt_test_assert(d1 == d2,
1016                      "The retrieved value is not the same than the injected one (%f!=%f)",
1017                      d1, d2);
1018   }
1019   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1020   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1021   /* in your code is naturally the way to go outside a regression test */
1022
1023   xbt_test_add("==== Unshift/pop 5000 doubles");
1024   d = xbt_dynar_new(sizeof(double), NULL);
1025   for (cpt = 0; cpt < 5000; cpt++) {
1026     d1 = (double) cpt;
1027     xbt_dynar_unshift(d, &d1);
1028   }
1029   for (cpt = 0; cpt < 5000; cpt++) {
1030     d1 = (double) cpt;
1031     xbt_dynar_pop(d, &d2);
1032     xbt_test_assert(d1 == d2,
1033                      "The retrieved value is not the same than the injected one (%f!=%f)",
1034                      d1, d2);
1035   }
1036   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1037   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1038   /* in your code is naturally the way to go outside a regression test */
1039
1040
1041
1042   xbt_test_add
1043       ("==== Push 5000 doubles, insert 1000 doubles in the middle, shift everything");
1044   d = xbt_dynar_new(sizeof(double), NULL);
1045   for (cpt = 0; cpt < 5000; cpt++) {
1046     d1 = (double) cpt;
1047     xbt_dynar_push(d, &d1);
1048   }
1049   for (cpt = 0; cpt < 1000; cpt++) {
1050     d1 = (double) cpt;
1051     xbt_dynar_insert_at(d, 2500, &d1);
1052   }
1053
1054   for (cpt = 0; cpt < 2500; cpt++) {
1055     d1 = (double) cpt;
1056     xbt_dynar_shift(d, &d2);
1057     xbt_test_assert(d1 == d2,
1058                      "The retrieved value is not the same than the injected one at the begining (%f!=%f)",
1059                      d1, d2);
1060     XBT_DEBUG("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
1061   }
1062   for (cpt = 999; cpt >= 0; cpt--) {
1063     d1 = (double) cpt;
1064     xbt_dynar_shift(d, &d2);
1065     xbt_test_assert(d1 == d2,
1066                      "The retrieved value is not the same than the injected one in the middle (%f!=%f)",
1067                      d1, d2);
1068   }
1069   for (cpt = 2500; cpt < 5000; cpt++) {
1070     d1 = (double) cpt;
1071     xbt_dynar_shift(d, &d2);
1072     xbt_test_assert(d1 == d2,
1073                      "The retrieved value is not the same than the injected one at the end (%f!=%f)",
1074                      d1, d2);
1075   }
1076   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1077   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1078   /* in your code is naturally the way to go outside a regression test */
1079
1080
1081   xbt_test_add("==== Push 5000 double, remove 2000-4000. free the rest");
1082   d = xbt_dynar_new(sizeof(double), NULL);
1083   for (cpt = 0; cpt < 5000; cpt++) {
1084     d1 = (double) cpt;
1085     xbt_dynar_push(d, &d1);
1086   }
1087   for (cpt = 2000; cpt < 4000; cpt++) {
1088     d1 = (double) cpt;
1089     xbt_dynar_remove_at(d, 2000, &d2);
1090     xbt_test_assert(d1 == d2,
1091                      "Remove a bad value. Got %f, expected %f", d2, d1);
1092   }
1093   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1094   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1095   /* in your code is naturally the way to go outside a regression test */
1096 }
1097
1098
1099 /* doxygen_string_cruft */
1100
1101 /*******************************************************************************/
1102 /*******************************************************************************/
1103 /*******************************************************************************/
1104 XBT_TEST_UNIT("string", test_dynar_string, "Dynars of strings")
1105 {
1106   xbt_dynar_t d;
1107   int cpt;
1108   unsigned int iter;
1109   char buf[1024];
1110   char *s1, *s2;
1111
1112   xbt_test_add("==== Traverse the empty dynar");
1113   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1114   xbt_dynar_foreach(d, iter, s1) {
1115     xbt_test_assert(FALSE,
1116                      "Damnit, there is something in the empty dynar");
1117   }
1118   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1119   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1120   /* in your code is naturally the way to go outside a regression test */
1121
1122   xbt_test_add("==== Push %d strings, set them again 3 times, shift them",
1123                 NB_ELEM);
1124   /* Populate_str [doxygen cruft] */
1125   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1126   /* 1. Populate the dynar */
1127   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1128     sprintf(buf, "%d", cpt);
1129     s1 = strdup(buf);
1130     xbt_dynar_push(d, &s1);
1131   }
1132   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1133     sprintf(buf, "%d", cpt);
1134     s1 = strdup(buf);
1135     xbt_dynar_replace(d, cpt, &s1);
1136   }
1137   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1138     sprintf(buf, "%d", cpt);
1139     s1 = strdup(buf);
1140     xbt_dynar_replace(d, cpt, &s1);
1141   }
1142   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1143     sprintf(buf, "%d", cpt);
1144     s1 = strdup(buf);
1145     xbt_dynar_replace(d, cpt, &s1);
1146   }
1147   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1148     sprintf(buf, "%d", cpt);
1149     xbt_dynar_shift(d, &s2);
1150     xbt_test_assert(!strcmp(buf, s2),
1151                      "The retrieved value is not the same than the injected one (%s!=%s)",
1152                      buf, s2);
1153     free(s2);
1154   }
1155   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1156   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1157   /* in your code is naturally the way to go outside a regression test */
1158
1159   xbt_test_add("==== Unshift, traverse and pop %d strings", NB_ELEM);
1160   d = xbt_dynar_new(sizeof(char **), &xbt_free_ref);
1161   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1162     sprintf(buf, "%d", cpt);
1163     s1 = strdup(buf);
1164     xbt_dynar_unshift(d, &s1);
1165   }
1166   /* 2. Traverse the dynar with the macro */
1167   xbt_dynar_foreach(d, iter, s1) {
1168     sprintf(buf, "%u", NB_ELEM - iter - 1);
1169     xbt_test_assert(!strcmp(buf, s1),
1170                      "The retrieved value is not the same than the injected one (%s!=%s)",
1171                      buf, s1);
1172   }
1173   /* 3. Traverse the dynar with the macro */
1174   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1175     sprintf(buf, "%d", cpt);
1176     xbt_dynar_pop(d, &s2);
1177     xbt_test_assert(!strcmp(buf, s2),
1178                      "The retrieved value is not the same than the injected one (%s!=%s)",
1179                      buf, s2);
1180     free(s2);
1181   }
1182   /* 4. Free the resources */
1183   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1184   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1185   /* in your code is naturally the way to go outside a regression test */
1186
1187
1188   xbt_test_add
1189       ("==== Push %d strings, insert %d strings in the middle, shift everything",
1190        NB_ELEM, NB_ELEM / 5);
1191   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1192   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1193     sprintf(buf, "%d", cpt);
1194     s1 = strdup(buf);
1195     xbt_dynar_push(d, &s1);
1196   }
1197   for (cpt = 0; cpt < NB_ELEM / 5; cpt++) {
1198     sprintf(buf, "%d", cpt);
1199     s1 = strdup(buf);
1200     xbt_dynar_insert_at(d, NB_ELEM / 2, &s1);
1201   }
1202
1203   for (cpt = 0; cpt < NB_ELEM / 2; cpt++) {
1204     sprintf(buf, "%d", cpt);
1205     xbt_dynar_shift(d, &s2);
1206     xbt_test_assert(!strcmp(buf, s2),
1207                      "The retrieved value is not the same than the injected one at the begining (%s!=%s)",
1208                      buf, s2);
1209     free(s2);
1210   }
1211   for (cpt = (NB_ELEM / 5) - 1; cpt >= 0; cpt--) {
1212     sprintf(buf, "%d", cpt);
1213     xbt_dynar_shift(d, &s2);
1214     xbt_test_assert(!strcmp(buf, s2),
1215                      "The retrieved value is not the same than the injected one in the middle (%s!=%s)",
1216                      buf, s2);
1217     free(s2);
1218   }
1219   for (cpt = NB_ELEM / 2; cpt < NB_ELEM; cpt++) {
1220     sprintf(buf, "%d", cpt);
1221     xbt_dynar_shift(d, &s2);
1222     xbt_test_assert(!strcmp(buf, s2),
1223                      "The retrieved value is not the same than the injected one at the end (%s!=%s)",
1224                      buf, s2);
1225     free(s2);
1226   }
1227   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1228   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1229   /* in your code is naturally the way to go outside a regression test */
1230
1231
1232   xbt_test_add("==== Push %d strings, remove %d-%d. free the rest",
1233                 NB_ELEM, 2 * (NB_ELEM / 5), 4 * (NB_ELEM / 5));
1234   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1235   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1236     sprintf(buf, "%d", cpt);
1237     s1 = strdup(buf);
1238     xbt_dynar_push(d, &s1);
1239   }
1240   for (cpt = 2 * (NB_ELEM / 5); cpt < 4 * (NB_ELEM / 5); cpt++) {
1241     sprintf(buf, "%d", cpt);
1242     xbt_dynar_remove_at(d, 2 * (NB_ELEM / 5), &s2);
1243     xbt_test_assert(!strcmp(buf, s2),
1244                      "Remove a bad value. Got %s, expected %s", s2, buf);
1245     free(s2);
1246   }
1247   xbt_dynar_free(&d);           /* end_of_doxygen */
1248 }
1249 #endif                          /* SIMGRID_TEST */