Call setlocale initially
[glib.git] / glib / garray.c
bloba2bca94620e8fd65965fcb5f710f2f4e3b780c62
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 /*
28 * MT safe
31 #include "config.h"
33 #include <string.h>
34 #include <stdlib.h>
36 #include "garray.h"
38 #include "gmem.h"
39 #include "gthread.h"
40 #include "gmessages.h"
41 #include "gqsort.h"
43 #include "galias.h"
45 /**
46 * SECTION: arrays
47 * @title: Arrays
48 * @short_description: arrays of arbitrary elements which grow
49 * automatically as elements are added
51 * Arrays are similar to standard C arrays, except that they grow
52 * automatically as elements are added.
54 * Array elements can be of any size (though all elements of one array
55 * are the same size), and the array can be automatically cleared to
56 * '0's and zero-terminated.
58 * To create a new array use g_array_new().
60 * To add elements to an array, use g_array_append_val(),
61 * g_array_append_vals(), g_array_prepend_val(), and
62 * g_array_prepend_vals().
64 * To access an element of an array, use g_array_index().
66 * To set the size of an array, use g_array_set_size().
68 * To free an array, use g_array_free().
70 * <example>
71 * <title>Using a #GArray to store #gint values</title>
72 * <programlisting>
73 * GArray *garray;
74 * gint i;
75 * /<!-- -->* We create a new array to store gint values.
76 * We don't want it zero-terminated or cleared to 0's. *<!-- -->/
77 * garray = g_array_new (FALSE, FALSE, sizeof (gint));
78 * for (i = 0; i &lt; 10000; i++)
79 * g_array_append_val (garray, i);
80 * for (i = 0; i &lt; 10000; i++)
81 * if (g_array_index (garray, gint, i) != i)
82 * g_print ("ERROR: got &percnt;d instead of &percnt;d\n",
83 * g_array_index (garray, gint, i), i);
84 * g_array_free (garray, TRUE);
85 * </programlisting>
86 * </example>
87 **/
89 #define MIN_ARRAY_SIZE 16
91 typedef struct _GRealArray GRealArray;
93 /**
94 * GArray:
95 * @data: a pointer to the element data. The data may be moved as
96 * elements are added to the #GArray.
97 * @len: the number of elements in the #GArray not including the
98 * possible terminating zero element.
100 * Contains the public fields of an <link
101 * linkend="glib-arrays">Array</link>.
103 struct _GRealArray
105 guint8 *data;
106 guint len;
107 guint alloc;
108 guint elt_size;
109 guint zero_terminated : 1;
110 guint clear : 1;
111 volatile gint ref_count;
115 * g_array_index:
116 * @a: a #GArray.
117 * @t: the type of the elements.
118 * @i: the index of the element to return.
119 * @Returns: the element of the #GArray at the index given by @i.
121 * Returns the element of a #GArray at the given index. The return
122 * value is cast to the given type.
124 * <example>
125 * <title>Getting a pointer to an element in a #GArray</title>
126 * <programlisting>
127 * EDayViewEvent *event;
128 * /<!-- -->* This gets a pointer to the 4th element
129 * in the array of EDayViewEvent structs. *<!-- -->/
130 * event = &amp;g_array_index (events, EDayViewEvent, 3);
131 * </programlisting>
132 * </example>
135 #define g_array_elt_len(array,i) ((array)->elt_size * (i))
136 #define g_array_elt_pos(array,i) ((array)->data + g_array_elt_len((array),(i)))
137 #define g_array_elt_zero(array, pos, len) \
138 (memset (g_array_elt_pos ((array), pos), 0, g_array_elt_len ((array), len)))
139 #define g_array_zero_terminate(array) G_STMT_START{ \
140 if ((array)->zero_terminated) \
141 g_array_elt_zero ((array), (array)->len, 1); \
142 }G_STMT_END
144 static guint g_nearest_pow (gint num) G_GNUC_CONST;
145 static void g_array_maybe_expand (GRealArray *array,
146 gint len);
149 * g_array_new:
150 * @zero_terminated: %TRUE if the array should have an extra element at
151 * the end which is set to 0.
152 * @clear_: %TRUE if #GArray elements should be automatically cleared
153 * to 0 when they are allocated.
154 * @element_size: the size of each element in bytes.
155 * @Returns: the new #GArray.
157 * Creates a new #GArray with a reference count of 1.
159 GArray*
160 g_array_new (gboolean zero_terminated,
161 gboolean clear,
162 guint elt_size)
164 return (GArray*) g_array_sized_new (zero_terminated, clear, elt_size, 0);
168 * g_array_sized_new:
169 * @zero_terminated: %TRUE if the array should have an extra element at
170 * the end with all bits cleared.
171 * @clear_: %TRUE if all bits in the array should be cleared to 0 on
172 * allocation.
173 * @element_size: size of each element in the array.
174 * @reserved_size: number of elements preallocated.
175 * @Returns: the new #GArray.
177 * Creates a new #GArray with @reserved_size elements preallocated and
178 * a reference count of 1. This avoids frequent reallocation, if you
179 * are going to add many elements to the array. Note however that the
180 * size of the array is still 0.
182 GArray* g_array_sized_new (gboolean zero_terminated,
183 gboolean clear,
184 guint elt_size,
185 guint reserved_size)
187 GRealArray *array = g_slice_new (GRealArray);
189 array->data = NULL;
190 array->len = 0;
191 array->alloc = 0;
192 array->zero_terminated = (zero_terminated ? 1 : 0);
193 array->clear = (clear ? 1 : 0);
194 array->elt_size = elt_size;
195 array->ref_count = 1;
197 if (array->zero_terminated || reserved_size != 0)
199 g_array_maybe_expand (array, reserved_size);
200 g_array_zero_terminate(array);
203 return (GArray*) array;
207 * g_array_ref:
208 * @array: A #GArray.
210 * Atomically increments the reference count of @array by one. This
211 * function is MT-safe and may be called from any thread.
213 * Returns: The passed in #GArray.
215 * Since: 2.22
217 GArray *
218 g_array_ref (GArray *array)
220 GRealArray *rarray = (GRealArray*) array;
221 g_return_val_if_fail (array, NULL);
222 g_return_val_if_fail (g_atomic_int_get (&rarray->ref_count) > 0, array);
223 g_atomic_int_inc (&rarray->ref_count);
224 return array;
228 * g_array_unref:
229 * @array: A #GArray.
231 * Atomically decrements the reference count of @array by one. If the
232 * reference count drops to 0, all memory allocated by the array is
233 * released. This function is MT-safe and may be called from any
234 * thread.
236 * Since: 2.22
238 void
239 g_array_unref (GArray *array)
241 GRealArray *rarray = (GRealArray*) array;
242 g_return_if_fail (array);
243 g_return_if_fail (g_atomic_int_get (&rarray->ref_count) > 0);
244 if (g_atomic_int_dec_and_test (&rarray->ref_count))
245 g_array_free (array, TRUE);
249 * g_array_get_element_size:
250 * @array: A #GArray.
252 * Gets the size of the elements in @array.
254 * Returns: Size of each element, in bytes.
256 * Since: 2.22
258 guint
259 g_array_get_element_size (GArray *array)
261 GRealArray *rarray = (GRealArray*) array;
263 g_return_val_if_fail (array, 0);
265 return rarray->elt_size;
269 * g_array_free:
270 * @array: a #GArray.
271 * @free_segment: if %TRUE the actual element data is freed as well.
272 * @Returns: the element data if @free_segment is %FALSE, otherwise
273 * %NULL. The element data should be freed using g_free().
275 * Frees the memory allocated for the #GArray. If @free_segment is
276 * %TRUE it frees the memory block holding the elements as well and
277 * also each element if @array has a @element_free_func set. Pass
278 * %FALSE if you want to free the #GArray wrapper but preserve the
279 * underlying array for use elsewhere. If the reference count of @array
280 * is greater than one, the #GArray wrapper is preserved but the size
281 * of @array will be set to zero.
283 * <note><para>If array elements contain dynamically-allocated memory,
284 * they should be freed separately.</para></note>
286 gchar*
287 g_array_free (GArray *farray,
288 gboolean free_segment)
290 GRealArray *array = (GRealArray*) farray;
291 gchar* segment;
292 gboolean preserve_wrapper;
294 g_return_val_if_fail (array, NULL);
296 /* if others are holding a reference, preserve the wrapper but do free/return the data */
297 preserve_wrapper = FALSE;
298 if (g_atomic_int_get (&array->ref_count) > 1)
299 preserve_wrapper = TRUE;
301 if (free_segment)
303 g_free (array->data);
304 segment = NULL;
306 else
307 segment = (gchar*) array->data;
309 if (preserve_wrapper)
311 array->data = NULL;
312 array->len = 0;
313 array->alloc = 0;
315 else
317 g_slice_free1 (sizeof (GRealArray), array);
320 return segment;
324 * g_array_append_vals:
325 * @array: a #GArray.
326 * @data: a pointer to the elements to append to the end of the array.
327 * @len: the number of elements to append.
328 * @Returns: the #GArray.
330 * Adds @len elements onto the end of the array.
333 * g_array_append_val:
334 * @a: a #GArray.
335 * @v: the value to append to the #GArray.
336 * @Returns: the #GArray.
338 * Adds the value on to the end of the array. The array will grow in
339 * size automatically if necessary.
341 * <note><para>g_array_append_val() is a macro which uses a reference
342 * to the value parameter @v. This means that you cannot use it with
343 * literal values such as "27". You must use variables.</para></note>
345 GArray*
346 g_array_append_vals (GArray *farray,
347 gconstpointer data,
348 guint len)
350 GRealArray *array = (GRealArray*) farray;
352 g_return_val_if_fail (array, NULL);
354 g_array_maybe_expand (array, len);
356 memcpy (g_array_elt_pos (array, array->len), data,
357 g_array_elt_len (array, len));
359 array->len += len;
361 g_array_zero_terminate (array);
363 return farray;
367 * g_array_prepend_vals:
368 * @array: a #GArray.
369 * @data: a pointer to the elements to prepend to the start of the
370 * array.
371 * @len: the number of elements to prepend.
372 * @Returns: the #GArray.
374 * Adds @len elements onto the start of the array.
376 * This operation is slower than g_array_append_vals() since the
377 * existing elements in the array have to be moved to make space for
378 * the new elements.
381 * g_array_prepend_val:
382 * @a: a #GArray.
383 * @v: the value to prepend to the #GArray.
384 * @Returns: the #GArray.
386 * Adds the value on to the start of the array. The array will grow in
387 * size automatically if necessary.
389 * This operation is slower than g_array_append_val() since the
390 * existing elements in the array have to be moved to make space for
391 * the new element.
393 * <note><para>g_array_prepend_val() is a macro which uses a reference
394 * to the value parameter @v. This means that you cannot use it with
395 * literal values such as "27". You must use variables.</para></note>
397 GArray*
398 g_array_prepend_vals (GArray *farray,
399 gconstpointer data,
400 guint len)
402 GRealArray *array = (GRealArray*) farray;
404 g_return_val_if_fail (array, NULL);
406 g_array_maybe_expand (array, len);
408 g_memmove (g_array_elt_pos (array, len), g_array_elt_pos (array, 0),
409 g_array_elt_len (array, array->len));
411 memcpy (g_array_elt_pos (array, 0), data, g_array_elt_len (array, len));
413 array->len += len;
415 g_array_zero_terminate (array);
417 return farray;
421 * g_array_insert_vals:
422 * @array: a #GArray.
423 * @index_: the index to place the elements at.
424 * @data: a pointer to the elements to insert.
425 * @len: the number of elements to insert.
426 * @Returns: the #GArray.
428 * Inserts @len elements into a #GArray at the given index.
431 * g_array_insert_val:
432 * @a: a #GArray.
433 * @i: the index to place the element at.
434 * @v: the value to insert into the array.
435 * @Returns: the #GArray.
437 * Inserts an element into an array at the given index.
439 * <note><para>g_array_insert_val() is a macro which uses a reference
440 * to the value parameter @v. This means that you cannot use it with
441 * literal values such as "27". You must use variables.</para></note>
443 GArray*
444 g_array_insert_vals (GArray *farray,
445 guint index_,
446 gconstpointer data,
447 guint len)
449 GRealArray *array = (GRealArray*) farray;
451 g_return_val_if_fail (array, NULL);
453 g_array_maybe_expand (array, len);
455 g_memmove (g_array_elt_pos (array, len + index_),
456 g_array_elt_pos (array, index_),
457 g_array_elt_len (array, array->len - index_));
459 memcpy (g_array_elt_pos (array, index_), data, g_array_elt_len (array, len));
461 array->len += len;
463 g_array_zero_terminate (array);
465 return farray;
469 * g_array_set_size:
470 * @array: a #GArray.
471 * @length: the new size of the #GArray.
472 * @Returns: the #GArray.
474 * Sets the size of the array, expanding it if necessary. If the array
475 * was created with @clear_ set to %TRUE, the new elements are set to 0.
477 GArray*
478 g_array_set_size (GArray *farray,
479 guint length)
481 GRealArray *array = (GRealArray*) farray;
483 g_return_val_if_fail (array, NULL);
485 if (length > array->len)
487 g_array_maybe_expand (array, length - array->len);
489 if (array->clear)
490 g_array_elt_zero (array, array->len, length - array->len);
492 else if (G_UNLIKELY (g_mem_gc_friendly) && length < array->len)
493 g_array_elt_zero (array, length, array->len - length);
495 array->len = length;
497 g_array_zero_terminate (array);
499 return farray;
503 * g_array_remove_index:
504 * @array: a #GArray.
505 * @index_: the index of the element to remove.
506 * @Returns: the #GArray.
508 * Removes the element at the given index from a #GArray. The following
509 * elements are moved down one place.
511 GArray*
512 g_array_remove_index (GArray *farray,
513 guint index_)
515 GRealArray* array = (GRealArray*) farray;
517 g_return_val_if_fail (array, NULL);
519 g_return_val_if_fail (index_ < array->len, NULL);
521 if (index_ != array->len - 1)
522 g_memmove (g_array_elt_pos (array, index_),
523 g_array_elt_pos (array, index_ + 1),
524 g_array_elt_len (array, array->len - index_ - 1));
526 array->len -= 1;
528 if (G_UNLIKELY (g_mem_gc_friendly))
529 g_array_elt_zero (array, array->len, 1);
530 else
531 g_array_zero_terminate (array);
533 return farray;
537 * g_array_remove_index_fast:
538 * @array: a @GArray.
539 * @index_: the index of the element to remove.
540 * @Returns: the #GArray.
542 * Removes the element at the given index from a #GArray. The last
543 * element in the array is used to fill in the space, so this function
544 * does not preserve the order of the #GArray. But it is faster than
545 * g_array_remove_index().
547 GArray*
548 g_array_remove_index_fast (GArray *farray,
549 guint index_)
551 GRealArray* array = (GRealArray*) farray;
553 g_return_val_if_fail (array, NULL);
555 g_return_val_if_fail (index_ < array->len, NULL);
557 if (index_ != array->len - 1)
558 memcpy (g_array_elt_pos (array, index_),
559 g_array_elt_pos (array, array->len - 1),
560 g_array_elt_len (array, 1));
562 array->len -= 1;
564 if (G_UNLIKELY (g_mem_gc_friendly))
565 g_array_elt_zero (array, array->len, 1);
566 else
567 g_array_zero_terminate (array);
569 return farray;
573 * g_array_remove_range:
574 * @array: a @GArray.
575 * @index_: the index of the first element to remove.
576 * @length: the number of elements to remove.
577 * @Returns: the #GArray.
579 * Removes the given number of elements starting at the given index
580 * from a #GArray. The following elements are moved to close the gap.
582 * Since: 2.4
584 GArray*
585 g_array_remove_range (GArray *farray,
586 guint index_,
587 guint length)
589 GRealArray *array = (GRealArray*) farray;
591 g_return_val_if_fail (array, NULL);
592 g_return_val_if_fail (index_ < array->len, NULL);
593 g_return_val_if_fail (index_ + length <= array->len, NULL);
595 if (index_ + length != array->len)
596 g_memmove (g_array_elt_pos (array, index_),
597 g_array_elt_pos (array, index_ + length),
598 (array->len - (index_ + length)) * array->elt_size);
600 array->len -= length;
601 if (G_UNLIKELY (g_mem_gc_friendly))
602 g_array_elt_zero (array, array->len, length);
603 else
604 g_array_zero_terminate (array);
606 return farray;
610 * g_array_sort:
611 * @array: a #GArray.
612 * @compare_func: comparison function.
614 * Sorts a #GArray using @compare_func which should be a qsort()-style
615 * comparison function (returns less than zero for first arg is less
616 * than second arg, zero for equal, greater zero if first arg is
617 * greater than second arg).
619 * If two array elements compare equal, their order in the sorted array
620 * is undefined.
622 void
623 g_array_sort (GArray *farray,
624 GCompareFunc compare_func)
626 GRealArray *array = (GRealArray*) farray;
628 g_return_if_fail (array != NULL);
630 qsort (array->data,
631 array->len,
632 array->elt_size,
633 compare_func);
637 * g_array_sort_with_data:
638 * @array: a #GArray.
639 * @compare_func: comparison function.
640 * @user_data: data to pass to @compare_func.
642 * Like g_array_sort(), but the comparison function receives an extra
643 * user data argument.
645 void
646 g_array_sort_with_data (GArray *farray,
647 GCompareDataFunc compare_func,
648 gpointer user_data)
650 GRealArray *array = (GRealArray*) farray;
652 g_return_if_fail (array != NULL);
654 g_qsort_with_data (array->data,
655 array->len,
656 array->elt_size,
657 compare_func,
658 user_data);
661 /* Returns the smallest power of 2 greater than n, or n if
662 * such power does not fit in a guint
664 static guint
665 g_nearest_pow (gint num)
667 guint n = 1;
669 while (n < num && n > 0)
670 n <<= 1;
672 return n ? n : num;
675 static void
676 g_array_maybe_expand (GRealArray *array,
677 gint len)
679 guint want_alloc = g_array_elt_len (array, array->len + len +
680 array->zero_terminated);
682 if (want_alloc > array->alloc)
684 want_alloc = g_nearest_pow (want_alloc);
685 want_alloc = MAX (want_alloc, MIN_ARRAY_SIZE);
687 array->data = g_realloc (array->data, want_alloc);
689 if (G_UNLIKELY (g_mem_gc_friendly))
690 memset (array->data + array->alloc, 0, want_alloc - array->alloc);
692 array->alloc = want_alloc;
696 /* Pointer Array
699 * SECTION: arrays_pointer
700 * @title: Pointer Arrays
701 * @short_description: arrays of pointers to any type of data, which
702 * grow automatically as new elements are added
704 * Pointer Arrays are similar to Arrays but are used only for storing
705 * pointers.
707 * <note><para>If you remove elements from the array, elements at the
708 * end of the array are moved into the space previously occupied by the
709 * removed element. This means that you should not rely on the index of
710 * particular elements remaining the same. You should also be careful
711 * when deleting elements while iterating over the array.</para></note>
713 * To create a pointer array, use g_ptr_array_new().
715 * To add elements to a pointer array, use g_ptr_array_add().
717 * To remove elements from a pointer array, use g_ptr_array_remove(),
718 * g_ptr_array_remove_index() or g_ptr_array_remove_index_fast().
720 * To access an element of a pointer array, use g_ptr_array_index().
722 * To set the size of a pointer array, use g_ptr_array_set_size().
724 * To free a pointer array, use g_ptr_array_free().
726 * <example>
727 * <title>Using a #GPtrArray</title>
728 * <programlisting>
729 * GPtrArray *gparray;
730 * gchar *string1 = "one", *string2 = "two", *string3 = "three";
732 * gparray = g_ptr_array_new (<!-- -->);
733 * g_ptr_array_add (gparray, (gpointer) string1);
734 * g_ptr_array_add (gparray, (gpointer) string2);
735 * g_ptr_array_add (gparray, (gpointer) string3);
737 * if (g_ptr_array_index (gparray, 0) != (gpointer) string1)
738 * g_print ("ERROR: got &percnt;p instead of &percnt;p\n",
739 * g_ptr_array_index (gparray, 0), string1);
741 * g_ptr_array_free (gparray, TRUE);
742 * </programlisting>
743 * </example>
746 typedef struct _GRealPtrArray GRealPtrArray;
749 * GPtrArray:
750 * @pdata: points to the array of pointers, which may be moved when the
751 * array grows.
752 * @len: number of pointers in the array.
754 * Contains the public fields of a pointer array.
756 struct _GRealPtrArray
758 gpointer *pdata;
759 guint len;
760 guint alloc;
761 volatile gint ref_count;
762 GDestroyNotify element_free_func;
766 * g_ptr_array_index:
767 * @array: a #GPtrArray.
768 * @index_: the index of the pointer to return.
769 * @Returns: the pointer at the given index.
771 * Returns the pointer at the given index of the pointer array.
774 static void g_ptr_array_maybe_expand (GRealPtrArray *array,
775 gint len);
778 * g_ptr_array_new:
779 * @Returns: the new #GPtrArray.
781 * Creates a new #GPtrArray with a reference count of 1.
783 GPtrArray*
784 g_ptr_array_new (void)
786 return g_ptr_array_sized_new (0);
790 * g_ptr_array_sized_new:
791 * @reserved_size: number of pointers preallocated.
792 * @Returns: the new #GPtrArray.
794 * Creates a new #GPtrArray with @reserved_size pointers preallocated
795 * and a reference count of 1. This avoids frequent reallocation, if
796 * you are going to add many pointers to the array. Note however that
797 * the size of the array is still 0.
799 GPtrArray*
800 g_ptr_array_sized_new (guint reserved_size)
802 GRealPtrArray *array = g_slice_new (GRealPtrArray);
804 array->pdata = NULL;
805 array->len = 0;
806 array->alloc = 0;
807 array->ref_count = 1;
808 array->element_free_func = NULL;
810 if (reserved_size != 0)
811 g_ptr_array_maybe_expand (array, reserved_size);
813 return (GPtrArray*) array;
817 * g_ptr_array_new_with_free_func:
818 * @element_free_func: A function to free elements with destroy @array or %NULL.
820 * Creates a new #GPtrArray with a reference count of 1 and use @element_free_func
821 * for freeing each element when the array is destroyed either via
822 * g_ptr_array_unref(), when g_ptr_array_free() is called with @free_segment
823 * set to %TRUE or when removing elements.
825 * Returns: A new #GPtrArray.
827 * Since: 2.22
829 GPtrArray *
830 g_ptr_array_new_with_free_func (GDestroyNotify element_free_func)
832 GPtrArray *array;
834 array = g_ptr_array_new ();
835 g_ptr_array_set_free_func (array, element_free_func);
836 return array;
840 * g_ptr_array_set_free_func:
841 * @array: A #GPtrArray.
842 * @element_free_func: A function to free elements with destroy @array or %NULL.
844 * Sets a function for freeing each element when @array is destroyed
845 * either via g_ptr_array_unref(), when g_ptr_array_free() is called
846 * with @free_segment set to %TRUE or when removing elements.
848 * Since: 2.22
850 void
851 g_ptr_array_set_free_func (GPtrArray *array,
852 GDestroyNotify element_free_func)
854 GRealPtrArray* rarray = (GRealPtrArray*) array;
856 g_return_if_fail (array);
858 rarray->element_free_func = element_free_func;
862 * g_ptr_array_ref:
863 * @array: A #GArray.
865 * Atomically increments the reference count of @array by one. This
866 * function is MT-safe and may be called from any thread.
868 * Returns: The passed in #GPtrArray.
870 * Since: 2.22
872 GPtrArray *
873 g_ptr_array_ref (GPtrArray *array)
875 GRealPtrArray *rarray = (GRealPtrArray*) array;
877 g_return_val_if_fail (array, NULL);
878 g_return_val_if_fail (g_atomic_int_get (&rarray->ref_count) > 0, array);
879 g_atomic_int_inc (&rarray->ref_count);
880 return array;
884 * g_ptr_array_unref:
885 * @array: A #GPtrArray.
887 * Atomically decrements the reference count of @array by one. If the
888 * reference count drops to 0, the effect is the same as calling
889 * g_ptr_array_free() with @free_segment set to %TRUE. This function
890 * is MT-safe and may be called from any thread.
892 * Since: 2.22
894 void
895 g_ptr_array_unref (GPtrArray *array)
897 GRealPtrArray *rarray = (GRealPtrArray*) array;
899 g_return_if_fail (array);
900 g_return_if_fail (g_atomic_int_get (&rarray->ref_count) > 0);
901 if (g_atomic_int_dec_and_test (&rarray->ref_count))
902 g_ptr_array_free (array, TRUE);
906 * g_ptr_array_free:
907 * @array: a #GPtrArray.
908 * @free_seg: if %TRUE the actual pointer array is freed as well.
909 * @Returns: the pointer array if @free_seg is %FALSE, otherwise %NULL.
910 * The pointer array should be freed using g_free().
912 * Frees the memory allocated for the #GPtrArray. If @free_seg is %TRUE
913 * it frees the memory block holding the elements as well. Pass %FALSE
914 * if you want to free the #GPtrArray wrapper but preserve the
915 * underlying array for use elsewhere. If the reference count of @array
916 * is greater than one, the #GPtrArray wrapper is preserved but the
917 * size of @array will be set to zero.
919 * <note><para>If array contents point to dynamically-allocated
920 * memory, they should be freed separately if @free_seg is %TRUE and no
921 * #GDestroyNotify function has been set for @array.</para></note>
923 gpointer*
924 g_ptr_array_free (GPtrArray *farray,
925 gboolean free_segment)
927 GRealPtrArray *array = (GRealPtrArray*) farray;
928 gpointer* segment;
929 gboolean preserve_wrapper;
931 g_return_val_if_fail (array, NULL);
933 /* if others are holding a reference, preserve the wrapper but do free/return the data */
934 preserve_wrapper = FALSE;
935 if (g_atomic_int_get (&array->ref_count) > 1)
936 preserve_wrapper = TRUE;
938 if (free_segment)
940 if (array->element_free_func != NULL)
941 g_ptr_array_foreach (farray, (GFunc) array->element_free_func, NULL);
942 g_free (array->pdata);
943 segment = NULL;
945 else
946 segment = array->pdata;
948 if (preserve_wrapper)
950 array->pdata = NULL;
951 array->len = 0;
952 array->alloc = 0;
954 else
956 g_slice_free1 (sizeof (GRealPtrArray), array);
959 return segment;
962 static void
963 g_ptr_array_maybe_expand (GRealPtrArray *array,
964 gint len)
966 if ((array->len + len) > array->alloc)
968 guint old_alloc = array->alloc;
969 array->alloc = g_nearest_pow (array->len + len);
970 array->alloc = MAX (array->alloc, MIN_ARRAY_SIZE);
971 array->pdata = g_realloc (array->pdata, sizeof (gpointer) * array->alloc);
972 if (G_UNLIKELY (g_mem_gc_friendly))
973 for ( ; old_alloc < array->alloc; old_alloc++)
974 array->pdata [old_alloc] = NULL;
979 * g_ptr_array_set_size:
980 * @array: a #GPtrArray.
981 * @length: the new length of the pointer array.
983 * Sets the size of the array. When making the array larger,
984 * newly-added elements will be set to %NULL. When making it smaller,
985 * if @array has a non-%NULL #GDestroyNotify function then it will be
986 * called for the removed elements.
988 void
989 g_ptr_array_set_size (GPtrArray *farray,
990 gint length)
992 GRealPtrArray* array = (GRealPtrArray*) farray;
994 g_return_if_fail (array);
996 if (length > array->len)
998 int i;
999 g_ptr_array_maybe_expand (array, (length - array->len));
1000 /* This is not
1001 * memset (array->pdata + array->len, 0,
1002 * sizeof (gpointer) * (length - array->len));
1003 * to make it really portable. Remember (void*)NULL needn't be
1004 * bitwise zero. It of course is silly not to use memset (..,0,..).
1006 for (i = array->len; i < length; i++)
1007 array->pdata[i] = NULL;
1009 else if (length < array->len)
1010 g_ptr_array_remove_range (farray, length, array->len - length);
1012 array->len = length;
1016 * g_ptr_array_remove_index:
1017 * @array: a #GPtrArray.
1018 * @index_: the index of the pointer to remove.
1019 * @Returns: the pointer which was removed.
1021 * Removes the pointer at the given index from the pointer array. The
1022 * following elements are moved down one place. If @array has a
1023 * non-%NULL #GDestroyNotify function it is called for the removed
1024 * element.
1026 gpointer
1027 g_ptr_array_remove_index (GPtrArray *farray,
1028 guint index_)
1030 GRealPtrArray* array = (GRealPtrArray*) farray;
1031 gpointer result;
1033 g_return_val_if_fail (array, NULL);
1035 g_return_val_if_fail (index_ < array->len, NULL);
1037 result = array->pdata[index_];
1039 if (array->element_free_func != NULL)
1040 array->element_free_func (array->pdata[index_]);
1042 if (index_ != array->len - 1)
1043 g_memmove (array->pdata + index_, array->pdata + index_ + 1,
1044 sizeof (gpointer) * (array->len - index_ - 1));
1046 array->len -= 1;
1048 if (G_UNLIKELY (g_mem_gc_friendly))
1049 array->pdata[array->len] = NULL;
1051 return result;
1055 * g_ptr_array_remove_index_fast:
1056 * @array: a #GPtrArray.
1057 * @index_: the index of the pointer to remove.
1058 * @Returns: the pointer which was removed.
1060 * Removes the pointer at the given index from the pointer array. The
1061 * last element in the array is used to fill in the space, so this
1062 * function does not preserve the order of the array. But it is faster
1063 * than g_ptr_array_remove_index(). If @array has a non-%NULL
1064 * #GDestroyNotify function it is called for the removed element.
1066 gpointer
1067 g_ptr_array_remove_index_fast (GPtrArray *farray,
1068 guint index_)
1070 GRealPtrArray* array = (GRealPtrArray*) farray;
1071 gpointer result;
1073 g_return_val_if_fail (array, NULL);
1075 g_return_val_if_fail (index_ < array->len, NULL);
1077 result = array->pdata[index_];
1079 if (index_ != array->len - 1)
1081 if (array->element_free_func != NULL)
1082 array->element_free_func (array->pdata[index_]);
1083 array->pdata[index_] = array->pdata[array->len - 1];
1086 array->len -= 1;
1088 if (G_UNLIKELY (g_mem_gc_friendly))
1089 array->pdata[array->len] = NULL;
1091 return result;
1095 * g_ptr_array_remove_range:
1096 * @array: a @GPtrArray.
1097 * @index_: the index of the first pointer to remove.
1098 * @length: the number of pointers to remove.
1100 * Removes the given number of pointers starting at the given index
1101 * from a #GPtrArray. The following elements are moved to close the
1102 * gap. If @array has a non-%NULL #GDestroyNotify function it is called
1103 * for the removed elements.
1105 * Since: 2.4
1107 void
1108 g_ptr_array_remove_range (GPtrArray *farray,
1109 guint index_,
1110 guint length)
1112 GRealPtrArray* array = (GRealPtrArray*) farray;
1113 guint n;
1115 g_return_if_fail (array);
1116 g_return_if_fail (index_ < array->len);
1117 g_return_if_fail (index_ + length <= array->len);
1119 if (array->element_free_func != NULL)
1121 for (n = index_; n < index_ + length; n++)
1122 array->element_free_func (array->pdata[n]);
1125 if (index_ + length != array->len)
1127 g_memmove (&array->pdata[index_],
1128 &array->pdata[index_ + length],
1129 (array->len - (index_ + length)) * sizeof (gpointer));
1132 array->len -= length;
1133 if (G_UNLIKELY (g_mem_gc_friendly))
1135 guint i;
1136 for (i = 0; i < length; i++)
1137 array->pdata[array->len + i] = NULL;
1142 * g_ptr_array_remove:
1143 * @array: a #GPtrArray.
1144 * @data: the pointer to remove.
1145 * @Returns: %TRUE if the pointer is removed. %FALSE if the pointer is
1146 * not found in the array.
1148 * Removes the first occurrence of the given pointer from the pointer
1149 * array. The following elements are moved down one place. If @array
1150 * has a non-%NULL #GDestroyNotify function it is called for the
1151 * removed element.
1153 * It returns %TRUE if the pointer was removed, or %FALSE if the
1154 * pointer was not found.
1156 gboolean
1157 g_ptr_array_remove (GPtrArray *farray,
1158 gpointer data)
1160 GRealPtrArray* array = (GRealPtrArray*) farray;
1161 guint i;
1163 g_return_val_if_fail (array, FALSE);
1165 for (i = 0; i < array->len; i += 1)
1167 if (array->pdata[i] == data)
1169 g_ptr_array_remove_index (farray, i);
1170 return TRUE;
1174 return FALSE;
1178 * g_ptr_array_remove_fast:
1179 * @array: a #GPtrArray.
1180 * @data: the pointer to remove.
1181 * @Returns: %TRUE if the pointer was found in the array.
1183 * Removes the first occurrence of the given pointer from the pointer
1184 * array. The last element in the array is used to fill in the space,
1185 * so this function does not preserve the order of the array. But it is
1186 * faster than g_ptr_array_remove(). If @array has a non-%NULL
1187 * #GDestroyNotify function it is called for the removed element.
1189 * It returns %TRUE if the pointer was removed, or %FALSE if the
1190 * pointer was not found.
1192 gboolean
1193 g_ptr_array_remove_fast (GPtrArray *farray,
1194 gpointer data)
1196 GRealPtrArray* array = (GRealPtrArray*) farray;
1197 guint i;
1199 g_return_val_if_fail (array, FALSE);
1201 for (i = 0; i < array->len; i += 1)
1203 if (array->pdata[i] == data)
1205 g_ptr_array_remove_index_fast (farray, i);
1206 return TRUE;
1210 return FALSE;
1214 * g_ptr_array_add:
1215 * @array: a #GPtrArray.
1216 * @data: the pointer to add.
1218 * Adds a pointer to the end of the pointer array. The array will grow
1219 * in size automatically if necessary.
1221 void
1222 g_ptr_array_add (GPtrArray *farray,
1223 gpointer data)
1225 GRealPtrArray* array = (GRealPtrArray*) farray;
1227 g_return_if_fail (array);
1229 g_ptr_array_maybe_expand (array, 1);
1231 array->pdata[array->len++] = data;
1235 * g_ptr_array_sort:
1236 * @array: a #GPtrArray.
1237 * @compare_func: comparison function.
1239 * Sorts the array, using @compare_func which should be a qsort()-style
1240 * comparison function (returns less than zero for first arg is less
1241 * than second arg, zero for equal, greater than zero if irst arg is
1242 * greater than second arg).
1244 * If two array elements compare equal, their order in the sorted array
1245 * is undefined.
1247 * <note><para>The comparison function for g_ptr_array_sort() doesn't
1248 * take the pointers from the array as arguments, it takes pointers to
1249 * the pointers in the array.</para></note>
1251 void
1252 g_ptr_array_sort (GPtrArray *array,
1253 GCompareFunc compare_func)
1255 g_return_if_fail (array != NULL);
1257 qsort (array->pdata,
1258 array->len,
1259 sizeof (gpointer),
1260 compare_func);
1264 * g_ptr_array_sort_with_data:
1265 * @array: a #GPtrArray.
1266 * @compare_func: comparison function.
1267 * @user_data: data to pass to @compare_func.
1269 * Like g_ptr_array_sort(), but the comparison function has an extra
1270 * user data argument.
1272 * <note><para>The comparison function for g_ptr_array_sort_with_data()
1273 * doesn't take the pointers from the array as arguments, it takes
1274 * pointers to the pointers in the array.</para></note>
1276 void
1277 g_ptr_array_sort_with_data (GPtrArray *array,
1278 GCompareDataFunc compare_func,
1279 gpointer user_data)
1281 g_return_if_fail (array != NULL);
1283 g_qsort_with_data (array->pdata,
1284 array->len,
1285 sizeof (gpointer),
1286 compare_func,
1287 user_data);
1291 * g_ptr_array_foreach:
1292 * @array: a #GPtrArray
1293 * @func: the function to call for each array element
1294 * @user_data: user data to pass to the function
1296 * Calls a function for each element of a #GPtrArray.
1298 * Since: 2.4
1300 void
1301 g_ptr_array_foreach (GPtrArray *array,
1302 GFunc func,
1303 gpointer user_data)
1305 guint i;
1307 g_return_if_fail (array);
1309 for (i = 0; i < array->len; i++)
1310 (*func) (array->pdata[i], user_data);
1313 /* Byte arrays
1316 * SECTION: arrays_byte
1317 * @title: Byte Arrays
1318 * @short_description: arrays of bytes, which grow automatically as
1319 * elements are added
1321 * #GByteArray is based on #GArray, to provide arrays of bytes which
1322 * grow automatically as elements are added.
1324 * To create a new #GByteArray use g_byte_array_new().
1326 * To add elements to a #GByteArray, use g_byte_array_append(), and
1327 * g_byte_array_prepend().
1329 * To set the size of a #GByteArray, use g_byte_array_set_size().
1331 * To free a #GByteArray, use g_byte_array_free().
1333 * <example>
1334 * <title>Using a #GByteArray</title>
1335 * <programlisting>
1336 * GByteArray *gbarray;
1337 * gint i;
1339 * gbarray = g_byte_array_new (<!-- -->);
1340 * for (i = 0; i &lt; 10000; i++)
1341 * g_byte_array_append (gbarray, (guint8*) "abcd", 4);
1343 * for (i = 0; i &lt; 10000; i++)
1345 * g_assert (gbarray->data[4*i] == 'a');
1346 * g_assert (gbarray->data[4*i+1] == 'b');
1347 * g_assert (gbarray->data[4*i+2] == 'c');
1348 * g_assert (gbarray->data[4*i+3] == 'd');
1351 * g_byte_array_free (gbarray, TRUE);
1352 * </programlisting>
1353 * </example>
1357 * GByteArray:
1358 * @data: a pointer to the element data. The data may be moved as
1359 * elements are added to the #GByteArray.
1360 * @len: the number of elements in the #GByteArray.
1362 * The <structname>GByteArray</structname> struct allows access to the
1363 * public fields of a <structname>GByteArray</structname>.
1367 * g_byte_array_new:
1368 * @Returns: the new #GByteArray.
1370 * Creates a new #GByteArray with a reference count of 1.
1372 GByteArray* g_byte_array_new (void)
1374 return (GByteArray*) g_array_sized_new (FALSE, FALSE, 1, 0);
1378 * g_byte_array_sized_new:
1379 * @reserved_size: number of bytes preallocated.
1380 * @Returns: the new #GByteArray.
1382 * Creates a new #GByteArray with @reserved_size bytes preallocated.
1383 * This avoids frequent reallocation, if you are going to add many
1384 * bytes to the array. Note however that the size of the array is still
1385 * 0.
1387 GByteArray* g_byte_array_sized_new (guint reserved_size)
1389 return (GByteArray*) g_array_sized_new (FALSE, FALSE, 1, reserved_size);
1393 * g_byte_array_free:
1394 * @array: a #GByteArray.
1395 * @free_segment: if %TRUE the actual byte data is freed as well.
1396 * @Returns: the element data if @free_segment is %FALSE, otherwise
1397 * %NULL. The element data should be freed using g_free().
1399 * Frees the memory allocated by the #GByteArray. If @free_segment is
1400 * %TRUE it frees the actual byte data. If the reference count of
1401 * @array is greater than one, the #GByteArray wrapper is preserved but
1402 * the size of @array will be set to zero.
1404 guint8* g_byte_array_free (GByteArray *array,
1405 gboolean free_segment)
1407 return (guint8*) g_array_free ((GArray*) array, free_segment);
1411 * g_byte_array_ref:
1412 * @array: A #GByteArray.
1414 * Atomically increments the reference count of @array by one. This
1415 * function is MT-safe and may be called from any thread.
1417 * Returns: The passed in #GByteArray.
1419 * Since: 2.22
1421 GByteArray *
1422 g_byte_array_ref (GByteArray *array)
1424 return (GByteArray *) g_array_ref ((GArray *) array);
1428 * g_byte_array_unref:
1429 * @array: A #GByteArray.
1431 * Atomically decrements the reference count of @array by one. If the
1432 * reference count drops to 0, all memory allocated by the array is
1433 * released. This function is MT-safe and may be called from any
1434 * thread.
1436 * Since: 2.22
1438 void
1439 g_byte_array_unref (GByteArray *array)
1441 g_array_unref ((GArray *) array);
1445 * g_byte_array_append:
1446 * @array: a #GByteArray.
1447 * @data: the byte data to be added.
1448 * @len: the number of bytes to add.
1449 * @Returns: the #GByteArray.
1451 * Adds the given bytes to the end of the #GByteArray. The array will
1452 * grow in size automatically if necessary.
1454 GByteArray* g_byte_array_append (GByteArray *array,
1455 const guint8 *data,
1456 guint len)
1458 g_array_append_vals ((GArray*) array, (guint8*)data, len);
1460 return array;
1464 * g_byte_array_prepend:
1465 * @array: a #GByteArray.
1466 * @data: the byte data to be added.
1467 * @len: the number of bytes to add.
1468 * @Returns: the #GByteArray.
1470 * Adds the given data to the start of the #GByteArray. The array will
1471 * grow in size automatically if necessary.
1473 GByteArray* g_byte_array_prepend (GByteArray *array,
1474 const guint8 *data,
1475 guint len)
1477 g_array_prepend_vals ((GArray*) array, (guint8*)data, len);
1479 return array;
1483 * g_byte_array_set_size:
1484 * @array: a #GByteArray.
1485 * @length: the new size of the #GByteArray.
1486 * @Returns: the #GByteArray.
1488 * Sets the size of the #GByteArray, expanding it if necessary.
1490 GByteArray* g_byte_array_set_size (GByteArray *array,
1491 guint length)
1493 g_array_set_size ((GArray*) array, length);
1495 return array;
1499 * g_byte_array_remove_index:
1500 * @array: a #GByteArray.
1501 * @index_: the index of the byte to remove.
1502 * @Returns: the #GByteArray.
1504 * Removes the byte at the given index from a #GByteArray. The
1505 * following bytes are moved down one place.
1507 GByteArray* g_byte_array_remove_index (GByteArray *array,
1508 guint index_)
1510 g_array_remove_index ((GArray*) array, index_);
1512 return array;
1516 * g_byte_array_remove_index_fast:
1517 * @array: a #GByteArray.
1518 * @index_: the index of the byte to remove.
1519 * @Returns: the #GByteArray.
1521 * Removes the byte at the given index from a #GByteArray. The last
1522 * element in the array is used to fill in the space, so this function
1523 * does not preserve the order of the #GByteArray. But it is faster
1524 * than g_byte_array_remove_index().
1526 GByteArray* g_byte_array_remove_index_fast (GByteArray *array,
1527 guint index_)
1529 g_array_remove_index_fast ((GArray*) array, index_);
1531 return array;
1535 * g_byte_array_remove_range:
1536 * @array: a @GByteArray.
1537 * @index_: the index of the first byte to remove.
1538 * @length: the number of bytes to remove.
1539 * @Returns: the #GByteArray.
1541 * Removes the given number of bytes starting at the given index from a
1542 * #GByteArray. The following elements are moved to close the gap.
1544 * Since: 2.4
1546 GByteArray*
1547 g_byte_array_remove_range (GByteArray *array,
1548 guint index_,
1549 guint length)
1551 g_return_val_if_fail (array, NULL);
1552 g_return_val_if_fail (index_ < array->len, NULL);
1553 g_return_val_if_fail (index_ + length <= array->len, NULL);
1555 return (GByteArray *)g_array_remove_range ((GArray*) array, index_, length);
1559 * g_byte_array_sort:
1560 * @array: a #GByteArray.
1561 * @compare_func: comparison function.
1563 * Sorts a byte array, using @compare_func which should be a
1564 * qsort()-style comparison function (returns less than zero for first
1565 * arg is less than second arg, zero for equal, greater than zero if
1566 * first arg is greater than second arg).
1568 * If two array elements compare equal, their order in the sorted array
1569 * is undefined.
1571 void
1572 g_byte_array_sort (GByteArray *array,
1573 GCompareFunc compare_func)
1575 g_array_sort ((GArray *) array, compare_func);
1579 * g_byte_array_sort_with_data:
1580 * @array: a #GByteArray.
1581 * @compare_func: comparison function.
1582 * @user_data: data to pass to @compare_func.
1584 * Like g_byte_array_sort(), but the comparison function takes an extra
1585 * user data argument.
1587 void
1588 g_byte_array_sort_with_data (GByteArray *array,
1589 GCompareDataFunc compare_func,
1590 gpointer user_data)
1592 g_array_sort_with_data ((GArray *) array, compare_func, user_data);
1595 #define __G_ARRAY_C__
1596 #include "galiasdef.c"