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 "gvaluecollector.h"
31 #include "gbsearcharray.h"
32 #include "gobjectalias.h"
35 #include "gobject_wsd.h"
36 #endif /* __SYMBIAN32__ */
39 * SECTION:generic_values
40 * @short_description: A polymorphic type that can hold values of any
42 * @see_also: The fundamental types which all support #GValue
43 * operations and thus can be used as a type initializer for
44 * g_value_init() are defined by a separate interface. See the <link
45 * linkend="gobject-Standard-Parameter-and-Value-Types">Standard
46 * Values API</link> for details.
47 * @title: Generic values
49 * The #GValue structure is basically a variable container that consists
50 * of a type identifier and a specific value of that type.
51 * The type identifier within a #GValue structure always determines the
52 * type of the associated value.
53 * To create a undefined #GValue structure, simply create a zero-filled
54 * #GValue structure. To initialize the #GValue, use the g_value_init()
55 * function. A #GValue cannot be used until it is initialized.
56 * The basic type operations (such as freeing and copying) are determined
57 * by the #GTypeValueTable associated with the type ID stored in the #GValue.
58 * Other #GValue operations (such as converting values between types) are
59 * provided by this interface.
61 * The code in the example program below demonstrates #GValue's
65 * #include <glib-object.h>
68 * int2string (const GValue *src_value,
71 * if (g_value_get_int (src_value) == 42)
72 * g_value_set_static_string (dest_value, "An important number");
74 * g_value_set_static_string (dest_value, "What's that?");
81 * /* GValues must start zero-filled */
84 * const gchar *message;
88 * /* The GValue starts empty */
89 * g_assert (!G_VALUE_HOLDS_STRING (&a));
91 * /* Put a string in it */
92 * g_value_init (&a, G_TYPE_STRING);
93 * g_assert (G_VALUE_HOLDS_STRING (&a));
94 * g_value_set_static_string (&a, "Hello, world!");
95 * g_printf ("%s\n", g_value_get_string (&a));
97 * /* Reset it to its pristine state */
98 * g_value_unset (&a);
100 * /* It can then be reused for another type */
101 * g_value_init (&a, G_TYPE_INT);
102 * g_value_set_int (&a, 42);
104 * /* Attempt to transform it into a GValue of type STRING */
105 * g_value_init (&b, G_TYPE_STRING);
107 * /* An INT is transformable to a STRING */
108 * g_assert (g_value_type_transformable (G_TYPE_INT, G_TYPE_STRING));
110 * g_value_transform (&a, &b);
111 * g_printf ("%s\n", g_value_get_string (&b));
113 * /* Attempt to transform it again using a custom transform function */
114 * g_value_register_transform_func (G_TYPE_INT, G_TYPE_STRING, int2string);
115 * g_value_transform (&a, &b);
116 * g_printf ("%s\n", g_value_get_string (&b));
123 /* --- typedefs & structures --- */
127 GValueTransform func;
131 /* --- prototypes --- */
132 static gint transform_entries_cmp (gconstpointer bsearch_node1,
133 gconstpointer bsearch_node2);
136 /* --- variables --- */
139 PLS(transform_array,gvalue,GBSearchArray *)
140 PLS(transform_bconfig,gvalue,GBSearchConfig )
142 #define transform_array (*FUNCTION_NAME(transform_array,gvalue)())
143 #define transform_bconfig (*FUNCTION_NAME(transform_bconfig ,gvalue)())
145 const GBSearchConfig temp_transform_bconfig = {
146 sizeof (TransformEntry),
147 transform_entries_cmp,
154 static GBSearchArray *transform_array = NULL;
155 static GBSearchConfig transform_bconfig = {
156 sizeof (TransformEntry),
157 transform_entries_cmp,
161 #endif /* EMULATOR */
164 /* --- functions --- */
166 g_value_c_init (void)
168 transform_array = g_bsearch_array_create (&transform_bconfig);
171 static inline void /* keep this function in sync with gvaluecollector.h and gboxed.c */
172 value_meminit (GValue *value,
175 value->g_type = value_type;
176 memset (value->data, 0, sizeof (value->data));
181 * @value: A zero-filled (uninitialized) #GValue structure.
182 * @g_type: Type the #GValue should hold values of.
184 * Initializes @value with the default value of @type.
186 * Returns: the #GValue structure that has been passed in
189 g_value_init (GValue *value,
192 /* g_return_val_if_fail (G_TYPE_IS_VALUE (g_type), NULL); be more elaborate below */
193 g_return_val_if_fail (value != NULL, NULL);
194 /* g_return_val_if_fail (G_VALUE_TYPE (value) == 0, NULL); be more elaborate below */
196 if (G_TYPE_IS_VALUE (g_type) && G_VALUE_TYPE (value) == 0)
198 GTypeValueTable *value_table = g_type_value_table_peek (g_type);
201 value_meminit (value, g_type);
202 value_table->value_init (value);
204 else if (G_VALUE_TYPE (value))
205 g_warning ("%s: cannot initialize GValue with type `%s', the value has already been initialized as `%s'",
207 g_type_name (g_type),
208 g_type_name (G_VALUE_TYPE (value)));
209 else /* !G_TYPE_IS_VALUE (g_type) */
210 g_warning ("%s: cannot initialize GValue with type `%s', %s",
212 g_type_name (g_type),
213 g_type_value_table_peek (g_type) ?
214 "this type is abstract with regards to GValue use, use a more specific (derived) type" :
215 "this type has no GTypeValueTable implementation");
221 * @src_value: An initialized #GValue structure.
222 * @dest_value: An initialized #GValue structure of the same type as @src_value.
224 * Copies the value of @src_value into @dest_value.
227 g_value_copy (const GValue *src_value,
230 g_return_if_fail (G_IS_VALUE (src_value));
231 g_return_if_fail (G_IS_VALUE (dest_value));
232 g_return_if_fail (g_value_type_compatible (G_VALUE_TYPE (src_value), G_VALUE_TYPE (dest_value)));
234 if (src_value != dest_value)
236 GType dest_type = G_VALUE_TYPE (dest_value);
237 GTypeValueTable *value_table = g_type_value_table_peek (dest_type);
239 /* make sure dest_value's value is free()d */
240 if (value_table->value_free)
241 value_table->value_free (dest_value);
244 value_meminit (dest_value, dest_type);
245 value_table->value_copy (src_value, dest_value);
251 * @value: An initialized #GValue structure.
253 * Clears the current value in @value and resets it to the default value
254 * (as if the value had just been initialized).
256 * Returns: the #GValue structure that has been passed in
259 g_value_reset (GValue *value)
261 GTypeValueTable *value_table;
264 g_return_val_if_fail (G_IS_VALUE (value), NULL);
266 g_type = G_VALUE_TYPE (value);
267 value_table = g_type_value_table_peek (g_type);
269 /* make sure value's value is free()d */
270 if (value_table->value_free)
271 value_table->value_free (value);
274 value_meminit (value, g_type);
275 value_table->value_init (value);
282 * @value: An initialized #GValue structure.
284 * Clears the current value in @value and "unsets" the type,
285 * this releases all resources associated with this GValue.
286 * An unset value is the same as an uninitialized (zero-filled)
290 g_value_unset (GValue *value)
292 GTypeValueTable *value_table;
294 g_return_if_fail (G_IS_VALUE (value));
296 value_table = g_type_value_table_peek (G_VALUE_TYPE (value));
298 if (value_table->value_free)
299 value_table->value_free (value);
300 memset (value, 0, sizeof (*value));
304 * g_value_fits_pointer:
305 * @value: An initialized #GValue structure.
307 * Determines if @value will fit inside the size of a pointer value.
308 * This is an internal function introduced mainly for C marshallers.
310 * Returns: %TRUE if @value will fit inside a pointer value.
313 g_value_fits_pointer (const GValue *value)
315 GTypeValueTable *value_table;
317 g_return_val_if_fail (G_IS_VALUE (value), FALSE);
319 value_table = g_type_value_table_peek (G_VALUE_TYPE (value));
321 return value_table->value_peek_pointer != NULL;
325 * g_value_peek_pointer:
326 * @value: An initialized #GValue structure.
328 * Return the value contents as pointer. This function asserts that
329 * g_value_fits_pointer() returned %TRUE for the passed in value.
330 * This is an internal function introduced mainly for C marshallers.
332 * Returns: %TRUE if @value will fit inside a pointer value.
335 g_value_peek_pointer (const GValue *value)
337 GTypeValueTable *value_table;
339 g_return_val_if_fail (G_IS_VALUE (value), NULL);
341 value_table = g_type_value_table_peek (G_VALUE_TYPE (value));
342 if (!value_table->value_peek_pointer)
344 g_return_val_if_fail (g_value_fits_pointer (value) == TRUE, NULL);
348 return value_table->value_peek_pointer (value);
352 * g_value_set_instance:
353 * @value: An initialized #GValue structure.
354 * @instance: the instance
356 * Sets @value from an instantiatable type via the
357 * value_table's collect_value() function.
360 g_value_set_instance (GValue *value,
364 GTypeValueTable *value_table;
368 g_return_if_fail (G_IS_VALUE (value));
371 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
372 g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (instance), G_VALUE_TYPE (value)));
375 g_type = G_VALUE_TYPE (value);
376 value_table = g_type_value_table_peek (g_type);
378 g_return_if_fail (strcmp (value_table->collect_format, "p") == 0);
380 memset (&cvalue, 0, sizeof (cvalue));
381 cvalue.v_pointer = instance;
383 /* make sure value's value is free()d */
384 if (value_table->value_free)
385 value_table->value_free (value);
387 /* setup and collect */
388 value_meminit (value, g_type);
389 error_msg = value_table->collect_value (value, 1, &cvalue, 0);
392 g_warning ("%s: %s", G_STRLOC, error_msg);
395 /* we purposely leak the value here, it might not be
396 * in a sane state if an error condition occoured
398 value_meminit (value, g_type);
399 value_table->value_init (value);
403 static GValueTransform
404 transform_func_lookup (GType src_type,
407 TransformEntry entry;
409 entry.src_type = src_type;
412 entry.dest_type = dest_type;
417 e = g_bsearch_array_lookup (transform_array, &transform_bconfig, &entry);
420 /* need to check that there hasn't been a change in value handling */
421 if (g_type_value_table_peek (entry.dest_type) == g_type_value_table_peek (dest_type) &&
422 g_type_value_table_peek (entry.src_type) == g_type_value_table_peek (src_type))
425 entry.dest_type = g_type_parent (entry.dest_type);
427 while (entry.dest_type);
429 entry.src_type = g_type_parent (entry.src_type);
431 while (entry.src_type);
437 transform_entries_cmp (gconstpointer bsearch_node1,
438 gconstpointer bsearch_node2)
440 const TransformEntry *e1 = bsearch_node1;
441 const TransformEntry *e2 = bsearch_node2;
442 gint cmp = G_BSEARCH_ARRAY_CMP (e1->src_type, e2->src_type);
447 return G_BSEARCH_ARRAY_CMP (e1->dest_type, e2->dest_type);
451 * g_value_register_transform_func:
452 * @src_type: Source type.
453 * @dest_type: Target type.
454 * @transform_func: a function which transforms values of type @src_type
455 * into value of type @dest_type
457 * Registers a value transformation function for use in g_value_transform().
458 * A previously registered transformation function for @src_type and @dest_type
462 g_value_register_transform_func (GType src_type,
464 GValueTransform transform_func)
466 TransformEntry entry;
468 /* these checks won't pass for dynamic types.
469 * g_return_if_fail (G_TYPE_HAS_VALUE_TABLE (src_type));
470 * g_return_if_fail (G_TYPE_HAS_VALUE_TABLE (dest_type));
472 g_return_if_fail (transform_func != NULL);
474 entry.src_type = src_type;
475 entry.dest_type = dest_type;
477 #if 0 /* let transform function replacement be a valid operation */
478 if (g_bsearch_array_lookup (transform_array, &transform_bconfig, &entry))
479 g_warning ("reregistering value transformation function (%p) for `%s' to `%s'",
481 g_type_name (src_type),
482 g_type_name (dest_type));
485 entry.func = transform_func;
486 transform_array = g_bsearch_array_replace (transform_array, &transform_bconfig, &entry);
490 * g_value_type_transformable:
491 * @src_type: Source type.
492 * @dest_type: Target type.
494 * Check whether g_value_transform() is able to transform values
495 * of type @src_type into values of type @dest_type.
497 * Returns: %TRUE if the transformation is possible, %FALSE otherwise.
500 g_value_type_transformable (GType src_type,
503 g_return_val_if_fail (G_TYPE_IS_VALUE (src_type), FALSE);
504 g_return_val_if_fail (G_TYPE_IS_VALUE (dest_type), FALSE);
506 return (g_value_type_compatible (src_type, dest_type) ||
507 transform_func_lookup (src_type, dest_type) != NULL);
511 * g_value_type_compatible:
512 * @src_type: source type to be copied.
513 * @dest_type: destination type for copying.
515 * Returns whether a #GValue of type @src_type can be copied into
516 * a #GValue of type @dest_type.
518 * Returns: %TRUE if g_value_copy() is possible with @src_type and @dest_type.
521 g_value_type_compatible (GType src_type,
524 g_return_val_if_fail (G_TYPE_IS_VALUE (src_type), FALSE);
525 g_return_val_if_fail (G_TYPE_IS_VALUE (dest_type), FALSE);
527 return (g_type_is_a (src_type, dest_type) &&
528 g_type_value_table_peek (dest_type) == g_type_value_table_peek (src_type));
533 * @src_value: Source value.
534 * @dest_value: Target value.
536 * Tries to cast the contents of @src_value into a type appropriate
537 * to store in @dest_value, e.g. to transform a %G_TYPE_INT value
538 * into a %G_TYPE_FLOAT value. Performing transformations between
539 * value types might incur precision lossage. Especially
540 * transformations into strings might reveal seemingly arbitrary
541 * results and shouldn't be relied upon for production code (such
542 * as rcfile value or object property serialization).
544 * Returns: Whether a transformation rule was found and could be applied.
545 * Upon failing transformations, @dest_value is left untouched.
548 g_value_transform (const GValue *src_value,
553 g_return_val_if_fail (G_IS_VALUE (src_value), FALSE);
554 g_return_val_if_fail (G_IS_VALUE (dest_value), FALSE);
556 dest_type = G_VALUE_TYPE (dest_value);
557 if (g_value_type_compatible (G_VALUE_TYPE (src_value), dest_type))
559 g_value_copy (src_value, dest_value);
565 GValueTransform transform = transform_func_lookup (G_VALUE_TYPE (src_value), dest_type);
569 g_value_unset (dest_value);
571 /* setup and transform */
572 value_meminit (dest_value, dest_type);
573 transform (src_value, dest_value);
581 #define __G_VALUE_C__
582 #include "gobjectaliasdef.c"