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 Library 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 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library 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-1999. 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/.
34 struct _GAllocator /* from gmem.c */
42 GList *free_lists; /* implementation specific */
45 static GAllocator *current_allocator = NULL;
46 G_LOCK_DEFINE_STATIC (current_allocator);
48 /* HOLDS: current_allocator_lock */
50 g_list_validate_allocator (GAllocator *allocator)
52 g_return_if_fail (allocator != NULL);
53 g_return_if_fail (allocator->is_unused == TRUE);
55 if (allocator->type != G_ALLOCATOR_LIST)
57 allocator->type = G_ALLOCATOR_LIST;
58 if (allocator->mem_chunk)
60 g_mem_chunk_destroy (allocator->mem_chunk);
61 allocator->mem_chunk = NULL;
65 if (!allocator->mem_chunk)
67 allocator->mem_chunk = g_mem_chunk_new (allocator->name,
69 sizeof (GList) * allocator->n_preallocs,
71 allocator->free_lists = NULL;
74 allocator->is_unused = FALSE;
78 g_list_push_allocator(GAllocator *allocator)
80 G_LOCK (current_allocator);
81 g_list_validate_allocator ( allocator );
82 allocator->last = current_allocator;
83 current_allocator = allocator;
84 G_UNLOCK (current_allocator);
88 g_list_pop_allocator (void)
90 G_LOCK (current_allocator);
91 if (current_allocator)
93 GAllocator *allocator;
95 allocator = current_allocator;
96 current_allocator = allocator->last;
97 allocator->last = NULL;
98 allocator->is_unused = TRUE;
100 G_UNLOCK (current_allocator);
108 G_LOCK (current_allocator);
109 if (!current_allocator)
111 GAllocator *allocator = g_allocator_new ("GLib default GList allocator",
113 g_list_validate_allocator (allocator);
114 allocator->last = NULL;
115 current_allocator = allocator;
117 if (!current_allocator->free_lists)
119 list = g_chunk_new (GList, current_allocator->mem_chunk);
124 if (current_allocator->free_lists->data)
126 list = current_allocator->free_lists->data;
127 current_allocator->free_lists->data = list->next;
132 list = current_allocator->free_lists;
133 current_allocator->free_lists = list->next;
136 G_UNLOCK (current_allocator);
144 g_list_free (GList *list)
148 list->data = list->next;
149 G_LOCK (current_allocator);
150 list->next = current_allocator->free_lists;
151 current_allocator->free_lists = list;
152 G_UNLOCK (current_allocator);
157 g_list_free_1 (GList *list)
162 G_LOCK (current_allocator);
163 list->next = current_allocator->free_lists;
164 current_allocator->free_lists = list;
165 G_UNLOCK (current_allocator);
170 g_list_append (GList *list,
176 new_list = g_list_alloc ();
177 new_list->data = data;
181 last = g_list_last (list);
182 /* g_assert (last != NULL); */
183 last->next = new_list;
184 new_list->prev = last;
193 g_list_prepend (GList *list,
198 new_list = g_list_alloc ();
199 new_list->data = data;
205 list->prev->next = new_list;
206 new_list->prev = list->prev;
208 list->prev = new_list;
209 new_list->next = list;
216 g_list_insert (GList *list,
224 return g_list_append (list, data);
225 else if (position == 0)
226 return g_list_prepend (list, data);
228 tmp_list = g_list_nth (list, position);
230 return g_list_append (list, data);
232 new_list = g_list_alloc ();
233 new_list->data = data;
237 tmp_list->prev->next = new_list;
238 new_list->prev = tmp_list->prev;
240 new_list->next = tmp_list;
241 tmp_list->prev = new_list;
243 if (tmp_list == list)
250 g_list_concat (GList *list1, GList *list2)
256 tmp_list = g_list_last (list1);
258 tmp_list->next = list2;
261 list2->prev = tmp_list;
268 g_list_remove (GList *list,
276 if (tmp->data != data)
281 tmp->prev->next = tmp->next;
283 tmp->next->prev = tmp->prev;
297 g_list_remove_link (GList *list,
303 link->prev->next = link->next;
305 link->next->prev = link->prev;
318 g_list_delete_link (GList *list,
321 list = g_list_remove_link (list, link);
322 g_list_free_1 (link);
328 g_list_copy (GList *list)
330 GList *new_list = NULL;
336 new_list = g_list_alloc ();
337 new_list->data = list->data;
342 last->next = g_list_alloc ();
343 last->next->prev = last;
345 last->data = list->data;
354 g_list_reverse (GList *list)
363 last->next = last->prev;
371 g_list_nth (GList *list,
374 while ((n-- > 0) && list)
381 g_list_nth_data (GList *list,
384 while ((n-- > 0) && list)
387 return list ? list->data : NULL;
391 g_list_find (GList *list,
396 if (list->data == data)
405 g_list_find_custom (GList *list,
409 g_return_val_if_fail (func != NULL, list);
413 if (! func (list->data, data))
423 g_list_position (GList *list,
441 g_list_index (GList *list,
449 if (list->data == data)
459 g_list_last (GList *list)
471 g_list_first (GList *list)
483 g_list_length (GList *list)
498 g_list_foreach (GList *list,
504 (*func) (list->data, user_data);
511 g_list_insert_sorted (GList *list,
515 GList *tmp_list = list;
519 g_return_val_if_fail (func != NULL, list);
523 new_list = g_list_alloc();
524 new_list->data = data;
528 cmp = (*func) (data, tmp_list->data);
530 while ((tmp_list->next) && (cmp > 0))
532 tmp_list = tmp_list->next;
533 cmp = (*func) (data, tmp_list->data);
536 new_list = g_list_alloc();
537 new_list->data = data;
539 if ((!tmp_list->next) && (cmp > 0))
541 tmp_list->next = new_list;
542 new_list->prev = tmp_list;
548 tmp_list->prev->next = new_list;
549 new_list->prev = tmp_list->prev;
551 new_list->next = tmp_list;
552 tmp_list->prev = new_list;
554 if (tmp_list == list)
561 g_list_sort_merge (GList *l1,
563 GCompareFunc compare_func)
565 GList list, *l, *lprev;
572 if (compare_func (l1->data, l2->data) < 0)
589 l->next = l1 ? l1 : l2;
596 g_list_sort (GList *list,
597 GCompareFunc compare_func)
609 while ((l2 = l2->next) != NULL)
611 if ((l2 = l2->next) == NULL)
618 return g_list_sort_merge (g_list_sort (list, compare_func),
619 g_list_sort (l2, compare_func),
624 g_list_sort2 (GList *list,
625 GCompareFunc compare_func)
630 /* Degenerate case. */
631 if (!list) return NULL;
633 /* Assume: list = [12,2,4,11,2,4,6,1,1,12]. */
634 for (tmp = list; tmp; )
638 tmp2->next && compare_func (tmp2->data, tmp2->next->data) <= 0;
641 runs = g_slist_append (runs, tmp);
645 /* Now: runs = [[12],[2,4,11],[2,4,6],[1,1,12]]. */
649 /* We have more than one run. Merge pairwise. */
650 GSList *dst, *src, *dstprev = NULL;
652 while (src && src->next)
654 dst->data = g_list_sort_merge (src->data,
659 src = src->next->next;
662 /* If number of runs was odd, just keep the last. */
665 dst->data = src->data;
670 dstprev->next = NULL;
674 /* After 1st loop: runs = [[2,4,11,12],[1,1,2,4,6,12]]. */
675 /* After 2nd loop: runs = [[1,1,2,2,4,4,6,11,12,12]]. */