Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
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
15 * Public 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.
20 #ifndef __G_OBJECT_NOTIFY_QUEUE_H__
21 #define __G_OBJECT_NOTIFY_QUEUE_H__
23 #include <string.h> /* memset */
25 #include <glib-object.h>
30 /* --- typedefs --- */
32 typedef struct _GObjectNotifyContext GObjectNotifyContext;
34 typedef struct _GObjectNotifyQueue GObjectNotifyQueue;
36 typedef void (*GObjectNotifyQueueDispatcher) (GObject *object,
41 /* --- structures --- */
42 struct _GObjectNotifyContext
44 GQuark quark_notify_queue;
45 GObjectNotifyQueueDispatcher dispatcher;
46 GTrashStack *_nqueue_trash; /* unused */
49 struct _GObjectNotifyQueue
51 GObjectNotifyContext *context;
55 /* currently, this structure abuses the GList allocation chain and thus
56 * must be <= sizeof (GList)
61 /* --- functions --- */
63 g_object_notify_queue_free (gpointer data)
65 GObjectNotifyQueue *nqueue = data;
67 g_slist_free (nqueue->pspecs);
68 g_list_free_1 ((void*) nqueue);
71 static inline GObjectNotifyQueue*
72 g_object_notify_queue_freeze (GObject *object,
73 GObjectNotifyContext *context)
75 GObjectNotifyQueue *nqueue;
77 nqueue = g_datalist_id_get_data (&object->qdata, context->quark_notify_queue);
80 nqueue = (void*) g_list_alloc ();
81 memset (nqueue, 0, sizeof (*nqueue));
82 nqueue->context = context;
83 g_datalist_id_set_data_full (&object->qdata, context->quark_notify_queue,
84 nqueue, g_object_notify_queue_free);
87 g_return_val_if_fail (nqueue->freeze_count < 65535, nqueue);
88 nqueue->freeze_count++;
94 g_object_notify_queue_thaw (GObject *object,
95 GObjectNotifyQueue *nqueue)
97 GObjectNotifyContext *context = nqueue->context;
98 GParamSpec *pspecs_mem[16], **pspecs, **free_me = NULL;
102 g_return_if_fail (nqueue->freeze_count > 0);
104 nqueue->freeze_count--;
105 if (nqueue->freeze_count)
107 g_return_if_fail (object->ref_count > 0);
109 pspecs = nqueue->n_pspecs > 16 ? free_me = g_new (GParamSpec*, nqueue->n_pspecs) : pspecs_mem;
110 /* set first entry to NULL since it's checked unconditionally */
112 for (slist = nqueue->pspecs; slist; slist = slist->next)
114 GParamSpec *pspec = slist->data;
117 /* dedup, make pspecs in the list unique */
119 if (pspecs[i] == pspec)
122 goto redo_dedup_check;
124 pspecs[n_pspecs++] = pspec;
126 g_datalist_id_set_data (&object->qdata, context->quark_notify_queue, NULL);
129 context->dispatcher (object, n_pspecs, pspecs);
134 g_object_notify_queue_clear (GObject *object,
135 GObjectNotifyQueue *nqueue)
137 g_return_if_fail (nqueue->freeze_count > 0);
139 g_slist_free (nqueue->pspecs);
140 nqueue->pspecs = NULL;
141 nqueue->n_pspecs = 0;
145 g_object_notify_queue_add (GObject *object,
146 GObjectNotifyQueue *nqueue,
149 if (pspec->flags & G_PARAM_READABLE)
151 GParamSpec *redirect;
153 g_return_if_fail (nqueue->n_pspecs < 65535);
155 redirect = g_param_spec_get_redirect_target (pspec);
159 /* we do the deduping in _thaw */
160 nqueue->pspecs = g_slist_prepend (nqueue->pspecs, pspec);
165 static inline GObjectNotifyQueue*
166 g_object_notify_queue_from_object (GObject *object,
167 GObjectNotifyContext *context)
169 return g_datalist_id_get_data (&object->qdata, context->quark_notify_queue);
175 #endif /* __G_OBJECT_NOTIFY_QUEUE_H__ */