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/.
35 #include "gmessages.h"
37 #include "gtestutils.h"
40 * SECTION:linked_lists_double
41 * @title: Doubly-Linked Lists
42 * @short_description: linked lists that can be iterated over in both directions
44 * The #GList structure and its associated functions provide a standard
45 * doubly-linked list data structure.
47 * Each element in the list contains a piece of data, together with
48 * pointers which link to the previous and next elements in the list.
49 * Using these pointers it is possible to move through the list in both
50 * directions (unlike the <link
51 * linkend="glib-Singly-Linked-Lists">Singly-Linked Lists</link> which
52 * only allows movement through the list in the forward direction).
54 * The data contained in each element can be either integer values, by
55 * using one of the <link linkend="glib-Type-Conversion-Macros">Type
56 * Conversion Macros</link>, or simply pointers to any type of data.
58 * List elements are allocated from the <link
59 * linkend="glib-Memory-Slices">slice allocator</link>, which is more
60 * efficient than allocating elements individually.
62 * Note that most of the #GList functions expect to be passed a pointer
63 * to the first element in the list. The functions which insert
64 * elements return the new start of the list, which may have changed.
66 * There is no function to create a #GList. %NULL is considered to be
67 * the empty list so you simply set a #GList* to %NULL.
69 * To add elements, use g_list_append(), g_list_prepend(),
70 * g_list_insert() and g_list_insert_sorted().
72 * To remove elements, use g_list_remove().
74 * To find elements in the list use g_list_first(), g_list_last(),
75 * g_list_next(), g_list_previous(), g_list_nth(), g_list_nth_data(),
76 * g_list_find() and g_list_find_custom().
78 * To find the index of an element use g_list_position() and
81 * To call a function for each element in the list use g_list_foreach().
83 * To free the entire list, use g_list_free().
88 * @data: holds the element's data, which can be a pointer to any kind
89 * of data, or any integer value using the <link
90 * linkend="glib-Type-Conversion-Macros">Type Conversion
92 * @next: contains the link to the next element in the list.
93 * @prev: contains the link to the previous element in the list.
95 * The #GList struct is used for each element in a doubly-linked list.
100 * @list: an element in a #GList.
102 * A convenience macro to get the previous element in a #GList.
104 * Returns: the previous element, or %NULL if there are no previous
110 * @list: an element in a #GList.
112 * A convenience macro to get the next element in a #GList.
114 * Returns: the next element, or %NULL if there are no more elements.
117 #define _g_list_alloc() g_slice_new (GList)
118 #define _g_list_alloc0() g_slice_new0 (GList)
119 #define _g_list_free1(list) g_slice_free (GList, list)
124 * Allocates space for one #GList element. It is called by
125 * g_list_append(), g_list_prepend(), g_list_insert() and
126 * g_list_insert_sorted() and so is rarely used on its own.
128 * Returns: a pointer to the newly-allocated #GList element.
133 return _g_list_alloc0 ();
140 * Frees all of the memory used by a #GList.
141 * The freed elements are returned to the slice allocator.
144 * If list elements contain dynamically-allocated memory,
145 * you should either use g_list_free_full() or free them manually
150 g_list_free (GList *list)
152 g_slice_free_chain (GList, list, next);
157 * @list: a #GList element
159 * Frees one #GList element.
160 * It is usually used after g_list_remove_link().
165 * Another name for g_list_free_1().
168 g_list_free_1 (GList *list)
170 _g_list_free1 (list);
175 * @list: a pointer to a #GList
176 * @free_func: the function to be called to free each element's data
178 * Convenience method, which frees all the memory used by a #GList, and
179 * calls the specified destroy function on every element's data.
184 g_list_free_full (GList *list,
185 GDestroyNotify free_func)
187 g_list_foreach (list, (GFunc) free_func, NULL);
193 * @list: a pointer to a #GList
194 * @data: the data for the new element
196 * Adds a new element on to the end of the list.
199 * The return value is the new start of the list, which
200 * may have changed, so make sure you store the new value.
204 * Note that g_list_append() has to traverse the entire list
205 * to find the end, which is inefficient when adding multiple
206 * elements. A common idiom to avoid the inefficiency is to prepend
207 * the elements and reverse the list when all elements have been added.
211 * /* Notice that these are initialized to the empty list. */
212 * GList *list = NULL, *number_list = NULL;
214 * /* This is a list of strings. */
215 * list = g_list_append (list, "first");
216 * list = g_list_append (list, "second");
218 * /* This is a list of integers. */
219 * number_list = g_list_append (number_list, GINT_TO_POINTER (27));
220 * number_list = g_list_append (number_list, GINT_TO_POINTER (14));
223 * Returns: the new start of the #GList
226 g_list_append (GList *list,
232 new_list = _g_list_alloc ();
233 new_list->data = data;
234 new_list->next = NULL;
238 last = g_list_last (list);
239 /* g_assert (last != NULL); */
240 last->next = new_list;
241 new_list->prev = last;
247 new_list->prev = NULL;
254 * @list: a pointer to a #GList
255 * @data: the data for the new element
257 * Adds a new element on to the start of the list.
260 * The return value is the new start of the list, which
261 * may have changed, so make sure you store the new value.
265 * /* Notice that it is initialized to the empty list. */
266 * GList *list = NULL;
267 * list = g_list_prepend (list, "last");
268 * list = g_list_prepend (list, "first");
271 * Returns: the new start of the #GList
274 g_list_prepend (GList *list,
279 new_list = _g_list_alloc ();
280 new_list->data = data;
281 new_list->next = list;
285 new_list->prev = list->prev;
287 list->prev->next = new_list;
288 list->prev = new_list;
291 new_list->prev = NULL;
298 * @list: a pointer to a #GList
299 * @data: the data for the new element
300 * @position: the position to insert the element. If this is
301 * negative, or is larger than the number of elements in the
302 * list, the new element is added on to the end of the list.
304 * Inserts a new element into the list at the given position.
306 * Returns: the new start of the #GList
309 g_list_insert (GList *list,
317 return g_list_append (list, data);
318 else if (position == 0)
319 return g_list_prepend (list, data);
321 tmp_list = g_list_nth (list, position);
323 return g_list_append (list, data);
325 new_list = _g_list_alloc ();
326 new_list->data = data;
327 new_list->prev = tmp_list->prev;
328 tmp_list->prev->next = new_list;
329 new_list->next = tmp_list;
330 tmp_list->prev = new_list;
336 * g_list_insert_before:
337 * @list: a pointer to a #GList
338 * @sibling: the list element before which the new element
339 * is inserted or %NULL to insert at the end of the list
340 * @data: the data for the new element
342 * Inserts a new element into the list before the given position.
344 * Returns: the new start of the #GList
347 g_list_insert_before (GList *list,
353 list = g_list_alloc ();
355 g_return_val_if_fail (sibling == NULL, list);
362 node = _g_list_alloc ();
364 node->prev = sibling->prev;
365 node->next = sibling;
366 sibling->prev = node;
369 node->prev->next = node;
374 g_return_val_if_fail (sibling == list, node);
386 last->next = _g_list_alloc ();
387 last->next->data = data;
388 last->next->prev = last;
389 last->next->next = NULL;
398 * @list2: the #GList to add to the end of the first #GList
400 * Adds the second #GList onto the end of the first #GList.
401 * Note that the elements of the second #GList are not copied.
402 * They are used directly.
404 * Returns: the start of the new #GList
407 g_list_concat (GList *list1, GList *list2)
413 tmp_list = g_list_last (list1);
415 tmp_list->next = list2;
418 list2->prev = tmp_list;
425 _g_list_remove_link (GList *list,
433 if (link->prev->next == link)
434 link->prev->next = link->next;
436 g_warning ("corrupted double-linked list detected");
440 if (link->next->prev == link)
441 link->next->prev = link->prev;
443 g_warning ("corrupted double-linked list detected");
458 * @data: the data of the element to remove
460 * Removes an element from a #GList.
461 * If two elements contain the same data, only the first is removed.
462 * If none of the elements contain the data, the #GList is unchanged.
464 * Returns: the new start of the #GList
467 g_list_remove (GList *list,
475 if (tmp->data != data)
479 list = _g_list_remove_link (list, tmp);
491 * @data: data to remove
493 * Removes all list nodes with data equal to @data.
494 * Returns the new head of the list. Contrast with
495 * g_list_remove() which removes only the first node
496 * matching the given data.
498 * Returns: new head of @list
501 g_list_remove_all (GList *list,
508 if (tmp->data != data)
512 GList *next = tmp->next;
515 tmp->prev->next = next;
519 next->prev = tmp->prev;
529 * g_list_remove_link:
531 * @llink: an element in the #GList
533 * Removes an element from a #GList, without freeing the element.
534 * The removed element's prev and next links are set to %NULL, so
535 * that it becomes a self-contained list with one element.
537 * Returns: the new start of the #GList, without the element
540 g_list_remove_link (GList *list,
543 return _g_list_remove_link (list, llink);
547 * g_list_delete_link:
549 * @link_: node to delete from @list
551 * Removes the node link_ from the list and frees it.
552 * Compare this to g_list_remove_link() which removes the node
553 * without freeing it.
555 * Returns: the new head of @list
558 g_list_delete_link (GList *list,
561 list = _g_list_remove_link (list, link_);
562 _g_list_free1 (link_);
574 * Note that this is a "shallow" copy. If the list elements
575 * consist of pointers to data, the pointers are copied but
576 * the actual data is not. See g_list_copy_deep() if you need
577 * to copy the data as well.
580 * Returns: a copy of @list
583 g_list_copy (GList *list)
585 return g_list_copy_deep (list, NULL, NULL);
591 * @func: a copy function used to copy every element in the list
592 * @user_data: user data passed to the copy function @func, or #NULL
594 * Makes a full (deep) copy of a #GList.
596 * In contrast with g_list_copy(), this function uses @func to make a copy of
597 * each list element, in addition to copying the list container itself.
599 * @func, as a #GCopyFunc, takes two arguments, the data to be copied and a user
600 * pointer. It's safe to pass #NULL as user_data, if the copy function takes only
603 * For instance, if @list holds a list of GObjects, you can do:
605 * another_list = g_list_copy_deep (list, (GCopyFunc) g_object_ref, NULL);
608 * And, to entirely free the new list, you could do:
610 * g_list_free_full (another_list, g_object_unref);
613 * Returns: a full copy of @list, use #g_list_free_full to free it
618 g_list_copy_deep (GList *list, GCopyFunc func, gpointer user_data)
620 GList *new_list = NULL;
626 new_list = _g_list_alloc ();
628 new_list->data = func (list->data, user_data);
630 new_list->data = list->data;
631 new_list->prev = NULL;
636 last->next = _g_list_alloc ();
637 last->next->prev = last;
640 last->data = func (list->data, user_data);
642 last->data = list->data;
656 * It simply switches the next and prev pointers of each element.
658 * Returns: the start of the reversed #GList
661 g_list_reverse (GList *list)
670 last->next = last->prev;
680 * @n: the position of the element, counting from 0
682 * Gets the element at the given position in a #GList.
684 * Returns: the element, or %NULL if the position is off
685 * the end of the #GList
688 g_list_nth (GList *list,
691 while ((n-- > 0) && list)
700 * @n: the position of the element, counting from 0
702 * Gets the element @n places before @list.
704 * Returns: the element, or %NULL if the position is
705 * off the end of the #GList
708 g_list_nth_prev (GList *list,
711 while ((n-- > 0) && list)
720 * @n: the position of the element
722 * Gets the data of the element at the given position.
724 * Returns: the element's data, or %NULL if the position
725 * is off the end of the #GList
728 g_list_nth_data (GList *list,
731 while ((n-- > 0) && list)
734 return list ? list->data : NULL;
740 * @data: the element data to find
742 * Finds the element in a #GList which
743 * contains the given data.
745 * Returns: the found #GList element,
746 * or %NULL if it is not found
749 g_list_find (GList *list,
754 if (list->data == data)
763 * g_list_find_custom:
765 * @data: user data passed to the function
766 * @func: the function to call for each element.
767 * It should return 0 when the desired element is found
769 * Finds an element in a #GList, using a supplied function to
770 * find the desired element. It iterates over the list, calling
771 * the given function which should return 0 when the desired
772 * element is found. The function takes two #gconstpointer arguments,
773 * the #GList element's data as the first argument and the
776 * Returns: the found #GList element, or %NULL if it is not found
779 g_list_find_custom (GList *list,
783 g_return_val_if_fail (func != NULL, list);
787 if (! func (list->data, data))
799 * @llink: an element in the #GList
801 * Gets the position of the given element
802 * in the #GList (starting from 0).
804 * Returns: the position of the element in the #GList,
805 * or -1 if the element is not found
808 g_list_position (GList *list,
828 * @data: the data to find
830 * Gets the position of the element containing
831 * the given data (starting from 0).
833 * Returns: the index of the element containing the data,
834 * or -1 if the data is not found
837 g_list_index (GList *list,
845 if (list->data == data)
858 * Gets the last element in a #GList.
860 * Returns: the last element in the #GList,
861 * or %NULL if the #GList has no elements
864 g_list_last (GList *list)
879 * Gets the first element in a #GList.
881 * Returns: the first element in the #GList,
882 * or %NULL if the #GList has no elements
885 g_list_first (GList *list)
900 * Gets the number of elements in a #GList.
903 * This function iterates over the whole list to
904 * count its elements.
907 * Returns: the number of elements in the #GList
910 g_list_length (GList *list)
927 * @func: the function to call with each element's data
928 * @user_data: user data to pass to the function
930 * Calls a function for each element of a #GList.
934 * @data: the element's data.
935 * @user_data: user data passed to g_list_foreach() or
938 * Specifies the type of functions passed to g_list_foreach() and
942 g_list_foreach (GList *list,
948 GList *next = list->next;
949 (*func) (list->data, user_data);
955 g_list_insert_sorted_real (GList *list,
960 GList *tmp_list = list;
964 g_return_val_if_fail (func != NULL, list);
968 new_list = _g_list_alloc0 ();
969 new_list->data = data;
973 cmp = ((GCompareDataFunc) func) (data, tmp_list->data, user_data);
975 while ((tmp_list->next) && (cmp > 0))
977 tmp_list = tmp_list->next;
979 cmp = ((GCompareDataFunc) func) (data, tmp_list->data, user_data);
982 new_list = _g_list_alloc0 ();
983 new_list->data = data;
985 if ((!tmp_list->next) && (cmp > 0))
987 tmp_list->next = new_list;
988 new_list->prev = tmp_list;
994 tmp_list->prev->next = new_list;
995 new_list->prev = tmp_list->prev;
997 new_list->next = tmp_list;
998 tmp_list->prev = new_list;
1000 if (tmp_list == list)
1007 * g_list_insert_sorted:
1008 * @list: a pointer to a #GList
1009 * @data: the data for the new element
1010 * @func: the function to compare elements in the list. It should
1011 * return a number > 0 if the first parameter comes after the
1012 * second parameter in the sort order.
1014 * Inserts a new element into the list, using the given comparison
1015 * function to determine its position.
1017 * Returns: the new start of the #GList
1020 g_list_insert_sorted (GList *list,
1024 return g_list_insert_sorted_real (list, data, (GFunc) func, NULL);
1028 * g_list_insert_sorted_with_data:
1029 * @list: a pointer to a #GList
1030 * @data: the data for the new element
1031 * @func: the function to compare elements in the list.
1032 * It should return a number > 0 if the first parameter
1033 * comes after the second parameter in the sort order.
1034 * @user_data: user data to pass to comparison function.
1036 * Inserts a new element into the list, using the given comparison
1037 * function to determine its position.
1039 * Returns: the new start of the #GList
1044 g_list_insert_sorted_with_data (GList *list,
1046 GCompareDataFunc func,
1049 return g_list_insert_sorted_real (list, data, (GFunc) func, user_data);
1053 g_list_sort_merge (GList *l1,
1058 GList list, *l, *lprev;
1066 cmp = ((GCompareDataFunc) compare_func) (l1->data, l2->data, user_data);
1082 l->next = l1 ? l1 : l2;
1089 g_list_sort_real (GList *list,
1103 while ((l2 = l2->next) != NULL)
1105 if ((l2 = l2->next) == NULL)
1112 return g_list_sort_merge (g_list_sort_real (list, compare_func, user_data),
1113 g_list_sort_real (l2, compare_func, user_data),
1121 * @compare_func: the comparison function used to sort the #GList.
1122 * This function is passed the data from 2 elements of the #GList
1123 * and should return 0 if they are equal, a negative value if the
1124 * first element comes before the second, or a positive value if
1125 * the first element comes after the second.
1127 * Sorts a #GList using the given comparison function. The algorithm
1128 * used is a stable sort.
1130 * Returns: the start of the sorted #GList
1135 * @b: a value to compare with.
1137 * Specifies the type of a comparison function used to compare two
1138 * values. The function should return a negative integer if the first
1139 * value comes before the second, 0 if they are equal, or a positive
1140 * integer if the first value comes after the second.
1142 * Returns: negative value if @a < @b; zero if @a = @b; positive
1146 g_list_sort (GList *list,
1147 GCompareFunc compare_func)
1149 return g_list_sort_real (list, (GFunc) compare_func, NULL);
1154 * g_list_sort_with_data:
1156 * @compare_func: comparison function
1157 * @user_data: user data to pass to comparison function
1159 * Like g_list_sort(), but the comparison function accepts
1160 * a user data argument.
1162 * Returns: the new head of @list
1167 * @b: a value to compare with.
1168 * @user_data: user data to pass to comparison function.
1170 * Specifies the type of a comparison function used to compare two
1171 * values. The function should return a negative integer if the first
1172 * value comes before the second, 0 if they are equal, or a positive
1173 * integer if the first value comes after the second.
1175 * Returns: negative value if @a < @b; zero if @a = @b; positive
1179 g_list_sort_with_data (GList *list,
1180 GCompareDataFunc compare_func,
1183 return g_list_sort_real (list, (GFunc) compare_func, user_data);