After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 665732 - vapigen fails to resolve aliased callback types
vapigen fails to resolve aliased callback types
Status: RESOLVED OBSOLETE
Product: vala
Classification: Core
Component: GObject Introspection
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2011-12-07 15:02 UTC by Mardy
Modified: 2018-05-22 14:16 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Support alias for callback types (1.60 KB, patch)
2011-12-07 15:08 UTC, Mardy
needs-work Details | Review

Description Mardy 2011-12-07 15:02:51 UTC
I'm trying to generate Vala bindings for libsignon-glib [0]. I've uploaded the .gir file to http://pastebin.com/76wcPHGj in case you want to check it.
vapigen cannot resolve a few callback types, for instance:

=========
Signon-1.0.gir:478.79-478.79: error: The type name
`IdentityReferenceAddedCb' could not be found
                  c:type="SignonIdentityReferenceAddedCb"/>

      ^
=========

This is because IdentityReferenceAddedCb is an alias for IdentityVoidCb, and apparently vapigen does not support aliases for callback types.

[0]: http://bazaar.launchpad.net/~webcredentials-team/opensesame-libsignon-glib/trunk/files
Comment 1 Mardy 2011-12-07 15:08:34 UTC
Created attachment 202996 [details] [review]
Support alias for callback types

Here is a patch which seems to work fine for me. This adds the following lines into the .vapi file:

==========
        public delegate void IdentityReferenceAddedCb (Signon.Identity self, GLib.Error error);
        [CCode (cheader_filename = "Signon-1.0.h", instance_pos = 2.9)]
        public delegate void IdentityReferenceRemovedCb (Signon.Identity self, GLib.Error error);
        [CCode (cheader_filename = "Signon-1.0.h", instance_pos = 2.9)]
==========

Which seem correct to me. Note, however, that I'm a complete newbie to Vala so please review the patch carefully.
Comment 2 David King 2012-01-27 08:18:37 UTC
I hit the same problem while trying to generate a VAPI file for libsignon-glib, using the vala master from yesterday, and Alberto's patch allows me to generate a working binding. Is the approach used in the patch OK?
Comment 3 Luca Bruno 2012-01-27 10:43:23 UTC
Review of attachment 202996 [details] [review]:

Thanks for the patch. The approach is right, except:
1) It doesn't take in account thrown errors
2) Also Node.array_length_parameters, Node.closure_parameters, Node.destroy_parameters and Node.return_array_length_idx must be copied
Comment 4 GNOME Infrastructure Team 2018-05-22 14:16:21 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/vala/issues/260.