Logo AND Algorithmique Numérique Distribuée

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