summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Campagna <gcampagna@src.gnome.org>2011-05-25 19:26:49 +0200
committerGiovanni Campagna <gcampagna@src.gnome.org>2011-06-08 17:45:31 +0200
commit0d7b707425b86b04232b9f52ecf96333f7b0a35c (patch)
treebbd08aedb951cbd52f8ec8ac6006d9ed0d8b7c22
parentaea1a55dff7f5cf7f3d87bbe515d94b66057b852 (diff)
downloadgobject-introspection-0d7b707425b86b04232b9f52ecf96333f7b0a35c.tar.gz
Rework how fundamental GObject types are introspected
Change the special code for handling GObject and GInitiallyUnowned so that it exposes GParamSpec as a class, and it allows GVariant to have a GType without using the deprecate g_variant_get_gtype. It is a sort of ABI break, in that new typelibs won't work with previous versions of libgirepository. https://bugzilla.gnome.org/show_bug.cgi?id=646635
-rw-r--r--girepository/gdump.c2
-rw-r--r--girepository/giregisteredtypeinfo.c4
-rw-r--r--giscanner/gdumpparser.py51
-rw-r--r--giscanner/maintransformer.py4
4 files changed, 35 insertions, 26 deletions
diff --git a/girepository/gdump.c b/girepository/gdump.c
index 1b9ffd4f..cb6e7419 100644
--- a/girepository/gdump.c
+++ b/girepository/gdump.c
@@ -177,7 +177,7 @@ dump_object_type (GType type, const char *symbol, GOutputStream *out)
parent = g_type_parent (type);
parent_str = g_string_new ("");
- while (parent != G_TYPE_OBJECT && parent != G_TYPE_INVALID)
+ while (parent != G_TYPE_INVALID)
{
if (first)
first = FALSE;
diff --git a/girepository/giregisteredtypeinfo.c b/girepository/giregisteredtypeinfo.c
index ca06b9f8..6c1b9321 100644
--- a/girepository/giregisteredtypeinfo.c
+++ b/girepository/giregisteredtypeinfo.c
@@ -136,7 +136,9 @@ g_registered_type_info_get_g_type (GIRegisteredTypeInfo *info)
if (type_init == NULL)
return G_TYPE_NONE;
else if (!strcmp (type_init, "intern"))
- return G_TYPE_OBJECT;
+ /* The special string "intern" is used for some types exposed by libgobject
+ (that therefore should be always available) */
+ return g_type_from_name (g_registered_type_info_get_type_name (info));
get_type_func = NULL;
if (!g_typelib_symbol (rinfo->typelib,
diff --git a/giscanner/gdumpparser.py b/giscanner/gdumpparser.py
index 650e1948..51054261 100644
--- a/giscanner/gdumpparser.py
+++ b/giscanner/gdumpparser.py
@@ -86,7 +86,7 @@ class GDumpParser(object):
if isinstance(node, ast.Function):
self._initparse_function(node)
- if self._namespace.name == 'GObject':
+ if self._namespace.name == 'GObject' or self._namespace.name == 'GLib':
for node in self._namespace.itervalues():
if isinstance(node, ast.Record):
self._initparse_gobject_record(node)
@@ -164,23 +164,31 @@ blob containing data gleaned from GObject's primitive introspection."""
shutil.rmtree(self._binary.tmpdir)
def _create_gobject(self, node):
- type_name = 'G' + node.name
- if type_name == 'GObject':
- parent_gitype = None
- symbol = 'intern'
- elif type_name == 'GInitiallyUnowned':
- parent_gitype = ast.Type(target_giname='GObject.Object')
+ symbol = 'intern'
+ parent_gitype = None
+ if node.name == 'ParamSpec':
+ type_name = 'GParam'
+ # Some function use g_param_value instead
+ c_symbol_prefix = 'param_spec'
+ elif node.name == 'Object':
+ type_name = 'GObject'
+ c_symbol_prefix = 'object'
+ elif node.name == 'InitiallyUnowned':
+ type_name = 'GInitiallyUnowned'
symbol = 'g_initially_unowned_get_type'
+ parent_gitype = ast.Type(target_giname='GObject.Object')
+ # Not really used, but otherwise InitallyUnowned
+ # gets the static methods that should be in Object
+ c_symbol_prefix = 'initially_unowned'
else:
assert False
+
gnode = ast.Class(node.name, parent_gitype,
gtype_name=type_name,
get_type=symbol,
- c_symbol_prefix='object',
+ c_symbol_prefix=c_symbol_prefix,
is_abstract=True)
- if type_name == 'GObject':
- gnode.fields.extend(node.fields)
- else:
+ if node.name == 'InitiallyUnowned':
# http://bugzilla.gnome.org/show_bug.cgi?id=569408
# GInitiallyUnowned is actually a typedef for GObject, but
# that's not reflected in the GIR, where it appears as a
@@ -189,6 +197,8 @@ blob containing data gleaned from GObject's primitive introspection."""
# GInitiallyUnowned so that struct offset computation
# works correctly.
gnode.fields = self._namespace.get('Object').fields
+ else:
+ gnode.fields.extend(node.fields)
self._namespace.append(gnode, replace=True)
# Parser
@@ -201,9 +211,8 @@ blob containing data gleaned from GObject's primitive introspection."""
self._initparse_get_type_function(func)
def _initparse_get_type_function(self, func):
- if (self._namespace.name == 'GObject' and
- func.symbol in ('g_object_get_type', 'g_initially_unowned_get_type')):
- # We handle these internally, see _create_gobject
+ if func.symbol in ('g_object_get_type', 'g_initially_unowned_get_type', 'g_variant_get_gtype'):
+ # We handle these internally, see _initparse_gobject_record
return True
if func.parameters:
return False
@@ -219,9 +228,14 @@ blob containing data gleaned from GObject's primitive introspection."""
return True
def _initparse_gobject_record(self, record):
- # Special handling for when we're parsing GObject
- if record.name in ("Object", 'InitiallyUnowned'):
+ # Special handling for when we're parsing GObject / GLib
+ if record.name in ('Object', 'InitiallyUnowned', 'ParamSpec'):
self._create_gobject(record)
+ elif record.name == 'Variant':
+ self._boxed_types['GVariant'] = ast.Boxed('Variant',
+ gtype_name='GVariant',
+ get_type='intern',
+ c_symbol_prefix='variant')
elif record.name == 'InitiallyUnownedClass':
record.fields = self._namespace.get('ObjectClass').fields
record.disguised = False
@@ -445,11 +459,6 @@ different --identifier-prefix.""" % (xmlnode.attrib['name'], self._namespace.ide
def _introspect_fundamental(self, xmlnode):
type_name = xmlnode.attrib['name']
- if type_name == 'GVariant':
- # HACK: make GVariant a boxed to avoid looking up GInitiallyUnowned
- # when computing the default transfer ownership
- self._introspect_boxed(xmlnode)
- return
is_abstract = bool(xmlnode.attrib.get('abstract', False))
(get_type, c_symbol_prefix) = self._split_type_and_symbol_prefix(xmlnode)
diff --git a/giscanner/maintransformer.py b/giscanner/maintransformer.py
index fd0cc6c6..0fa89051 100644
--- a/giscanner/maintransformer.py
+++ b/giscanner/maintransformer.py
@@ -820,10 +820,8 @@ the ones that failed to resolve removed."""
node.parent = parent
break
else:
- if isinstance(node, ast.Interface) or not node.fundamental:
+ if isinstance(node, ast.Interface):
node.parent = ast.Type(target_giname='GObject.Object')
- else:
- node.parent = None
for prop in node.properties:
self._transformer.resolve_type(prop.type)
for sig in node.signals: