Logo AND Algorithmique Numérique Distribuée

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