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 685436 - Allow using a raw JS object as an item in a list/model store
Allow using a raw JS object as an item in a list/model store
Status: RESOLVED FIXED
Product: gjs
Classification: Bindings
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: gjs-maint
gjs-maint
Depends on:
Blocks:
 
 
Reported: 2012-10-03 19:38 UTC by Jasper St. Pierre (not reading bugmail)
Modified: 2013-05-07 17:22 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
gtype: Don't recurse infinitely while getting a GType (2.15 KB, patch)
2012-10-03 19:38 UTC, Jasper St. Pierre (not reading bugmail)
committed Details | Review
value: Allow marshalling a raw JSObject into a GValue (2.35 KB, patch)
2012-10-03 19:38 UTC, Jasper St. Pierre (not reading bugmail)
rejected Details | Review

Description Jasper St. Pierre (not reading bugmail) 2012-10-03 19:38:00 UTC
That makes this work:

    let model = new Gtk.ListStore();
    model.set_column_types([GObject.TYPE_POINTER]);

    ['cat', 'dog', 'coyote', 'pizza'].forEach(function(animal) {
        let iter = model.append();
        model.set(iter, [0], [{animal: animal}]);
    });

The implementation is a bit ugly. PyGObject has this feature too,
but I didn't look to see how it worked. Maybe some form of typechecking
would help?
Comment 1 Jasper St. Pierre (not reading bugmail) 2012-10-03 19:38:02 UTC
Created attachment 225711 [details] [review]
gtype: Don't recurse infinitely while getting a GType

If we pass a plain old JS object to gjs_gtype_get_actual_gtype,
it will recurse infinitely, getting the constructor. Any object's
constructor is a Function, and unfortunately Function.prototype.constructor
returns itself. Fix this by only recursing once.
Comment 2 Jasper St. Pierre (not reading bugmail) 2012-10-03 19:38:04 UTC
Created attachment 225712 [details] [review]
value: Allow marshalling a raw JSObject into a GValue

This allows us to use raw JSObjects inside things like tree/list
stores, instead of having to create a pesky GObject beforehand.
Comment 3 Jasper St. Pierre (not reading bugmail) 2012-10-03 19:39:01 UTC
This is another request from Mathematical Coffee, by the way.
Comment 4 Giovanni Campagna 2012-10-03 19:45:42 UTC
Review of attachment 225712 [details] [review]:

Sorry but no.
The JS object will be collected and will become a dangling pointer. Python can have this, because they use reference counting and a cycle collector, not a mark and sweep GC.
JS can't, and there is nothing we can do about it, as rooting the object will very likely create an uncollectable cycle.
Comment 5 Jasper St. Pierre (not reading bugmail) 2012-10-04 02:19:35 UTC
The first patch still makes sense though.
Comment 6 Giovanni Campagna 2013-01-03 01:57:33 UTC
Review of attachment 225711 [details] [review]:

Indeed this patch makes sense, sorry it went unnoticed this long.
Comment 7 Jasper St. Pierre (not reading bugmail) 2013-05-07 17:22:21 UTC
Attachment 225711 [details] pushed as df28a9c - gtype: Don't recurse infinitely while getting a GType