aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-handler.c
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-01-10 22:17:39 +0800
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-01-10 22:18:03 +0800
commit03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498 (patch)
tree5d0239f4094d16ec02550b77d175587a9a005327 /src/empathy-call-handler.c
parentaf4d97822b9055fd8a7670b53b28c7c1f820ec65 (diff)
downloadgsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.tar
gsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.tar.gz
gsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.tar.bz2
gsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.tar.lz
gsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.tar.xz
gsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.tar.zst
gsoc2013-empathy-03a2ddbde7bd15e6601f3b3e6bd2b5cc269df498.zip
Wait for call state to be INITIALISED before accepting incoming call
Diffstat (limited to 'src/empathy-call-handler.c')
-rw-r--r--src/empathy-call-handler.c47
1 files changed, 26 insertions, 21 deletions
diff --git a/src/empathy-call-handler.c b/src/empathy-call-handler.c
index 119746657..614b470c6 100644
--- a/src/empathy-call-handler.c
+++ b/src/empathy-call-handler.c
@@ -91,6 +91,7 @@ struct _EmpathyCallHandlerPriv {
FsCandidate *video_remote_candidate;
FsCandidate *audio_local_candidate;
FsCandidate *video_local_candidate;
+ gboolean accept_when_initialised;
};
#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyCallHandler)
@@ -134,6 +135,21 @@ empathy_call_handler_init (EmpathyCallHandler *obj)
}
static void
+on_call_accepted_cb (GObject *source_object,
+ GAsyncResult *res,
+ gpointer user_data)
+{
+ TpCallChannel *call = TP_CALL_CHANNEL (source_object);
+ GError *error = NULL;
+
+ if (!tp_call_channel_accept_finish (call, res, &error))
+ {
+ g_warning ("could not accept Call: %s", error->message);
+ g_error_free (error);
+ }
+}
+
+static void
on_call_invalidated_cb (TpCallChannel *call,
guint domain,
gint code,
@@ -147,6 +163,7 @@ on_call_invalidated_cb (TpCallChannel *call,
/* Invalidated unexpectedly? Fake call ending */
g_signal_emit (self, signals[STATE_CHANGED], 0,
TP_CALL_STATE_ENDED, NULL);
+ priv->accept_when_initialised = FALSE;
tp_clear_object (&priv->call);
tp_clear_object (&priv->tfchannel);
}
@@ -165,10 +182,17 @@ on_call_state_changed_cb (TpCallChannel *call,
g_signal_emit (handler, signals[STATE_CHANGED], 0, state,
reason->dbus_reason);
+ if (state == TP_CALL_STATE_INITIALISED &&
+ priv->accept_when_initialised)
+ {
+ tp_call_channel_accept_async (priv->call, on_call_accepted_cb, NULL);
+ priv->accept_when_initialised = FALSE;
+ }
+
if (state == TP_CALL_STATE_ENDED)
{
tp_channel_close_async (TP_CHANNEL (call), NULL, NULL);
-
+ priv->accept_when_initialised = FALSE;
tp_clear_object (&priv->call);
tp_clear_object (&priv->tfchannel);
}
@@ -837,21 +861,6 @@ empathy_call_handler_start_tpfs (EmpathyCallHandler *self)
}
static void
-on_call_accepted_cb (GObject *source_object,
- GAsyncResult *res,
- gpointer user_data)
-{
- TpCallChannel *call = TP_CALL_CHANNEL (source_object);
- GError *error = NULL;
-
- if (!tp_call_channel_accept_finish (call, res, &error))
- {
- g_warning ("could not accept Call: %s", error->message);
- g_error_free (error);
- }
-}
-
-static void
empathy_call_handler_request_cb (GObject *source,
GAsyncResult *result,
gpointer user_data)
@@ -901,7 +910,7 @@ empathy_call_handler_start_call (EmpathyCallHandler *handler,
if (priv->call != NULL)
{
empathy_call_handler_start_tpfs (handler);
- tp_call_channel_accept_async (priv->call, on_call_accepted_cb, NULL);
+ priv->accept_when_initialised = TRUE;
return;
}
@@ -938,10 +947,6 @@ empathy_call_handler_stop_call (EmpathyCallHandler *handler)
tp_call_channel_hangup_async (priv->call,
TP_CALL_STATE_CHANGE_REASON_USER_REQUESTED,
"", "", NULL, NULL);
- tp_channel_close_async (TP_CHANNEL (priv->call),
- NULL, NULL);
- tp_clear_object (&priv->call);
- tp_clear_object (&priv->tfchannel);
}
}