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 614236 - Stop using NewChannel to get groups
Stop using NewChannel to get groups
Status: RESOLVED FIXED
Product: empathy
Classification: Core
Component: Contact List
2.29.x
Other Linux
: Normal normal
: ---
Assigned To: empathy-maint
Depends on: 612949
Blocks:
 
 
Reported: 2010-03-29 10:36 UTC by Guillaume Desmottes
Modified: 2011-08-29 10:12 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/new-channels-614236 (7.75 KB, patch)
2010-03-30 13:20 UTC, Guillaume Desmottes
reviewed Details | Review
http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/infinite-timeout (8.53 KB, patch)
2010-04-07 08:02 UTC, Guillaume Desmottes
accepted-commit_now Details | Review

Description Guillaume Desmottes 2010-03-29 10:36:38 UTC
Empathy is still using the so old school NewChannel signal to catch groups. Now that EmpathyTpContactList listens on NewChannels (bug #612949), we should move the code looking for groups in this callback as well.
Comment 1 Danielle Madeley 2010-03-29 10:38:38 UTC
I think the handling of incoming contact lists and groups should be handled via the same codepath.
Comment 2 Guillaume Desmottes 2010-03-30 13:20:40 UTC
Created attachment 157482 [details] [review]
http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/new-channels-614236

 libempathy/empathy-tp-contact-list.c |  163 +++++++++++++--------------------
 1 files changed, 64 insertions(+), 99 deletions(-)
Comment 3 Danielle Madeley 2010-03-31 01:52:19 UTC
Review of attachment 157482 [details] [review]:

So this seems mostly fine, but I think it could go a step further and replace the 3 calls to EnsureChannel() with the same infrastructure being used to discover HANDLE_TYPE_GROUPs, that way even more common code could be shared.

::: libempathy/empathy-tp-contact-list.c
@@ +735,3 @@
+								  properties, NULL);
+			got_list_channel (list, channel);
+			g_object_unref (channel);

Is it worth factoring this out into a separate function like tp_contact_list_group_add_channel() is?

I suppose in a way it is via got_list_channel. Move the channel creation there maybe?

@@ +771,3 @@
+				TP_IFACE_CHANNEL ".ChannelType"),
+		    TP_IFACE_CHANNEL_TYPE_CONTACT_LIST))
+			continue;

It seems to me that this request for Channels should also handle finding the contact lists, rather than explicitly calling EnsureChannels for the contact lists (unless that's against the Telepathy spec for some reason). After all, they're either already in Channels, or going to soon be announced by NewChannels.

You can then replace this entire for loop with common code shared with the NewChannels signal handler.
Comment 4 Guillaume Desmottes 2010-03-31 09:23:23 UTC
(In reply to comment #3)
> It seems to me that this request for Channels should also handle finding the
> contact lists, rather than explicitly calling EnsureChannels for the contact
> lists (unless that's against the Telepathy spec for some reason). After all,
> they're either already in Channels, or going to soon be announced by
> NewChannels.

Interesting. Actually, after discussion with Sjoerd and Smcv, I made another branch, based on this one, removing code in NewChannels catching list channels and call EnsureChannel with an 'infinite' timeout instead.
See http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/infinite-timeout

Not sure what's best. Thoughts?
Comment 5 Danielle Madeley 2010-03-31 09:34:31 UTC
I defer to smcv's opinion.
Comment 6 Simon McVittie 2010-03-31 12:03:58 UTC
Groups and lists (by which I mean subscribe, publish etc.) are not the same.

For lists, you need to call EnsureChannel (probably directly on the CM) so you can distinguish between a list that hasn't appeared yet, and a list that will never appear. (For instance, if you defer processing until "stored" appears, then you'll wait forever on Salut connections.)

For groups, you can't know what the complete set of groups is, so you need a hybrid approach:

* when discovering what groups there are, you have to use Channels and NewChannels (or the deprecated versions thereof, or be an Observer, or some similar activity)

* when adding a contact to a group, you must EnsureChannel (optionally, you can skip this if you already know that the group exists, and what its object path is)
Comment 7 Guillaume Desmottes 2010-04-05 10:37:42 UTC
I think the "infinite timeout" approach is easier and make the code cleaner.
Danielle: could you review this branch directly please?
Comment 8 Danielle Madeley 2010-04-07 00:32:30 UTC
In got_channels_cb(), do you need to repeat the contents of this loop? Channels is in the same format as NewChannels, so can you share this code in common?

Otherwise looks good.
Comment 9 Guillaume Desmottes 2010-04-07 08:02:59 UTC
Created attachment 158098 [details] [review]
http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/infinite-timeout

 libempathy/empathy-tp-contact-list.c |  162 ++++++++++++----------------------
 1 files changed, 55 insertions(+), 107 deletions(-)
Comment 10 Danielle Madeley 2010-04-08 00:42:19 UTC
Review of attachment 158098 [details] [review]:

Looks good.
Comment 11 Guillaume Desmottes 2010-04-08 10:35:42 UTC
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.