Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use -DBL_MAX for MIN_KEY_VALUE.
[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 /** @brief Merge dynar d2 into d1
242  *
243  * \param d1 dynar to keep
244  * \param d2 dynar to merge into d1. This dynar is free at end.
245  */
246 void xbt_dynar_merge(xbt_dynar_t *d1, xbt_dynar_t *d2)
247 {
248   if((*d1)->elmsize != (*d2)->elmsize)
249     xbt_die("Element size must are not equal");
250
251   const unsigned long elmsize = (*d1)->elmsize;
252
253   void *ptr = _xbt_dynar_elm((*d2), 0);
254   _xbt_dynar_resize(*d1, (*d1)->size + (*d2)->size);
255   void *elm = _xbt_dynar_elm((*d1), (*d1)->used);
256
257   memcpy(elm, ptr, ((*d2)->size)*elmsize);
258   (*d1)->used += (*d2)->used;
259   (*d2)->used = 0;
260   xbt_dynar_free(d2);
261 }
262
263 /**
264  * \brief Shrink the dynar by removing empty slots at the end of the internal array
265  * \param dynar a dynar
266  * \param empty_slots_wanted number of empty slots you want to keep at the end of the
267  * internal array for further insertions
268  *
269  * Reduces the internal array size of the dynar to the number of elements plus
270  * \a empty_slots_wanted.
271  * After removing elements from the dynar, you can call this function to make
272  * the dynar use less memory.
273  * Set \a empty_slots_wanted to zero to reduce the dynar internal array as much
274  * as possible.
275  * Note that if \a empty_slots_wanted is greater than the array size, the internal
276  * array is expanded instead of shriked.
277  */
278 void xbt_dynar_shrink(xbt_dynar_t dynar, int empty_slots_wanted)
279 {
280   _dynar_lock(dynar);
281   _xbt_dynar_resize(dynar, dynar->used + empty_slots_wanted);
282   _dynar_unlock(dynar);
283 }
284
285 /** @brief Destructor
286  *
287  * \param dynar poor victim
288  *
289  * kilkil a dynar and its content
290  */
291
292 XBT_INLINE void xbt_dynar_free(xbt_dynar_t * dynar)
293 {
294   if (dynar && *dynar) {
295     xbt_dynar_reset(*dynar);
296     xbt_dynar_free_container(dynar);
297   }
298 }
299
300 /** \brief free a dynar passed as void* (handy to store dynar in dynars or dict) */
301 void xbt_dynar_free_voidp(void *d)
302 {
303   xbt_dynar_t dynar = (xbt_dynar_t)d;
304   xbt_dynar_free(&dynar);
305 }
306
307 /** @brief Count of dynar's elements
308  *
309  * \param dynar the dynar we want to mesure
310  */
311 XBT_INLINE unsigned long xbt_dynar_length(const xbt_dynar_t dynar)
312 {
313   return (dynar ? (unsigned long) dynar->used : (unsigned long) 0);
314 }
315
316  /**@brief check if a dynar is empty
317  *
318  *\param dynar the dynat we want to check
319  */
320
321 XBT_INLINE int xbt_dynar_is_empty(const xbt_dynar_t dynar)
322 {
323   return (xbt_dynar_length(dynar) == 0);
324 }
325
326 /** @brief Retrieve a copy of the Nth element of a dynar.
327  *
328  * \param dynar information dealer
329  * \param idx index of the slot we want to retrieve
330  * \param[out] dst where to put the result to.
331  */
332 XBT_INLINE void
333 xbt_dynar_get_cpy(const xbt_dynar_t dynar,
334                   const unsigned long idx, void *const dst)
335 {
336   _dynar_lock(dynar);
337   _sanity_check_dynar(dynar);
338   _check_inbound_idx(dynar, idx);
339
340   _xbt_dynar_get_elm(dst, dynar, idx);
341   _dynar_unlock(dynar);
342 }
343
344 /** @brief Retrieve a pointer to the Nth element of a dynar.
345  *
346  * \param dynar information dealer
347  * \param idx index of the slot we want to retrieve
348  * \return the \a idx-th element of \a dynar.
349  *
350  * \warning The returned value is the actual content of the dynar.
351  * Make a copy before fooling with it.
352  */
353 XBT_INLINE void *xbt_dynar_get_ptr(const xbt_dynar_t dynar,
354                                    const unsigned long idx)
355 {
356
357   void *res;
358   _dynar_lock(dynar);
359   _sanity_check_dynar(dynar);
360   _check_inbound_idx(dynar, idx);
361
362   res = _xbt_dynar_elm(dynar, idx);
363   _dynar_unlock(dynar);
364   return res;
365 }
366
367 /* not synchronized */
368 static XBT_INLINE void *_xbt_dynar_set_at_ptr(const xbt_dynar_t dynar,
369                                               const unsigned long idx)
370 {
371   _sanity_check_dynar(dynar);
372
373   if (idx >= dynar->used) {
374     _xbt_dynar_expand(dynar, idx + 1);
375     if (idx > dynar->used) {
376       memset(_xbt_dynar_elm(dynar, dynar->used), 0,
377              (idx - dynar->used) * dynar->elmsize);
378     }
379     dynar->used = idx + 1;
380   }
381   return _xbt_dynar_elm(dynar, idx);
382 }
383
384 XBT_INLINE void *xbt_dynar_set_at_ptr(const xbt_dynar_t dynar,
385                                       const unsigned long idx)
386 {
387   void *res;
388   _dynar_lock(dynar);
389   res = _xbt_dynar_set_at_ptr(dynar, idx);
390   _dynar_unlock(dynar);
391   return res;
392 }
393
394 static void XBT_INLINE          /* not synchronized */
395 _xbt_dynar_set(xbt_dynar_t dynar,
396                const unsigned long idx, const void *const src)
397 {
398   memcpy(_xbt_dynar_set_at_ptr(dynar, idx), src, dynar->elmsize);
399 }
400
401 /** @brief Set the Nth element of a dynar (expanded if needed). Previous value at this position is NOT freed
402  *
403  * \param dynar information dealer
404  * \param idx index of the slot we want to modify
405  * \param src What will be feeded to the dynar
406  *
407  * If you want to free the previous content, use xbt_dynar_replace().
408  */
409 XBT_INLINE void xbt_dynar_set(xbt_dynar_t dynar, const int idx,
410                               const void *const src)
411 {
412
413   _dynar_lock(dynar);
414   _xbt_dynar_set(dynar, idx, src);
415   _dynar_unlock(dynar);
416 }
417
418 /** @brief Set the Nth element of a dynar (expanded if needed). Previous value is freed
419  *
420  * \param dynar
421  * \param idx
422  * \param object
423  *
424  * Set the Nth element of a dynar, expanding the dynar if needed, AND DO
425  * free the previous value at this position. If you don't want to free the
426  * previous content, use xbt_dynar_set().
427  */
428 void
429 xbt_dynar_replace(xbt_dynar_t dynar,
430                   const unsigned long idx, const void *const object)
431 {
432   _dynar_lock(dynar);
433   _sanity_check_dynar(dynar);
434
435   if (idx < dynar->used && dynar->free_f) {
436     void *const old_object = _xbt_dynar_elm(dynar, idx);
437
438     dynar->free_f(old_object);
439   }
440
441   _xbt_dynar_set(dynar, idx, object);
442   _dynar_unlock(dynar);
443 }
444
445 static XBT_INLINE void *_xbt_dynar_insert_at_ptr(xbt_dynar_t const dynar,
446                                                  const unsigned long idx)
447 {
448   void *res;
449   unsigned long old_used;
450   unsigned long new_used;
451   long nb_shift;
452
453   _sanity_check_dynar(dynar);
454   _sanity_check_idx(idx);
455
456   old_used = dynar->used;
457   new_used = old_used + 1;
458
459   _xbt_dynar_expand(dynar, new_used);
460
461   nb_shift = old_used - idx;
462
463   if (nb_shift>0) {
464     memmove(_xbt_dynar_elm(dynar, idx + 1),
465             _xbt_dynar_elm(dynar, idx), nb_shift * dynar->elmsize);
466   }
467
468   dynar->used = new_used;
469   res = _xbt_dynar_elm(dynar, idx);
470   return res;
471 }
472
473 /** @brief Make room for a new element, and return a pointer to it
474  *
475  * You can then use regular affectation to set its value instead of relying
476  * on the slow memcpy. This is what xbt_dynar_insert_at_as() does.
477  */
478 void *xbt_dynar_insert_at_ptr(xbt_dynar_t const dynar, const int idx)
479 {
480   void *res;
481
482   _dynar_lock(dynar);
483   res = _xbt_dynar_insert_at_ptr(dynar, idx);
484   _dynar_unlock(dynar);
485   return res;
486 }
487
488 /** @brief Set the Nth dynar's element, expanding the dynar and sliding the previous values to the right
489  *
490  * Set the Nth element of a dynar, expanding the dynar if needed, and
491  * moving the previously existing value and all subsequent ones to one
492  * position right in the dynar.
493  */
494 XBT_INLINE void
495 xbt_dynar_insert_at(xbt_dynar_t const dynar,
496                     const int idx, const void *const src)
497 {
498
499   _dynar_lock(dynar);
500   /* checks done in xbt_dynar_insert_at_ptr */
501   memcpy(_xbt_dynar_insert_at_ptr(dynar, idx), src, dynar->elmsize);
502   _dynar_unlock(dynar);
503 }
504
505 /** @brief Remove the Nth dynar's element, sliding the previous values to the left
506  *
507  * Get the Nth element of a dynar, removing it from the dynar and moving
508  * all subsequent values to one position left in the dynar.
509  *
510  * If the object argument of this function is a non-null pointer, the removed
511  * element is copied to this address. If not, the element is freed using the
512  * free_f function passed at dynar creation.
513  */
514 void
515 xbt_dynar_remove_at(xbt_dynar_t const dynar,
516                     const int idx, void *const object)
517 {
518
519   _dynar_lock(dynar);
520   _xbt_dynar_remove_at(dynar, idx, object);
521   _dynar_unlock(dynar);
522 }
523
524 /** @brief Returns the position of the element in the dynar
525  *
526  * Raises not_found_error if not found.
527  */
528 unsigned int xbt_dynar_search(xbt_dynar_t const dynar, void *const elem)
529 {
530   unsigned long it;
531
532   _dynar_lock(dynar);
533   for (it = 0; it < dynar->used; it++)
534     if (!memcmp(_xbt_dynar_elm(dynar, it), elem, dynar->elmsize)) {
535       _dynar_unlock(dynar);
536       return it;
537     }
538
539   _dynar_unlock(dynar);
540   THROWF(not_found_error, 0, "Element %p not part of dynar %p", elem,
541          dynar);
542 }
543
544 /** @brief Returns a boolean indicating whether the element is part of the dynar */
545 int xbt_dynar_member(xbt_dynar_t const dynar, void *const elem)
546 {
547
548   xbt_ex_t e;
549
550   TRY {
551     xbt_dynar_search(dynar, elem);
552   }
553   CATCH(e) {
554     if (e.category == not_found_error) {
555       xbt_ex_free(e);
556       return 0;
557     }
558     RETHROW;
559   }
560   return 1;
561 }
562
563 /** @brief Make room at the end of the dynar for a new element, and return a pointer to it.
564  *
565  * You can then use regular affectation to set its value instead of relying
566  * on the slow memcpy. This is what xbt_dynar_push_as() does.
567  */
568 XBT_INLINE void *xbt_dynar_push_ptr(xbt_dynar_t const dynar)
569 {
570   void *res;
571
572   /* we have to inline xbt_dynar_insert_at_ptr here to make sure that
573      dynar->used don't change between reading it and getting the lock
574      within xbt_dynar_insert_at_ptr */
575   _dynar_lock(dynar);
576   res = _xbt_dynar_insert_at_ptr(dynar, dynar->used);
577   _dynar_unlock(dynar);
578   return res;
579 }
580
581 /** @brief Add an element at the end of the dynar */
582 XBT_INLINE void xbt_dynar_push(xbt_dynar_t const dynar,
583                                const void *const src)
584 {
585   _dynar_lock(dynar);
586   /* checks done in xbt_dynar_insert_at_ptr */
587   memcpy(_xbt_dynar_insert_at_ptr(dynar, dynar->used), src,
588          dynar->elmsize);
589   _dynar_unlock(dynar);
590 }
591
592 /** @brief Mark the last dynar's element as unused and return a pointer to it.
593  *
594  * You can then use regular affectation to set its value instead of relying
595  * on the slow memcpy. This is what xbt_dynar_pop_as() does.
596  */
597 XBT_INLINE void *xbt_dynar_pop_ptr(xbt_dynar_t const dynar)
598 {
599   void *res;
600
601   _dynar_lock(dynar);
602   _check_populated_dynar(dynar);
603   XBT_DEBUG("Pop %p", (void *) dynar);
604   dynar->used--;
605   res = _xbt_dynar_elm(dynar, dynar->used);
606   _dynar_unlock(dynar);
607   return res;
608 }
609
610 /** @brief Get and remove the last element of the dynar */
611 XBT_INLINE void xbt_dynar_pop(xbt_dynar_t const dynar, void *const dst)
612 {
613
614   /* sanity checks done by remove_at */
615   XBT_DEBUG("Pop %p", (void *) dynar);
616   _dynar_lock(dynar);
617   _xbt_dynar_remove_at(dynar, dynar->used - 1, dst);
618   _dynar_unlock(dynar);
619 }
620
621 /** @brief Add an element at the begining of the dynar.
622  *
623  * This is less efficient than xbt_dynar_push()
624  */
625 XBT_INLINE void xbt_dynar_unshift(xbt_dynar_t const dynar,
626                                   const void *const src)
627 {
628
629   /* sanity checks done by insert_at */
630   xbt_dynar_insert_at(dynar, 0, src);
631 }
632
633 /** @brief Get and remove the first element of the dynar.
634  *
635  * This is less efficient than xbt_dynar_pop()
636  */
637 XBT_INLINE void xbt_dynar_shift(xbt_dynar_t const dynar, void *const dst)
638 {
639
640   /* sanity checks done by remove_at */
641   xbt_dynar_remove_at(dynar, 0, dst);
642 }
643
644 static void _dynar_map(const xbt_dynar_t dynar, void_f_pvoid_t const op)
645 {
646   char *const data = (char *) dynar->data;
647   const unsigned long elmsize = dynar->elmsize;
648   const unsigned long used = dynar->used;
649   unsigned long i;
650
651   for (i = 0; i < used; i++) {
652     char* elm = (char*) data + i * elmsize;
653     op(elm);
654   }
655 }
656
657 /** @brief Apply a function to each member of a dynar
658  *
659  * The mapped function may change the value of the element itself,
660  * but should not mess with the structure of the dynar.
661  *
662  * If the dynar is synchronized, it is locked during the whole map
663  * operation, so make sure your function don't call any function
664  * from xbt_dynar_* on it, or you'll get a deadlock.
665  */
666 XBT_INLINE void xbt_dynar_map(const xbt_dynar_t dynar,
667                               void_f_pvoid_t const op)
668 {
669
670   _sanity_check_dynar(dynar);
671   _dynar_lock(dynar);
672
673   _dynar_map(dynar, op);
674
675   _dynar_unlock(dynar);
676 }
677
678
679 /** @brief Removes and free the entry pointed by the cursor
680  *
681  * This function can be used while traversing without problem.
682  */
683 XBT_INLINE void xbt_dynar_cursor_rm(xbt_dynar_t dynar,
684                                     unsigned int *const cursor)
685 {
686
687   _xbt_dynar_remove_at(dynar, (*cursor)--, NULL);
688 }
689
690 /** @brief Unlocks a synchronized dynar when you want to break the traversal
691  *
692  * This function must be used if you <tt>break</tt> the
693  * xbt_dynar_foreach loop, but shouldn't be called at the end of a
694  * regular traversal reaching the end of the elements
695  */
696 XBT_INLINE void xbt_dynar_cursor_unlock(xbt_dynar_t dynar)
697 {
698   _dynar_unlock(dynar);
699 }
700
701 /** @brief Sorts a dynar according to the function <tt>compar_fn</tt>
702  *
703  * \param dynar the dynar to sort
704  * \param compar_fn comparison function of type (int (compar_fn*) (void*) (void*)).
705  *
706  * Remark: if the elements stored in the dynar are structures, the compar_fn
707  * function has to retrieve the field to sort first.
708  */
709 XBT_INLINE void xbt_dynar_sort(xbt_dynar_t dynar,
710                                int_f_cpvoid_cpvoid_t compar_fn)
711 {
712
713   _dynar_lock(dynar);
714
715 #ifdef HAVE_MERGESORT
716   mergesort(dynar->data, dynar->used, dynar->elmsize, compar_fn);
717 #else
718   qsort(dynar->data, dynar->used, dynar->elmsize, compar_fn);
719 #endif
720   _dynar_unlock(dynar);
721 }
722
723 /** @brief Sorts a dynar according to their color assuming elements can have only three colors.
724  * Since there are only three colors, it is linear and much faster than a classical sort.
725  * See for example http://en.wikipedia.org/wiki/Dutch_national_flag_problem
726  *
727  * \param dynar the dynar to sort
728  * \param color the color function of type (int (compar_fn*) (void*) (void*)). The return value of color is assumed to be 0, 1, or 2.
729  *
730  * At the end of the call, elements with color 0 are at the beginning of the dynar, elements with color 2 are at the end and elements with color 1 are in the middle.
731  *
732  * Remark: if the elements stored in the dynar are structures, the color
733  * function has to retrieve the field to sort first.
734  */
735 XBT_PUBLIC(void) xbt_dynar_three_way_partition(xbt_dynar_t const dynar,
736                                                int_f_pvoid_t color)
737 {
738   _dynar_lock(dynar);
739   unsigned long int i;
740   unsigned long int p = -1;
741   unsigned long int q = dynar->used;
742   const unsigned long elmsize = dynar->elmsize;
743   void *tmp = xbt_malloc(elmsize);
744   void *elm;
745
746   for (i = 0; i < q;) {
747     void *elmi = _xbt_dynar_elm(dynar, i);
748     int colori = color(elmi);
749
750     if (colori == 1) {
751       ++i;
752     } else {
753       if (colori == 0) {
754         elm = _xbt_dynar_elm(dynar, ++p);
755         ++i;
756       } else {                  /* colori == 2 */
757         elm = _xbt_dynar_elm(dynar, --q);
758       }
759       if (elm != elmi) {
760         memcpy(tmp,  elm,  elmsize);
761         memcpy(elm,  elmi, elmsize);
762         memcpy(elmi, tmp,  elmsize);
763       }
764     }
765   }
766   _dynar_unlock(dynar);
767   xbt_free(tmp);
768 }
769
770 /** @brief Transform a dynar into a NULL terminated array
771  *
772  * \param dynar the dynar to transform
773  */
774 XBT_INLINE void * xbt_dynar_to_array (xbt_dynar_t dynar)
775 {
776   void *res;
777   xbt_dynar_shrink(dynar, 1);
778   memset(xbt_dynar_push_ptr(dynar), 0, dynar->elmsize);
779   res = dynar->data;
780   if (dynar->mutex)
781     xbt_mutex_destroy(dynar->mutex);
782   free(dynar);
783   return res;
784 }
785
786 /*
787  * Return 0 if d1 and d2 are equal and 1 if not equal
788  */
789 XBT_INLINE int xbt_dynar_compare(xbt_dynar_t d1, xbt_dynar_t d2,
790                                         int(*compar)(const void *, const void *))
791 {
792         int i ;
793         int size;
794         if((!d1) && (!d2)) return 0;
795         if((!d1) || (!d2))
796         {
797                 XBT_DEBUG("NULL dynar d1=%p d2=%p",d1,d2);
798                 xbt_dynar_free(&d2);
799                 return 1;
800         }
801         if((d1->elmsize)!=(d2->elmsize))
802         {
803                 XBT_DEBUG("Size of elmsize d1=%lu d2=%lu",d1->elmsize,d2->elmsize);
804                 xbt_dynar_free(&d2);
805                 return 1; // xbt_die
806         }
807         if(xbt_dynar_length(d1) != xbt_dynar_length(d2))
808         {
809                 XBT_DEBUG("Size of dynar d1=%lu d2=%lu",xbt_dynar_length(d1),xbt_dynar_length(d2));
810                 xbt_dynar_free(&d2);
811                 return 1;
812         }
813
814         size = xbt_dynar_length(d1);
815         for(i=0;i<size;i++)
816         {
817                 void *data1 = xbt_dynar_get_as(d1, i, void *);
818                 void *data2 = xbt_dynar_get_as(d2, i, void *);
819                 XBT_DEBUG("link[%d] d1=%p d2=%p",i,data1,data2);
820                 if(compar(data1,data2)){
821                         xbt_dynar_free(&d2);
822                         return 1;
823                 }
824         }
825         xbt_dynar_free(&d2);
826         return 0;
827 }
828
829 #ifdef SIMGRID_TEST
830
831 #define NB_ELEM 5000
832
833 XBT_TEST_SUITE("dynar", "Dynar data container");
834 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_dyn);
835
836 XBT_TEST_UNIT("int", test_dynar_int, "Dynars of integers")
837 {
838   /* Vars_decl [doxygen cruft] */
839   xbt_dynar_t d;
840   int i, cpt;
841   unsigned int cursor;
842   int *iptr;
843
844   xbt_test_add("==== Traverse the empty dynar");
845   d = xbt_dynar_new(sizeof(int), NULL);
846   xbt_dynar_foreach(d, cursor, i) {
847     xbt_die( "Damnit, there is something in the empty dynar");
848   }
849   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
850   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
851   /* in your code is naturally the way to go outside a regression test */
852
853   xbt_test_add
854       ("==== Push %d int, set them again 3 times, traverse them, shift them",
855        NB_ELEM);
856   /* Populate_ints [doxygen cruft] */
857   /* 1. Populate the dynar */
858   d = xbt_dynar_new(sizeof(int), NULL);
859   for (cpt = 0; cpt < NB_ELEM; cpt++) {
860     xbt_dynar_push_as(d, int, cpt);     /* This is faster (and possible only with scalars) */
861     /* xbt_dynar_push(d,&cpt);       This would also work */
862     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
863   }
864
865   /* 2. Traverse manually the dynar */
866   for (cursor = 0; cursor < NB_ELEM; cursor++) {
867     iptr = xbt_dynar_get_ptr(d, cursor);
868     xbt_test_assert(cursor == *iptr,
869                      "The retrieved value is not the same than the injected one (%u!=%d)",
870                      cursor, cpt);
871   }
872
873   /* 3. Traverse the dynar using the neat macro to that extend */
874   xbt_dynar_foreach(d, cursor, cpt) {
875     xbt_test_assert(cursor == cpt,
876                      "The retrieved value is not the same than the injected one (%u!=%d)",
877                      cursor, cpt);
878   }
879   /* end_of_traversal */
880
881   for (cpt = 0; cpt < NB_ELEM; cpt++)
882     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
883
884   for (cpt = 0; cpt < NB_ELEM; cpt++)
885     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
886   /*     xbt_dynar_set(d,cpt,&cpt); */
887
888   for (cpt = 0; cpt < NB_ELEM; cpt++)
889     *(int *) xbt_dynar_get_ptr(d, cpt) = cpt;
890
891   cpt = 0;
892   xbt_dynar_foreach(d, cursor, i) {
893     xbt_test_assert(i == cpt,
894                      "The retrieved value is not the same than the injected one (%d!=%d)",
895                      i, cpt);
896     cpt++;
897   }
898   xbt_test_assert(cpt == NB_ELEM,
899                    "Cannot retrieve my %d values. Last got one is %d",
900                    NB_ELEM, cpt);
901
902   /* shifting [doxygen cruft] */
903   /* 4. Shift all the values */
904   for (cpt = 0; cpt < NB_ELEM; cpt++) {
905     xbt_dynar_shift(d, &i);
906     xbt_test_assert(i == cpt,
907                      "The retrieved value is not the same than the injected one (%d!=%d)",
908                      i, cpt);
909     xbt_test_log("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
910   }
911
912   /* 5. Free the resources */
913   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
914   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
915   /* in your code is naturally the way to go outside a regression test */
916
917   xbt_test_add("==== Unshift/pop %d int", NB_ELEM);
918   d = xbt_dynar_new(sizeof(int), NULL);
919   for (cpt = 0; cpt < NB_ELEM; cpt++) {
920     xbt_dynar_unshift(d, &cpt);
921     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
922   }
923   for (cpt = 0; cpt < NB_ELEM; cpt++) {
924     i = xbt_dynar_pop_as(d, int);
925     xbt_test_assert(i == cpt,
926                      "The retrieved value is not the same than the injected one (%d!=%d)",
927                      i, cpt);
928     xbt_test_log("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
929   }
930   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
931   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
932   /* in your code is naturally the way to go outside a regression test */
933
934
935   xbt_test_add
936       ("==== Push %d int, insert 1000 int in the middle, shift everything",
937        NB_ELEM);
938   d = xbt_dynar_new(sizeof(int), NULL);
939   for (cpt = 0; cpt < NB_ELEM; cpt++) {
940     xbt_dynar_push_as(d, int, cpt);
941     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
942   }
943   for (cpt = 0; cpt < NB_ELEM/5; cpt++) {
944     xbt_dynar_insert_at_as(d, NB_ELEM/2, int, cpt);
945     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(d));
946   }
947
948   for (cpt = 0; cpt < NB_ELEM/2; cpt++) {
949     xbt_dynar_shift(d, &i);
950     xbt_test_assert(i == cpt,
951                      "The retrieved value is not the same than the injected one at the begining (%d!=%d)",
952                      i, cpt);
953     XBT_DEBUG("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
954   }
955   for (cpt = 999; cpt >= 0; cpt--) {
956     xbt_dynar_shift(d, &i);
957     xbt_test_assert(i == cpt,
958                      "The retrieved value is not the same than the injected one in the middle (%d!=%d)",
959                      i, cpt);
960   }
961   for (cpt = 2500; cpt < NB_ELEM; cpt++) {
962     xbt_dynar_shift(d, &i);
963     xbt_test_assert(i == cpt,
964                      "The retrieved value is not the same than the injected one at the end (%d!=%d)",
965                      i, cpt);
966   }
967   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
968   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
969   /* in your code is naturally the way to go outside a regression test */
970
971   xbt_test_add("==== Push %d int, remove 2000-4000. free the rest",
972                 NB_ELEM);
973   d = xbt_dynar_new(sizeof(int), NULL);
974   for (cpt = 0; cpt < NB_ELEM; cpt++)
975     xbt_dynar_push_as(d, int, cpt);
976
977   for (cpt = 2000; cpt < 4000; cpt++) {
978     xbt_dynar_remove_at(d, 2000, &i);
979     xbt_test_assert(i == cpt,
980                      "Remove a bad value. Got %d, expected %d", i, cpt);
981     XBT_DEBUG("remove %d, length=%lu", cpt, xbt_dynar_length(d));
982   }
983   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
984   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
985   /* in your code is naturally the way to go outside a regression test */
986 }
987
988 /*******************************************************************************/
989 /*******************************************************************************/
990 /*******************************************************************************/
991 XBT_TEST_UNIT("insert",test_dynar_insert,"Using the xbt_dynar_insert and xbt_dynar_remove functions")
992 {
993   xbt_dynar_t d = xbt_dynar_new(sizeof(unsigned int), NULL);
994   unsigned int cursor;
995   int cpt;
996
997   xbt_test_add("==== Insert %d int, traverse them, remove them",NB_ELEM);
998   /* Populate_ints [doxygen cruft] */
999   /* 1. Populate the dynar */
1000   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1001     xbt_dynar_insert_at(d, cpt, &cpt);
1002     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
1003   }
1004
1005   /* 3. Traverse the dynar */
1006   xbt_dynar_foreach(d, cursor, cpt) {
1007     xbt_test_assert(cursor == cpt,
1008                      "The retrieved value is not the same than the injected one (%u!=%d)",
1009                      cursor, cpt);
1010   }
1011   /* end_of_traversal */
1012
1013   /* Re-fill with the same values using set_as (and re-verify) */
1014   for (cpt = 0; cpt < NB_ELEM; cpt++)
1015     xbt_dynar_set_as(d, cpt, int, cpt);
1016   xbt_dynar_foreach(d, cursor, cpt)
1017     xbt_test_assert(cursor == cpt,
1018                      "The retrieved value is not the same than the injected one (%u!=%d)",
1019                      cursor, cpt);
1020
1021   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1022     int val;
1023     xbt_dynar_remove_at(d,0,&val);
1024     xbt_test_assert(cpt == val,
1025                      "The retrieved value is not the same than the injected one (%u!=%d)",
1026                      cursor, cpt);
1027   }
1028   xbt_test_assert(xbt_dynar_is_empty(d),
1029                    "There is still %lu elements in the dynar after removing everything",
1030                    xbt_dynar_length(d));
1031   xbt_dynar_free(&d);
1032
1033   /* ********************* */
1034   xbt_test_add("==== Insert %d int in reverse order, traverse them, remove them",NB_ELEM);
1035   d = xbt_dynar_new(sizeof(int), NULL);
1036   for (cpt = NB_ELEM-1; cpt >=0; cpt--) {
1037     xbt_dynar_replace(d, cpt, &cpt);
1038     xbt_test_log("Push %d, length=%lu", cpt, xbt_dynar_length(d));
1039   }
1040
1041   /* 3. Traverse the dynar */
1042   xbt_dynar_foreach(d, cursor, cpt) {
1043     xbt_test_assert(cursor == cpt,
1044                      "The retrieved value is not the same than the injected one (%u!=%d)",
1045                      cursor, cpt);
1046   }
1047   /* end_of_traversal */
1048
1049   for (cpt =NB_ELEM-1; cpt >=0; cpt--) {
1050     int val;
1051     xbt_dynar_remove_at(d,xbt_dynar_length(d)-1,&val);
1052     xbt_test_assert(cpt == val,
1053                      "The retrieved value is not the same than the injected one (%u!=%d)",
1054                      cursor, cpt);
1055   }
1056   xbt_test_assert(xbt_dynar_is_empty(d),
1057                    "There is still %lu elements in the dynar after removing everything",
1058                    xbt_dynar_length(d));
1059   xbt_dynar_free(&d);
1060 }
1061
1062 /*******************************************************************************/
1063 /*******************************************************************************/
1064 /*******************************************************************************/
1065 XBT_TEST_UNIT("double", test_dynar_double, "Dynars of doubles")
1066 {
1067   xbt_dynar_t d;
1068   int cpt;
1069   unsigned int cursor;
1070   double d1, d2;
1071
1072   xbt_test_add("==== Traverse the empty dynar");
1073   d = xbt_dynar_new(sizeof(int), NULL);
1074   xbt_dynar_foreach(d, cursor, cpt) {
1075     xbt_test_assert(FALSE,
1076                      "Damnit, there is something in the empty dynar");
1077   }
1078   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1079   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1080   /* in your code is naturally the way to go outside a regression test */
1081
1082   xbt_test_add("==== Push/shift 5000 doubles");
1083   d = xbt_dynar_new(sizeof(double), NULL);
1084   for (cpt = 0; cpt < 5000; cpt++) {
1085     d1 = (double) cpt;
1086     xbt_dynar_push(d, &d1);
1087   }
1088   xbt_dynar_foreach(d, cursor, d2) {
1089     d1 = (double) cursor;
1090     xbt_test_assert(d1 == d2,
1091                      "The retrieved value is not the same than the injected one (%f!=%f)",
1092                      d1, d2);
1093   }
1094   for (cpt = 0; cpt < 5000; cpt++) {
1095     d1 = (double) cpt;
1096     xbt_dynar_shift(d, &d2);
1097     xbt_test_assert(d1 == d2,
1098                      "The retrieved value is not the same than the injected one (%f!=%f)",
1099                      d1, d2);
1100   }
1101   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1102   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1103   /* in your code is naturally the way to go outside a regression test */
1104
1105   xbt_test_add("==== Unshift/pop 5000 doubles");
1106   d = xbt_dynar_new(sizeof(double), NULL);
1107   for (cpt = 0; cpt < 5000; cpt++) {
1108     d1 = (double) cpt;
1109     xbt_dynar_unshift(d, &d1);
1110   }
1111   for (cpt = 0; cpt < 5000; cpt++) {
1112     d1 = (double) cpt;
1113     xbt_dynar_pop(d, &d2);
1114     xbt_test_assert(d1 == d2,
1115                      "The retrieved value is not the same than the injected one (%f!=%f)",
1116                      d1, d2);
1117   }
1118   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1119   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1120   /* in your code is naturally the way to go outside a regression test */
1121
1122
1123
1124   xbt_test_add
1125       ("==== Push 5000 doubles, insert 1000 doubles in the middle, shift everything");
1126   d = xbt_dynar_new(sizeof(double), NULL);
1127   for (cpt = 0; cpt < 5000; cpt++) {
1128     d1 = (double) cpt;
1129     xbt_dynar_push(d, &d1);
1130   }
1131   for (cpt = 0; cpt < 1000; cpt++) {
1132     d1 = (double) cpt;
1133     xbt_dynar_insert_at(d, 2500, &d1);
1134   }
1135
1136   for (cpt = 0; cpt < 2500; cpt++) {
1137     d1 = (double) cpt;
1138     xbt_dynar_shift(d, &d2);
1139     xbt_test_assert(d1 == d2,
1140                      "The retrieved value is not the same than the injected one at the begining (%f!=%f)",
1141                      d1, d2);
1142     XBT_DEBUG("Pop %d, length=%lu", cpt, xbt_dynar_length(d));
1143   }
1144   for (cpt = 999; cpt >= 0; cpt--) {
1145     d1 = (double) cpt;
1146     xbt_dynar_shift(d, &d2);
1147     xbt_test_assert(d1 == d2,
1148                      "The retrieved value is not the same than the injected one in the middle (%f!=%f)",
1149                      d1, d2);
1150   }
1151   for (cpt = 2500; cpt < 5000; cpt++) {
1152     d1 = (double) cpt;
1153     xbt_dynar_shift(d, &d2);
1154     xbt_test_assert(d1 == d2,
1155                      "The retrieved value is not the same than the injected one at the end (%f!=%f)",
1156                      d1, d2);
1157   }
1158   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1159   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1160   /* in your code is naturally the way to go outside a regression test */
1161
1162
1163   xbt_test_add("==== Push 5000 double, remove 2000-4000. free the rest");
1164   d = xbt_dynar_new(sizeof(double), NULL);
1165   for (cpt = 0; cpt < 5000; cpt++) {
1166     d1 = (double) cpt;
1167     xbt_dynar_push(d, &d1);
1168   }
1169   for (cpt = 2000; cpt < 4000; cpt++) {
1170     d1 = (double) cpt;
1171     xbt_dynar_remove_at(d, 2000, &d2);
1172     xbt_test_assert(d1 == d2,
1173                      "Remove a bad value. Got %f, expected %f", d2, d1);
1174   }
1175   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1176   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1177   /* in your code is naturally the way to go outside a regression test */
1178 }
1179
1180
1181 /* doxygen_string_cruft */
1182
1183 /*******************************************************************************/
1184 /*******************************************************************************/
1185 /*******************************************************************************/
1186 XBT_TEST_UNIT("string", test_dynar_string, "Dynars of strings")
1187 {
1188   xbt_dynar_t d;
1189   int cpt;
1190   unsigned int iter;
1191   char buf[1024];
1192   char *s1, *s2;
1193
1194   xbt_test_add("==== Traverse the empty dynar");
1195   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1196   xbt_dynar_foreach(d, iter, s1) {
1197     xbt_test_assert(FALSE,
1198                      "Damnit, there is something in the empty dynar");
1199   }
1200   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1201   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1202   /* in your code is naturally the way to go outside a regression test */
1203
1204   xbt_test_add("==== Push %d strings, set them again 3 times, shift them",
1205                 NB_ELEM);
1206   /* Populate_str [doxygen cruft] */
1207   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1208   /* 1. Populate the dynar */
1209   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1210     sprintf(buf, "%d", cpt);
1211     s1 = strdup(buf);
1212     xbt_dynar_push(d, &s1);
1213   }
1214   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1215     sprintf(buf, "%d", cpt);
1216     s1 = strdup(buf);
1217     xbt_dynar_replace(d, cpt, &s1);
1218   }
1219   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1220     sprintf(buf, "%d", cpt);
1221     s1 = strdup(buf);
1222     xbt_dynar_replace(d, cpt, &s1);
1223   }
1224   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1225     sprintf(buf, "%d", cpt);
1226     s1 = strdup(buf);
1227     xbt_dynar_replace(d, cpt, &s1);
1228   }
1229   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1230     sprintf(buf, "%d", cpt);
1231     xbt_dynar_shift(d, &s2);
1232     xbt_test_assert(!strcmp(buf, s2),
1233                      "The retrieved value is not the same than the injected one (%s!=%s)",
1234                      buf, s2);
1235     free(s2);
1236   }
1237   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1238   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1239   /* in your code is naturally the way to go outside a regression test */
1240
1241   xbt_test_add("==== Unshift, traverse and pop %d strings", NB_ELEM);
1242   d = xbt_dynar_new(sizeof(char **), &xbt_free_ref);
1243   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1244     sprintf(buf, "%d", cpt);
1245     s1 = strdup(buf);
1246     xbt_dynar_unshift(d, &s1);
1247   }
1248   /* 2. Traverse the dynar with the macro */
1249   xbt_dynar_foreach(d, iter, s1) {
1250     sprintf(buf, "%u", NB_ELEM - iter - 1);
1251     xbt_test_assert(!strcmp(buf, s1),
1252                      "The retrieved value is not the same than the injected one (%s!=%s)",
1253                      buf, s1);
1254   }
1255   /* 3. Traverse the dynar with the macro */
1256   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1257     sprintf(buf, "%d", cpt);
1258     xbt_dynar_pop(d, &s2);
1259     xbt_test_assert(!strcmp(buf, s2),
1260                      "The retrieved value is not the same than the injected one (%s!=%s)",
1261                      buf, s2);
1262     free(s2);
1263   }
1264   /* 4. Free the resources */
1265   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1266   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1267   /* in your code is naturally the way to go outside a regression test */
1268
1269
1270   xbt_test_add
1271       ("==== Push %d strings, insert %d strings in the middle, shift everything",
1272        NB_ELEM, NB_ELEM / 5);
1273   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1274   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1275     sprintf(buf, "%d", cpt);
1276     s1 = strdup(buf);
1277     xbt_dynar_push(d, &s1);
1278   }
1279   for (cpt = 0; cpt < NB_ELEM / 5; cpt++) {
1280     sprintf(buf, "%d", cpt);
1281     s1 = strdup(buf);
1282     xbt_dynar_insert_at(d, NB_ELEM / 2, &s1);
1283   }
1284
1285   for (cpt = 0; cpt < NB_ELEM / 2; cpt++) {
1286     sprintf(buf, "%d", cpt);
1287     xbt_dynar_shift(d, &s2);
1288     xbt_test_assert(!strcmp(buf, s2),
1289                      "The retrieved value is not the same than the injected one at the begining (%s!=%s)",
1290                      buf, s2);
1291     free(s2);
1292   }
1293   for (cpt = (NB_ELEM / 5) - 1; cpt >= 0; cpt--) {
1294     sprintf(buf, "%d", cpt);
1295     xbt_dynar_shift(d, &s2);
1296     xbt_test_assert(!strcmp(buf, s2),
1297                      "The retrieved value is not the same than the injected one in the middle (%s!=%s)",
1298                      buf, s2);
1299     free(s2);
1300   }
1301   for (cpt = NB_ELEM / 2; cpt < NB_ELEM; cpt++) {
1302     sprintf(buf, "%d", cpt);
1303     xbt_dynar_shift(d, &s2);
1304     xbt_test_assert(!strcmp(buf, s2),
1305                      "The retrieved value is not the same than the injected one at the end (%s!=%s)",
1306                      buf, s2);
1307     free(s2);
1308   }
1309   xbt_dynar_free(&d);           /* This code is used both as example and as regression test, so we try to */
1310   xbt_dynar_free(&d);           /* free the struct twice here to check that it's ok, but freeing  it only once */
1311   /* in your code is naturally the way to go outside a regression test */
1312
1313
1314   xbt_test_add("==== Push %d strings, remove %d-%d. free the rest",
1315                 NB_ELEM, 2 * (NB_ELEM / 5), 4 * (NB_ELEM / 5));
1316   d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1317   for (cpt = 0; cpt < NB_ELEM; cpt++) {
1318     sprintf(buf, "%d", cpt);
1319     s1 = strdup(buf);
1320     xbt_dynar_push(d, &s1);
1321   }
1322   for (cpt = 2 * (NB_ELEM / 5); cpt < 4 * (NB_ELEM / 5); cpt++) {
1323     sprintf(buf, "%d", cpt);
1324     xbt_dynar_remove_at(d, 2 * (NB_ELEM / 5), &s2);
1325     xbt_test_assert(!strcmp(buf, s2),
1326                      "Remove a bad value. Got %s, expected %s", s2, buf);
1327     free(s2);
1328   }
1329   xbt_dynar_free(&d);           /* end_of_doxygen */
1330 }
1331
1332
1333 /*******************************************************************************/
1334 /*******************************************************************************/
1335 /*******************************************************************************/
1336 #include "xbt/synchro.h"
1337 static void pusher_f(void *a)
1338 {
1339   xbt_dynar_t d = (xbt_dynar_t) a;
1340   int i;
1341   for (i = 0; i < 500; i++) {
1342     xbt_dynar_push(d, &i);
1343   }
1344 }
1345
1346 static void poper_f(void *a)
1347 {
1348   xbt_dynar_t d = (xbt_dynar_t) a;
1349   volatile int i;
1350   int data;
1351   xbt_ex_t e;
1352
1353   for (i = 0; i < 500; i++) {
1354     TRY {
1355       xbt_dynar_pop(d, &data);
1356     }
1357     CATCH(e) {
1358       if (e.category == bound_error) {
1359         xbt_ex_free(e);
1360         i--;
1361       } else {
1362         RETHROW;
1363       }
1364     }
1365   }
1366 }
1367
1368
1369 XBT_TEST_UNIT("synchronized int", test_dynar_sync_int, "Synchronized dynars of integers")
1370 {
1371   /* Vars_decl [doxygen cruft] */
1372   xbt_dynar_t d;
1373   xbt_thread_t pusher, poper;
1374
1375   xbt_test_add("==== Have a pusher and a popper on the dynar");
1376   d = xbt_dynar_new_sync(sizeof(int), NULL);
1377   pusher = xbt_thread_create("pusher", pusher_f, d, 0 /*not joinable */ );
1378   poper = xbt_thread_create("poper", poper_f, d, 0 /*not joinable */ );
1379   xbt_thread_join(pusher);
1380   xbt_thread_join(poper);
1381   xbt_dynar_free(&d);
1382 }
1383
1384 #endif                          /* SIMGRID_TEST */