Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
30 #include "gparamspecs.h"
31 #include "gvaluecollector.h"
32 #include "gobjectalias.h"
35 #include <glib_global.h>
36 #include "gobject_wsd.h"
37 #include <gobject_global.h>
38 #endif /* __SYMBIAN32__ */
41 * @short_description: Metadata for parameter specifications
42 * @see_also: g_object_class_install_property(), g_object_set(),
43 * g_object_get(), g_object_set_property(), g_object_get_property(),
44 * g_value_register_transform_func()
47 * #GParamSpec is an object structure that encapsulates the metadata
48 * required to specify parameters, such as e.g. #GObject properties.
50 * <para id="canonical-parameter-name">
51 * Parameter names need to start with a letter (a-z or A-Z). Subsequent
52 * characters can be letters, numbers or a '-'.
53 * All other characters are replaced by a '-' during construction.
54 * The result of this replacement is called the canonical name of the
61 #define PARAM_FLOATING_FLAG 0x2
62 #define G_PARAM_USER_MASK (~0 << G_PARAM_USER_SHIFT)
63 #define PSPEC_APPLIES_TO_VALUE(pspec, value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_PARAM_SPEC_VALUE_TYPE (pspec)))
64 #define G_SLOCK(mutex) g_static_mutex_lock (mutex)
65 #define G_SUNLOCK(mutex) g_static_mutex_unlock (mutex)
68 /* --- prototypes --- */
69 static void g_param_spec_class_base_init (GParamSpecClass *class);
70 static void g_param_spec_class_base_finalize (GParamSpecClass *class);
71 static void g_param_spec_class_init (GParamSpecClass *class,
73 static void g_param_spec_init (GParamSpec *pspec,
74 GParamSpecClass *class);
75 static void g_param_spec_finalize (GParamSpec *pspec);
76 static void value_param_init (GValue *value);
77 static void value_param_free_value (GValue *value);
78 static void value_param_copy_value (const GValue *src_value,
80 static void value_param_transform_value (const GValue *src_value,
82 static gpointer value_param_peek_pointer (const GValue *value);
83 static gchar* value_param_collect_value (GValue *value,
84 guint n_collect_values,
85 GTypeCValue *collect_values,
87 static gchar* value_param_lcopy_value (const GValue *value,
88 guint n_collect_values,
89 GTypeCValue *collect_values,
93 /* --- functions --- */
95 g_param_type_init (void)
97 static const GTypeFundamentalInfo finfo = {
98 (G_TYPE_FLAG_CLASSED |
99 G_TYPE_FLAG_INSTANTIATABLE |
100 G_TYPE_FLAG_DERIVABLE |
101 G_TYPE_FLAG_DEEP_DERIVABLE),
103 static const GTypeValueTable param_value_table = {
104 value_param_init, /* value_init */
105 value_param_free_value, /* value_free */
106 value_param_copy_value, /* value_copy */
107 value_param_peek_pointer, /* value_peek_pointer */
108 "p", /* collect_format */
109 value_param_collect_value, /* collect_value */
110 "p", /* lcopy_format */
111 value_param_lcopy_value, /* lcopy_value */
113 static const GTypeInfo param_spec_info = {
114 sizeof (GParamSpecClass),
116 (GBaseInitFunc) g_param_spec_class_base_init,
117 (GBaseFinalizeFunc) g_param_spec_class_base_finalize,
118 (GClassInitFunc) g_param_spec_class_init,
119 (GClassFinalizeFunc) NULL,
120 NULL, /* class_data */
124 (GInstanceInitFunc) g_param_spec_init,
130 /* This should be registred as GParamSpec instead of GParam, for
131 * consistency sake, so that type name can be mapped to struct name,
132 * However, some language bindings, most noticable the python ones
133 * depends on the "GParam" identifier, see #548689
135 type = g_type_register_fundamental (G_TYPE_PARAM, g_intern_static_string ("GParam"), ¶m_spec_info, &finfo, G_TYPE_FLAG_ABSTRACT);
136 g_assert (type == G_TYPE_PARAM);
137 g_value_register_transform_func (G_TYPE_PARAM, G_TYPE_PARAM, value_param_transform_value);
141 g_param_spec_class_base_init (GParamSpecClass *class)
146 g_param_spec_class_base_finalize (GParamSpecClass *class)
151 g_param_spec_class_init (GParamSpecClass *class,
154 class->value_type = G_TYPE_NONE;
155 class->finalize = g_param_spec_finalize;
156 class->value_set_default = NULL;
157 class->value_validate = NULL;
158 class->values_cmp = NULL;
162 g_param_spec_init (GParamSpec *pspec,
163 GParamSpecClass *class)
167 pspec->_blurb = NULL;
169 pspec->value_type = class->value_type;
170 pspec->owner_type = 0;
172 g_datalist_init (&pspec->qdata);
173 g_datalist_set_flags (&pspec->qdata, PARAM_FLOATING_FLAG);
174 pspec->ref_count = 1;
179 g_param_spec_finalize (GParamSpec *pspec)
181 g_datalist_clear (&pspec->qdata);
183 if (!(pspec->flags & G_PARAM_STATIC_NAME))
184 g_free (pspec->name);
186 if (!(pspec->flags & G_PARAM_STATIC_NICK))
187 g_free (pspec->_nick);
189 if (!(pspec->flags & G_PARAM_STATIC_BLURB))
190 g_free (pspec->_blurb);
192 g_type_free_instance ((GTypeInstance*) pspec);
197 * @pspec: a valid #GParamSpec
199 * Increments the reference count of @pspec.
201 * Returns: the #GParamSpec that was passed into this function
204 g_param_spec_ref (GParamSpec *pspec)
206 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
207 g_return_val_if_fail (pspec->ref_count > 0, NULL);
209 g_atomic_int_inc ((int *)&pspec->ref_count);
215 * g_param_spec_unref:
216 * @pspec: a valid #GParamSpec
218 * Decrements the reference count of a @pspec.
221 g_param_spec_unref (GParamSpec *pspec)
225 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
226 g_return_if_fail (pspec->ref_count > 0);
228 is_zero = g_atomic_int_dec_and_test ((int *)&pspec->ref_count);
230 if (G_UNLIKELY (is_zero))
232 G_PARAM_SPEC_GET_CLASS (pspec)->finalize (pspec);
238 * @pspec: a valid #GParamSpec
240 * The initial reference count of a newly created #GParamSpec is 1,
241 * even though no one has explicitly called g_param_spec_ref() on it
242 * yet. So the initial reference count is flagged as "floating", until
243 * someone calls <literal>g_param_spec_ref (pspec); g_param_spec_sink
244 * (pspec);</literal> in sequence on it, taking over the initial
245 * reference count (thus ending up with a @pspec that has a reference
246 * count of 1 still, but is not flagged "floating" anymore).
249 g_param_spec_sink (GParamSpec *pspec)
252 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
253 g_return_if_fail (pspec->ref_count > 0);
256 oldvalue = g_atomic_pointer_get (&pspec->qdata);
257 while (!g_atomic_pointer_compare_and_exchange ((void**) &pspec->qdata, oldvalue,
258 (gpointer) ((gsize) oldvalue & ~(gsize) PARAM_FLOATING_FLAG)));
259 if ((gsize) oldvalue & PARAM_FLOATING_FLAG)
260 g_param_spec_unref (pspec);
264 * g_param_spec_ref_sink:
265 * @pspec: a valid #GParamSpec
267 * Convenience function to ref and sink a #GParamSpec.
270 * Returns: the #GParamSpec that was passed into this function
273 g_param_spec_ref_sink (GParamSpec *pspec)
275 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
276 g_return_val_if_fail (pspec->ref_count > 0, NULL);
278 g_param_spec_ref (pspec);
279 g_param_spec_sink (pspec);
284 * g_param_spec_get_name:
285 * @pspec: a valid #GParamSpec
287 * Get the name of a #GParamSpec.
289 * Returns: the name of @pspec.
291 EXPORT_C G_CONST_RETURN gchar*
292 g_param_spec_get_name (GParamSpec *pspec)
294 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
300 * g_param_spec_get_nick:
301 * @pspec: a valid #GParamSpec
303 * Get the nickname of a #GParamSpec.
305 * Returns: the nickname of @pspec.
307 EXPORT_C G_CONST_RETURN gchar*
308 g_param_spec_get_nick (GParamSpec *pspec)
310 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
316 GParamSpec *redirect_target;
318 redirect_target = g_param_spec_get_redirect_target (pspec);
319 if (redirect_target && redirect_target->_nick)
320 return redirect_target->_nick;
327 * g_param_spec_get_blurb:
328 * @pspec: a valid #GParamSpec
330 * Get the short description of a #GParamSpec.
332 * Returns: the short description of @pspec.
334 EXPORT_C G_CONST_RETURN gchar*
335 g_param_spec_get_blurb (GParamSpec *pspec)
337 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
340 return pspec->_blurb;
343 GParamSpec *redirect_target;
345 redirect_target = g_param_spec_get_redirect_target (pspec);
346 if (redirect_target && redirect_target->_blurb)
347 return redirect_target->_blurb;
354 canonicalize_key (gchar *key)
358 for (p = key; *p != 0; p++)
363 (c < '0' || c > '9') &&
364 (c < 'A' || c > 'Z') &&
365 (c < 'a' || c > 'z'))
371 is_canonical (const gchar *key)
375 for (p = key; *p != 0; p++)
380 (c < '0' || c > '9') &&
381 (c < 'A' || c > 'Z') &&
382 (c < 'a' || c > 'z'))
390 * g_param_spec_internal:
391 * @param_type: the #GType for the property; must be derived from #G_TYPE_PARAM
392 * @name: the canonical name of the property
393 * @nick: the nickname of the property
394 * @blurb: a short description of the property
395 * @flags: a combination of #GParamFlags
397 * Creates a new #GParamSpec instance.
399 * A property name consists of segments consisting of ASCII letters and
400 * digits, separated by either the '-' or '_' character. The first
401 * character of a property name must be a letter. Names which violate these
402 * rules lead to undefined behaviour.
404 * When creating and looking up a #GParamSpec, either separator can be
405 * used, but they cannot be mixed. Using '-' is considerably more
406 * efficient and in fact required when using property names as detail
407 * strings for signals.
409 * Beyond the name, #GParamSpec<!-- -->s have two more descriptive
410 * strings associated with them, the @nick, which should be suitable
411 * for use as a label for the property in a property editor, and the
412 * @blurb, which should be a somewhat longer description, suitable for
413 * e.g. a tooltip. The @nick and @blurb should ideally be localized.
415 * Returns: a newly allocated #GParamSpec instance
418 g_param_spec_internal (GType param_type,
426 g_return_val_if_fail (G_TYPE_IS_PARAM (param_type) && param_type != G_TYPE_PARAM, NULL);
427 g_return_val_if_fail (name != NULL, NULL);
428 g_return_val_if_fail ((name[0] >= 'A' && name[0] <= 'Z') || (name[0] >= 'a' && name[0] <= 'z'), NULL);
429 g_return_val_if_fail (!(flags & G_PARAM_STATIC_NAME) || is_canonical (name), NULL);
431 pspec = (gpointer) g_type_create_instance (param_type);
433 if (flags & G_PARAM_STATIC_NAME)
435 pspec->name = g_intern_static_string (name);
436 if (!is_canonical (pspec->name))
437 g_warning ("G_PARAM_STATIC_NAME used with non-canonical pspec name: %s", pspec->name);
441 pspec->name = g_strdup (name);
442 canonicalize_key (pspec->name);
443 g_intern_string (pspec->name);
446 if (flags & G_PARAM_STATIC_NICK)
447 pspec->_nick = (gchar*) nick;
449 pspec->_nick = g_strdup (nick);
451 if (flags & G_PARAM_STATIC_BLURB)
452 pspec->_blurb = (gchar*) blurb;
454 pspec->_blurb = g_strdup (blurb);
456 pspec->flags = (flags & G_PARAM_USER_MASK) | (flags & G_PARAM_MASK);
462 * g_param_spec_get_qdata:
463 * @pspec: a valid #GParamSpec
464 * @quark: a #GQuark, naming the user data pointer
466 * Gets back user data pointers stored via g_param_spec_set_qdata().
468 * Returns: the user data pointer set, or %NULL
471 g_param_spec_get_qdata (GParamSpec *pspec,
474 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
476 return quark ? g_datalist_id_get_data (&pspec->qdata, quark) : NULL;
480 * g_param_spec_set_qdata:
481 * @pspec: the #GParamSpec to set store a user data pointer
482 * @quark: a #GQuark, naming the user data pointer
483 * @data: an opaque user data pointer
485 * Sets an opaque, named pointer on a #GParamSpec. The name is
486 * specified through a #GQuark (retrieved e.g. via
487 * g_quark_from_static_string()), and the pointer can be gotten back
488 * from the @pspec with g_param_spec_get_qdata(). Setting a
489 * previously set user data pointer, overrides (frees) the old pointer
490 * set, using %NULL as pointer essentially removes the data stored.
493 g_param_spec_set_qdata (GParamSpec *pspec,
497 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
498 g_return_if_fail (quark > 0);
500 g_datalist_id_set_data (&pspec->qdata, quark, data);
504 * g_param_spec_set_qdata_full:
505 * @pspec: the #GParamSpec to set store a user data pointer
506 * @quark: a #GQuark, naming the user data pointer
507 * @data: an opaque user data pointer
508 * @destroy: function to invoke with @data as argument, when @data needs to
511 * This function works like g_param_spec_set_qdata(), but in addition,
512 * a <literal>void (*destroy) (gpointer)</literal> function may be
513 * specified which is called with @data as argument when the @pspec is
514 * finalized, or the data is being overwritten by a call to
515 * g_param_spec_set_qdata() with the same @quark.
518 g_param_spec_set_qdata_full (GParamSpec *pspec,
521 GDestroyNotify destroy)
523 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
524 g_return_if_fail (quark > 0);
526 g_datalist_id_set_data_full (&pspec->qdata, quark, data, data ? destroy : (GDestroyNotify) NULL);
530 * g_param_spec_steal_qdata:
531 * @pspec: the #GParamSpec to get a stored user data pointer from
532 * @quark: a #GQuark, naming the user data pointer
534 * Gets back user data pointers stored via g_param_spec_set_qdata()
535 * and removes the @data from @pspec without invoking its destroy()
536 * function (if any was set). Usually, calling this function is only
537 * required to update user data pointers with a destroy notifier.
539 * Returns: the user data pointer set, or %NULL
542 g_param_spec_steal_qdata (GParamSpec *pspec,
545 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
546 g_return_val_if_fail (quark > 0, NULL);
548 return g_datalist_id_remove_no_notify (&pspec->qdata, quark);
552 * g_param_spec_get_redirect_target:
553 * @pspec: a #GParamSpec
555 * If the paramspec redirects operations to another paramspec,
556 * returns that paramspec. Redirect is used typically for
557 * providing a new implementation of a property in a derived
558 * type while preserving all the properties from the parent
559 * type. Redirection is established by creating a property
560 * of type #GParamSpecOverride. See g_object_class_override_property()
561 * for an example of the use of this capability.
565 * Returns: paramspec to which requests on this paramspec should
566 * be redirected, or %NULL if none.
569 g_param_spec_get_redirect_target (GParamSpec *pspec)
571 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
573 if (G_IS_PARAM_SPEC_OVERRIDE (pspec))
575 GParamSpecOverride *ospec = G_PARAM_SPEC_OVERRIDE (pspec);
577 return ospec->overridden;
584 * g_param_value_set_default:
585 * @pspec: a valid #GParamSpec
586 * @value: a #GValue of correct type for @pspec
588 * Sets @value to its default value as specified in @pspec.
591 g_param_value_set_default (GParamSpec *pspec,
594 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
595 g_return_if_fail (G_IS_VALUE (value));
596 g_return_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, value));
598 g_value_reset (value);
599 G_PARAM_SPEC_GET_CLASS (pspec)->value_set_default (pspec, value);
603 * g_param_value_defaults:
604 * @pspec: a valid #GParamSpec
605 * @value: a #GValue of correct type for @pspec
607 * Checks whether @value contains the default value as specified in @pspec.
609 * Returns: whether @value contains the canonical default for this @pspec
612 g_param_value_defaults (GParamSpec *pspec,
615 GValue dflt_value = { 0, };
618 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
619 g_return_val_if_fail (G_IS_VALUE (value), FALSE);
620 g_return_val_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, value), FALSE);
622 g_value_init (&dflt_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
623 G_PARAM_SPEC_GET_CLASS (pspec)->value_set_default (pspec, &dflt_value);
624 defaults = G_PARAM_SPEC_GET_CLASS (pspec)->values_cmp (pspec, value, &dflt_value) == 0;
625 g_value_unset (&dflt_value);
631 * g_param_value_validate:
632 * @pspec: a valid #GParamSpec
633 * @value: a #GValue of correct type for @pspec
635 * Ensures that the contents of @value comply with the specifications
636 * set out by @pspec. For example, a #GParamSpecInt might require
637 * that integers stored in @value may not be smaller than -42 and not be
638 * greater than +42. If @value contains an integer outside of this range,
639 * it is modified accordingly, so the resulting value will fit into the
642 * Returns: whether modifying @value was necessary to ensure validity
645 g_param_value_validate (GParamSpec *pspec,
648 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
649 g_return_val_if_fail (G_IS_VALUE (value), FALSE);
650 g_return_val_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, value), FALSE);
652 if (G_PARAM_SPEC_GET_CLASS (pspec)->value_validate)
654 GValue oval = *value;
656 if (G_PARAM_SPEC_GET_CLASS (pspec)->value_validate (pspec, value) ||
657 memcmp (&oval.data, &value->data, sizeof (oval.data)))
665 * g_param_value_convert:
666 * @pspec: a valid #GParamSpec
667 * @src_value: souce #GValue
668 * @dest_value: destination #GValue of correct type for @pspec
669 * @strict_validation: %TRUE requires @dest_value to conform to @pspec
670 * without modifications
672 * Transforms @src_value into @dest_value if possible, and then
673 * validates @dest_value, in order for it to conform to @pspec. If
674 * @strict_validation is %TRUE this function will only succeed if the
675 * transformed @dest_value complied to @pspec without modifications.
677 * See also g_value_type_transformable(), g_value_transform() and
678 * g_param_value_validate().
680 * Returns: %TRUE if transformation and validation were successful,
681 * %FALSE otherwise and @dest_value is left untouched.
684 g_param_value_convert (GParamSpec *pspec,
685 const GValue *src_value,
687 gboolean strict_validation)
689 GValue tmp_value = { 0, };
691 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
692 g_return_val_if_fail (G_IS_VALUE (src_value), FALSE);
693 g_return_val_if_fail (G_IS_VALUE (dest_value), FALSE);
694 g_return_val_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, dest_value), FALSE);
696 /* better leave dest_value untouched when returning FALSE */
698 g_value_init (&tmp_value, G_VALUE_TYPE (dest_value));
699 if (g_value_transform (src_value, &tmp_value) &&
700 (!g_param_value_validate (pspec, &tmp_value) || !strict_validation))
702 g_value_unset (dest_value);
704 /* values are relocatable */
705 memcpy (dest_value, &tmp_value, sizeof (tmp_value));
711 g_value_unset (&tmp_value);
718 * g_param_values_cmp:
719 * @pspec: a valid #GParamSpec
720 * @value1: a #GValue of correct type for @pspec
721 * @value2: a #GValue of correct type for @pspec
723 * Compares @value1 with @value2 according to @pspec, and return -1, 0 or +1,
724 * if @value1 is found to be less than, equal to or greater than @value2,
727 * Returns: -1, 0 or +1, for a less than, equal to or greater than result
730 g_param_values_cmp (GParamSpec *pspec,
731 const GValue *value1,
732 const GValue *value2)
736 /* param_values_cmp() effectively does: value1 - value2
737 * so the return values are:
738 * -1) value1 < value2
739 * 0) value1 == value2
742 g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), 0);
743 g_return_val_if_fail (G_IS_VALUE (value1), 0);
744 g_return_val_if_fail (G_IS_VALUE (value2), 0);
745 g_return_val_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, value1), 0);
746 g_return_val_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, value2), 0);
748 cmp = G_PARAM_SPEC_GET_CLASS (pspec)->values_cmp (pspec, value1, value2);
750 return CLAMP (cmp, -1, 1);
754 value_param_init (GValue *value)
756 value->data[0].v_pointer = NULL;
760 value_param_free_value (GValue *value)
762 if (value->data[0].v_pointer)
763 g_param_spec_unref (value->data[0].v_pointer);
767 value_param_copy_value (const GValue *src_value,
770 if (src_value->data[0].v_pointer)
771 dest_value->data[0].v_pointer = g_param_spec_ref (src_value->data[0].v_pointer);
773 dest_value->data[0].v_pointer = NULL;
777 value_param_transform_value (const GValue *src_value,
780 if (src_value->data[0].v_pointer &&
781 g_type_is_a (G_PARAM_SPEC_TYPE (dest_value->data[0].v_pointer), G_VALUE_TYPE (dest_value)))
782 dest_value->data[0].v_pointer = g_param_spec_ref (src_value->data[0].v_pointer);
784 dest_value->data[0].v_pointer = NULL;
788 value_param_peek_pointer (const GValue *value)
790 return value->data[0].v_pointer;
794 value_param_collect_value (GValue *value,
795 guint n_collect_values,
796 GTypeCValue *collect_values,
799 if (collect_values[0].v_pointer)
801 GParamSpec *param = collect_values[0].v_pointer;
803 if (param->g_type_instance.g_class == NULL)
804 return g_strconcat ("invalid unclassed param spec pointer for value type `",
805 G_VALUE_TYPE_NAME (value),
808 else if (!g_value_type_compatible (G_PARAM_SPEC_TYPE (param), G_VALUE_TYPE (value)))
809 return g_strconcat ("invalid param spec type `",
810 G_PARAM_SPEC_TYPE_NAME (param),
811 "' for value type `",
812 G_VALUE_TYPE_NAME (value),
815 value->data[0].v_pointer = g_param_spec_ref (param);
818 value->data[0].v_pointer = NULL;
824 value_param_lcopy_value (const GValue *value,
825 guint n_collect_values,
826 GTypeCValue *collect_values,
829 GParamSpec **param_p = collect_values[0].v_pointer;
832 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
834 if (!value->data[0].v_pointer)
836 else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
837 *param_p = value->data[0].v_pointer;
839 *param_p = g_param_spec_ref (value->data[0].v_pointer);
845 /* --- param spec pool --- */
849 * A #GParamSpecPool maintains a collection of #GParamSpec<!-- -->s which can be
850 * quickly accessed by owner and name. The implementation of the #GObject property
851 * system uses such a pool to store the #GParamSpecs of the properties all object
854 struct _GParamSpecPool
857 gboolean type_prefixing;
858 GHashTable *hash_table;
862 param_spec_pool_hash (gconstpointer key_spec)
864 const GParamSpec *key = key_spec;
866 guint h = key->owner_type;
868 for (p = key->name; *p; p++)
869 h = (h << 5) - h + *p;
875 param_spec_pool_equals (gconstpointer key_spec_1,
876 gconstpointer key_spec_2)
878 const GParamSpec *key1 = key_spec_1;
879 const GParamSpec *key2 = key_spec_2;
881 return (key1->owner_type == key2->owner_type &&
882 strcmp (key1->name, key2->name) == 0);
886 PLS(init_smutex,g_param_spec_pool_new ,GStaticMutex)
887 #define init_smutex (*FUNCTION_NAME(init_smutex,g_param_spec_pool_new )())
888 #endif /* EMULATOR */
891 * g_param_spec_pool_new:
892 * @type_prefixing: Whether the pool will support type-prefixed property names.
894 * Creates a new #GParamSpecPool.
896 * If @type_prefixing is %TRUE, lookups in the newly created pool will
897 * allow to specify the owner as a colon-separated prefix of the
898 * property name, like "GtkContainer:border-width". This feature is
899 * deprecated, so you should always set @type_prefixing to %FALSE.
901 * Returns: a newly allocated #GParamSpecPool.
903 EXPORT_C GParamSpecPool*
904 g_param_spec_pool_new (gboolean type_prefixing)
907 static GStaticMutex init_smutex = G_STATIC_MUTEX_INIT;
908 #endif /* EMULATOR */
909 GParamSpecPool *pool = g_new (GParamSpecPool, 1);
911 memcpy (&pool->smutex, &init_smutex, sizeof (init_smutex));
912 pool->type_prefixing = type_prefixing != FALSE;
913 pool->hash_table = g_hash_table_new (param_spec_pool_hash, param_spec_pool_equals);
920 #endif /* EMULATOR */
923 * g_param_spec_pool_insert:
924 * @pool: a #GParamSpecPool.
925 * @pspec: the #GParamSpec to insert
926 * @owner_type: a #GType identifying the owner of @pspec
928 * Inserts a #GParamSpec in the pool.
931 g_param_spec_pool_insert (GParamSpecPool *pool,
937 if (pool && pspec && owner_type > 0 && pspec->owner_type == 0)
939 G_SLOCK (&pool->smutex);
940 for (p = pspec->name; *p; p++)
942 if (!strchr (G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-_", *p))
944 g_warning (G_STRLOC ": pspec name \"%s\" contains invalid characters", pspec->name);
945 G_SUNLOCK (&pool->smutex);
950 pspec->owner_type = owner_type;
951 g_param_spec_ref (pspec);
952 g_hash_table_insert (pool->hash_table, pspec, pspec);
953 G_SUNLOCK (&pool->smutex);
957 g_return_if_fail (pool != NULL);
958 g_return_if_fail (pspec);
959 g_return_if_fail (owner_type > 0);
960 g_return_if_fail (pspec->owner_type == 0);
965 * g_param_spec_pool_remove:
966 * @pool: a #GParamSpecPool
967 * @pspec: the #GParamSpec to remove
969 * Removes a #GParamSpec from the pool.
972 g_param_spec_pool_remove (GParamSpecPool *pool,
977 G_SLOCK (&pool->smutex);
978 if (g_hash_table_remove (pool->hash_table, pspec))
979 g_param_spec_unref (pspec);
981 g_warning (G_STRLOC ": attempt to remove unknown pspec `%s' from pool", pspec->name);
982 G_SUNLOCK (&pool->smutex);
986 g_return_if_fail (pool != NULL);
987 g_return_if_fail (pspec);
991 static inline GParamSpec*
992 param_spec_ht_lookup (GHashTable *hash_table,
993 const gchar *param_name,
995 gboolean walk_ancestors)
997 GParamSpec key, *pspec;
999 key.owner_type = owner_type;
1000 key.name = (gchar*) param_name;
1004 pspec = g_hash_table_lookup (hash_table, &key);
1007 key.owner_type = g_type_parent (key.owner_type);
1009 while (key.owner_type);
1011 pspec = g_hash_table_lookup (hash_table, &key);
1013 if (!pspec && !is_canonical (param_name))
1015 /* try canonicalized form */
1016 key.name = g_strdup (param_name);
1017 key.owner_type = owner_type;
1019 canonicalize_key (key.name);
1023 pspec = g_hash_table_lookup (hash_table, &key);
1029 key.owner_type = g_type_parent (key.owner_type);
1031 while (key.owner_type);
1033 pspec = g_hash_table_lookup (hash_table, &key);
1041 * g_param_spec_pool_lookup:
1042 * @pool: a #GParamSpecPool
1043 * @param_name: the name to look for
1044 * @owner_type: the owner to look for
1045 * @walk_ancestors: If %TRUE, also try to find a #GParamSpec with @param_name
1046 * owned by an ancestor of @owner_type.
1048 * Looks up a #GParamSpec in the pool.
1050 * Returns: The found #GParamSpec, or %NULL if no matching #GParamSpec was found.
1052 EXPORT_C GParamSpec*
1053 g_param_spec_pool_lookup (GParamSpecPool *pool,
1054 const gchar *param_name,
1056 gboolean walk_ancestors)
1061 if (!pool || !param_name)
1063 g_return_val_if_fail (pool != NULL, NULL);
1064 g_return_val_if_fail (param_name != NULL, NULL);
1067 G_SLOCK (&pool->smutex);
1069 delim = pool->type_prefixing ? strchr (param_name, ':') : NULL;
1071 /* try quick and away, i.e. without prefix */
1074 pspec = param_spec_ht_lookup (pool->hash_table, param_name, owner_type, walk_ancestors);
1075 G_SUNLOCK (&pool->smutex);
1080 /* strip type prefix */
1081 if (pool->type_prefixing && delim[1] == ':')
1083 guint l = delim - param_name;
1084 gchar stack_buffer[32], *buffer = l < 32 ? stack_buffer : g_new (gchar, l + 1);
1087 strncpy (buffer, param_name, delim - param_name);
1089 type = g_type_from_name (buffer);
1092 if (type) /* type==0 isn't a valid type pefix */
1094 /* sanity check, these cases don't make a whole lot of sense */
1095 if ((!walk_ancestors && type != owner_type) || !g_type_is_a (owner_type, type))
1097 G_SUNLOCK (&pool->smutex);
1102 param_name += l + 2;
1103 pspec = param_spec_ht_lookup (pool->hash_table, param_name, owner_type, walk_ancestors);
1104 G_SUNLOCK (&pool->smutex);
1109 /* malformed param_name */
1111 G_SUNLOCK (&pool->smutex);
1117 pool_list (gpointer key,
1121 GParamSpec *pspec = value;
1122 gpointer *data = user_data;
1123 GType owner_type = (GType) data[1];
1125 if (owner_type == pspec->owner_type)
1126 data[0] = g_list_prepend (data[0], pspec);
1130 * g_param_spec_pool_list_owned:
1131 * @pool: a #GParamSpecPool
1132 * @owner_type: the owner to look for
1134 * Gets an #GList of all #GParamSpec<!-- -->s owned by @owner_type in
1137 * Returns: a #GList of all #GParamSpec<!-- -->s owned by @owner_type
1138 * in the pool#GParamSpec<!-- -->s.
1141 g_param_spec_pool_list_owned (GParamSpecPool *pool,
1146 g_return_val_if_fail (pool != NULL, NULL);
1147 g_return_val_if_fail (owner_type > 0, NULL);
1149 G_SLOCK (&pool->smutex);
1151 data[1] = (gpointer) owner_type;
1152 g_hash_table_foreach (pool->hash_table, pool_list, &data);
1153 G_SUNLOCK (&pool->smutex);
1159 pspec_compare_id (gconstpointer a,
1162 const GParamSpec *pspec1 = a, *pspec2 = b;
1164 return pspec1->param_id < pspec2->param_id ? -1 : pspec1->param_id > pspec2->param_id;
1167 static inline GSList*
1168 pspec_list_remove_overridden_and_redirected (GSList *plist,
1173 GSList *rlist = NULL;
1177 GSList *tmp = plist->next;
1178 GParamSpec *pspec = plist->data;
1180 gboolean remove = FALSE;
1182 /* Remove paramspecs that are redirected, and also paramspecs
1183 * that have are overridden by non-redirected properties.
1184 * The idea is to get the single paramspec for each name that
1185 * best corresponds to what the application sees.
1187 if (g_param_spec_get_redirect_target (pspec))
1191 found = param_spec_ht_lookup (ht, pspec->name, owner_type, TRUE);
1194 GParamSpec *redirect = g_param_spec_get_redirect_target (found);
1195 if (redirect != pspec)
1202 g_slist_free_1 (plist);
1206 plist->next = rlist;
1216 pool_depth_list (gpointer key,
1220 GParamSpec *pspec = value;
1221 gpointer *data = user_data;
1222 GSList **slists = data[0];
1223 GType owner_type = (GType) data[1];
1225 if (g_type_is_a (owner_type, pspec->owner_type))
1227 if (G_TYPE_IS_INTERFACE (pspec->owner_type))
1229 slists[0] = g_slist_prepend (slists[0], pspec);
1233 guint d = g_type_depth (pspec->owner_type);
1235 slists[d - 1] = g_slist_prepend (slists[d - 1], pspec);
1240 /* We handle interfaces specially since we don't want to
1241 * count interface prerequisites like normal inheritance;
1242 * the property comes from the direct inheritance from
1243 * the prerequisite class, not from the interface that
1246 * also 'depth' isn't a meaningful concept for interface
1250 pool_depth_list_for_interface (gpointer key,
1254 GParamSpec *pspec = value;
1255 gpointer *data = user_data;
1256 GSList **slists = data[0];
1257 GType owner_type = (GType) data[1];
1259 if (pspec->owner_type == owner_type)
1260 slists[0] = g_slist_prepend (slists[0], pspec);
1264 * g_param_spec_pool_list:
1265 * @pool: a #GParamSpecPool
1266 * @owner_type: the owner to look for
1267 * @n_pspecs_p: return location for the length of the returned array
1269 * Gets an array of all #GParamSpec<!-- -->s owned by @owner_type in
1272 * Returns: a newly allocated array containing pointers to all
1273 * #GParamSpec<!-- -->s owned by @owner_type in the pool
1275 EXPORT_C GParamSpec** /* free result */
1276 g_param_spec_pool_list (GParamSpecPool *pool,
1280 GParamSpec **pspecs, **p;
1281 GSList **slists, *node;
1285 g_return_val_if_fail (pool != NULL, NULL);
1286 g_return_val_if_fail (owner_type > 0, NULL);
1287 g_return_val_if_fail (n_pspecs_p != NULL, NULL);
1289 G_SLOCK (&pool->smutex);
1291 d = g_type_depth (owner_type);
1292 slists = g_new0 (GSList*, d);
1294 data[1] = (gpointer) owner_type;
1296 g_hash_table_foreach (pool->hash_table,
1297 G_TYPE_IS_INTERFACE (owner_type) ?
1298 pool_depth_list_for_interface :
1302 for (i = 0; i < d; i++)
1303 slists[i] = pspec_list_remove_overridden_and_redirected (slists[i], pool->hash_table, owner_type, n_pspecs_p);
1304 pspecs = g_new (GParamSpec*, *n_pspecs_p + 1);
1306 for (i = 0; i < d; i++)
1308 slists[i] = g_slist_sort (slists[i], pspec_compare_id);
1309 for (node = slists[i]; node; node = node->next)
1311 g_slist_free (slists[i]);
1315 G_SUNLOCK (&pool->smutex);
1321 /* --- auxillary functions --- */
1326 void (*finalize) (GParamSpec *pspec);
1327 void (*value_set_default) (GParamSpec *pspec,
1329 gboolean (*value_validate) (GParamSpec *pspec,
1331 gint (*values_cmp) (GParamSpec *pspec,
1332 const GValue *value1,
1333 const GValue *value2);
1334 } ParamSpecClassInfo;
1337 param_spec_generic_class_init (gpointer g_class,
1338 gpointer class_data)
1340 GParamSpecClass *class = g_class;
1341 ParamSpecClassInfo *info = class_data;
1343 class->value_type = info->value_type;
1345 class->finalize = info->finalize; /* optional */
1346 class->value_set_default = info->value_set_default;
1347 if (info->value_validate)
1348 class->value_validate = info->value_validate; /* optional */
1349 class->values_cmp = info->values_cmp;
1350 g_free (class_data);
1354 default_value_set_default (GParamSpec *pspec,
1357 /* value is already zero initialized */
1361 default_values_cmp (GParamSpec *pspec,
1362 const GValue *value1,
1363 const GValue *value2)
1365 return memcmp (&value1->data, &value2->data, sizeof (value1->data));
1369 * g_param_type_register_static:
1370 * @name: 0-terminated string used as the name of the new #GParamSpec type.
1371 * @pspec_info: The #GParamSpecTypeInfo for this #GParamSpec type.
1373 * Registers @name as the name of a new static type derived from
1374 * #G_TYPE_PARAM. The type system uses the information contained in
1375 * the #GParamSpecTypeInfo structure pointed to by @info to manage the
1376 * #GParamSpec type and its instances.
1378 * Returns: The new type identifier.
1381 g_param_type_register_static (const gchar *name,
1382 const GParamSpecTypeInfo *pspec_info)
1385 sizeof (GParamSpecClass), /* class_size */
1386 NULL, /* base_init */
1387 NULL, /* base_destroy */
1388 param_spec_generic_class_init, /* class_init */
1389 NULL, /* class_destroy */
1390 NULL, /* class_data */
1391 0, /* instance_size */
1392 16, /* n_preallocs */
1393 NULL, /* instance_init */
1395 ParamSpecClassInfo *cinfo;
1397 g_return_val_if_fail (name != NULL, 0);
1398 g_return_val_if_fail (pspec_info != NULL, 0);
1399 g_return_val_if_fail (g_type_from_name (name) == 0, 0);
1400 g_return_val_if_fail (pspec_info->instance_size >= sizeof (GParamSpec), 0);
1401 g_return_val_if_fail (g_type_name (pspec_info->value_type) != NULL, 0);
1402 /* default: g_return_val_if_fail (pspec_info->value_set_default != NULL, 0); */
1403 /* optional: g_return_val_if_fail (pspec_info->value_validate != NULL, 0); */
1404 /* default: g_return_val_if_fail (pspec_info->values_cmp != NULL, 0); */
1406 info.instance_size = pspec_info->instance_size;
1407 info.n_preallocs = pspec_info->n_preallocs;
1408 info.instance_init = (GInstanceInitFunc) pspec_info->instance_init;
1409 cinfo = g_new (ParamSpecClassInfo, 1);
1410 cinfo->value_type = pspec_info->value_type;
1411 cinfo->finalize = pspec_info->finalize;
1412 cinfo->value_set_default = pspec_info->value_set_default ? pspec_info->value_set_default : default_value_set_default;
1413 cinfo->value_validate = pspec_info->value_validate;
1414 cinfo->values_cmp = pspec_info->values_cmp ? pspec_info->values_cmp : default_values_cmp;
1415 info.class_data = cinfo;
1417 return g_type_register_static (G_TYPE_PARAM, name, &info, 0);
1421 * g_value_set_param:
1422 * @value: a valid #GValue of type %G_TYPE_PARAM
1423 * @param: the #GParamSpec to be set
1425 * Set the contents of a %G_TYPE_PARAM #GValue to @param.
1428 g_value_set_param (GValue *value,
1431 g_return_if_fail (G_VALUE_HOLDS_PARAM (value));
1433 g_return_if_fail (G_IS_PARAM_SPEC (param));
1435 if (value->data[0].v_pointer)
1436 g_param_spec_unref (value->data[0].v_pointer);
1437 value->data[0].v_pointer = param;
1438 if (value->data[0].v_pointer)
1439 g_param_spec_ref (value->data[0].v_pointer);
1443 * g_value_set_param_take_ownership:
1444 * @value: a valid #GValue of type %G_TYPE_PARAM
1445 * @param: the #GParamSpec to be set
1447 * This is an internal function introduced mainly for C marshallers.
1449 * Deprecated: 2.4: Use g_value_take_param() instead.
1452 g_value_set_param_take_ownership (GValue *value,
1455 g_value_take_param (value, param);
1459 * g_value_take_param:
1460 * @value: a valid #GValue of type %G_TYPE_PARAM
1461 * @param: the #GParamSpec to be set
1463 * Sets the contents of a %G_TYPE_PARAM #GValue to @param and takes
1464 * over the ownership of the callers reference to @param; the caller
1465 * doesn't have to unref it any more.
1470 g_value_take_param (GValue *value,
1473 g_return_if_fail (G_VALUE_HOLDS_PARAM (value));
1475 g_return_if_fail (G_IS_PARAM_SPEC (param));
1477 if (value->data[0].v_pointer)
1478 g_param_spec_unref (value->data[0].v_pointer);
1479 value->data[0].v_pointer = param; /* we take over the reference count */
1483 * g_value_get_param:
1484 * @value: a valid #GValue whose type is derived from %G_TYPE_PARAM
1486 * Get the contents of a %G_TYPE_PARAM #GValue.
1488 * Returns: #GParamSpec content of @value
1490 EXPORT_C GParamSpec*
1491 g_value_get_param (const GValue *value)
1493 g_return_val_if_fail (G_VALUE_HOLDS_PARAM (value), NULL);
1495 return value->data[0].v_pointer;
1499 * g_value_dup_param:
1500 * @value: a valid #GValue whose type is derived from %G_TYPE_PARAM
1502 * Get the contents of a %G_TYPE_PARAM #GValue, increasing its
1505 * Returns: #GParamSpec content of @value, should be unreferenced when
1508 EXPORT_C GParamSpec*
1509 g_value_dup_param (const GValue *value)
1511 g_return_val_if_fail (G_VALUE_HOLDS_PARAM (value), NULL);
1513 return value->data[0].v_pointer ? g_param_spec_ref (value->data[0].v_pointer) : NULL;
1516 #define __G_PARAM_C__
1517 #include "gobjectaliasdef.c"