2012-02-03 19:42:56 +01:00
|
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
|
|
|
* GObject introspection: Base struct implementation
|
2010-05-31 22:41:45 +02:00
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2005 Matthias Clasen
|
|
|
|
|
* Copyright (C) 2008,2009 Red Hat, Inc.
|
|
|
|
|
*
|
2023-10-25 18:10:10 +02:00
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
*
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-07-04 12:27:41 +02:00
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2010-05-31 22:41:45 +02:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
#include <glib-object.h>
|
2023-11-28 18:24:20 +01:00
|
|
|
|
#include <gobject/gvaluecollector.h>
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
2010-05-31 22:44:46 +02:00
|
|
|
|
#include "gitypelib-internal.h"
|
2010-05-31 22:41:45 +02:00
|
|
|
|
#include "girepository-private.h"
|
2023-10-25 19:11:38 +02:00
|
|
|
|
#include "gibaseinfo.h"
|
2023-11-28 18:24:20 +01:00
|
|
|
|
#include "gibaseinfo-private.h"
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
#define INVALID_REFCOUNT 0x7FFFFFFF
|
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
/* Type registration of BaseInfo. */
|
|
|
|
|
#define GI_BASE_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GI_TYPE_BASE_INFO, GIBaseInfoClass))
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
value_base_info_init (GValue *value)
|
|
|
|
|
{
|
|
|
|
|
value->data[0].v_pointer = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
value_base_info_free_value (GValue *value)
|
|
|
|
|
{
|
|
|
|
|
if (value->data[0].v_pointer != NULL)
|
|
|
|
|
gi_base_info_unref (value->data[0].v_pointer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
value_base_info_copy_value (const GValue *src,
|
|
|
|
|
GValue *dst)
|
|
|
|
|
{
|
|
|
|
|
if (src->data[0].v_pointer != NULL)
|
|
|
|
|
dst->data[0].v_pointer = gi_base_info_ref (src->data[0].v_pointer);
|
|
|
|
|
else
|
|
|
|
|
dst->data[0].v_pointer = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
|
value_base_info_peek_pointer (const GValue *value)
|
|
|
|
|
{
|
|
|
|
|
return value->data[0].v_pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
value_base_info_collect_value (GValue *value,
|
|
|
|
|
guint n_collect_values,
|
|
|
|
|
GTypeCValue *collect_values,
|
|
|
|
|
guint collect_flags)
|
|
|
|
|
{
|
|
|
|
|
GIBaseInfo *info = collect_values[0].v_pointer;
|
|
|
|
|
|
|
|
|
|
if (info == NULL)
|
|
|
|
|
{
|
|
|
|
|
value->data[0].v_pointer = NULL;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info->parent_instance.g_class == NULL)
|
|
|
|
|
return g_strconcat ("invalid unclassed GIBaseInfo pointer for "
|
|
|
|
|
"value type '",
|
|
|
|
|
G_VALUE_TYPE_NAME (value),
|
|
|
|
|
"'",
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
value->data[0].v_pointer = gi_base_info_ref (info);
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
|
value_base_info_lcopy_value (const GValue *value,
|
|
|
|
|
guint n_collect_values,
|
|
|
|
|
GTypeCValue *collect_values,
|
|
|
|
|
guint collect_flags)
|
|
|
|
|
{
|
|
|
|
|
GIBaseInfo **node_p = collect_values[0].v_pointer;
|
|
|
|
|
|
|
|
|
|
if (node_p == NULL)
|
|
|
|
|
return g_strconcat ("value location for '",
|
|
|
|
|
G_VALUE_TYPE_NAME (value),
|
|
|
|
|
"' passed as NULL",
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
if (value->data[0].v_pointer == NULL)
|
|
|
|
|
*node_p = NULL;
|
|
|
|
|
else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
|
|
|
|
|
*node_p = value->data[0].v_pointer;
|
|
|
|
|
else
|
|
|
|
|
*node_p = gi_base_info_ref (value->data[0].v_pointer);
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gi_base_info_finalize (GIBaseInfo *self)
|
|
|
|
|
{
|
|
|
|
|
if (self->container && self->container->ref_count != INVALID_REFCOUNT)
|
|
|
|
|
gi_base_info_unref (self->container);
|
|
|
|
|
|
|
|
|
|
g_clear_object (&self->repository);
|
|
|
|
|
|
|
|
|
|
g_type_free_instance ((GTypeInstance *) self);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gi_base_info_class_init (GIBaseInfoClass *klass)
|
|
|
|
|
{
|
|
|
|
|
klass->info_type = GI_INFO_TYPE_INVALID;
|
|
|
|
|
klass->finalize = gi_base_info_finalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gi_base_info_init (GIBaseInfo *self)
|
|
|
|
|
{
|
|
|
|
|
g_atomic_ref_count_init (&self->ref_count);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-03 15:20:43 +02:00
|
|
|
|
GType
|
2023-12-12 17:23:03 +01:00
|
|
|
|
gi_base_info_get_type (void)
|
2010-09-03 15:20:43 +02:00
|
|
|
|
{
|
2023-11-28 18:24:20 +01:00
|
|
|
|
static GType base_info_type = 0;
|
|
|
|
|
|
|
|
|
|
if (g_once_init_enter_pointer (&base_info_type))
|
|
|
|
|
{
|
|
|
|
|
static const GTypeFundamentalInfo finfo = {
|
|
|
|
|
(G_TYPE_FLAG_CLASSED |
|
|
|
|
|
G_TYPE_FLAG_INSTANTIATABLE |
|
|
|
|
|
G_TYPE_FLAG_DERIVABLE |
|
|
|
|
|
G_TYPE_FLAG_DEEP_DERIVABLE),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const GTypeValueTable value_table = {
|
|
|
|
|
value_base_info_init,
|
|
|
|
|
value_base_info_free_value,
|
|
|
|
|
value_base_info_copy_value,
|
|
|
|
|
value_base_info_peek_pointer,
|
|
|
|
|
"p",
|
|
|
|
|
value_base_info_collect_value,
|
|
|
|
|
"p",
|
|
|
|
|
value_base_info_lcopy_value,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const GTypeInfo type_info = {
|
|
|
|
|
/* Class */
|
|
|
|
|
sizeof (GIBaseInfoClass),
|
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
|
(GClassInitFunc) gi_base_info_class_init,
|
|
|
|
|
(GClassFinalizeFunc) NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
|
|
/* Instance */
|
|
|
|
|
sizeof (GIBaseInfo),
|
|
|
|
|
0,
|
|
|
|
|
(GInstanceInitFunc) gi_base_info_init,
|
|
|
|
|
|
|
|
|
|
/* GValue */
|
|
|
|
|
&value_table,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
GType _base_info_type =
|
|
|
|
|
g_type_register_fundamental (g_type_fundamental_next (),
|
|
|
|
|
g_intern_static_string ("GIBaseInfo"),
|
|
|
|
|
&type_info, &finfo,
|
|
|
|
|
G_TYPE_FLAG_ABSTRACT);
|
|
|
|
|
|
|
|
|
|
g_once_init_leave_pointer (&base_info_type, _base_info_type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base_info_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*< private >
|
|
|
|
|
* gi_base_info_type_register_static:
|
|
|
|
|
* @type_name: the name of the type
|
|
|
|
|
* @instance_size: size (in bytes) of the type’s instance struct
|
|
|
|
|
* @class_init: class init function for the type
|
|
|
|
|
*
|
|
|
|
|
* Registers a new [type@GIRepository.BaseInfo] type for the given @type_name
|
|
|
|
|
* using the type information provided.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the newly registered [type@GObject.Type]
|
|
|
|
|
* Since: 2.80
|
|
|
|
|
*/
|
|
|
|
|
GType
|
|
|
|
|
gi_base_info_type_register_static (const char *type_name,
|
|
|
|
|
gsize instance_size,
|
|
|
|
|
GClassInitFunc class_init)
|
|
|
|
|
{
|
|
|
|
|
GTypeInfo info;
|
|
|
|
|
|
|
|
|
|
info.class_size = sizeof (GIBaseInfoClass);
|
|
|
|
|
info.base_init = NULL;
|
|
|
|
|
info.base_finalize = NULL;
|
|
|
|
|
info.class_init = class_init;
|
|
|
|
|
info.class_finalize = NULL;
|
|
|
|
|
info.instance_size = instance_size;
|
|
|
|
|
info.n_preallocs = 0;
|
|
|
|
|
info.instance_init = NULL;
|
|
|
|
|
info.value_table = NULL;
|
|
|
|
|
|
|
|
|
|
return g_type_register_static (GI_TYPE_BASE_INFO, type_name, &info, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GType gi_base_info_types[GI_INFO_TYPE_N_TYPES];
|
|
|
|
|
|
|
|
|
|
#define GI_DEFINE_BASE_INFO_TYPE(type_name, TYPE_ENUM_VALUE) \
|
|
|
|
|
GType \
|
|
|
|
|
type_name ## _get_type (void) \
|
|
|
|
|
{ \
|
|
|
|
|
gi_base_info_init_types (); \
|
|
|
|
|
g_assert (gi_base_info_types[TYPE_ENUM_VALUE] != G_TYPE_INVALID); \
|
|
|
|
|
return gi_base_info_types[TYPE_ENUM_VALUE]; \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_callable_info, GI_INFO_TYPE_CALLABLE)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_function_info, GI_INFO_TYPE_FUNCTION)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_callback_info, GI_INFO_TYPE_CALLBACK)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_registered_type_info, GI_INFO_TYPE_REGISTERED_TYPE)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_struct_info, GI_INFO_TYPE_STRUCT)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_union_info, GI_INFO_TYPE_UNION)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_enum_info, GI_INFO_TYPE_ENUM)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_object_info, GI_INFO_TYPE_OBJECT)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_interface_info, GI_INFO_TYPE_INTERFACE)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_constant_info, GI_INFO_TYPE_CONSTANT)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_value_info, GI_INFO_TYPE_VALUE)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_signal_info, GI_INFO_TYPE_SIGNAL)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_vfunc_info, GI_INFO_TYPE_VFUNC)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_property_info, GI_INFO_TYPE_PROPERTY)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_field_info, GI_INFO_TYPE_FIELD)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_arg_info, GI_INFO_TYPE_ARG)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_type_info, GI_INFO_TYPE_TYPE)
|
|
|
|
|
GI_DEFINE_BASE_INFO_TYPE (gi_unresolved_info, GI_INFO_TYPE_UNRESOLVED)
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
gi_base_info_init_types (void)
|
|
|
|
|
{
|
|
|
|
|
static gsize register_types_once = 0;
|
|
|
|
|
|
|
|
|
|
if (g_once_init_enter (®ister_types_once))
|
|
|
|
|
{
|
|
|
|
|
const struct
|
|
|
|
|
{
|
|
|
|
|
GIInfoType info_type;
|
|
|
|
|
const char *type_name;
|
|
|
|
|
gsize instance_size;
|
|
|
|
|
GClassInitFunc class_init;
|
|
|
|
|
}
|
|
|
|
|
types[] =
|
|
|
|
|
{
|
|
|
|
|
{ GI_INFO_TYPE_CALLABLE, "GICallableInfo", sizeof (GICallableInfo), gi_callable_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_FUNCTION, "GIFunctionInfo", sizeof (GIFunctionInfo), gi_function_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_CALLBACK, "GICallbackInfo", sizeof (GICallbackInfo), gi_callback_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_REGISTERED_TYPE, "GIRegisteredTypeInfo", sizeof (GIRegisteredTypeInfo), gi_registered_type_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_STRUCT, "GIStructInfo", sizeof (GIStructInfo), gi_struct_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_UNION, "GIUnionInfo", sizeof (GIUnionInfo), gi_union_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_ENUM, "GIEnumInfo", sizeof (GIEnumInfo), gi_enum_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_OBJECT, "GIObjectInfo", sizeof (GIObjectInfo), gi_object_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_INTERFACE, "GIInterfaceInfo", sizeof (GIInterfaceInfo), gi_interface_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_CONSTANT, "GIConstantInfo", sizeof (GIConstantInfo), gi_constant_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_VALUE, "GIValueInfo", sizeof (GIValueInfo), gi_value_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_SIGNAL, "GISignalInfo", sizeof (GISignalInfo), gi_signal_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_VFUNC, "GIVFuncInfo", sizeof (GIVFuncInfo), gi_vfunc_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_PROPERTY, "GIPropertyInfo", sizeof (GIPropertyInfo), gi_property_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_FIELD, "GIFieldInfo", sizeof (GIFieldInfo), gi_field_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_ARG, "GIArgInfo", sizeof (GIArgInfo), gi_arg_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_TYPE, "GITypeInfo", sizeof (GITypeInfo), gi_type_info_class_init },
|
|
|
|
|
{ GI_INFO_TYPE_UNRESOLVED, "GIUnresolvedInfo", sizeof (GIUnresolvedInfo), gi_unresolved_info_class_init },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (gsize i = 0; i < G_N_ELEMENTS (types); i++)
|
|
|
|
|
{
|
|
|
|
|
GType registered_type = gi_base_info_type_register_static (g_intern_static_string (types[i].type_name),
|
|
|
|
|
types[i].instance_size,
|
|
|
|
|
types[i].class_init);
|
|
|
|
|
gi_base_info_types[types[i].info_type] = registered_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_once_init_leave (®ister_types_once, 1);
|
|
|
|
|
}
|
2010-09-03 15:20:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-31 22:41:45 +02:00
|
|
|
|
/* info creation */
|
|
|
|
|
GIBaseInfo *
|
2023-11-08 16:23:31 +01:00
|
|
|
|
gi_info_new_full (GIInfoType type,
|
|
|
|
|
GIRepository *repository,
|
|
|
|
|
GIBaseInfo *container,
|
|
|
|
|
GITypelib *typelib,
|
|
|
|
|
guint32 offset)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *info;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (container != NULL || repository != NULL, NULL);
|
2023-11-28 18:24:20 +01:00
|
|
|
|
g_return_val_if_fail (GI_IS_REPOSITORY (repository), NULL);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
gi_base_info_init_types ();
|
|
|
|
|
g_assert (gi_base_info_types[type] != G_TYPE_INVALID);
|
|
|
|
|
info = (GIRealInfo *) g_type_create_instance (gi_base_info_types[type]);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
info->typelib = typelib;
|
|
|
|
|
info->offset = offset;
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
if (container)
|
|
|
|
|
info->container = container;
|
|
|
|
|
if (container && container->ref_count != INVALID_REFCOUNT)
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_ref (info->container);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
info->repository = g_object_ref (repository);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
return (GIBaseInfo*)info;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-10 22:21:18 +02:00
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_info_new:
|
2013-10-10 22:21:18 +02:00
|
|
|
|
* @type: TODO
|
|
|
|
|
* @container: TODO
|
|
|
|
|
* @typelib: TODO
|
|
|
|
|
* @offset: TODO
|
|
|
|
|
*
|
|
|
|
|
* TODO
|
|
|
|
|
*
|
2023-11-28 18:15:28 +01:00
|
|
|
|
* Returns: (transfer full): TODO
|
2013-10-10 22:21:18 +02:00
|
|
|
|
*/
|
2010-05-31 22:41:45 +02:00
|
|
|
|
GIBaseInfo *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_info_new (GIInfoType type,
|
|
|
|
|
GIBaseInfo *container,
|
|
|
|
|
GITypelib *typelib,
|
|
|
|
|
guint32 offset)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
2023-11-08 16:23:31 +01:00
|
|
|
|
return gi_info_new_full (type, ((GIRealInfo*)container)->repository, container, typelib, offset);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2023-11-08 16:23:31 +01:00
|
|
|
|
gi_info_init (GIRealInfo *info,
|
|
|
|
|
GIInfoType type,
|
|
|
|
|
GIRepository *repository,
|
|
|
|
|
GIBaseInfo *container,
|
|
|
|
|
GITypelib *typelib,
|
|
|
|
|
guint32 offset)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
memset (info, 0, sizeof (GIRealInfo));
|
|
|
|
|
|
|
|
|
|
/* Invalid refcount used to flag stack-allocated infos */
|
|
|
|
|
info->ref_count = INVALID_REFCOUNT;
|
|
|
|
|
info->typelib = typelib;
|
|
|
|
|
info->offset = offset;
|
|
|
|
|
|
|
|
|
|
if (container)
|
|
|
|
|
info->container = container;
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
g_assert (GI_IS_REPOSITORY (repository));
|
2010-05-31 22:41:45 +02:00
|
|
|
|
info->repository = repository;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GIBaseInfo *
|
2023-11-08 16:23:31 +01:00
|
|
|
|
gi_info_from_entry (GIRepository *repository,
|
|
|
|
|
GITypelib *typelib,
|
|
|
|
|
guint16 index)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIBaseInfo *result;
|
2023-11-08 15:17:52 +01:00
|
|
|
|
DirEntry *entry = gi_typelib_get_dir_entry (typelib, index);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
if (entry->local)
|
2023-11-08 16:23:31 +01:00
|
|
|
|
result = gi_info_new_full (entry->blob_type, repository, NULL, typelib, entry->offset);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2023-11-08 15:17:52 +01:00
|
|
|
|
const gchar *namespace = gi_typelib_get_string (typelib, entry->offset);
|
|
|
|
|
const gchar *name = gi_typelib_get_string (typelib, entry->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
result = gi_repository_find_by_name (repository, namespace, name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
if (result == NULL)
|
|
|
|
|
{
|
|
|
|
|
GIUnresolvedInfo *unresolved;
|
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
unresolved = (GIUnresolvedInfo *) gi_info_new_full (GI_INFO_TYPE_UNRESOLVED,
|
|
|
|
|
repository,
|
|
|
|
|
NULL,
|
|
|
|
|
typelib,
|
|
|
|
|
entry->offset);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
unresolved->name = name;
|
|
|
|
|
unresolved->namespace = namespace;
|
|
|
|
|
|
|
|
|
|
return (GIBaseInfo *)unresolved;
|
|
|
|
|
}
|
|
|
|
|
return (GIBaseInfo *)result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (GIBaseInfo *)result;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-05 17:11:58 +02:00
|
|
|
|
GITypeInfo *
|
2023-11-08 16:23:31 +01:00
|
|
|
|
gi_type_info_new (GIBaseInfo *container,
|
|
|
|
|
GITypelib *typelib,
|
|
|
|
|
guint32 offset)
|
2010-06-05 17:11:58 +02:00
|
|
|
|
{
|
|
|
|
|
SimpleTypeBlob *type = (SimpleTypeBlob *)&typelib->data[offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return (GITypeInfo *) gi_info_new (GI_INFO_TYPE_TYPE, container, typelib,
|
|
|
|
|
(type->flags.reserved == 0 && type->flags.reserved2 == 0) ? offset : type->offset);
|
2010-06-05 17:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2023-11-08 16:23:31 +01:00
|
|
|
|
gi_type_info_init (GIBaseInfo *info,
|
|
|
|
|
GIBaseInfo *container,
|
|
|
|
|
GITypelib *typelib,
|
|
|
|
|
guint32 offset)
|
2010-06-05 17:11:58 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*)container;
|
|
|
|
|
SimpleTypeBlob *type = (SimpleTypeBlob *)&typelib->data[offset];
|
|
|
|
|
|
2023-11-08 16:23:31 +01:00
|
|
|
|
gi_info_init ((GIRealInfo*)info, GI_INFO_TYPE_TYPE, rinfo->repository, container, typelib,
|
|
|
|
|
(type->flags.reserved == 0 && type->flags.reserved2 == 0) ? offset : type->offset);
|
2010-06-05 17:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-31 22:41:45 +02:00
|
|
|
|
/* GIBaseInfo functions */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SECTION:gibaseinfo
|
2013-10-10 22:21:18 +02:00
|
|
|
|
* @title: GIBaseInfo
|
|
|
|
|
* @short_description: Base struct for all GITypelib structs
|
2010-05-31 22:41:45 +02:00
|
|
|
|
*
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* GIBaseInfo is the common base struct of all other Info structs
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* accessible through the #GIRepository API.
|
2022-02-13 15:20:51 +01:00
|
|
|
|
*
|
|
|
|
|
* All info structures can be cast to a #GIBaseInfo, for instance:
|
|
|
|
|
*
|
|
|
|
|
* |[<!-- language="C" -->
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* GIFunctionInfo *function_info = ...;
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* GIBaseInfo *info = (GIBaseInfo *) function_info;
|
|
|
|
|
* ]|
|
|
|
|
|
*
|
|
|
|
|
* Most #GIRepository APIs returning a #GIBaseInfo is actually
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* creating a new struct; in other words, gi_base_info_unref() has to
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* be called when done accessing the data.
|
|
|
|
|
*
|
|
|
|
|
* #GIBaseInfo structuress are normally accessed by calling either
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_repository_find_by_name(), gi_repository_find_by_gtype() or
|
|
|
|
|
* gi_repository_get_info().
|
2022-02-13 15:20:51 +01:00
|
|
|
|
*
|
|
|
|
|
* |[<!-- language="C" -->
|
|
|
|
|
* GIBaseInfo *button_info =
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_repository_find_by_name (NULL, "Gtk", "Button");
|
2022-02-13 15:20:51 +01:00
|
|
|
|
*
|
|
|
|
|
* // ... use button_info ...
|
|
|
|
|
*
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_unref (button_info);
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* ]|
|
|
|
|
|
*
|
|
|
|
|
* ## Hierarchy
|
|
|
|
|
*
|
|
|
|
|
* |[<!-- language="plain" -->
|
2010-06-12 01:16:00 +02:00
|
|
|
|
* GIBaseInfo
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* +---- GIArgInfo
|
|
|
|
|
* +---- GICallableInfo
|
|
|
|
|
* +---- GIConstantInfo
|
|
|
|
|
* +---- GIFieldInfo
|
|
|
|
|
* +---- GIPropertyInfo
|
|
|
|
|
* +---- GIRegisteredTypeInfo
|
|
|
|
|
* +---- GITypeInfo
|
|
|
|
|
* ]|
|
2010-05-31 22:41:45 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_ref: (skip)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Increases the reference count of @info.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the same @info.
|
|
|
|
|
*/
|
|
|
|
|
GIBaseInfo *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_ref (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*)info;
|
|
|
|
|
|
|
|
|
|
g_assert (rinfo->ref_count != INVALID_REFCOUNT);
|
2023-11-28 18:24:20 +01:00
|
|
|
|
g_atomic_ref_count_inc (&rinfo->ref_count);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
return info;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_unref: (skip)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Decreases the reference count of @info. When its reference count
|
|
|
|
|
* drops to 0, the info is freed.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_unref (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*)info;
|
|
|
|
|
|
|
|
|
|
g_assert (rinfo->ref_count > 0 && rinfo->ref_count != INVALID_REFCOUNT);
|
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
if (g_atomic_ref_count_dec (&rinfo->ref_count))
|
|
|
|
|
GI_BASE_INFO_GET_CLASS (info)->finalize (info);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-12-12 17:16:30 +01:00
|
|
|
|
* gi_base_info_get_info_type:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the info type of the GIBaseInfo.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the info type of @info
|
|
|
|
|
*/
|
|
|
|
|
GIInfoType
|
2023-12-12 17:16:30 +01:00
|
|
|
|
gi_base_info_get_info_type (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
2023-11-28 18:24:20 +01:00
|
|
|
|
return GI_BASE_INFO_GET_CLASS (info)->info_type;
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_get_name:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the name of the @info. What the name represents depends on
|
|
|
|
|
* the #GIInfoType of the @info. For instance for #GIFunctionInfo it is
|
|
|
|
|
* the name of the function.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the name of @info or %NULL if it lacks a name.
|
|
|
|
|
*/
|
|
|
|
|
const gchar *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_get_name (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*)info;
|
|
|
|
|
g_assert (rinfo->ref_count > 0);
|
2023-12-12 17:16:30 +01:00
|
|
|
|
switch (gi_base_info_get_info_type ((GIBaseInfo *) info))
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
case GI_INFO_TYPE_FUNCTION:
|
|
|
|
|
case GI_INFO_TYPE_CALLBACK:
|
|
|
|
|
case GI_INFO_TYPE_STRUCT:
|
|
|
|
|
case GI_INFO_TYPE_BOXED:
|
|
|
|
|
case GI_INFO_TYPE_ENUM:
|
|
|
|
|
case GI_INFO_TYPE_FLAGS:
|
|
|
|
|
case GI_INFO_TYPE_OBJECT:
|
|
|
|
|
case GI_INFO_TYPE_INTERFACE:
|
|
|
|
|
case GI_INFO_TYPE_CONSTANT:
|
2011-05-19 22:12:03 +02:00
|
|
|
|
case GI_INFO_TYPE_INVALID_0:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
case GI_INFO_TYPE_UNION:
|
|
|
|
|
{
|
|
|
|
|
CommonBlob *blob = (CommonBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_VALUE:
|
|
|
|
|
{
|
|
|
|
|
ValueBlob *blob = (ValueBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_SIGNAL:
|
|
|
|
|
{
|
|
|
|
|
SignalBlob *blob = (SignalBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_PROPERTY:
|
|
|
|
|
{
|
|
|
|
|
PropertyBlob *blob = (PropertyBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_VFUNC:
|
|
|
|
|
{
|
|
|
|
|
VFuncBlob *blob = (VFuncBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_FIELD:
|
|
|
|
|
{
|
|
|
|
|
FieldBlob *blob = (FieldBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_ARG:
|
|
|
|
|
{
|
|
|
|
|
ArgBlob *blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->name);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case GI_INFO_TYPE_UNRESOLVED:
|
|
|
|
|
{
|
|
|
|
|
GIUnresolvedInfo *unresolved = (GIUnresolvedInfo *)info;
|
|
|
|
|
|
|
|
|
|
return unresolved->name;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case GI_INFO_TYPE_TYPE:
|
2018-12-15 00:18:23 +01:00
|
|
|
|
return NULL;
|
2010-05-31 22:41:45 +02:00
|
|
|
|
default: ;
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
/* unnamed */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_get_namespace:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the namespace of @info.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the namespace
|
|
|
|
|
*/
|
|
|
|
|
const gchar *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_get_namespace (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*) info;
|
|
|
|
|
Header *header = (Header *)rinfo->typelib->data;
|
|
|
|
|
|
|
|
|
|
g_assert (rinfo->ref_count > 0);
|
|
|
|
|
|
2023-12-12 17:16:30 +01:00
|
|
|
|
if (gi_base_info_get_info_type (info) == GI_INFO_TYPE_UNRESOLVED)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIUnresolvedInfo *unresolved = (GIUnresolvedInfo *)info;
|
|
|
|
|
|
|
|
|
|
return unresolved->namespace;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
return gi_typelib_get_string (rinfo->typelib, header->namespace);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_is_deprecated:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain whether the @info is represents a metadata which is
|
|
|
|
|
* deprecated or not.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if deprecated
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_is_deprecated (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*) info;
|
2023-12-12 17:16:30 +01:00
|
|
|
|
switch (gi_base_info_get_info_type ((GIBaseInfo *) info))
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
case GI_INFO_TYPE_FUNCTION:
|
|
|
|
|
case GI_INFO_TYPE_CALLBACK:
|
|
|
|
|
case GI_INFO_TYPE_STRUCT:
|
|
|
|
|
case GI_INFO_TYPE_BOXED:
|
|
|
|
|
case GI_INFO_TYPE_ENUM:
|
|
|
|
|
case GI_INFO_TYPE_FLAGS:
|
|
|
|
|
case GI_INFO_TYPE_OBJECT:
|
|
|
|
|
case GI_INFO_TYPE_INTERFACE:
|
|
|
|
|
case GI_INFO_TYPE_CONSTANT:
|
2011-05-19 22:12:03 +02:00
|
|
|
|
case GI_INFO_TYPE_INVALID_0:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
CommonBlob *blob = (CommonBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->deprecated;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_VALUE:
|
|
|
|
|
{
|
|
|
|
|
ValueBlob *blob = (ValueBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->deprecated;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_SIGNAL:
|
|
|
|
|
{
|
|
|
|
|
SignalBlob *blob = (SignalBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->deprecated;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_PROPERTY:
|
|
|
|
|
{
|
|
|
|
|
PropertyBlob *blob = (PropertyBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->deprecated;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GI_INFO_TYPE_VFUNC:
|
|
|
|
|
case GI_INFO_TYPE_FIELD:
|
|
|
|
|
case GI_INFO_TYPE_ARG:
|
|
|
|
|
case GI_INFO_TYPE_TYPE:
|
|
|
|
|
default: ;
|
|
|
|
|
/* no deprecation flag for these */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_get_attribute:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
* @name: a freeform string naming an attribute
|
|
|
|
|
*
|
|
|
|
|
* Retrieve an arbitrary attribute associated with this node.
|
|
|
|
|
*
|
|
|
|
|
* Returns: The value of the attribute, or %NULL if no such attribute exists
|
|
|
|
|
*/
|
|
|
|
|
const gchar *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_get_attribute (GIBaseInfo *info,
|
|
|
|
|
const gchar *name)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIAttributeIter iter = { 0, };
|
|
|
|
|
gchar *curname, *curvalue;
|
2023-11-08 15:17:52 +01:00
|
|
|
|
while (gi_base_info_iterate_attributes (info, &iter, &curname, &curvalue))
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
if (strcmp (name, curname) == 0)
|
|
|
|
|
return (const gchar*) curvalue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
cmp_attribute (const void *av,
|
2010-06-15 17:01:37 +02:00
|
|
|
|
const void *bv)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
const AttributeBlob *a = av;
|
|
|
|
|
const AttributeBlob *b = bv;
|
|
|
|
|
|
|
|
|
|
if (a->offset < b->offset)
|
|
|
|
|
return -1;
|
|
|
|
|
else if (a->offset == b->offset)
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-15 17:01:37 +02:00
|
|
|
|
/*
|
|
|
|
|
* _attribute_blob_find_first:
|
|
|
|
|
* @GIBaseInfo: A #GIBaseInfo.
|
|
|
|
|
* @blob_offset: The offset for the blob to find the first attribute for.
|
|
|
|
|
*
|
|
|
|
|
* Searches for the first #AttributeBlob for @blob_offset and returns
|
|
|
|
|
* it if found.
|
|
|
|
|
*
|
|
|
|
|
* Returns: A pointer to #AttributeBlob or %NULL if not found.
|
|
|
|
|
*/
|
|
|
|
|
AttributeBlob *
|
|
|
|
|
_attribute_blob_find_first (GIBaseInfo *info,
|
|
|
|
|
guint32 blob_offset)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
2010-06-15 17:01:37 +02:00
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *) info;
|
2010-05-31 22:41:45 +02:00
|
|
|
|
Header *header = (Header *)rinfo->typelib->data;
|
|
|
|
|
AttributeBlob blob, *first, *res, *previous;
|
|
|
|
|
|
2010-06-15 17:01:37 +02:00
|
|
|
|
blob.offset = blob_offset;
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
first = (AttributeBlob *) &rinfo->typelib->data[header->attributes];
|
|
|
|
|
|
|
|
|
|
res = bsearch (&blob, first, header->n_attributes,
|
|
|
|
|
header->attribute_blob_size, cmp_attribute);
|
|
|
|
|
|
|
|
|
|
if (res == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
previous = res - 1;
|
2010-06-15 17:01:37 +02:00
|
|
|
|
while (previous >= first && previous->offset == blob_offset)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
res = previous;
|
|
|
|
|
previous = res - 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_iterate_attributes:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
2016-09-15 10:27:27 +02:00
|
|
|
|
* @iterator: (inout): a #GIAttributeIter structure, must be initialized; see below
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @name: (out) (transfer none): Returned name, must not be freed
|
|
|
|
|
* @value: (out) (transfer none): Returned name, must not be freed
|
|
|
|
|
*
|
|
|
|
|
* Iterate over all attributes associated with this node. The iterator
|
|
|
|
|
* structure is typically stack allocated, and must have its first
|
2014-06-23 10:35:02 +02:00
|
|
|
|
* member initialized to %NULL. Attributes are arbitrary namespaced key–value
|
|
|
|
|
* pairs which can be attached to almost any item. They are intended for use
|
|
|
|
|
* by software higher in the toolchain than bindings, and are distinct from
|
|
|
|
|
* normal GIR annotations.
|
2010-05-31 22:41:45 +02:00
|
|
|
|
*
|
|
|
|
|
* Both the @name and @value should be treated as constants
|
|
|
|
|
* and must not be freed.
|
|
|
|
|
*
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* |[<!-- language="C" -->
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* void
|
|
|
|
|
* print_attributes (GIBaseInfo *info)
|
|
|
|
|
* {
|
|
|
|
|
* GIAttributeIter iter = { 0, };
|
|
|
|
|
* char *name;
|
|
|
|
|
* char *value;
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* while (gi_base_info_iterate_attributes (info, &iter, &name, &value))
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* {
|
|
|
|
|
* g_print ("attribute name: %s value: %s", name, value);
|
|
|
|
|
* }
|
|
|
|
|
* }
|
2022-02-13 15:20:51 +01:00
|
|
|
|
* ]|
|
2010-05-31 22:41:45 +02:00
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if there are more attributes
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_iterate_attributes (GIBaseInfo *info,
|
|
|
|
|
GIAttributeIter *iterator,
|
|
|
|
|
gchar **name,
|
|
|
|
|
gchar **value)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
Header *header = (Header *)rinfo->typelib->data;
|
|
|
|
|
AttributeBlob *next, *after;
|
|
|
|
|
|
|
|
|
|
after = (AttributeBlob *) &rinfo->typelib->data[header->attributes +
|
|
|
|
|
header->n_attributes * header->attribute_blob_size];
|
|
|
|
|
|
|
|
|
|
if (iterator->data != NULL)
|
|
|
|
|
next = (AttributeBlob *) iterator->data;
|
|
|
|
|
else
|
2010-06-15 17:01:37 +02:00
|
|
|
|
next = _attribute_blob_find_first (info, rinfo->offset);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
|
|
|
|
|
if (next == NULL || next->offset != rinfo->offset || next >= after)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
|
*name = (gchar*) gi_typelib_get_string (rinfo->typelib, next->name);
|
|
|
|
|
*value = (gchar*) gi_typelib_get_string (rinfo->typelib, next->value);
|
2010-05-31 22:41:45 +02:00
|
|
|
|
iterator->data = next + 1;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_get_container:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the container of the @info. The container is the parent
|
|
|
|
|
* GIBaseInfo. For instance, the parent of a #GIFunctionInfo is an
|
|
|
|
|
* #GIObjectInfo or #GIInterfaceInfo.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer none): the container
|
|
|
|
|
*/
|
|
|
|
|
GIBaseInfo *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_get_container (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
return ((GIRealInfo*)info)->container;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_get_typelib:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the typelib this @info belongs to
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer none): the typelib.
|
|
|
|
|
*/
|
2010-08-31 22:36:06 +02:00
|
|
|
|
GITypelib *
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_get_typelib (GIBaseInfo *info)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
return ((GIRealInfo*)info)->typelib;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_base_info_equal:
|
2010-05-31 22:41:45 +02:00
|
|
|
|
* @info1: a #GIBaseInfo
|
|
|
|
|
* @info2: a #GIBaseInfo
|
|
|
|
|
*
|
|
|
|
|
* Compare two #GIBaseInfo.
|
|
|
|
|
*
|
|
|
|
|
* Using pointer comparison is not practical since many functions return
|
|
|
|
|
* different instances of #GIBaseInfo that refers to the same part of the
|
|
|
|
|
* TypeLib; use this function instead to do #GIBaseInfo comparisons.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if and only if @info1 equals @info2.
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_base_info_equal (GIBaseInfo *info1, GIBaseInfo *info2)
|
2010-05-31 22:41:45 +02:00
|
|
|
|
{
|
|
|
|
|
/* Compare the TypeLib pointers, which are mmapped. */
|
|
|
|
|
GIRealInfo *rinfo1 = (GIRealInfo*)info1;
|
|
|
|
|
GIRealInfo *rinfo2 = (GIRealInfo*)info2;
|
|
|
|
|
return rinfo1->typelib->data + rinfo1->offset == rinfo2->typelib->data + rinfo2->offset;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-05 17:11:58 +02:00
|
|
|
|
|