mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
37e4b8c87e
Wed Mar 7 09:36:33 2001 Tim Janik <timj@gtk.org> * gboxed.[hc]: changed prototype of g_boxed_type_register_static() to contain an optional init function and a hint at whether the boxed structure uses ref counting internally. added g_value_set_boxed_take_ownership(). made G_TYPE_BOXED an abstract value type. * genums.[hc]: made G_TYPE_ENUM and G_TYPE_FLAGS abstract value types. * glib-genmarshal.c: argument type changes, preparation for third-party arg specification. * gobject.[hc]: cleaned up get/set property code. added g_strdup_value_contents() to improve warnings. * gparam.[hc]: added g_param_value_convert(), taking over responsibility of the old g_value_convert(). added G_PARAM_LAX_VALIDATION flag so validation alterations may be valid a part of the property setting process. * gparamspecs.[hc]: made value comparisons stable (for sort applications). added GParamSpecValueArray, a param spec for value arrays and GParamSpecClosure. nuked the value exchange functions and GParamSpecCCallback. * gtype.[hc]: catch unintialized usages of the type system with g_return_val_if_uninitialized(). introduced G_TYPE_FLAG_VALUE_ABSTRACT to flag types that introduce a value table, but can't be used for g_value_init(). cleaned up reserved type ids. * gvalue.[hc]: code cleanups and saner checking. nuked the value exchange API. implemented value transformations, we can't really "convert" values, rather transforms are an anylogy to C casts, real conversions need a param spec for validation, which is why g_param_value_convert() does real conversions now. * gvaluearray.[hc]: new files that implement a GValueArray, a struct that can hold inhomogeneous arrays of value (to that extend that it also allowes undefined values, i.e. G_VALUE_TYPE(value)==0). this is exposed to the type system as a boxed type. * gvaluetransform.c: new file implementing most of the former value exchange functions as single-sided transformations. * gvaluetypes.[hc]: nuked G_TYPE_CCALLBACK, added g_value_set_string_take_ownership(). * *.h: s/G_IS_VALUE_/G_VALUE_HOLDS_/. * *.[hc]: many fixes and cleanups. * many warning improvements. Tue Feb 27 18:35:15 2001 Tim Janik <timj@gtk.org> * gobject.c (g_object_get_valist): urg, pass G_VALUE_NOCOPY_CONTENTS into G_VALUE_LCOPY(), this needs proper documenting. * gparam.c: fixed G_PARAM_USER_MASK. * gtype.c (type_data_make_W): (type_data_last_unref_Wm): fixed invalid memory freeing. * gobject.c (g_object_last_unref): destroy signal handlers associated with object, right before finalization. * gsignal.c (g_signal_parse_name): catch destroyed nodes or signals that don't actually support details. * gobject.[hc]: got rid of property trailers. nuked GObject properties "data" and the "signal" variants. (g_object_connect): new convenience function to do multiple signal connections at once. (g_object_disconnect): likewise, for disconnections. * gparam.[hc] (g_param_spec_pool_lookup): took out trailer support. * gvalue.[hc]: marked g_value_fits_pointer() and g_value_peek_pointer() as private (the latter got renamed from g_value_get_as_pointer()). Wed Mar 7 09:32:06 2001 Tim Janik <timj@gtk.org> * glib-object.h: add gvaluearray.h. * gstring.[hc]: fixup naming of g_string_sprint*. * gtypes.h: fixed GCompareDataFunc naming. Wed Mar 7 09:33:27 2001 Tim Janik <timj@gtk.org> * gobject/Makefile.am: shuffled rules to avoid excessive rebuilds. * gobject/gobject-sections.txt: updates. * gobject/tmpl/*: bunch of updates, added another patch from Eric Lemings <eric.b.lemings@lmco.com>.
346 lines
9.1 KiB
C
346 lines
9.1 KiB
C
/* GObject - GLib Type, Object, Parameter and Signal Library
|
|
* Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General
|
|
* Public License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/*
|
|
* FIXME: MT-safety
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "gvalue.h"
|
|
#include "gvaluecollector.h"
|
|
#include "gbsearcharray.h"
|
|
|
|
|
|
/* --- typedefs & structures --- */
|
|
typedef struct {
|
|
GType src_type;
|
|
GType dest_type;
|
|
GValueTransform func;
|
|
} TransformEntry;
|
|
|
|
|
|
/* --- prototypes --- */
|
|
static gint transform_entries_cmp (gconstpointer bsearch_node1,
|
|
gconstpointer bsearch_node2);
|
|
|
|
|
|
/* --- variables --- */
|
|
static GBSearchArray transform_array = {
|
|
transform_entries_cmp,
|
|
sizeof (TransformEntry),
|
|
0, /* no flags */
|
|
0, NULL,
|
|
};
|
|
|
|
|
|
/* --- functions --- */
|
|
static inline void /* keep this function in sync with gvaluecollector.h and gboxed.c */
|
|
value_meminit (GValue *value,
|
|
GType value_type)
|
|
{
|
|
value->g_type = value_type;
|
|
memset (value->data, 0, sizeof (value->data));
|
|
}
|
|
|
|
GValue*
|
|
g_value_init (GValue *value,
|
|
GType g_type)
|
|
{
|
|
/* g_return_val_if_fail (G_TYPE_IS_VALUE (g_type), NULL); be more elaborate below */
|
|
g_return_val_if_fail (value != NULL, NULL);
|
|
/* g_return_val_if_fail (G_VALUE_TYPE (value) == 0, NULL); be more elaborate below */
|
|
|
|
if (G_TYPE_IS_VALUE (g_type) && G_VALUE_TYPE (value) == 0)
|
|
{
|
|
GTypeValueTable *value_table = g_type_value_table_peek (g_type);
|
|
|
|
/* setup and init */
|
|
value_meminit (value, g_type);
|
|
value_table->value_init (value);
|
|
}
|
|
else if (G_VALUE_TYPE (value))
|
|
g_warning ("%s: cannot initialize GValue with type `%s', the value has already been initialized as `%s'",
|
|
G_STRLOC,
|
|
g_type_name (g_type),
|
|
g_type_name (G_VALUE_TYPE (value)));
|
|
else /* !G_TYPE_IS_VALUE (g_type) */
|
|
g_warning ("%s: cannot initialize GValue with type `%s', %s",
|
|
G_STRLOC,
|
|
g_type_name (g_type),
|
|
g_type_value_table_peek (g_type) ?
|
|
"this type is abstract with regards to GValue use, use a more specific (derived) type" :
|
|
"this type has no GTypeValueTable implementation");
|
|
return value;
|
|
}
|
|
|
|
void
|
|
g_value_copy (const GValue *src_value,
|
|
GValue *dest_value)
|
|
{
|
|
g_return_if_fail (G_IS_VALUE (src_value));
|
|
g_return_if_fail (G_IS_VALUE (dest_value));
|
|
g_return_if_fail (g_value_type_compatible (G_VALUE_TYPE (src_value), G_VALUE_TYPE (dest_value)));
|
|
|
|
if (src_value != dest_value)
|
|
{
|
|
GType dest_type = G_VALUE_TYPE (dest_value);
|
|
GTypeValueTable *value_table = g_type_value_table_peek (dest_type);
|
|
|
|
/* make sure dest_value's value is free()d */
|
|
if (value_table->value_free)
|
|
value_table->value_free (dest_value);
|
|
|
|
/* setup and copy */
|
|
value_meminit (dest_value, dest_type);
|
|
value_table->value_copy (src_value, dest_value);
|
|
}
|
|
}
|
|
|
|
GValue*
|
|
g_value_reset (GValue *value)
|
|
{
|
|
GTypeValueTable *value_table;
|
|
GType g_type;
|
|
|
|
g_return_val_if_fail (G_IS_VALUE (value), NULL);
|
|
|
|
g_type = G_VALUE_TYPE (value);
|
|
value_table = g_type_value_table_peek (g_type);
|
|
|
|
/* make sure value's value is free()d */
|
|
if (value_table->value_free)
|
|
value_table->value_free (value);
|
|
|
|
/* setup and init */
|
|
value_meminit (value, g_type);
|
|
value_table->value_init (value);
|
|
|
|
return value;
|
|
}
|
|
|
|
void
|
|
g_value_unset (GValue *value)
|
|
{
|
|
GTypeValueTable *value_table;
|
|
|
|
g_return_if_fail (G_IS_VALUE (value));
|
|
|
|
value_table = g_type_value_table_peek (G_VALUE_TYPE (value));
|
|
|
|
if (value_table->value_free)
|
|
value_table->value_free (value);
|
|
memset (value, 0, sizeof (*value));
|
|
}
|
|
|
|
gboolean
|
|
g_value_fits_pointer (const GValue *value)
|
|
{
|
|
GTypeValueTable *value_table;
|
|
|
|
g_return_val_if_fail (G_IS_VALUE (value), FALSE);
|
|
|
|
value_table = g_type_value_table_peek (G_VALUE_TYPE (value));
|
|
|
|
return value_table->value_peek_pointer != NULL;
|
|
}
|
|
|
|
gpointer
|
|
g_value_peek_pointer (const GValue *value)
|
|
{
|
|
GTypeValueTable *value_table;
|
|
|
|
g_return_val_if_fail (G_IS_VALUE (value), NULL);
|
|
|
|
value_table = g_type_value_table_peek (G_VALUE_TYPE (value));
|
|
if (!value_table->value_peek_pointer)
|
|
g_return_val_if_fail (g_value_fits_pointer (value) == TRUE, NULL);
|
|
|
|
return value_table->value_peek_pointer (value);
|
|
}
|
|
|
|
void
|
|
g_value_set_instance (GValue *value,
|
|
gpointer instance)
|
|
{
|
|
GType g_type;
|
|
GTypeValueTable *value_table;
|
|
GTypeCValue cvalue;
|
|
gchar *error_msg;
|
|
|
|
g_return_if_fail (G_IS_VALUE (value));
|
|
if (instance)
|
|
{
|
|
g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
|
|
g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (instance), G_VALUE_TYPE (value)));
|
|
}
|
|
|
|
g_type = G_VALUE_TYPE (value);
|
|
value_table = g_type_value_table_peek (g_type);
|
|
|
|
g_return_if_fail (strcmp (value_table->collect_format, "p") == 0);
|
|
|
|
memset (&cvalue, 0, sizeof (cvalue));
|
|
cvalue.v_pointer = instance;
|
|
|
|
/* make sure value's value is free()d */
|
|
if (value_table->value_free)
|
|
value_table->value_free (value);
|
|
|
|
/* setup and collect */
|
|
value_meminit (value, g_type);
|
|
error_msg = value_table->collect_value (value, 1, &cvalue, 0);
|
|
if (error_msg)
|
|
{
|
|
g_warning ("%s: %s", G_STRLOC, error_msg);
|
|
g_free (error_msg);
|
|
|
|
/* we purposely leak the value here, it might not be
|
|
* in a sane state if an error condition occoured
|
|
*/
|
|
value_meminit (value, g_type);
|
|
value_table->value_init (value);
|
|
}
|
|
}
|
|
|
|
static GValueTransform
|
|
transform_func_lookup (GType src_type,
|
|
GType dest_type)
|
|
{
|
|
TransformEntry entry;
|
|
|
|
entry.src_type = src_type;
|
|
do
|
|
{
|
|
entry.dest_type = dest_type;
|
|
do
|
|
{
|
|
TransformEntry *e;
|
|
|
|
e = g_bsearch_array_lookup (&transform_array, &entry);
|
|
if (e)
|
|
{
|
|
/* need to check that there hasn't been a change in value handling */
|
|
if (g_type_value_table_peek (entry.dest_type) == g_type_value_table_peek (dest_type) &&
|
|
g_type_value_table_peek (entry.src_type) == g_type_value_table_peek (src_type))
|
|
return e->func;
|
|
}
|
|
entry.dest_type = g_type_parent (entry.dest_type);
|
|
}
|
|
while (entry.dest_type);
|
|
|
|
entry.src_type = g_type_parent (entry.src_type);
|
|
}
|
|
while (entry.src_type);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static gint
|
|
transform_entries_cmp (gconstpointer bsearch_node1,
|
|
gconstpointer bsearch_node2)
|
|
{
|
|
const TransformEntry *e1 = bsearch_node1;
|
|
const TransformEntry *e2 = bsearch_node2;
|
|
gint cmp = G_BSEARCH_ARRAY_CMP (e1->src_type, e2->src_type);
|
|
|
|
if (cmp)
|
|
return cmp;
|
|
else
|
|
return G_BSEARCH_ARRAY_CMP (e1->dest_type, e2->dest_type);
|
|
}
|
|
|
|
void
|
|
g_value_register_transform_func (GType src_type,
|
|
GType dest_type,
|
|
GValueTransform transform_func)
|
|
{
|
|
TransformEntry entry;
|
|
|
|
g_return_if_fail (G_TYPE_HAS_VALUE_TABLE (src_type));
|
|
g_return_if_fail (G_TYPE_HAS_VALUE_TABLE (dest_type));
|
|
g_return_if_fail (transform_func != NULL);
|
|
|
|
if (transform_func_lookup (src_type, dest_type))
|
|
g_warning ("reregistering value transformation function (%p) for `%s' to `%s'",
|
|
transform_func,
|
|
g_type_name (src_type),
|
|
g_type_name (dest_type));
|
|
entry.src_type = src_type;
|
|
entry.dest_type = dest_type;
|
|
entry.func = transform_func;
|
|
g_bsearch_array_insert (&transform_array, &entry, TRUE);
|
|
}
|
|
|
|
gboolean
|
|
g_value_type_transformable (GType src_type,
|
|
GType dest_type)
|
|
{
|
|
g_return_val_if_fail (G_TYPE_IS_VALUE (src_type), FALSE);
|
|
g_return_val_if_fail (G_TYPE_IS_VALUE (dest_type), FALSE);
|
|
|
|
return (g_value_type_compatible (src_type, dest_type) ||
|
|
transform_func_lookup (src_type, dest_type) != NULL);
|
|
}
|
|
|
|
gboolean
|
|
g_value_type_compatible (GType src_type,
|
|
GType dest_type)
|
|
{
|
|
g_return_val_if_fail (G_TYPE_IS_VALUE (src_type), FALSE);
|
|
g_return_val_if_fail (G_TYPE_IS_VALUE (dest_type), FALSE);
|
|
|
|
return (g_type_is_a (src_type, dest_type) &&
|
|
g_type_value_table_peek (dest_type) == g_type_value_table_peek (src_type));
|
|
}
|
|
|
|
gboolean
|
|
g_value_transform (const GValue *src_value,
|
|
GValue *dest_value)
|
|
{
|
|
GType dest_type;
|
|
|
|
g_return_val_if_fail (G_IS_VALUE (src_value), FALSE);
|
|
g_return_val_if_fail (G_IS_VALUE (dest_value), FALSE);
|
|
|
|
dest_type = G_VALUE_TYPE (dest_value);
|
|
if (g_value_type_compatible (G_VALUE_TYPE (src_value), dest_type))
|
|
{
|
|
g_value_copy (src_value, dest_value);
|
|
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
GValueTransform transform = transform_func_lookup (G_VALUE_TYPE (src_value), dest_type);
|
|
|
|
if (transform)
|
|
{
|
|
g_value_unset (dest_value);
|
|
|
|
/* setup and transform */
|
|
value_meminit (dest_value, dest_type);
|
|
transform (src_value, dest_value);
|
|
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|