Bug 46513 - Make Jingle code less Telepathic
Summary: Make Jingle code less Telepathic
Status: RESOLVED FIXED
Alias: None
Product: Telepathy
Classification: Unclassified
Component: gabble (show other bugs)
Version: git master
Hardware: Other All
: medium normal
Assignee: Telepathy bugs list
QA Contact: Telepathy bugs list
URL: http://cgit.collabora.com/git/user/wj...
Whiteboard: review+
Keywords: patch
Depends on:
Blocks:
 
Reported: 2012-02-23 05:07 UTC by Will Thompson
Modified: 2012-03-01 09:09 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Will Thompson 2012-02-23 05:07:19 UTC
In preparation for potentially moving the non-Telepathy-specific Jingle code down into Wocky in the future, I have prepared an absurdly large branch to remove uses of telepathy-glib (and, for that matter, Gabble API) from pretty much all of the Jingle-flavoured classes.

I'm sorry it's so big, and I'm also sorry that it doesn't end with a commit which actually moves the code to Wocky, but there we go.
Comment 1 Jonny Lamb 2012-02-28 14:42:36 UTC
(In reply to comment #0)
> I'm sorry it's so big, and I'm also sorry that it doesn't end with a commit
> which actually moves the code to Wocky, but there we go.

Haha, I was like "okay I'll take a look"

...

http://oi41.tinypic.com/qxjapx.jpg
Comment 2 Simon McVittie 2012-02-29 04:30:29 UTC
> @@ -2374,14 +2361,14 @@ session_terminated_cb (GabbleJingleSession *session,
>   TpGroupMixin *mixin = TP_GROUP_MIXIN (channel);
>   guint terminator;
>   JingleState state;
> - TpHandle peer;
> + TpHandle peer = gabble_jingle_session_get_peer_handle (priv->session);
>   TpIntSet *set;
>
>   DEBUG ("called");
>
> + peer = gabble_jingle_session_get_peer_handle (priv->session);

Duplicate call to gabble_jingle_session_get_peer_handle() (in "MediaChannel: use gabble_jingle_session_get_peer_handle()", d884caf42e3)

Everything else up to and including that commit looks good. There might be a million patches but at least they're easy to review :-)
Comment 3 Simon McVittie 2012-02-29 04:39:52 UTC
"Send session-{initiate,accept} IQs using porter directly.", 72ea73343252: I think you're leaking sess in the callbacks, except in the early-return cases where the state has become inappropriate?

Everything else up to and including that point looks good, except as already reviewed.
Comment 4 Simon McVittie 2012-02-29 04:53:28 UTC
> +static void
> +gabble_jingle_info_dispose (GObject *object)
> +{
> + GabbleJingleInfo *self = GABBLE_JINGLE_INFO (object);
> + GabbleJingleInfoPrivate *priv = self->priv;
> + GObjectClass *parent_class = gabble_jingle_info_parent_class;
> +
> + if (parent_class->dispose != NULL)
> + parent_class->dispose (object);

Surely dispose should chain up at the end, not the beginning? I see dispose and finalize as progressively breaking the functionality of the object's classes, most-derived first.

jingle_info_reply_cb looked crashy, but you fixed that in the next commit.

Everything else up to 39b90872eb "JingleContent: don't store a GabbleConnection" looks good except as noted already.
Comment 5 Simon McVittie 2012-02-29 05:14:54 UTC
> + /* Only emitted for new incoming sessions, mainly for legacy reasons */
> + signals[NEW_SESSION] = g_signal_new ("new-session",

Can't the JingleMint's new signal be "incoming-session" or something?

In da9f352766e "Represent Jingle relays by a struct, not an aa{sv}":

> + GPtrArray *tp_relays = gabble_build_tp_relay_info (relays);
> + tp_base_media_call_stream_set_relay_info (stream, tp_relays);

Nitpicking: I'd prefer a blank line between initialized locals and other code.

All reviewed now, looks good apart from the things already noted.
Comment 6 Will Thompson 2012-02-29 05:17:29 UTC
(In reply to comment #2)
> > @@ -2374,14 +2361,14 @@ session_terminated_cb (GabbleJingleSession *session,
> >   TpGroupMixin *mixin = TP_GROUP_MIXIN (channel);
> >   guint terminator;
> >   JingleState state;
> > - TpHandle peer;
> > + TpHandle peer = gabble_jingle_session_get_peer_handle (priv->session);
> >   TpIntSet *set;
> >
> >   DEBUG ("called");
> >
> > + peer = gabble_jingle_session_get_peer_handle (priv->session);
> 
> Duplicate call to gabble_jingle_session_get_peer_handle() (in "MediaChannel:
> use gabble_jingle_session_get_peer_handle()", d884caf42e3)

This local gets removed entirely in a later patch, because the MediaChannel tracks its own peer.

> Everything else up to and including that commit looks good. There might be a
> million patches but at least they're easy to review :-)

I try!

(In reply to comment #3)
> "Send session-{initiate,accept} IQs using porter directly.", 72ea73343252: I
> think you're leaking sess in the callbacks, except in the early-return cases
> where the state has become inappropriate?

Aye. Patch fixing this pushed.

(In reply to comment #4)
> > +static void
> > +gabble_jingle_info_dispose (GObject *object)
> > +{
> > + GabbleJingleInfo *self = GABBLE_JINGLE_INFO (object);
> > + GabbleJingleInfoPrivate *priv = self->priv;
> > + GObjectClass *parent_class = gabble_jingle_info_parent_class;
> > +
> > + if (parent_class->dispose != NULL)
> > + parent_class->dispose (object);
> 
> Surely dispose should chain up at the end, not the beginning? I see dispose and
> finalize as progressively breaking the functionality of the object's classes,
> most-derived first.

Yup. I even called someone out on this the other day. Fixed.
Comment 7 Will Thompson 2012-02-29 05:23:41 UTC
(In reply to comment #5)
> > + /* Only emitted for new incoming sessions, mainly for legacy reasons */
> > + signals[NEW_SESSION] = g_signal_new ("new-session",
> 
> Can't the JingleMint's new signal be "incoming-session" or something?

Good idea. Renamed.

> In da9f352766e "Represent Jingle relays by a struct, not an aa{sv}":
> 
> > + GPtrArray *tp_relays = gabble_build_tp_relay_info (relays);
> > + tp_base_media_call_stream_set_relay_info (stream, tp_relays);
> 
> Nitpicking: I'd prefer a blank line between initialized locals and other code.

Fixed.
Comment 8 Simon McVittie 2012-03-01 07:27:44 UTC
This looks good now.
Comment 9 Will Thompson 2012-03-01 09:09:09 UTC
It is merged! http://cgit.freedesktop.org/telepathy/telepathy-gabble/commit/?id=0a7c66f48e2a4f5f1b80237def4063fa952ccc71

A disappointing diffstat in the end:

 53 files changed, 2177 insertions(+), 1205 deletions(-)

Oh well.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.