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 581075 - Missing several DestroyNotify functions
Missing several DestroyNotify functions
Status: RESOLVED WONTFIX
Product: vala
Classification: Core
Component: Bindings
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Jürg Billeter
Vala maintainers
Depends on: 589331
Blocks:
 
 
Reported: 2009-05-02 05:53 UTC by Evan Nemerson
Modified: 2009-07-27 19:05 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add several DestroyNotify functions to glib-2.0.vapi. (3.38 KB, patch)
2009-05-02 05:54 UTC, Evan Nemerson
none Details | Review
Another option, which puts a free method in each class (7.64 KB, patch)
2009-05-02 20:23 UTC, Evan Nemerson
none Details | Review
Add free method to many classes (7.43 KB, patch)
2009-05-05 05:43 UTC, Evan Nemerson
reviewed Details | Review

Description Evan Nemerson 2009-05-02 05:53:52 UTC
Only a few of the g_*_free functions are accessible in glib-2.0.vapi, which makes it difficult to avoid leaking when using, for example, a GHashTable of GSequences.
Comment 1 Evan Nemerson 2009-05-02 05:54:41 UTC
Created attachment 133782 [details] [review]
Add several DestroyNotify functions to glib-2.0.vapi.
Comment 2 Evan Nemerson 2009-05-02 20:23:47 UTC
Created attachment 133827 [details] [review]
Another option, which puts a free method in each class

A similar patch, but this one puts a free (or destroy) method in each of the classes. Requires a cast to GLib.DestroyNotify, but should prevent the warning from GCC that would result from the previous patch.

Maybe it would be better for vala to automatically create a method which maps to the free_function/unref_function?
Comment 3 Evan Nemerson 2009-05-05 05:43:23 UTC
Created attachment 133991 [details] [review]
Add free method to many classes

Same as the last one, but without the redeclaration of GLib.MappedFile.free()...
Comment 4 Jaap A. Haitsma 2009-07-18 10:55:41 UTC
Evan, the idea in vala is that you do not need to use free. The vala compiler should make sure that no memory is leaked by freeing and destroying objects at the right time. If you have examples that that does not happen then that's a bug.

Comment 5 Evan Nemerson 2009-07-18 16:55:59 UTC
Jaap,

I gave an example--a GHashTable of GSequences. Look at the constructor:

public class HashTable<K,V> : Boxed {
	public HashTable.full (HashFunc? hash_func, EqualFunc? key_equal_func, DestroyNotify? key_destroy_func, DestroyNotify? value_destroy_func);
}

If I don't pass a DestroyNotify to them they leak, but since GSequence does not have an accessible free function, I have nothing to pass.

If you want examples that do work because the proper DestroyNotify functions are bound, I can provide those, too. A GHashTable of strings, GObjects come to mind (GLib.g_free and GLib.g_object_unref, I believe).

Look at all the places you need to pass a DestroyNotify:

nemequ@hoplite:~$ grep -c DestroyNotify /usr/share/vala/vapi/*.vapi | egrep -v '\:0$'
/usr/share/vala/vapi/dbus-glib-1.vapi:1
/usr/share/vala/vapi/gconf-2.0.vapi:2
/usr/share/vala/vapi/gdk-2.0.vapi:3
/usr/share/vala/vapi/gdk-pixbuf-2.0.vapi:2
/usr/share/vala/vapi/gio-2.0.vapi:7
/usr/share/vala/vapi/glib-2.0.vapi:15
/usr/share/vala/vapi/gnet-2.0.vapi:1
/usr/share/vala/vapi/gnome-keyring-1.vapi:2
/usr/share/vala/vapi/gnome-vfs-2.0.vapi:7
/usr/share/vala/vapi/gobject-2.0.vapi:3
/usr/share/vala/vapi/gstreamer-0.10.vapi:9
/usr/share/vala/vapi/gstreamer-base-0.10.vapi:3
/usr/share/vala/vapi/gstreamer-rtsp-0.10.vapi:1
/usr/share/vala/vapi/gtk+-2.0.vapi:22
/usr/share/vala/vapi/gtksourceview-2.0.vapi:2
/usr/share/vala/vapi/hildon-1.vapi:3
/usr/share/vala/vapi/libepc-1.0.vapi:4
/usr/share/vala/vapi/libgnome-menu.vapi:2
/usr/share/vala/vapi/libgnomeui-2.0.vapi:6
/usr/share/vala/vapi/libsoup-2.4.vapi:9
/usr/share/vala/vapi/libwnck-1.0.vapi:1
/usr/share/vala/vapi/loudmouth-1.0.vapi:5
/usr/share/vala/vapi/pangocairo.vapi:1
/usr/share/vala/vapi/pango.vapi:2
/usr/share/vala/vapi/sqlite3.vapi:2
/usr/share/vala/vapi/x11.vapi:1

That would be 97 (grep | wc -l gives 98, and one of those is the definition) places, by my count, which require an that free/unref functions are accessible in some form.

I'm certainly open to suggestions about how this could be more elegantly achieved than making exposing free/unref functions for everything, but until then I think this bug should probably remain open.
Comment 6 Jaap A. Haitsma 2009-07-18 19:15:09 UTC
Sorry, you are right. For a hash table the straightforward solution is to use libgee instead, but I agree that because of the other functions that use DestroyNotify it might be necessary to expose the free methods

Jürg, what's your opinion on this?
Comment 7 Evan Nemerson 2009-07-22 08:49:26 UTC
I talked to Jürg about this (on IRC), the result is bug #589331. Fixing that bug would allow getting rid of all (or at least most) of the DestroyNotify arguments in vapis, and there would be no need to expose the free/unref functions.
Comment 8 Jürg Billeter 2009-07-27 19:05:49 UTC
Closing this as WONTFIX as bug 589331 has been filed.