Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000-2001 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.
26 #include "gbsearcharray.h"
28 #include "gvaluearray.h"
30 #include "gvaluecollector.h"
31 #include "gobjectalias.h"
34 #include "gobject_wsd.h"
35 #endif /* __SYMBIAN32__ */
39 * @short_description: A mechanism to wrap opaque C structures registered
41 * @see_also: #GParamSpecBoxed, g_param_spec_boxed()
44 * GBoxed is a generic wrapper mechanism for arbitrary C structures. The only
45 * thing the type system needs to know about the structures is how to copy and
46 * free them, beyond that they are treated as opaque chunks of memory.
48 * Boxed types are useful for simple value-holder structures like rectangles or
49 * points. They can also be used for wrapping structures defined in non-GObject
53 /* --- typedefs & structures --- */
62 /* --- prototypes --- */
63 static gint boxed_nodes_cmp (gconstpointer p1,
67 /* --- variables --- */
69 PLS(boxed_bsa,gboxed,GBSearchArray *)
70 #define boxed_bsa (*FUNCTION_NAME(boxed_bsa,gboxed)())
72 static GBSearchArray *boxed_bsa = NULL;
74 static const GBSearchConfig boxed_bconfig = {
81 /* --- functions --- */
83 boxed_nodes_cmp (gconstpointer p1,
86 const BoxedNode *node1 = p1, *node2 = p2;
88 return G_BSEARCH_ARRAY_CMP (node1->type, node2->type);
91 static inline void /* keep this function in sync with gvalue.c */
92 value_meminit (GValue *value,
95 value->g_type = value_type;
96 memset (value->data, 0, sizeof (value->data));
100 value_copy (gpointer boxed)
102 const GValue *src_value = boxed;
103 GValue *dest_value = g_new0 (GValue, 1);
105 if (G_VALUE_TYPE (src_value))
107 g_value_init (dest_value, G_VALUE_TYPE (src_value));
108 g_value_copy (src_value, dest_value);
114 value_free (gpointer boxed)
116 GValue *value = boxed;
118 if (G_VALUE_TYPE (value))
119 g_value_unset (value);
124 g_boxed_type_init (void)
126 static const GTypeInfo info = {
128 NULL, /* base_init */
129 NULL, /* base_destroy */
130 NULL, /* class_init */
131 NULL, /* class_destroy */
132 NULL, /* class_data */
133 0, /* instance_size */
135 NULL, /* instance_init */
136 NULL, /* value_table */
138 const GTypeFundamentalInfo finfo = { G_TYPE_FLAG_DERIVABLE, };
141 boxed_bsa = g_bsearch_array_create (&boxed_bconfig);
145 type = g_type_register_fundamental (G_TYPE_BOXED, g_intern_static_string ("GBoxed"), &info, &finfo,
146 G_TYPE_FLAG_ABSTRACT | G_TYPE_FLAG_VALUE_ABSTRACT);
147 g_assert (type == G_TYPE_BOXED);
151 PLS(type_id,g_closure_get_type ,GType)
152 #define type_id (*FUNCTION_NAME(type_id,g_closure_get_type )())
153 #endif /* EMULATOR */
156 g_closure_get_type (void)
159 static GType type_id = 0;
160 #endif /* EMULATOR */
163 type_id = g_boxed_type_register_static (g_intern_static_string ("GClosure"),
164 (GBoxedCopyFunc) g_closure_ref,
165 (GBoxedFreeFunc) g_closure_unref);
171 PLS(type_id,g_value_get_type ,GType)
172 #define type_id (*FUNCTION_NAME(type_id,g_value_get_type )())
173 #endif /* EMULATOR */
176 g_value_get_type (void)
179 static GType type_id = 0;
180 #endif /* EMULATOR */
183 type_id = g_boxed_type_register_static (g_intern_static_string ("GValue"),
191 PLS(type_id,g_value_array_get_type ,GType)
192 #define type_id (*FUNCTION_NAME(type_id,g_value_array_get_type )())
193 #endif /* EMULATOR */
196 g_value_array_get_type (void)
199 static GType type_id = 0;
200 #endif /* EMULATOR */
203 type_id = g_boxed_type_register_static (g_intern_static_string ("GValueArray"),
204 (GBoxedCopyFunc) g_value_array_copy,
205 (GBoxedFreeFunc) g_value_array_free);
210 gdate_copy (gpointer boxed)
212 const GDate *date = (const GDate*) boxed;
214 return g_date_new_julian (g_date_get_julian (date));
219 PLS(type_id,g_date_get_type ,GType)
220 #define type_id (*FUNCTION_NAME(type_id,g_date_get_type )())
221 #endif /* EMULATOR */
224 g_date_get_type (void)
227 static GType type_id = 0;
228 #endif /* EMULATOR */
231 type_id = g_boxed_type_register_static (g_intern_static_string ("GDate"),
232 (GBoxedCopyFunc) gdate_copy,
233 (GBoxedFreeFunc) g_date_free);
239 PLS(type_id,g_strv_get_type ,GType)
240 #define type_id (*FUNCTION_NAME(type_id,g_strv_get_type )())
241 #endif /* EMULATOR */
244 g_strv_get_type (void)
247 static GType type_id = 0;
248 #endif /* EMULATOR */
251 type_id = g_boxed_type_register_static (g_intern_static_string ("GStrv"),
252 (GBoxedCopyFunc) g_strdupv,
253 (GBoxedFreeFunc) g_strfreev);
258 gstring_copy (gpointer boxed)
260 const GString *src_gstring = boxed;
262 return g_string_new_len (src_gstring->str, src_gstring->len);
266 gstring_free (gpointer boxed)
268 GString *gstring = boxed;
270 g_string_free (gstring, TRUE);
275 PLS(type_id,g_gstring_get_type ,GType)
276 #define type_id (*FUNCTION_NAME(type_id,g_gstring_get_type )())
277 #endif /* EMULATOR */
280 g_gstring_get_type (void)
283 static GType type_id = 0;
284 #endif /* !(EMULATOR) */
287 type_id = g_boxed_type_register_static (g_intern_static_string ("GString"),
288 /* the naming is a bit odd, but GString is obviously not G_TYPE_STRING */
295 hash_table_copy (gpointer boxed)
297 GHashTable *hash_table = boxed;
298 return g_hash_table_ref (hash_table);
302 hash_table_free (gpointer boxed)
304 GHashTable *hash_table = boxed;
305 g_hash_table_unref (hash_table);
310 PLS(type_id,g_hash_table_get_type ,GType)
311 #define type_id (*FUNCTION_NAME(type_id,g_hash_table_get_type )())
312 #endif /* EMULATOR */
315 g_hash_table_get_type (void)
318 static GType type_id = 0;
319 #endif */ !(EMULATOR) */
321 type_id = g_boxed_type_register_static (g_intern_static_string ("GHashTable"),
322 hash_table_copy, hash_table_free);
328 PLS(type_id,g_regex_get_type ,GType)
329 #define type_id (*FUNCTION_NAME(type_id,g_regex_get_type )())
330 #endif /* EMULATOR */
333 g_regex_get_type (void)
336 static GType type_id = 0;
337 #endif */ !(EMULATOR) */
341 type_id = g_boxed_type_register_static (g_intern_static_string ("GRegex"),
342 (GBoxedCopyFunc) g_regex_ref,
343 (GBoxedFreeFunc) g_regex_unref);
351 #endif /* EMULATOR */
354 boxed_proxy_value_init (GValue *value)
356 value->data[0].v_pointer = NULL;
360 boxed_proxy_value_free (GValue *value)
362 if (value->data[0].v_pointer && !(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
364 BoxedNode key, *node;
366 key.type = G_VALUE_TYPE (value);
367 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
368 node->free (value->data[0].v_pointer);
373 boxed_proxy_value_copy (const GValue *src_value,
376 if (src_value->data[0].v_pointer)
378 BoxedNode key, *node;
380 key.type = G_VALUE_TYPE (src_value);
381 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
382 dest_value->data[0].v_pointer = node->copy (src_value->data[0].v_pointer);
385 dest_value->data[0].v_pointer = src_value->data[0].v_pointer;
389 boxed_proxy_value_peek_pointer (const GValue *value)
391 return value->data[0].v_pointer;
395 boxed_proxy_collect_value (GValue *value,
396 guint n_collect_values,
397 GTypeCValue *collect_values,
400 BoxedNode key, *node;
402 key.type = G_VALUE_TYPE (value);
403 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
405 if (!collect_values[0].v_pointer)
406 value->data[0].v_pointer = NULL;
409 if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
411 value->data[0].v_pointer = collect_values[0].v_pointer;
412 value->data[1].v_uint = G_VALUE_NOCOPY_CONTENTS;
415 value->data[0].v_pointer = node->copy (collect_values[0].v_pointer);
422 boxed_proxy_lcopy_value (const GValue *value,
423 guint n_collect_values,
424 GTypeCValue *collect_values,
427 gpointer *boxed_p = collect_values[0].v_pointer;
430 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
432 if (!value->data[0].v_pointer)
434 else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
435 *boxed_p = value->data[0].v_pointer;
438 BoxedNode key, *node;
440 key.type = G_VALUE_TYPE (value);
441 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
442 *boxed_p = node->copy (value->data[0].v_pointer);
449 * g_boxed_type_register_static:
450 * @name: Name of the new boxed type.
451 * @boxed_copy: Boxed structure copy function.
452 * @boxed_free: Boxed structure free function.
454 * This function creates a new %G_TYPE_BOXED derived type id for a new
455 * boxed type with name @name. Boxed type handling functions have to be
456 * provided to copy and free opaque boxed structures of this type.
458 * Returns: New %G_TYPE_BOXED derived type id for @name.
461 g_boxed_type_register_static (const gchar *name,
462 GBoxedCopyFunc boxed_copy,
463 GBoxedFreeFunc boxed_free)
465 static const GTypeValueTable vtable = {
466 boxed_proxy_value_init,
467 boxed_proxy_value_free,
468 boxed_proxy_value_copy,
469 boxed_proxy_value_peek_pointer,
471 boxed_proxy_collect_value,
473 boxed_proxy_lcopy_value,
475 static const GTypeInfo type_info = {
477 NULL, /* base_init */
478 NULL, /* base_finalize */
479 NULL, /* class_init */
480 NULL, /* class_finalize */
481 NULL, /* class_data */
482 0, /* instance_size */
484 NULL, /* instance_init */
485 &vtable, /* value_table */
489 g_return_val_if_fail (name != NULL, 0);
490 g_return_val_if_fail (boxed_copy != NULL, 0);
491 g_return_val_if_fail (boxed_free != NULL, 0);
492 g_return_val_if_fail (g_type_from_name (name) == 0, 0);
494 type = g_type_register_static (G_TYPE_BOXED, name, &type_info, 0);
496 /* install proxy functions upon successfull registration */
502 key.copy = boxed_copy;
503 key.free = boxed_free;
504 boxed_bsa = g_bsearch_array_insert (boxed_bsa, &boxed_bconfig, &key);
512 * @boxed_type: The type of @src_boxed.
513 * @src_boxed: The boxed structure to be copied.
515 * Provide a copy of a boxed structure @src_boxed which is of type @boxed_type.
517 * Returns: The newly created copy of the boxed structure.
520 g_boxed_copy (GType boxed_type,
521 gconstpointer src_boxed)
523 GTypeValueTable *value_table;
526 g_return_val_if_fail (G_TYPE_IS_BOXED (boxed_type), NULL);
527 g_return_val_if_fail (G_TYPE_IS_ABSTRACT (boxed_type) == FALSE, NULL);
528 g_return_val_if_fail (src_boxed != NULL, NULL);
530 value_table = g_type_value_table_peek (boxed_type);
532 g_return_val_if_fail (G_TYPE_IS_VALUE_TYPE (boxed_type), NULL);
534 /* check if our proxying implementation is used, we can short-cut here */
535 if (value_table->value_copy == boxed_proxy_value_copy)
537 BoxedNode key, *node;
539 key.type = boxed_type;
540 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
541 dest_boxed = node->copy ((gpointer) src_boxed);
545 GValue src_value, dest_value;
547 /* we heavily rely on third-party boxed type value vtable
548 * implementations to follow normal boxed value storage
549 * (data[0].v_pointer is the boxed struct, and
550 * data[1].v_uint holds the G_VALUE_NOCOPY_CONTENTS flag,
552 * but then, we can expect that since we layed out the
554 * data[1].v_uint&G_VALUE_NOCOPY_CONTENTS shouldn't be set
557 /* equiv. to g_value_set_static_boxed() */
558 value_meminit (&src_value, boxed_type);
559 src_value.data[0].v_pointer = (gpointer) src_boxed;
560 src_value.data[1].v_uint = G_VALUE_NOCOPY_CONTENTS;
562 /* call third-party code copy function, fingers-crossed */
563 value_meminit (&dest_value, boxed_type);
564 value_table->value_copy (&src_value, &dest_value);
566 /* double check and grouse if things went wrong */
567 if (dest_value.data[1].v_ulong)
568 g_warning ("the copy_value() implementation of type `%s' seems to make use of reserved GValue fields",
569 g_type_name (boxed_type));
571 dest_boxed = dest_value.data[0].v_pointer;
579 * @boxed_type: The type of @boxed.
580 * @boxed: The boxed structure to be freed.
582 * Free the boxed structure @boxed which is of type @boxed_type.
585 g_boxed_free (GType boxed_type,
588 GTypeValueTable *value_table;
590 g_return_if_fail (G_TYPE_IS_BOXED (boxed_type));
591 g_return_if_fail (G_TYPE_IS_ABSTRACT (boxed_type) == FALSE);
592 g_return_if_fail (boxed != NULL);
594 value_table = g_type_value_table_peek (boxed_type);
596 g_return_if_fail (G_TYPE_IS_VALUE_TYPE (boxed_type));
598 /* check if our proxying implementation is used, we can short-cut here */
599 if (value_table->value_free == boxed_proxy_value_free)
601 BoxedNode key, *node;
603 key.type = boxed_type;
604 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
611 /* see g_boxed_copy() on why we think we can do this */
612 value_meminit (&value, boxed_type);
613 value.data[0].v_pointer = boxed;
614 value_table->value_free (&value);
620 * @value: a valid #GValue of %G_TYPE_BOXED derived type
622 * Get the contents of a %G_TYPE_BOXED derived #GValue.
624 * Returns: boxed contents of @value
627 g_value_get_boxed (const GValue *value)
629 g_return_val_if_fail (G_VALUE_HOLDS_BOXED (value), NULL);
630 g_return_val_if_fail (G_TYPE_IS_VALUE (G_VALUE_TYPE (value)), NULL);
632 return value->data[0].v_pointer;
637 * @value: a valid #GValue of %G_TYPE_BOXED derived type
639 * Get the contents of a %G_TYPE_BOXED derived #GValue. Upon getting,
640 * the boxed value is duplicated and needs to be later freed with
641 * g_boxed_free(), e.g. like: g_boxed_free (G_VALUE_TYPE (@value),
644 * Returns: boxed contents of @value
647 g_value_dup_boxed (const GValue *value)
649 g_return_val_if_fail (G_VALUE_HOLDS_BOXED (value), NULL);
650 g_return_val_if_fail (G_TYPE_IS_VALUE (G_VALUE_TYPE (value)), NULL);
652 return value->data[0].v_pointer ? g_boxed_copy (G_VALUE_TYPE (value), value->data[0].v_pointer) : NULL;
656 value_set_boxed_internal (GValue *value,
657 gconstpointer const_boxed,
661 BoxedNode key, *node;
662 gpointer boxed = (gpointer) const_boxed;
666 /* just resetting to NULL might not be desired, need to
667 * have value reinitialized also (for values defaulting
668 * to other default value states than a NULL data pointer),
669 * g_value_reset() will handle this
671 g_value_reset (value);
675 key.type = G_VALUE_TYPE (value);
676 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
680 /* we proxy this type, free contents and copy right away */
681 if (value->data[0].v_pointer && !(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
682 node->free (value->data[0].v_pointer);
683 value->data[1].v_uint = need_free ? 0 : G_VALUE_NOCOPY_CONTENTS;
684 value->data[0].v_pointer = need_copy ? node->copy (boxed) : boxed;
688 /* we don't handle this type, free contents and let g_boxed_copy()
689 * figure what's required
691 if (value->data[0].v_pointer && !(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
692 g_boxed_free (G_VALUE_TYPE (value), value->data[0].v_pointer);
693 value->data[1].v_uint = need_free ? 0 : G_VALUE_NOCOPY_CONTENTS;
694 value->data[0].v_pointer = need_copy ? g_boxed_copy (G_VALUE_TYPE (value), boxed) : boxed;
700 * @value: a valid #GValue of %G_TYPE_BOXED derived type
701 * @v_boxed: boxed value to be set
703 * Set the contents of a %G_TYPE_BOXED derived #GValue to @v_boxed.
706 g_value_set_boxed (GValue *value,
709 g_return_if_fail (G_VALUE_HOLDS_BOXED (value));
710 g_return_if_fail (G_TYPE_IS_VALUE (G_VALUE_TYPE (value)));
712 value_set_boxed_internal (value, boxed, TRUE, TRUE);
716 * g_value_set_static_boxed:
717 * @value: a valid #GValue of %G_TYPE_BOXED derived type
718 * @v_boxed: static boxed value to be set
720 * Set the contents of a %G_TYPE_BOXED derived #GValue to @v_boxed.
721 * The boxed value is assumed to be static, and is thus not duplicated
722 * when setting the #GValue.
725 g_value_set_static_boxed (GValue *value,
728 g_return_if_fail (G_VALUE_HOLDS_BOXED (value));
729 g_return_if_fail (G_TYPE_IS_VALUE (G_VALUE_TYPE (value)));
731 value_set_boxed_internal (value, boxed, FALSE, FALSE);
735 * g_value_set_boxed_take_ownership:
736 * @value: a valid #GValue of %G_TYPE_BOXED derived type
737 * @v_boxed: duplicated unowned boxed value to be set
739 * This is an internal function introduced mainly for C marshallers.
741 * Deprecated: 2.4: Use g_value_take_boxed() instead.
744 g_value_set_boxed_take_ownership (GValue *value,
747 g_value_take_boxed (value, boxed);
751 * g_value_take_boxed:
752 * @value: a valid #GValue of %G_TYPE_BOXED derived type
753 * @v_boxed: duplicated unowned boxed value to be set
755 * Sets the contents of a %G_TYPE_BOXED derived #GValue to @v_boxed
756 * and takes over the ownership of the callers reference to @v_boxed;
757 * the caller doesn't have to unref it any more.
762 g_value_take_boxed (GValue *value,
765 g_return_if_fail (G_VALUE_HOLDS_BOXED (value));
766 g_return_if_fail (G_TYPE_IS_VALUE (G_VALUE_TYPE (value)));
768 value_set_boxed_internal (value, boxed, FALSE, TRUE);
771 #define __G_BOXED_C__
772 #include "gobjectaliasdef.c"