Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix twice call of xbt_preinit and xbt_postinit
[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   xbt_dynar_shrink(dynar, 1);
709   memset(xbt_dynar_push_ptr(dynar), 0, dynar->elmsize);
710   res = dynar->data;
711   if (dynar->mutex)
712     xbt_mutex_destroy(dynar->mutex);
713   free(dynar);
714   return res;
715 }
716
717 /*
718  * Return 0 if d1 and d2 are equal and 1 if not equal
719  */
720 XBT_INLINE int xbt_dynar_compare(xbt_dynar_t d1, xbt_dynar_t d2,
721                                         int(*compar)(const void *, const void *))
722 {
723         int i ;
724         int size;
725         if((!d1) && (!d2)) return 0;
726         if((!d1) || (!d2))
727         {
728                 XBT_DEBUG("NULL dynar d1=%p d2=%p",d1,d2);
729                 xbt_dynar_free(&d2);
730                 return 1;
731         }
732         if((d1->elmsize)!=(d2->elmsize))
733         {
734                 XBT_DEBUG("Size of elmsize d1=%ld d2=%ld",d1->elmsize,d2->elmsize);
735                 xbt_dynar_free(&d2);
736                 return 1; // xbt_die
737         }
738         if(xbt_dynar_length(d1) != xbt_dynar_length(d2))
739         {
740                 XBT_DEBUG("Size of dynar d1=%ld d2=%ld",xbt_dynar_length(d1),xbt_dynar_length(d2));
741                 xbt_dynar_free(&d2);
742                 return 1;
743         }
744
745         size = xbt_dynar_length(d1);
746         for(i=0;i<size;i++)
747         {
748                 void *data1 = xbt_dynar_get_as(d1, i, void *);
749                 void *data2 = xbt_dynar_get_as(d2, i, void *);
750                 XBT_DEBUG("link[%d] d1=%p d2=%p",i,data1,data2);
751                 if(compar(data1,data2)){
752                         xbt_dynar_free(&d2);
753                         return 1;
754                 }
755         }
756         xbt_dynar_free(&d2);
757         return 0;
758 }
759
760 #ifdef SIMGRID_TEST
761
762 #define NB_ELEM 5000
763
764 XBT_TEST_SUITE("dynar", "Dynar data container");
765 XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
766 XBT_LOG_DEFAULT_CATEGORY(xbt_dyn);
767
768 XBT_TEST_UNIT("int", test_dynar_int, "Dynars of integers")
769 {
770   /* Vars_decl [doxygen cruft] */
771   xbt_dynar_t d;
772   int i, cpt;
773   unsigned int cursor;
774   int *iptr;
775
776   xbt_test_add("==== Traverse the empty dynar");
777   d = xbt_dynar_new(sizeof(int), NULL);
778   xbt_dynar_foreach(d, cursor, i) {
779     xbt_die( "Damnit, there is something in the empty dynar");
780   }
781   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
782   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
783   /* in your code is naturally the way to go outside a regression test */
784
785   xbt_test_add
786       ("==== Push %d int, set them again 3 times, traverse them, shift them",
787        NB_ELEM);
788   /* Populate_ints [doxygen cruft] */
789   /* 1. Populate the dynar */
790   d = xbt_dynar_new(sizeof(int), NULL);
791   for (cpt = 0; cpt < NB_ELEM; cpt++) {
792     xbt_dynar_push_as(d, int, cpt);     /* This is faster (and possible only with scalars) */
793     /* xbt_dynar_push(d,&cpt);       This would also work */
794     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
795   }
796
797   /* 2. Traverse manually the dynar */
798   for (cursor = 0; cursor < NB_ELEM; cursor++) {
799     iptr = xbt_dynar_get_ptr(d, cursor);
800     xbt_test_assert(cursor == *iptr,
801                      "The retrieved value is not the same than the injected one (%d!=%d)",
802                      cursor, cpt);
803   }
804
805   /* 3. Traverse the dynar using the neat macro to that extend */
806   xbt_dynar_foreach(d, cursor, cpt) {
807     xbt_test_assert(cursor == cpt,
808                      "The retrieved value is not the same than the injected one (%d!=%d)",
809                      cursor, cpt);
810   }
811   /* end_of_traversal */
812
813   for (cpt = 0; cpt < NB_ELEM; cpt++)
814     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
815
816   for (cpt = 0; cpt < NB_ELEM; cpt++)
817     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
818   /*     xbt_dynar_set(d,cpt,&cpt); */
819
820   for (cpt = 0; cpt < NB_ELEM; cpt++)
821     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
822
823   cpt = 0;
824   xbt_dynar_foreach(d, cursor, i) {
825     xbt_test_assert(i == cpt,
826                      "The retrieved value is not the same than the injected one (%d!=%d)",
827                      i, cpt);
828     cpt++;
829   }
830   xbt_test_assert(cpt == NB_ELEM,
831                    "Cannot retrieve my %d values. Last got one is %d",
832                    NB_ELEM, cpt);
833
834   /* shifting [doxygen cruft] */
835   /* 4. Shift all the values */
836   for (cpt = 0; cpt < NB_ELEM; cpt++) {
837     xbt_dynar_shift(d, &i);
838     xbt_test_assert(i == cpt,
839                      "The retrieved value is not the same than the injected one (%d!=%d)",
840                      i, cpt);
841     xbt_test_log("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
842   }
843
844   /* 5. Free the resources */
845   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
846   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
847   /* in your code is naturally the way to go outside a regression test */
848
849   xbt_test_add("==== Unshift/pop %d int", NB_ELEM);
850   d = xbt_dynar_new(sizeof(int), NULL);
851   for (cpt = 0; cpt < NB_ELEM; cpt++) {
852     xbt_dynar_unshift(d, &cpt);
853     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
854   }
855   for (cpt = 0; cpt < NB_ELEM; cpt++) {
856     i = xbt_dynar_pop_as(d, int);
857     xbt_test_assert(i == cpt,
858                      "The retrieved value is not the same than the injected one (%d!=%d)",
859                      i, cpt);
860     xbt_test_log("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
861   }
862   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
863   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
864   /* in your code is naturally the way to go outside a regression test */
865
866
867   xbt_test_add
868       ("==== Push %d int, insert 1000 int in the middle, shift everything",
869        NB_ELEM);
870   d = xbt_dynar_new(sizeof(int), NULL);
871   for (cpt = 0; cpt < NB_ELEM; cpt++) {
872     xbt_dynar_push_as(d, int, cpt);
873     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
874   }
875   for (cpt = 0; cpt < NB_ELEM/5; cpt++) {
876     xbt_dynar_insert_at_as(d, NB_ELEM/2, int, cpt);
877     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
878   }
879
880   for (cpt = 0; cpt < NB_ELEM/2; cpt++) {
881     xbt_dynar_shift(d, &i);
882     xbt_test_assert(i == cpt,
883                      "The retrieved value is not the same than the injected one at the begining (%d!=%d)",
884                      i, cpt);
885     XBT_DEBUG("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
886   }
887   for (cpt = 999; cpt >= 0; cpt--) {
888     xbt_dynar_shift(d, &i);
889     xbt_test_assert(i == cpt,
890                      "The retrieved value is not the same than the injected one in the middle (%d!=%d)",
891                      i, cpt);
892   }
893   for (cpt = 2500; cpt < NB_ELEM; cpt++) {
894     xbt_dynar_shift(d, &i);
895     xbt_test_assert(i == cpt,
896                      "The retrieved value is not the same than the injected one at the end (%d!=%d)",
897                      i, cpt);
898   }
899   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
900   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
901   /* in your code is naturally the way to go outside a regression test */
902
903   xbt_test_add("==== Push %d int, remove 2000-4000. free the rest",
904                 NB_ELEM);
905   d = xbt_dynar_new(sizeof(int), NULL);
906   for (cpt = 0; cpt < NB_ELEM; cpt++)
907     xbt_dynar_push_as(d, int, cpt);
908
909   for (cpt = 2000; cpt < 4000; cpt++) {
910     xbt_dynar_remove_at(d, 2000, &i);
911     xbt_test_assert(i == cpt,
912                      "Remove a bad value. Got %d, expected %d", i, cpt);
913     XBT_DEBUG("remove %d, length=%lu", cpt, xbt_dynar_length(d));
914   }
915   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
916   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
917   /* in your code is naturally the way to go outside a regression test */
918 }
919
920 /*******************************************************************************/
921 /*******************************************************************************/
922 /*******************************************************************************/
923 XBT_TEST_UNIT("insert",test_dynar_insert,"Using the xbt_dynar_insert and xbt_dynar_remove functions")
924 {
925   xbt_dynar_t d = xbt_dynar_new(sizeof(unsigned int), NULL);
926   unsigned int cursor;
927   int cpt;
928
929   xbt_test_add("==== Insert %d int, traverse them, remove them",NB_ELEM);
930   /* Populate_ints [doxygen cruft] */
931   /* 1. Populate the dynar */
932   for (cpt = 0; cpt < NB_ELEM; cpt++) {
933     xbt_dynar_insert_at(d, cpt, &cpt);
934     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
935   }
936
937   /* 3. Traverse the dynar */
938   xbt_dynar_foreach(d, cursor, cpt) {
939     xbt_test_assert(cursor == cpt,
940                      "The retrieved value is not the same than the injected one (%d!=%d)",
941                      cursor, cpt);
942   }
943   /* end_of_traversal */
944
945   /* Re-fill with the same values using set_as (and re-verify) */
946   for (cpt = 0; cpt < NB_ELEM; cpt++)
947     xbt_dynar_set_as(d, cpt, int, cpt);
948   xbt_dynar_foreach(d, cursor, cpt)
949     xbt_test_assert(cursor == cpt,
950                      "The retrieved value is not the same than the injected one (%d!=%d)",
951                      cursor, cpt);
952
953   for (cpt = 0; cpt < NB_ELEM; cpt++) {
954     int val;
955     xbt_dynar_remove_at(d,0,&val);
956     xbt_test_assert(cpt == val,
957                      "The retrieved value is not the same than the injected one (%d!=%d)",
958                      cursor, cpt);
959   }
960   xbt_test_assert(xbt_dynar_is_empty(d),
961                    "There is still %lu elements in the dynar after removing everything",
962                    xbt_dynar_length(d));
963   xbt_dynar_free(&d);
964
965   /* ********************* */
966   xbt_test_add("==== Insert %d int in reverse order, traverse them, remove them",NB_ELEM);
967   d = xbt_dynar_new(sizeof(int), NULL);
968   for (cpt = NB_ELEM-1; cpt >=0; cpt--) {
969     xbt_dynar_replace(d, cpt, &cpt);
970     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
971   }
972
973   /* 3. Traverse the dynar */
974   xbt_dynar_foreach(d, cursor, cpt) {
975     xbt_test_assert(cursor == cpt,
976                      "The retrieved value is not the same than the injected one (%d!=%d)",
977                      cursor, cpt);
978   }
979   /* end_of_traversal */
980
981   for (cpt =NB_ELEM-1; cpt >=0; cpt--) {
982     int val;
983     xbt_dynar_remove_at(d,xbt_dynar_length(d)-1,&val);
984     xbt_test_assert(cpt == val,
985                      "The retrieved value is not the same than the injected one (%d!=%d)",
986                      cursor, cpt);
987   }
988   xbt_test_assert(xbt_dynar_is_empty(d),
989                    "There is still %lu elements in the dynar after removing everything",
990                    xbt_dynar_length(d));
991   xbt_dynar_free(&d);
992 }
993
994 /*******************************************************************************/
995 /*******************************************************************************/
996 /*******************************************************************************/
997 XBT_TEST_UNIT("double", test_dynar_double, "Dynars of doubles")
998 {
999   xbt_dynar_t d;
1000   int cpt;
1001   unsigned int cursor;
1002   double d1, d2;
1003
1004   xbt_test_add("==== Traverse the empty dynar");
1005   d = xbt_dynar_new(sizeof(int), NULL);
1006   xbt_dynar_foreach(d, cursor, cpt) {
1007     xbt_test_assert(FALSE,
1008                      "Damnit, there is something in the empty dynar");
1009   }
1010   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1011   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1012   /* in your code is naturally the way to go outside a regression test */
1013
1014   xbt_test_add("==== Push/shift 5000 doubles");
1015   d = xbt_dynar_new(sizeof(double), NULL);
1016   for (cpt = 0; cpt < 5000; cpt++) {
1017     d1 = (double) cpt;
1018     xbt_dynar_push(d, &d1);
1019   }
1020   xbt_dynar_foreach(d, cursor, d2) {
1021     d1 = (double) cursor;
1022     xbt_test_assert(d1 == d2,
1023                      "The retrieved value is not the same than the injected one (%f!=%f)",
1024                      d1, d2);
1025   }
1026   for (cpt = 0; cpt < 5000; cpt++) {
1027     d1 = (double) cpt;
1028     xbt_dynar_shift(d, &d2);
1029     xbt_test_assert(d1 == d2,
1030                      "The retrieved value is not the same than the injected one (%f!=%f)",
1031                      d1, d2);
1032   }
1033   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1034   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1035   /* in your code is naturally the way to go outside a regression test */
1036
1037   xbt_test_add("==== Unshift/pop 5000 doubles");
1038   d = xbt_dynar_new(sizeof(double), NULL);
1039   for (cpt = 0; cpt < 5000; cpt++) {
1040     d1 = (double) cpt;
1041     xbt_dynar_unshift(d, &d1);
1042   }
1043   for (cpt = 0; cpt < 5000; cpt++) {
1044     d1 = (double) cpt;
1045     xbt_dynar_pop(d, &d2);
1046     xbt_test_assert(d1 == d2,
1047                      "The retrieved value is not the same than the injected one (%f!=%f)",
1048                      d1, d2);
1049   }
1050   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1051   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1052   /* in your code is naturally the way to go outside a regression test */
1053
1054
1055
1056   xbt_test_add
1057       ("==== Push 5000 doubles, insert 1000 doubles in the middle, shift everything");
1058   d = xbt_dynar_new(sizeof(double), NULL);
1059   for (cpt = 0; cpt < 5000; cpt++) {
1060     d1 = (double) cpt;
1061     xbt_dynar_push(d, &d1);
1062   }
1063   for (cpt = 0; cpt < 1000; cpt++) {
1064     d1 = (double) cpt;
1065     xbt_dynar_insert_at(d, 2500, &d1);
1066   }
1067
1068   for (cpt = 0; cpt < 2500; cpt++) {
1069     d1 = (double) cpt;
1070     xbt_dynar_shift(d, &d2);
1071     xbt_test_assert(d1 == d2,
1072                      "The retrieved value is not the same than the injected one at the begining (%f!=%f)",
1073                      d1, d2);
1074     XBT_DEBUG("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
1075   }
1076   for (cpt = 999; cpt >= 0; cpt--) {
1077     d1 = (double) cpt;
1078     xbt_dynar_shift(d, &d2);
1079     xbt_test_assert(d1 == d2,
1080                      "The retrieved value is not the same than the injected one in the middle (%f!=%f)",
1081                      d1, d2);
1082   }
1083   for (cpt = 2500; cpt < 5000; cpt++) {
1084     d1 = (double) cpt;
1085     xbt_dynar_shift(d, &d2);
1086     xbt_test_assert(d1 == d2,
1087                      "The retrieved value is not the same than the injected one at the end (%f!=%f)",
1088                      d1, d2);
1089   }
1090   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1091   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1092   /* in your code is naturally the way to go outside a regression test */
1093
1094
1095   xbt_test_add("==== Push 5000 double, remove 2000-4000. free the rest");
1096   d = xbt_dynar_new(sizeof(double), NULL);
1097   for (cpt = 0; cpt < 5000; cpt++) {
1098     d1 = (double) cpt;
1099     xbt_dynar_push(d, &d1);
1100   }
1101   for (cpt = 2000; cpt < 4000; cpt++) {
1102     d1 = (double) cpt;
1103     xbt_dynar_remove_at(d, 2000, &d2);
1104     xbt_test_assert(d1 == d2,
1105                      "Remove a bad value. Got %f, expected %f", d2, d1);
1106   }
1107   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1108   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1109   /* in your code is naturally the way to go outside a regression test */
1110 }
1111
1112
1113 /* doxygen_string_cruft */
1114
1115 /*******************************************************************************/
1116 /*******************************************************************************/
1117 /*******************************************************************************/
1118 XBT_TEST_UNIT("string", test_dynar_string, "Dynars of strings")
1119 {
1120   xbt_dynar_t d;
1121   int cpt;
1122   unsigned int iter;
1123   char buf[1024];
1124   char *s1, *s2;
1125
1126   xbt_test_add("==== Traverse the empty dynar");
1127   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1128   xbt_dynar_foreach(d, iter, s1) {
1129     xbt_test_assert(FALSE,
1130                      "Damnit, there is something in the empty dynar");
1131   }
1132   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1133   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1134   /* in your code is naturally the way to go outside a regression test */
1135
1136   xbt_test_add("==== Push %d strings, set them again 3 times, shift them",
1137                 NB_ELEM);
1138   /* Populate_str [doxygen cruft] */
1139   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1140   /* 1. Populate the dynar */
1141   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1142     sprintf(buf, "%d", cpt);
1143     s1 = strdup(buf);
1144     xbt_dynar_push(d, &s1);
1145   }
1146   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1147     sprintf(buf, "%d", cpt);
1148     s1 = strdup(buf);
1149     xbt_dynar_replace(d, cpt, &s1);
1150   }
1151   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1152     sprintf(buf, "%d", cpt);
1153     s1 = strdup(buf);
1154     xbt_dynar_replace(d, cpt, &s1);
1155   }
1156   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1157     sprintf(buf, "%d", cpt);
1158     s1 = strdup(buf);
1159     xbt_dynar_replace(d, cpt, &s1);
1160   }
1161   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1162     sprintf(buf, "%d", cpt);
1163     xbt_dynar_shift(d, &s2);
1164     xbt_test_assert(!strcmp(buf, s2),
1165                      "The retrieved value is not the same than the injected one (%s!=%s)",
1166                      buf, s2);
1167     free(s2);
1168   }
1169   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1170   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1171   /* in your code is naturally the way to go outside a regression test */
1172
1173   xbt_test_add("==== Unshift, traverse and pop %d strings", NB_ELEM);
1174   d = xbt_dynar_new(sizeof(char **), &xbt_free_ref);
1175   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1176     sprintf(buf, "%d", cpt);
1177     s1 = strdup(buf);
1178     xbt_dynar_unshift(d, &s1);
1179   }
1180   /* 2. Traverse the dynar with the macro */
1181   xbt_dynar_foreach(d, iter, s1) {
1182     sprintf(buf, "%d", NB_ELEM - iter - 1);
1183     xbt_test_assert(!strcmp(buf, s1),
1184                      "The retrieved value is not the same than the injected one (%s!=%s)",
1185                      buf, s1);
1186   }
1187   /* 3. Traverse the dynar with the macro */
1188   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1189     sprintf(buf, "%d", cpt);
1190     xbt_dynar_pop(d, &s2);
1191     xbt_test_assert(!strcmp(buf, s2),
1192                      "The retrieved value is not the same than the injected one (%s!=%s)",
1193                      buf, s2);
1194     free(s2);
1195   }
1196   /* 4. Free the resources */
1197   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1198   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1199   /* in your code is naturally the way to go outside a regression test */
1200
1201
1202   xbt_test_add
1203       ("==== Push %d strings, insert %d strings in the middle, shift everything",
1204        NB_ELEM, NB_ELEM / 5);
1205   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1206   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1207     sprintf(buf, "%d", cpt);
1208     s1 = strdup(buf);
1209     xbt_dynar_push(d, &s1);
1210   }
1211   for (cpt = 0; cpt < NB_ELEM / 5; cpt++) {
1212     sprintf(buf, "%d", cpt);
1213     s1 = strdup(buf);
1214     xbt_dynar_insert_at(d, NB_ELEM / 2, &s1);
1215   }
1216
1217   for (cpt = 0; cpt < NB_ELEM / 2; cpt++) {
1218     sprintf(buf, "%d", cpt);
1219     xbt_dynar_shift(d, &s2);
1220     xbt_test_assert(!strcmp(buf, s2),
1221                      "The retrieved value is not the same than the injected one at the begining (%s!=%s)",
1222                      buf, s2);
1223     free(s2);
1224   }
1225   for (cpt = (NB_ELEM / 5) - 1; cpt >= 0; cpt--) {
1226     sprintf(buf, "%d", cpt);
1227     xbt_dynar_shift(d, &s2);
1228     xbt_test_assert(!strcmp(buf, s2),
1229                      "The retrieved value is not the same than the injected one in the middle (%s!=%s)",
1230                      buf, s2);
1231     free(s2);
1232   }
1233   for (cpt = NB_ELEM / 2; cpt < NB_ELEM; cpt++) {
1234     sprintf(buf, "%d", cpt);
1235     xbt_dynar_shift(d, &s2);
1236     xbt_test_assert(!strcmp(buf, s2),
1237                      "The retrieved value is not the same than the injected one at the end (%s!=%s)",
1238                      buf, s2);
1239     free(s2);
1240   }
1241   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1242   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1243   /* in your code is naturally the way to go outside a regression test */
1244
1245
1246   xbt_test_add("==== Push %d strings, remove %d-%d. free the rest",
1247                 NB_ELEM, 2 * (NB_ELEM / 5), 4 * (NB_ELEM / 5));
1248   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1249   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1250     sprintf(buf, "%d", cpt);
1251     s1 = strdup(buf);
1252     xbt_dynar_push(d, &s1);
1253   }
1254   for (cpt = 2 * (NB_ELEM / 5); cpt < 4 * (NB_ELEM / 5); cpt++) {
1255     sprintf(buf, "%d", cpt);
1256     xbt_dynar_remove_at(d, 2 * (NB_ELEM / 5), &s2);
1257     xbt_test_assert(!strcmp(buf, s2),
1258                      "Remove a bad value. Got %s, expected %s", s2, buf);
1259     free(s2);
1260   }
1261   xbt_dynar_free(&d);           /* end_of_doxygen */
1262 }
1263
1264
1265 /*******************************************************************************/
1266 /*******************************************************************************/
1267 /*******************************************************************************/
1268 #include "xbt/synchro.h"
1269 static void pusher_f(void *a)
1270 {
1271   xbt_dynar_t d = (xbt_dynar_t) a;
1272   int i;
1273   for (i = 0; i < 500; i++) {
1274     xbt_dynar_push(d, &i);
1275   }
1276 }
1277
1278 static void poper_f(void *a)
1279 {
1280   xbt_dynar_t d = (xbt_dynar_t) a;
1281   volatile int i;
1282   int data;
1283   xbt_ex_t e;
1284
1285   for (i = 0; i < 500; i++) {
1286     TRY {
1287       xbt_dynar_pop(d, &data);
1288     }
1289     CATCH(e) {
1290       if (e.category == bound_error) {
1291         xbt_ex_free(e);
1292         i--;
1293       } else {
1294         RETHROW;
1295       }
1296     }
1297   }
1298 }
1299
1300
1301 XBT_TEST_UNIT("synchronized int", test_dynar_sync_int, "Synchronized dynars of integers")
1302 {
1303   /* Vars_decl [doxygen cruft] */
1304   xbt_dynar_t d;
1305   xbt_thread_t pusher, poper;
1306
1307   xbt_test_add("==== Have a pusher and a popper on the dynar");
1308   d = xbt_dynar_new_sync(sizeof(int), NULL);
1309   pusher = xbt_thread_create("pusher", pusher_f, d, 0 /*not joinable */ );
1310   poper = xbt_thread_create("poper", poper_f, d, 0 /*not joinable */ );
1311   xbt_thread_join(pusher);
1312   xbt_thread_join(poper);
1313   xbt_dynar_free(&d);
1314 }
1315
1316 #endif                          /* SIMGRID_TEST */