2008-02-08 16:31:03 +01:00
|
|
|
/* GObject introspection: Repository
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Matthias Clasen
|
2009-02-20 03:48:51 +01:00
|
|
|
* Copyright (C) 2008,2009 Red Hat, Inc.
|
2008-02-08 16:31:03 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_IREPOSITORY_H__
|
|
|
|
#define __G_IREPOSITORY_H__
|
|
|
|
|
2010-05-31 22:41:45 +02:00
|
|
|
#define __GIREPOSITORY_H_INSIDE__
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
#include <glib-object.h>
|
|
|
|
#include <gmodule.h>
|
2010-06-01 15:23:46 +02:00
|
|
|
#include <gibaseinfo.h>
|
2010-06-05 17:11:58 +02:00
|
|
|
#include <gicallableinfo.h>
|
2010-06-01 15:23:46 +02:00
|
|
|
#include <gifunctioninfo.h>
|
|
|
|
#include <gitypelib.h>
|
|
|
|
#include <gitypes.h>
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2009-12-08 00:35:06 +01:00
|
|
|
#define G_TYPE_IREPOSITORY (g_irepository_get_type ())
|
|
|
|
#define G_IREPOSITORY(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_IREPOSITORY, GIRepository))
|
|
|
|
#define G_IREPOSITORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_IREPOSITORY, GIRepositoryClass))
|
|
|
|
#define G_IS_IREPOSITORY(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_IREPOSITORY))
|
|
|
|
#define G_IS_IREPOSITORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_IREPOSITORY))
|
|
|
|
#define G_IREPOSITORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_IREPOSITORY, GIRepositoryClass))
|
2008-02-08 16:31:03 +01:00
|
|
|
|
2010-03-24 19:00:06 +01:00
|
|
|
typedef struct _GIRepository GIRepository;
|
|
|
|
typedef struct _GIRepositoryClass GIRepositoryClass;
|
|
|
|
typedef struct _GIRepositoryPrivate GIRepositoryPrivate;
|
2009-12-08 00:35:06 +01:00
|
|
|
|
2010-03-24 19:00:06 +01:00
|
|
|
struct _GIRepository
|
|
|
|
{
|
2009-12-08 00:35:06 +01:00
|
|
|
GObject parent;
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
GIRepositoryPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GIRepositoryClass
|
2010-03-24 19:00:06 +01:00
|
|
|
{
|
|
|
|
GObjectClass parent;
|
2008-02-08 16:31:03 +01:00
|
|
|
};
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIRepositoryLoadFlags
|
|
|
|
* @G_IREPOSITORY_LOAD_FLAG_LAZY: Load the types lazily.
|
|
|
|
*
|
|
|
|
* Flags that controlls how a typelib is loaded by
|
|
|
|
* GIRepositry, used by g_irepository_load_typelib().
|
|
|
|
*/
|
2008-08-30 22:31:12 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
G_IREPOSITORY_LOAD_FLAG_LAZY = 1 << 0
|
|
|
|
} GIRepositoryLoadFlags;
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* Repository */
|
|
|
|
|
|
|
|
GType g_irepository_get_type (void) G_GNUC_CONST;
|
|
|
|
GIRepository *g_irepository_get_default (void);
|
2008-08-30 22:31:07 +02:00
|
|
|
void g_irepository_prepend_search_path (const char *directory);
|
2008-11-12 13:40:34 +01:00
|
|
|
GSList * g_irepository_get_search_path (void);
|
2008-08-30 22:31:07 +02:00
|
|
|
const char * g_irepository_load_typelib (GIRepository *repository,
|
|
|
|
GTypelib *typelib,
|
2008-08-30 22:31:12 +02:00
|
|
|
GIRepositoryLoadFlags flags,
|
2008-08-30 22:31:07 +02:00
|
|
|
GError **error);
|
2008-10-13 18:59:09 +02:00
|
|
|
gboolean g_irepository_is_registered (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_,
|
2008-10-12 06:51:48 +02:00
|
|
|
const gchar *version);
|
2008-02-08 16:31:03 +01:00
|
|
|
GIBaseInfo * g_irepository_find_by_name (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_,
|
2008-02-08 16:31:03 +01:00
|
|
|
const gchar *name);
|
2008-10-25 17:48:50 +02:00
|
|
|
GTypelib * g_irepository_require (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_,
|
2008-10-13 18:59:09 +02:00
|
|
|
const gchar *version,
|
2008-08-30 22:31:12 +02:00
|
|
|
GIRepositoryLoadFlags flags,
|
2008-08-21 01:56:40 +02:00
|
|
|
GError **error);
|
2008-08-30 22:31:07 +02:00
|
|
|
gchar ** g_irepository_get_dependencies (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_);
|
2008-10-12 06:51:48 +02:00
|
|
|
gchar ** g_irepository_get_loaded_namespaces (GIRepository *repository);
|
2008-02-08 16:31:03 +01:00
|
|
|
GIBaseInfo * g_irepository_find_by_gtype (GIRepository *repository,
|
|
|
|
GType gtype);
|
|
|
|
gint g_irepository_get_n_infos (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_);
|
2008-02-08 16:31:03 +01:00
|
|
|
GIBaseInfo * g_irepository_get_info (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_,
|
2008-02-08 16:31:03 +01:00
|
|
|
gint index);
|
2008-08-21 05:06:13 +02:00
|
|
|
const gchar * g_irepository_get_typelib_path (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_);
|
2008-02-08 16:31:03 +01:00
|
|
|
const gchar * g_irepository_get_shared_library (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_);
|
2009-02-13 00:42:47 +01:00
|
|
|
const gchar * g_irepository_get_c_prefix (GIRepository *repository,
|
|
|
|
const gchar *namespace_);
|
2008-10-12 06:51:48 +02:00
|
|
|
const gchar * g_irepository_get_version (GIRepository *repository,
|
2009-02-10 22:01:08 +01:00
|
|
|
const gchar *namespace_);
|
2008-10-12 06:51:48 +02:00
|
|
|
|
2008-11-13 20:57:09 +01:00
|
|
|
GOptionGroup * g_irepository_get_option_group (void);
|
|
|
|
|
|
|
|
gboolean g_irepository_dump (const char *arg, GError **error);
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIRepositoryError:
|
|
|
|
* @G_IREPOSITORY_ERROR_TYPELIB_NOT_FOUND: the typelib could not be found.
|
|
|
|
* @G_IREPOSITORY_ERROR_NAMESPACE_MISMATCH: the namespace does not match the
|
|
|
|
* requested namespace.
|
|
|
|
* @G_IREPOSITORY_ERROR_NAMESPACE_VERSION_CONFLICT: the version of the
|
|
|
|
* typelib does not match the requested version.
|
|
|
|
* @G_IREPOSITORY_ERROR_LIBRARY_NOT_FOUND: the library used by the typelib
|
|
|
|
* could not be found.
|
|
|
|
*/
|
2008-02-08 16:31:03 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-08-09 14:55:32 +02:00
|
|
|
G_IREPOSITORY_ERROR_TYPELIB_NOT_FOUND,
|
2008-02-08 16:31:03 +01:00
|
|
|
G_IREPOSITORY_ERROR_NAMESPACE_MISMATCH,
|
2008-10-12 06:51:48 +02:00
|
|
|
G_IREPOSITORY_ERROR_NAMESPACE_VERSION_CONFLICT,
|
2008-02-08 16:31:03 +01:00
|
|
|
G_IREPOSITORY_ERROR_LIBRARY_NOT_FOUND
|
|
|
|
} GIRepositoryError;
|
|
|
|
|
|
|
|
#define G_IREPOSITORY_ERROR (g_irepository_error_quark ())
|
|
|
|
|
|
|
|
GQuark g_irepository_error_quark (void);
|
|
|
|
|
|
|
|
|
2009-01-12 22:31:43 +01:00
|
|
|
/* Global utility functions */
|
|
|
|
|
|
|
|
void gi_cclosure_marshal_generic (GClosure *closure,
|
|
|
|
GValue *return_gvalue,
|
|
|
|
guint n_param_values,
|
|
|
|
const GValue *param_values,
|
|
|
|
gpointer invocation_hint,
|
|
|
|
gpointer marshal_data);
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* GIArgInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_ARG_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_ARG)
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIDirection:
|
|
|
|
* @GI_DIRECTION_IN: in argument.
|
|
|
|
* @GI_DIRECTION_OUT: out argument.
|
|
|
|
* @GI_DIRECTION_INOUT: in and out argument.
|
|
|
|
*
|
|
|
|
* The direction of a #GIArgInfo.
|
|
|
|
*/
|
2008-02-08 16:31:03 +01:00
|
|
|
typedef enum {
|
|
|
|
GI_DIRECTION_IN,
|
|
|
|
GI_DIRECTION_OUT,
|
|
|
|
GI_DIRECTION_INOUT
|
|
|
|
} GIDirection;
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIScopeType:
|
|
|
|
* @GI_SCOPE_TYPE_INVALID: The argument is not of callback type.
|
|
|
|
* @GI_SCOPE_TYPE_CALL: The callback and associated user_data is only
|
|
|
|
* used during the call to this function.
|
|
|
|
* @GI_SCOPE_TYPE_ASYNC: The callback and associated user_data is
|
|
|
|
* only used until the callback is invoked, and the callback.
|
|
|
|
* is invoked always exactly once.
|
|
|
|
* @GI_SCOPE_TYPE_NOTIFIED: The callback and and associated
|
|
|
|
* user_data is used until the caller is notfied via the destroy_notify.
|
|
|
|
*
|
|
|
|
* Scope type of a #GIArgInfo representing callback, determines how the
|
|
|
|
* callback is invoked and is used to decided when the invoke structs
|
|
|
|
* can be freed.
|
|
|
|
*/
|
Bug 556489 – callback annotations
2008-01-03 Andreas Rottmann <a.rottmann@gmx.at>
Bug 556489 – callback annotations
* giscanner/transformer.py
* tools/generate.c (write_callable_info): Write out the new scope,
closure and destroy attributes.
* giscanner/transformer.py (Transformer._type_is_callback): New
method, checking if a given type is a callback.
(Transformer._augment_callback_params): New method; adds
information (closure, destroy) to callback parameters.
(Transformer._handle_closure, Transformer._handle_destroy): New methods,
auxiliary to _augment_callback_params.
(Transformer._create_function): Call _augment_callback_params().
(Transformer._create_parameter): Handle scope option.
(Transformer._create_typedef_callback): New method, creates a
callback, and registers it in the typedef namespace
(Transformer._create_typedef): Use _create_typedef_callback()
instead of the plain _create_callback().
* giscanner/ast.py (Parameter): Added callback-related fields.
* giscanner/girwriter.py: Write out new Parameter fields.
* girepository/girnode.h (GIrNodeParam): Added fields scope,
closure and destroy.
* girepository/gtypelib.h (ArgBlob): Ditto.
* girepository/girparser.c (start_parameter): Handle new fields.
* girepository/girmodule.c (g_ir_module_build_typelib): Adjust
arg_blob_size, bump major version due to this change.
* girepository/girnode.c (g_ir_node_get_full_size_internal)
(g_ir_node_build_typelib)
* girepository/gtypelib.c (g_typelib_check_sanity): ArgBlob size
adjustments.
(g_ir_node_build_typelib): Fill in new ArgBlob flags from param.
* girepository/girepository.h (GIScope): New enumeration, listing
the different possible scopes for callbacks.
* girepository/ginfo.c (g_arg_info_get_scope)
(g_arg_info_get_closure, g_arg_info_get_destroy): Accessors for
callback-related argument indices (callback scope, closure for a
callback, destroy notification for a callback).
* tests/scanner/: Added testcases for new features.
svn path=/trunk/; revision=998
2009-01-03 14:44:42 +01:00
|
|
|
typedef enum {
|
2010-05-18 23:10:51 +02:00
|
|
|
GI_SCOPE_TYPE_INVALID,
|
|
|
|
GI_SCOPE_TYPE_CALL,
|
|
|
|
GI_SCOPE_TYPE_ASYNC,
|
|
|
|
GI_SCOPE_TYPE_NOTIFIED
|
Bug 556489 – callback annotations
2008-01-03 Andreas Rottmann <a.rottmann@gmx.at>
Bug 556489 – callback annotations
* giscanner/transformer.py
* tools/generate.c (write_callable_info): Write out the new scope,
closure and destroy attributes.
* giscanner/transformer.py (Transformer._type_is_callback): New
method, checking if a given type is a callback.
(Transformer._augment_callback_params): New method; adds
information (closure, destroy) to callback parameters.
(Transformer._handle_closure, Transformer._handle_destroy): New methods,
auxiliary to _augment_callback_params.
(Transformer._create_function): Call _augment_callback_params().
(Transformer._create_parameter): Handle scope option.
(Transformer._create_typedef_callback): New method, creates a
callback, and registers it in the typedef namespace
(Transformer._create_typedef): Use _create_typedef_callback()
instead of the plain _create_callback().
* giscanner/ast.py (Parameter): Added callback-related fields.
* giscanner/girwriter.py: Write out new Parameter fields.
* girepository/girnode.h (GIrNodeParam): Added fields scope,
closure and destroy.
* girepository/gtypelib.h (ArgBlob): Ditto.
* girepository/girparser.c (start_parameter): Handle new fields.
* girepository/girmodule.c (g_ir_module_build_typelib): Adjust
arg_blob_size, bump major version due to this change.
* girepository/girnode.c (g_ir_node_get_full_size_internal)
(g_ir_node_build_typelib)
* girepository/gtypelib.c (g_typelib_check_sanity): ArgBlob size
adjustments.
(g_ir_node_build_typelib): Fill in new ArgBlob flags from param.
* girepository/girepository.h (GIScope): New enumeration, listing
the different possible scopes for callbacks.
* girepository/ginfo.c (g_arg_info_get_scope)
(g_arg_info_get_closure, g_arg_info_get_destroy): Accessors for
callback-related argument indices (callback scope, closure for a
callback, destroy notification for a callback).
* tests/scanner/: Added testcases for new features.
svn path=/trunk/; revision=998
2009-01-03 14:44:42 +01:00
|
|
|
} GIScopeType;
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
GIDirection g_arg_info_get_direction (GIArgInfo *info);
|
|
|
|
gboolean g_arg_info_is_return_value (GIArgInfo *info);
|
|
|
|
gboolean g_arg_info_is_optional (GIArgInfo *info);
|
2009-12-16 17:47:19 +01:00
|
|
|
gboolean g_arg_info_is_caller_allocates (GIArgInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
gboolean g_arg_info_may_be_null (GIArgInfo *info);
|
|
|
|
GITransfer g_arg_info_get_ownership_transfer (GIArgInfo *info);
|
Bug 556489 – callback annotations
2008-01-03 Andreas Rottmann <a.rottmann@gmx.at>
Bug 556489 – callback annotations
* giscanner/transformer.py
* tools/generate.c (write_callable_info): Write out the new scope,
closure and destroy attributes.
* giscanner/transformer.py (Transformer._type_is_callback): New
method, checking if a given type is a callback.
(Transformer._augment_callback_params): New method; adds
information (closure, destroy) to callback parameters.
(Transformer._handle_closure, Transformer._handle_destroy): New methods,
auxiliary to _augment_callback_params.
(Transformer._create_function): Call _augment_callback_params().
(Transformer._create_parameter): Handle scope option.
(Transformer._create_typedef_callback): New method, creates a
callback, and registers it in the typedef namespace
(Transformer._create_typedef): Use _create_typedef_callback()
instead of the plain _create_callback().
* giscanner/ast.py (Parameter): Added callback-related fields.
* giscanner/girwriter.py: Write out new Parameter fields.
* girepository/girnode.h (GIrNodeParam): Added fields scope,
closure and destroy.
* girepository/gtypelib.h (ArgBlob): Ditto.
* girepository/girparser.c (start_parameter): Handle new fields.
* girepository/girmodule.c (g_ir_module_build_typelib): Adjust
arg_blob_size, bump major version due to this change.
* girepository/girnode.c (g_ir_node_get_full_size_internal)
(g_ir_node_build_typelib)
* girepository/gtypelib.c (g_typelib_check_sanity): ArgBlob size
adjustments.
(g_ir_node_build_typelib): Fill in new ArgBlob flags from param.
* girepository/girepository.h (GIScope): New enumeration, listing
the different possible scopes for callbacks.
* girepository/ginfo.c (g_arg_info_get_scope)
(g_arg_info_get_closure, g_arg_info_get_destroy): Accessors for
callback-related argument indices (callback scope, closure for a
callback, destroy notification for a callback).
* tests/scanner/: Added testcases for new features.
svn path=/trunk/; revision=998
2009-01-03 14:44:42 +01:00
|
|
|
GIScopeType g_arg_info_get_scope (GIArgInfo *info);
|
|
|
|
gint g_arg_info_get_closure (GIArgInfo *info);
|
|
|
|
gint g_arg_info_get_destroy (GIArgInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
GITypeInfo * g_arg_info_get_type (GIArgInfo *info);
|
2009-12-08 00:35:06 +01:00
|
|
|
void g_arg_info_load_type (GIArgInfo *info,
|
|
|
|
GITypeInfo *type);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
/* GITypeInfo */
|
|
|
|
|
|
|
|
#define GI_IS_TYPE_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_TYPE)
|
2008-02-08 16:31:03 +01:00
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GITypeTag:
|
|
|
|
* @GI_TYPE_TAG_VOID: void
|
|
|
|
* @GI_TYPE_TAG_BOOLEAN: boolean
|
|
|
|
* @GI_TYPE_TAG_INT8: 8-bit signed integer
|
|
|
|
* @GI_TYPE_TAG_UINT8: 8-bit unsigned integer
|
|
|
|
* @GI_TYPE_TAG_INT16: 16-bit signed integer
|
|
|
|
* @GI_TYPE_TAG_UINT16: 16-bit unsigned integer
|
|
|
|
* @GI_TYPE_TAG_INT32: 32-bit signed integer
|
|
|
|
* @GI_TYPE_TAG_UINT32: 32-bit unsigned integer
|
|
|
|
* @GI_TYPE_TAG_INT64: 64-bit signed integer
|
|
|
|
* @GI_TYPE_TAG_UINT64: 64-bit unsigned integer
|
|
|
|
* @GI_TYPE_TAG_SHORT: signed short
|
|
|
|
* @GI_TYPE_TAG_USHORT: unsigned hosrt
|
|
|
|
* @GI_TYPE_TAG_INT: signed integer
|
|
|
|
* @GI_TYPE_TAG_UINT: unsigned integer
|
|
|
|
* @GI_TYPE_TAG_LONG: signed long
|
|
|
|
* @GI_TYPE_TAG_ULONG: unsigned long
|
|
|
|
* @GI_TYPE_TAG_SSIZE: ssize_t
|
|
|
|
* @GI_TYPE_TAG_SIZE: size_t
|
|
|
|
* @GI_TYPE_TAG_FLOAT: float
|
|
|
|
* @GI_TYPE_TAG_DOUBLE: double floating point
|
|
|
|
* @GI_TYPE_TAG_TIME_T: time_t
|
|
|
|
* @GI_TYPE_TAG_GTYPE: a #GType
|
|
|
|
* @GI_TYPE_TAG_UTF8: a UTF-8 encoded string
|
|
|
|
* @GI_TYPE_TAG_FILENAME: a filename, encoded in the same encoding
|
|
|
|
* as the native filesystem is using.
|
|
|
|
* @GI_TYPE_TAG_ARRAY: an array
|
|
|
|
* @GI_TYPE_TAG_INTERFACE: an extended interface object
|
|
|
|
* @GI_TYPE_TAG_GLIST: a #GList
|
|
|
|
* @GI_TYPE_TAG_GSLIST: a #GSList
|
|
|
|
* @GI_TYPE_TAG_GHASH: a #GHashTable
|
|
|
|
* @GI_TYPE_TAG_ERROR: a #GError
|
|
|
|
*
|
|
|
|
* The type tag of a #GITypeInfo.
|
|
|
|
*/
|
2008-02-08 16:31:03 +01:00
|
|
|
typedef enum {
|
2008-10-02 15:25:46 +02:00
|
|
|
/* Basic types */
|
2008-02-08 16:31:03 +01:00
|
|
|
GI_TYPE_TAG_VOID = 0,
|
|
|
|
GI_TYPE_TAG_BOOLEAN = 1,
|
|
|
|
GI_TYPE_TAG_INT8 = 2,
|
|
|
|
GI_TYPE_TAG_UINT8 = 3,
|
|
|
|
GI_TYPE_TAG_INT16 = 4,
|
2010-03-24 19:00:06 +01:00
|
|
|
GI_TYPE_TAG_UINT16 = 5,
|
2008-02-08 16:31:03 +01:00
|
|
|
GI_TYPE_TAG_INT32 = 6,
|
|
|
|
GI_TYPE_TAG_UINT32 = 7,
|
|
|
|
GI_TYPE_TAG_INT64 = 8,
|
|
|
|
GI_TYPE_TAG_UINT64 = 9,
|
2009-06-20 01:53:03 +02:00
|
|
|
GI_TYPE_TAG_SHORT = 10,
|
|
|
|
GI_TYPE_TAG_USHORT = 11,
|
|
|
|
GI_TYPE_TAG_INT = 12,
|
|
|
|
GI_TYPE_TAG_UINT = 13,
|
|
|
|
GI_TYPE_TAG_LONG = 14,
|
|
|
|
GI_TYPE_TAG_ULONG = 15,
|
|
|
|
GI_TYPE_TAG_SSIZE = 16,
|
|
|
|
GI_TYPE_TAG_SIZE = 17,
|
|
|
|
GI_TYPE_TAG_FLOAT = 18,
|
|
|
|
GI_TYPE_TAG_DOUBLE = 19,
|
|
|
|
GI_TYPE_TAG_TIME_T = 20,
|
|
|
|
GI_TYPE_TAG_GTYPE = 21,
|
|
|
|
GI_TYPE_TAG_UTF8 = 22,
|
|
|
|
GI_TYPE_TAG_FILENAME = 23,
|
2008-10-02 15:25:46 +02:00
|
|
|
/* Non-basic types */
|
2009-06-20 01:53:03 +02:00
|
|
|
GI_TYPE_TAG_ARRAY = 24,
|
|
|
|
GI_TYPE_TAG_INTERFACE = 25,
|
|
|
|
GI_TYPE_TAG_GLIST = 26,
|
|
|
|
GI_TYPE_TAG_GSLIST = 27,
|
|
|
|
GI_TYPE_TAG_GHASH = 28,
|
|
|
|
GI_TYPE_TAG_ERROR = 29
|
2008-10-02 15:25:46 +02:00
|
|
|
/* Note - there is only room currently for 32 tags.
|
|
|
|
* See docs/typelib-format.txt SimpleTypeBlob definition */
|
2008-02-08 16:31:03 +01:00
|
|
|
} GITypeTag;
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIArrayType:
|
|
|
|
* @GI_ARRAY_TYPE_C: a C array, char[] for instance
|
|
|
|
* @GI_ARRAY_TYPE_ARRAY: a @GArray array
|
|
|
|
* @GI_ARRAY_TYPE_PTR_ARRAY: a #GPtrArray array
|
|
|
|
* @GI_ARRAY_TYPE_BYTE_ARRAY: a #GByteArray array
|
|
|
|
*
|
|
|
|
* The type of array in a #GITypeInfo.
|
|
|
|
*/
|
2010-05-04 16:57:51 +02:00
|
|
|
typedef enum {
|
|
|
|
GI_ARRAY_TYPE_C,
|
|
|
|
GI_ARRAY_TYPE_ARRAY,
|
|
|
|
GI_ARRAY_TYPE_PTR_ARRAY,
|
|
|
|
GI_ARRAY_TYPE_BYTE_ARRAY
|
|
|
|
} GIArrayType;
|
|
|
|
|
2008-10-02 15:25:46 +02:00
|
|
|
#define G_TYPE_TAG_IS_BASIC(tag) (tag < GI_TYPE_TAG_ARRAY)
|
|
|
|
|
2008-08-18 10:52:47 +02:00
|
|
|
const gchar* g_type_tag_to_string (GITypeTag type);
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
gboolean g_type_info_is_pointer (GITypeInfo *info);
|
|
|
|
GITypeTag g_type_info_get_tag (GITypeInfo *info);
|
|
|
|
GITypeInfo * g_type_info_get_param_type (GITypeInfo *info,
|
|
|
|
gint n);
|
|
|
|
GIBaseInfo * g_type_info_get_interface (GITypeInfo *info);
|
|
|
|
gint g_type_info_get_array_length (GITypeInfo *info);
|
2008-10-25 17:20:54 +02:00
|
|
|
gint g_type_info_get_array_fixed_size(GITypeInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
gboolean g_type_info_is_zero_terminated (GITypeInfo *info);
|
2010-05-04 16:57:51 +02:00
|
|
|
GIArrayType g_type_info_get_array_type (GITypeInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
gint g_type_info_get_n_error_domains (GITypeInfo *info);
|
|
|
|
GIErrorDomainInfo *g_type_info_get_error_domain (GITypeInfo *info,
|
|
|
|
gint n);
|
|
|
|
|
|
|
|
/* GIErrorDomainInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_ERROR_DOMAIN_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_ERROR_DOMAIN)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
const gchar * g_error_domain_info_get_quark (GIErrorDomainInfo *info);
|
|
|
|
GIInterfaceInfo * g_error_domain_info_get_codes (GIErrorDomainInfo *info);
|
|
|
|
|
|
|
|
|
|
|
|
/* GIValueInfo */
|
2010-03-24 19:00:06 +01:00
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_VALUE_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_VALUE)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
glong g_value_info_get_value (GIValueInfo *info);
|
|
|
|
|
|
|
|
|
|
|
|
/* GIFieldInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_FIELD_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_FIELD)
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIFieldInfoFlags:
|
|
|
|
* @GI_FIELD_IS_READABLE: field is readable.
|
|
|
|
* @GI_FIELD_IS_WRITABLE: field is writable.
|
|
|
|
*
|
|
|
|
* Flags for a #GIFieldInfo.
|
|
|
|
*/
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GI_FIELD_IS_READABLE = 1 << 0,
|
|
|
|
GI_FIELD_IS_WRITABLE = 1 << 1
|
|
|
|
} GIFieldInfoFlags;
|
|
|
|
|
|
|
|
GIFieldInfoFlags g_field_info_get_flags (GIFieldInfo *info);
|
|
|
|
gint g_field_info_get_size (GIFieldInfo *info);
|
|
|
|
gint g_field_info_get_offset (GIFieldInfo *info);
|
|
|
|
GITypeInfo * g_field_info_get_type (GIFieldInfo *info);
|
|
|
|
|
2008-11-16 22:14:19 +01:00
|
|
|
gboolean g_field_info_get_field (GIFieldInfo *field_info,
|
|
|
|
gpointer mem,
|
|
|
|
GArgument *value);
|
|
|
|
gboolean g_field_info_set_field (GIFieldInfo *field_info,
|
|
|
|
gpointer mem,
|
|
|
|
const GArgument *value);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* GIUnionInfo */
|
2010-05-28 04:18:58 +02:00
|
|
|
|
|
|
|
#define GI_IS_UNION_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_UNION)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_union_info_get_n_fields (GIUnionInfo *info);
|
|
|
|
GIFieldInfo * g_union_info_get_field (GIUnionInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_union_info_get_n_methods (GIUnionInfo *info);
|
|
|
|
GIFunctionInfo * g_union_info_get_method (GIUnionInfo *info,
|
|
|
|
gint n);
|
|
|
|
gboolean g_union_info_is_discriminated (GIUnionInfo *info);
|
|
|
|
gint g_union_info_get_discriminator_offset (GIUnionInfo *info);
|
|
|
|
GITypeInfo * g_union_info_get_discriminator_type (GIUnionInfo *info);
|
|
|
|
GIConstantInfo * g_union_info_get_discriminator (GIUnionInfo *info,
|
|
|
|
gint n);
|
2008-10-15 00:25:13 +02:00
|
|
|
GIFunctionInfo * g_union_info_find_method (GIUnionInfo *info,
|
|
|
|
const gchar *name);
|
2008-11-16 22:15:54 +01:00
|
|
|
gsize g_union_info_get_size (GIUnionInfo *info);
|
|
|
|
gsize g_union_info_get_alignment (GIUnionInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* GIStructInfo */
|
2010-05-28 04:18:58 +02:00
|
|
|
|
|
|
|
#define GI_IS_STRUCT_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_STRUCT)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_struct_info_get_n_fields (GIStructInfo *info);
|
|
|
|
GIFieldInfo * g_struct_info_get_field (GIStructInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_struct_info_get_n_methods (GIStructInfo *info);
|
|
|
|
GIFunctionInfo * g_struct_info_get_method (GIStructInfo *info,
|
|
|
|
gint n);
|
|
|
|
GIFunctionInfo * g_struct_info_find_method (GIStructInfo *info,
|
|
|
|
const gchar *name);
|
2008-11-16 22:15:54 +01:00
|
|
|
gsize g_struct_info_get_size (GIStructInfo *info);
|
|
|
|
gsize g_struct_info_get_alignment (GIStructInfo *info);
|
2009-02-20 23:34:20 +01:00
|
|
|
gboolean g_struct_info_is_gtype_struct (GIStructInfo *info);
|
2010-03-26 03:12:12 +01:00
|
|
|
gboolean g_struct_info_is_foreign (GIStructInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* GIRegisteredTypeInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_REGISTERED_TYPE_INFO(info) \
|
|
|
|
((g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_ENUM) || \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_INTERFACE) || \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_OBJECT) || \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_STRUCT) || \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_UNION))
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
const gchar * g_registered_type_info_get_type_name (GIRegisteredTypeInfo *info);
|
|
|
|
const gchar * g_registered_type_info_get_type_init (GIRegisteredTypeInfo *info);
|
2008-04-23 02:57:48 +02:00
|
|
|
GType g_registered_type_info_get_g_type (GIRegisteredTypeInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* GIEnumInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_ENUM_INFO(info) \
|
2010-05-31 02:56:25 +02:00
|
|
|
((g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_ENUM) || \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_FLAGS))
|
2010-05-28 04:18:58 +02:00
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_enum_info_get_n_values (GIEnumInfo *info);
|
|
|
|
GIValueInfo * g_enum_info_get_value (GIEnumInfo *info,
|
|
|
|
gint n);
|
2008-11-18 13:29:10 +01:00
|
|
|
GITypeTag g_enum_info_get_storage_type (GIEnumInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* GIObjectInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_OBJECT_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_OBJECT)
|
|
|
|
|
2010-03-24 19:00:06 +01:00
|
|
|
const gchar * g_object_info_get_type_name (GIObjectInfo *info);
|
|
|
|
const gchar * g_object_info_get_type_init (GIObjectInfo *info);
|
2008-10-20 19:04:17 +02:00
|
|
|
gboolean g_object_info_get_abstract (GIObjectInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
GIObjectInfo * g_object_info_get_parent (GIObjectInfo *info);
|
|
|
|
gint g_object_info_get_n_interfaces (GIObjectInfo *info);
|
|
|
|
GIInterfaceInfo * g_object_info_get_interface (GIObjectInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_object_info_get_n_fields (GIObjectInfo *info);
|
|
|
|
GIFieldInfo * g_object_info_get_field (GIObjectInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_object_info_get_n_properties (GIObjectInfo *info);
|
|
|
|
GIPropertyInfo * g_object_info_get_property (GIObjectInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_object_info_get_n_methods (GIObjectInfo *info);
|
|
|
|
GIFunctionInfo * g_object_info_get_method (GIObjectInfo *info,
|
|
|
|
gint n);
|
|
|
|
GIFunctionInfo * g_object_info_find_method (GIObjectInfo *info,
|
|
|
|
const gchar *name);
|
|
|
|
gint g_object_info_get_n_signals (GIObjectInfo *info);
|
|
|
|
GISignalInfo * g_object_info_get_signal (GIObjectInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_object_info_get_n_vfuncs (GIObjectInfo *info);
|
|
|
|
GIVFuncInfo * g_object_info_get_vfunc (GIObjectInfo *info,
|
|
|
|
gint n);
|
2009-02-28 01:02:48 +01:00
|
|
|
GIVFuncInfo * g_object_info_find_vfunc (GIObjectInfo *info,
|
|
|
|
const gchar *name);
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_object_info_get_n_constants (GIObjectInfo *info);
|
|
|
|
GIConstantInfo * g_object_info_get_constant (GIObjectInfo *info,
|
|
|
|
gint n);
|
2009-02-06 19:37:13 +01:00
|
|
|
GIStructInfo * g_object_info_get_class_struct (GIObjectInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
2010-03-24 19:00:06 +01:00
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
/* GIInterfaceInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_INTERFACE_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_INTERFACE)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_interface_info_get_n_prerequisites (GIInterfaceInfo *info);
|
|
|
|
GIBaseInfo * g_interface_info_get_prerequisite (GIInterfaceInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_interface_info_get_n_properties (GIInterfaceInfo *info);
|
|
|
|
GIPropertyInfo * g_interface_info_get_property (GIInterfaceInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_interface_info_get_n_methods (GIInterfaceInfo *info);
|
|
|
|
GIFunctionInfo * g_interface_info_get_method (GIInterfaceInfo *info,
|
|
|
|
gint n);
|
|
|
|
GIFunctionInfo * g_interface_info_find_method (GIInterfaceInfo *info,
|
2010-03-24 19:00:06 +01:00
|
|
|
const gchar *name);
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_interface_info_get_n_signals (GIInterfaceInfo *info);
|
|
|
|
GISignalInfo * g_interface_info_get_signal (GIInterfaceInfo *info,
|
|
|
|
gint n);
|
|
|
|
gint g_interface_info_get_n_vfuncs (GIInterfaceInfo *info);
|
|
|
|
GIVFuncInfo * g_interface_info_get_vfunc (GIInterfaceInfo *info,
|
|
|
|
gint n);
|
2009-02-28 01:02:48 +01:00
|
|
|
GIVFuncInfo * g_interface_info_find_vfunc (GIInterfaceInfo *info,
|
|
|
|
const gchar *name);
|
2008-02-08 16:31:03 +01:00
|
|
|
gint g_interface_info_get_n_constants (GIInterfaceInfo *info);
|
|
|
|
GIConstantInfo * g_interface_info_get_constant (GIInterfaceInfo *info,
|
|
|
|
gint n);
|
|
|
|
|
2009-02-20 23:34:20 +01:00
|
|
|
GIStructInfo * g_interface_info_get_iface_struct (GIInterfaceInfo *info);
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
/* GIPropertyInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_PROPERTY_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_PROPERTY)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
GParamFlags g_property_info_get_flags (GIPropertyInfo *info);
|
|
|
|
GITypeInfo * g_property_info_get_type (GIPropertyInfo *info);
|
|
|
|
|
|
|
|
|
|
|
|
/* GISignalInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_SIGNAL_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_SIGNAL)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
GSignalFlags g_signal_info_get_flags (GISignalInfo *info);
|
|
|
|
GIVFuncInfo * g_signal_info_get_class_closure (GISignalInfo *info);
|
|
|
|
gboolean g_signal_info_true_stops_emit (GISignalInfo *info);
|
|
|
|
|
|
|
|
|
|
|
|
/* GIVFuncInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_VFUNC_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_VFUNC)
|
|
|
|
|
2010-05-18 23:10:51 +02:00
|
|
|
/**
|
|
|
|
* GIVFuncInfoFlags:
|
|
|
|
* @GI_VFUNC_MUST_CHAIN_UP: chains up to the parent type
|
|
|
|
* @GI_VFUNC_MUST_OVERRIDE: overrides
|
|
|
|
* @GI_VFUNC_MUST_NOT_OVERRIDE: does not override
|
|
|
|
*
|
|
|
|
* Flags of a #GIVFuncInfo struct.
|
|
|
|
*/
|
2008-02-08 16:31:03 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GI_VFUNC_MUST_CHAIN_UP = 1 << 0,
|
|
|
|
GI_VFUNC_MUST_OVERRIDE = 1 << 1,
|
|
|
|
GI_VFUNC_MUST_NOT_OVERRIDE = 1 << 2
|
|
|
|
} GIVFuncInfoFlags;
|
|
|
|
|
|
|
|
GIVFuncInfoFlags g_vfunc_info_get_flags (GIVFuncInfo *info);
|
|
|
|
gint g_vfunc_info_get_offset (GIVFuncInfo *info);
|
|
|
|
GISignalInfo * g_vfunc_info_get_signal (GIVFuncInfo *info);
|
2009-02-28 01:02:48 +01:00
|
|
|
GIFunctionInfo * g_vfunc_info_get_invoker (GIVFuncInfo *info);
|
2008-02-08 16:31:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* GIConstantInfo */
|
|
|
|
|
2010-05-28 04:18:58 +02:00
|
|
|
#define GI_IS_CONSTANT_INFO(info) \
|
|
|
|
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_CONSTANT)
|
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
GITypeInfo * g_constant_info_get_type (GIConstantInfo *info);
|
|
|
|
gint g_constant_info_get_value (GIConstantInfo *info,
|
|
|
|
GArgument *value);
|
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2010-05-31 22:41:45 +02:00
|
|
|
|
2008-02-08 16:31:03 +01:00
|
|
|
#endif /* __G_IREPOSITORY_H__ */
|
|
|
|
|