]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-call.c
Don't unref the TpGroup twice
[empathy.git] / libempathy / empathy-tp-call.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Elliot Fairweather
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * Authors: Elliot Fairweather <elliot.fairweather@collabora.co.uk>
21  *          Xavier Claessens <xclaesse@gmail.com>
22  */
23
24 #include <string.h>
25
26 #include <telepathy-glib/proxy-subclass.h>
27 #include <telepathy-glib/dbus.h>
28 #include <telepathy-glib/interfaces.h>
29
30 #include <extensions/extensions.h>
31
32 #include "empathy-tp-call.h"
33 #include "empathy-contact-factory.h"
34 #include "empathy-tp-group.h"
35 #include "empathy-utils.h"
36
37 #define DEBUG_FLAG EMPATHY_DEBUG_TP
38 #include "empathy-debug.h"
39
40 #define STREAM_ENGINE_BUS_NAME "org.freedesktop.Telepathy.StreamEngine"
41 #define STREAM_ENGINE_OBJECT_PATH "/org/freedesktop/Telepathy/StreamEngine"
42
43 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyTpCall)
44 typedef struct
45 {
46   TpChannel *channel;
47   TpProxy *stream_engine;
48   TpDBusDaemon *dbus_daemon;
49   EmpathyTpGroup *group;
50   EmpathyContact *contact;
51   gboolean is_incoming;
52   guint status;
53   gboolean stream_engine_running;
54
55   EmpathyTpCallStream *audio;
56   EmpathyTpCallStream *video;
57 } EmpathyTpCallPriv;
58
59 enum
60 {
61   PROP_0,
62   PROP_CHANNEL,
63   PROP_CONTACT,
64   PROP_IS_INCOMING,
65   PROP_STATUS,
66   PROP_AUDIO_STREAM,
67   PROP_VIDEO_STREAM
68 };
69
70 G_DEFINE_TYPE (EmpathyTpCall, empathy_tp_call, G_TYPE_OBJECT)
71
72 static void
73 tp_call_add_stream (EmpathyTpCall *call,
74                     guint stream_id,
75                     guint contact_handle,
76                     guint stream_type,
77                     guint stream_state,
78                     guint stream_direction)
79 {
80   EmpathyTpCallPriv *priv = GET_PRIV (call);
81
82   switch (stream_type)
83     {
84       case TP_MEDIA_STREAM_TYPE_AUDIO:
85         DEBUG ("Audio stream - id: %d, state: %d, direction: %d",
86             stream_id, stream_state, stream_direction);
87         priv->audio->exists = TRUE;
88         priv->audio->id = stream_id;
89         priv->audio->state = stream_state;
90         priv->audio->direction = stream_direction;
91         g_object_notify (G_OBJECT (call), "audio-stream");
92         break;
93       case TP_MEDIA_STREAM_TYPE_VIDEO:
94         DEBUG ("Video stream - id: %d, state: %d, direction: %d",
95             stream_id, stream_state, stream_direction);
96         priv->video->exists = TRUE;
97         priv->video->id = stream_id;
98         priv->video->state = stream_state;
99         priv->video->direction = stream_direction;
100         g_object_notify (G_OBJECT (call), "video-stream");
101         break;
102       default:
103         DEBUG ("Unknown stream type: %d", stream_type);
104     }
105 }
106
107 static void
108 tp_call_stream_added_cb (TpChannel *channel,
109                          guint stream_id,
110                          guint contact_handle,
111                          guint stream_type,
112                          gpointer user_data,
113                          GObject *call)
114 {
115   DEBUG ("Stream added - stream id: %d, contact handle: %d, stream type: %d",
116       stream_id, contact_handle, stream_type);
117
118   tp_call_add_stream (EMPATHY_TP_CALL (call), stream_id, contact_handle,
119       stream_type, TP_MEDIA_STREAM_STATE_DISCONNECTED,
120       TP_MEDIA_STREAM_DIRECTION_NONE);
121 }
122
123 static void
124 tp_call_stream_removed_cb (TpChannel *channel,
125                            guint stream_id,
126                            gpointer user_data,
127                            GObject *call)
128 {
129   EmpathyTpCallPriv *priv = GET_PRIV (call);
130
131   DEBUG ("Stream removed - stream id: %d", stream_id);
132
133   if (stream_id == priv->audio->id)
134     {
135       priv->audio->exists = FALSE;
136       g_object_notify (call, "audio-stream");
137     }
138   else if (stream_id == priv->video->id)
139     {
140       priv->video->exists = FALSE;
141       g_object_notify (call, "video-stream");
142     }
143 }
144
145 static void
146 tp_call_stream_state_changed_cb (TpChannel *proxy,
147                                  guint stream_id,
148                                  guint stream_state,
149                                  gpointer user_data,
150                                  GObject *call)
151 {
152   EmpathyTpCallPriv *priv = GET_PRIV (call);
153
154   DEBUG ("Stream state changed - stream id: %d, state state: %d",
155       stream_id, stream_state);
156
157   if (stream_id == priv->audio->id)
158     {
159       priv->audio->state = stream_state;
160       g_object_notify (call, "audio-stream");
161     }
162   else if (stream_id == priv->video->id)
163     {
164       priv->video->state = stream_state;
165       g_object_notify (call, "video-stream");
166     }
167 }
168
169 static void
170 tp_call_stream_direction_changed_cb (TpChannel *channel,
171                                      guint stream_id,
172                                      guint stream_direction,
173                                      guint pending_flags,
174                                      gpointer user_data,
175                                      GObject *call)
176 {
177   EmpathyTpCallPriv *priv = GET_PRIV (call);
178
179   DEBUG ("Stream direction changed - stream: %d, direction: %d",
180       stream_id, stream_direction);
181
182   if (stream_id == priv->audio->id)
183     {
184       priv->audio->direction = stream_direction;
185       g_object_notify (call, "audio-stream");
186     }
187   else if (stream_id == priv->video->id)
188     {
189       priv->video->direction = stream_direction;
190       g_object_notify (call, "video-stream");
191     }
192 }
193
194 static void
195 tp_call_request_streams_cb (TpChannel *channel,
196                             const GPtrArray *streams,
197                             const GError *error,
198                             gpointer user_data,
199                             GObject *call)
200 {
201   guint i;
202
203   if (error)
204     {
205       DEBUG ("Error requesting streams: %s", error->message);
206       return;
207     }
208
209   for (i = 0; i < streams->len; i++)
210     {
211       GValueArray *values;
212       guint stream_id;
213       guint contact_handle;
214       guint stream_type;
215       guint stream_state;
216       guint stream_direction;
217
218       values = g_ptr_array_index (streams, i);
219       stream_id = g_value_get_uint (g_value_array_get_nth (values, 0));
220       contact_handle = g_value_get_uint (g_value_array_get_nth (values, 1));
221       stream_type = g_value_get_uint (g_value_array_get_nth (values, 2));
222       stream_state = g_value_get_uint (g_value_array_get_nth (values, 3));
223       stream_direction = g_value_get_uint (g_value_array_get_nth (values, 4));
224
225       tp_call_add_stream (EMPATHY_TP_CALL (call), stream_id, contact_handle,
226           stream_type, stream_state, stream_direction);
227   }
228 }
229
230 static void
231 tp_call_request_streams_for_capabilities (EmpathyTpCall *call,
232                                           EmpathyCapabilities capabilities)
233 {
234   EmpathyTpCallPriv *priv = GET_PRIV (call);
235   GArray *stream_types;
236   guint handle;
237   guint stream_type;
238
239   if (capabilities == EMPATHY_CAPABILITIES_UNKNOWN)
240       capabilities = EMPATHY_CAPABILITIES_AUDIO | EMPATHY_CAPABILITIES_VIDEO;
241
242   DEBUG ("Requesting new stream for capabilities %d",
243       capabilities);
244
245   stream_types = g_array_new (FALSE, FALSE, sizeof (guint));
246   handle = empathy_contact_get_handle (priv->contact);
247
248   if (capabilities & EMPATHY_CAPABILITIES_AUDIO)
249     {
250       stream_type = TP_MEDIA_STREAM_TYPE_AUDIO;
251       g_array_append_val (stream_types, stream_type);
252     }
253   if (capabilities & EMPATHY_CAPABILITIES_VIDEO)
254     {
255       stream_type = TP_MEDIA_STREAM_TYPE_VIDEO;
256       g_array_append_val (stream_types, stream_type);
257     }
258
259   tp_cli_channel_type_streamed_media_call_request_streams (priv->channel, -1,
260       handle, stream_types, tp_call_request_streams_cb, NULL, NULL,
261       G_OBJECT (call));
262
263   g_array_free (stream_types, TRUE);
264 }
265
266 static void
267 tp_call_member_added_cb (EmpathyTpGroup *group,
268                          EmpathyContact *contact,
269                          EmpathyContact *actor,
270                          guint reason,
271                          const gchar *message,
272                          EmpathyTpCall *call)
273 {
274   EmpathyTpCallPriv *priv = GET_PRIV (call);
275
276   g_object_ref (call);
277   if (!priv->contact && !empathy_contact_is_user (contact))
278     {
279       priv->contact = g_object_ref (contact);
280       priv->is_incoming = TRUE;
281       priv->status = EMPATHY_TP_CALL_STATUS_PENDING;
282       g_object_notify (G_OBJECT (call), "is-incoming");
283       g_object_notify (G_OBJECT (call), "contact");
284       g_object_notify (G_OBJECT (call), "status");
285     }
286
287   if (priv->status == EMPATHY_TP_CALL_STATUS_PENDING &&
288       ((priv->is_incoming && contact != priv->contact) ||
289        (!priv->is_incoming && contact == priv->contact)))
290     {
291       priv->status = EMPATHY_TP_CALL_STATUS_ACCEPTED;
292       g_object_notify (G_OBJECT (call), "status");
293     }
294   g_object_unref (call);
295 }
296
297 void
298 empathy_tp_call_to (EmpathyTpCall *call, EmpathyContact *contact)
299 {
300   EmpathyTpCallPriv *priv = GET_PRIV (call);
301
302   priv->contact = g_object_ref (contact);
303   priv->is_incoming = FALSE;
304   priv->status = EMPATHY_TP_CALL_STATUS_PENDING;
305   g_object_notify (G_OBJECT (call), "is-incoming");
306   g_object_notify (G_OBJECT (call), "contact");
307   g_object_notify (G_OBJECT (call), "status");
308   tp_call_request_streams_for_capabilities (call,
309      EMPATHY_CAPABILITIES_AUDIO);
310 }
311
312 static void
313 tp_call_channel_invalidated_cb (TpChannel     *channel,
314                                 GQuark         domain,
315                                 gint           code,
316                                 gchar         *message,
317                                 EmpathyTpCall *call)
318 {
319   EmpathyTpCallPriv *priv = GET_PRIV (call);
320
321   DEBUG ("Channel invalidated: %s", message);
322   priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
323   g_object_notify (G_OBJECT (call), "status");
324 }
325
326 static void
327 tp_call_async_cb (TpProxy *proxy,
328                   const GError *error,
329                   gpointer user_data,
330                   GObject *call)
331 {
332   if (error)
333       DEBUG ("Error %s: %s", (gchar*) user_data, error->message);
334 }
335
336 static void
337 tp_call_close_channel (EmpathyTpCall *call)
338 {
339   EmpathyTpCallPriv *priv = GET_PRIV (call);
340
341   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
342       return;
343
344   DEBUG ("Closing channel");
345
346   tp_cli_channel_call_close (priv->channel, -1,
347       NULL, NULL, NULL, NULL);
348
349   priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
350   g_object_notify (G_OBJECT (call), "status");
351 }
352
353 static void
354 tp_call_stream_engine_invalidated_cb (TpProxy       *stream_engine,
355                                       GQuark         domain,
356                                       gint           code,
357                                       gchar         *message,
358                                       EmpathyTpCall *call)
359 {
360   DEBUG ("Stream engine proxy invalidated: %s", message);
361   tp_call_close_channel (call);
362 }
363
364 static void
365 tp_call_stream_engine_watch_name_owner_cb (TpDBusDaemon *daemon,
366                                            const gchar *name,
367                                            const gchar *new_owner,
368                                            gpointer call)
369 {
370   EmpathyTpCallPriv *priv = GET_PRIV (call);
371
372   /* G_STR_EMPTY(new_owner) means either stream-engine has not started yet or
373    * has crashed. We want to close the channel if stream-engine has crashed.
374    * */
375   DEBUG ("Watch SE: name='%s' SE running='%s' new_owner='%s'",
376       name, priv->stream_engine_running ? "yes" : "no",
377       new_owner ? new_owner : "none");
378   if (priv->stream_engine_running && G_STR_EMPTY (new_owner))
379     {
380       DEBUG ("Stream engine falled off the bus");
381       tp_call_close_channel (call);
382       return;
383     }
384
385   priv->stream_engine_running = !G_STR_EMPTY (new_owner);
386 }
387
388 static void
389 tp_call_stream_engine_handle_channel (EmpathyTpCall *call)
390 {
391   EmpathyTpCallPriv *priv = GET_PRIV (call);
392   gchar *channel_type;
393   gchar *object_path;
394   guint handle_type;
395   guint handle;
396   TpProxy *connection;
397
398   DEBUG ("Revving up the stream engine");
399
400   priv->stream_engine = g_object_new (TP_TYPE_PROXY,
401       "bus-name", STREAM_ENGINE_BUS_NAME,
402       "dbus-connection", tp_get_bus (),
403       "object-path", STREAM_ENGINE_OBJECT_PATH,
404        NULL);
405   tp_proxy_add_interface_by_id (priv->stream_engine,
406       EMP_IFACE_QUARK_STREAM_ENGINE);
407   tp_proxy_add_interface_by_id (priv->stream_engine,
408       EMP_IFACE_QUARK_CHANNEL_HANDLER);
409
410   g_signal_connect (priv->stream_engine, "invalidated",
411       G_CALLBACK (tp_call_stream_engine_invalidated_cb),
412       call);
413   
414   /* FIXME: dbus daemon should be unique */
415   priv->dbus_daemon = tp_dbus_daemon_new (tp_get_bus ());
416   tp_dbus_daemon_watch_name_owner (priv->dbus_daemon, STREAM_ENGINE_BUS_NAME,
417       tp_call_stream_engine_watch_name_owner_cb,
418       call, NULL);
419
420   g_object_get (priv->channel,
421       "connection", &connection,
422       "channel-type", &channel_type,
423       "object-path", &object_path,
424       "handle_type", &handle_type,
425       "handle", &handle,
426       NULL);
427
428   emp_cli_channel_handler_call_handle_channel (priv->stream_engine, -1,
429         connection->bus_name,
430         connection->object_path,
431         channel_type, object_path, handle_type, handle,
432         tp_call_async_cb, "calling handle channel", NULL,
433         G_OBJECT (call));
434
435   g_object_unref (connection);
436   g_free (channel_type);
437   g_free (object_path);
438 }
439
440 static GObject *
441 tp_call_constructor (GType type,
442                      guint n_construct_params,
443                      GObjectConstructParam *construct_params)
444 {
445   GObject *object;
446   EmpathyTpCall *call;
447   EmpathyTpCallPriv *priv;
448
449   object = G_OBJECT_CLASS (empathy_tp_call_parent_class)->constructor (type,
450       n_construct_params, construct_params);
451
452   call = EMPATHY_TP_CALL (object);
453   priv = GET_PRIV (call);
454
455   /* Setup streamed media channel */
456   g_signal_connect (priv->channel, "invalidated",
457       G_CALLBACK (tp_call_channel_invalidated_cb), call);
458   tp_cli_channel_type_streamed_media_connect_to_stream_added (priv->channel,
459       tp_call_stream_added_cb, NULL, NULL, G_OBJECT (call), NULL);
460   tp_cli_channel_type_streamed_media_connect_to_stream_removed (priv->channel,
461       tp_call_stream_removed_cb, NULL, NULL, G_OBJECT (call), NULL);
462   tp_cli_channel_type_streamed_media_connect_to_stream_state_changed (priv->channel,
463       tp_call_stream_state_changed_cb, NULL, NULL, G_OBJECT (call), NULL);
464   tp_cli_channel_type_streamed_media_connect_to_stream_direction_changed (priv->channel,
465       tp_call_stream_direction_changed_cb, NULL, NULL, G_OBJECT (call), NULL);
466   tp_cli_channel_type_streamed_media_call_list_streams (priv->channel, -1,
467       tp_call_request_streams_cb, NULL, NULL, G_OBJECT (call));
468
469   /* Setup group interface */
470   priv->group = empathy_tp_group_new (priv->channel);
471
472   g_signal_connect (priv->group, "member-added",
473       G_CALLBACK (tp_call_member_added_cb), call);
474
475   /* Start stream engine */
476   tp_call_stream_engine_handle_channel (call);
477
478   return object;
479 }
480
481 static void
482 tp_call_finalize (GObject *object)
483 {
484   EmpathyTpCallPriv *priv = GET_PRIV (object);
485
486   DEBUG ("Finalizing: %p", object);
487
488   g_slice_free (EmpathyTpCallStream, priv->audio);
489   g_slice_free (EmpathyTpCallStream, priv->video);
490
491   if (priv->group != NULL)
492     g_object_unref (priv->group);
493
494   priv->group = NULL;
495
496   if (priv->channel != NULL)
497     {
498       g_signal_handlers_disconnect_by_func (priv->channel,
499         tp_call_channel_invalidated_cb, object);
500
501       g_object_unref (priv->channel);
502       priv->channel = NULL;
503     }
504
505   if (priv->stream_engine != NULL)
506     {
507       g_signal_handlers_disconnect_by_func (priv->stream_engine,
508           tp_call_stream_engine_invalidated_cb, object);
509       g_object_unref (priv->stream_engine);
510     }
511
512   if (priv->contact != NULL)
513       g_object_unref (priv->contact);
514
515   if (priv->dbus_daemon != NULL)
516     {
517       tp_dbus_daemon_cancel_name_owner_watch (priv->dbus_daemon,
518           STREAM_ENGINE_BUS_NAME,
519           tp_call_stream_engine_watch_name_owner_cb,
520           object);
521       g_object_unref (priv->dbus_daemon);
522     }
523
524   (G_OBJECT_CLASS (empathy_tp_call_parent_class)->finalize) (object);
525 }
526
527 static void 
528 tp_call_set_property (GObject *object,
529                       guint prop_id,
530                       const GValue *value,
531                       GParamSpec *pspec)
532 {
533   EmpathyTpCallPriv *priv = GET_PRIV (object);
534
535   switch (prop_id)
536     {
537     case PROP_CHANNEL:
538       priv->channel = g_value_dup_object (value);
539       break;
540     default:
541       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
542       break;
543   }
544 }
545
546 static void
547 tp_call_get_property (GObject *object,
548                       guint prop_id,
549                       GValue *value,
550                       GParamSpec *pspec)
551 {
552   EmpathyTpCallPriv *priv = GET_PRIV (object);
553
554   switch (prop_id)
555     {
556     case PROP_CHANNEL:
557       g_value_set_object (value, priv->channel);
558       break;
559     case PROP_CONTACT:
560       g_value_set_object (value, priv->contact);
561       break;
562     case PROP_IS_INCOMING:
563       g_value_set_boolean (value, priv->is_incoming);
564       break;
565     case PROP_STATUS:
566       g_value_set_uint (value, priv->status);
567       break;
568     case PROP_AUDIO_STREAM:
569       g_value_set_pointer (value, priv->audio);
570       break;
571     case PROP_VIDEO_STREAM:
572       g_value_set_pointer (value, priv->video);
573       break;
574     default:
575       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
576       break;
577   }
578 }
579
580 static void
581 empathy_tp_call_class_init (EmpathyTpCallClass *klass)
582 {
583   GObjectClass *object_class = G_OBJECT_CLASS (klass);
584
585   object_class->constructor = tp_call_constructor;
586   object_class->finalize = tp_call_finalize;
587   object_class->set_property = tp_call_set_property;
588   object_class->get_property = tp_call_get_property;
589
590   g_type_class_add_private (klass, sizeof (EmpathyTpCallPriv));
591
592   g_object_class_install_property (object_class, PROP_CHANNEL,
593       g_param_spec_object ("channel", "channel", "channel",
594       TP_TYPE_CHANNEL,
595       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
596       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
597   g_object_class_install_property (object_class, PROP_CONTACT,
598       g_param_spec_object ("contact", "Call contact", "Call contact",
599       EMPATHY_TYPE_CONTACT,
600       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
601   g_object_class_install_property (object_class, PROP_IS_INCOMING,
602       g_param_spec_boolean ("is-incoming", "Is media stream incoming",
603       "Is media stream incoming", FALSE, G_PARAM_READABLE |
604       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
605   g_object_class_install_property (object_class, PROP_STATUS,
606       g_param_spec_uint ("status", "Call status",
607       "Call status", 0, 255, 0, G_PARAM_READABLE | G_PARAM_STATIC_NICK |
608       G_PARAM_STATIC_BLURB));
609   g_object_class_install_property (object_class, PROP_AUDIO_STREAM,
610       g_param_spec_pointer ("audio-stream", "Audio stream data",
611       "Audio stream data",
612       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
613   g_object_class_install_property (object_class, PROP_VIDEO_STREAM,
614       g_param_spec_pointer ("video-stream", "Video stream data",
615       "Video stream data",
616       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
617 }
618
619 static void
620 empathy_tp_call_init (EmpathyTpCall *call)
621 {
622   EmpathyTpCallPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (call,
623     EMPATHY_TYPE_TP_CALL, EmpathyTpCallPriv);
624
625   call->priv = priv;
626   priv->status = EMPATHY_TP_CALL_STATUS_READYING;
627   priv->contact = NULL;
628   priv->stream_engine_running = FALSE;
629   priv->audio = g_slice_new0 (EmpathyTpCallStream);
630   priv->video = g_slice_new0 (EmpathyTpCallStream);
631   priv->audio->exists = FALSE;
632   priv->video->exists = FALSE;
633 }
634
635 EmpathyTpCall *
636 empathy_tp_call_new (TpChannel *channel)
637 {
638   g_return_val_if_fail (TP_IS_CHANNEL (channel), NULL);
639
640   return g_object_new (EMPATHY_TYPE_TP_CALL,
641       "channel", channel,
642       NULL);
643 }
644
645 void
646 empathy_tp_call_accept_incoming_call (EmpathyTpCall *call)
647 {
648   EmpathyTpCallPriv *priv = GET_PRIV (call);
649   EmpathyContact *self_contact;
650
651   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
652   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_PENDING);
653
654   DEBUG ("Accepting incoming call");
655
656   self_contact = empathy_tp_group_get_self_contact (priv->group);
657   empathy_tp_group_add_member (priv->group, self_contact, NULL);
658   g_object_unref (self_contact);
659 }
660
661 void
662 empathy_tp_call_close (EmpathyTpCall *call)
663 {
664   EmpathyTpCallPriv *priv = GET_PRIV (call);
665
666   g_signal_handlers_disconnect_by_func (priv->channel,
667     tp_call_channel_invalidated_cb, call);
668
669   tp_call_close_channel (call);
670
671   g_object_unref (priv->channel);
672   priv->channel = NULL;
673 }
674
675 void
676 empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call,
677                                                 gboolean is_sending)
678 {
679   EmpathyTpCallPriv *priv = GET_PRIV (call);
680   guint new_direction;
681
682   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
683   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_ACCEPTED);
684
685   DEBUG ("Requesting video stream direction - is_sending: %d", is_sending);
686
687   if (!priv->video->exists)
688     {
689       if (is_sending)
690           tp_call_request_streams_for_capabilities (call,
691               EMPATHY_CAPABILITIES_VIDEO);
692       return;
693     }
694
695   if (is_sending)
696       new_direction = priv->video->direction | TP_MEDIA_STREAM_DIRECTION_SEND;
697   else
698       new_direction = priv->video->direction & ~TP_MEDIA_STREAM_DIRECTION_SEND;
699
700   tp_cli_channel_type_streamed_media_call_request_stream_direction (priv->channel,
701       -1, priv->video->id, new_direction,
702       (tp_cli_channel_type_streamed_media_callback_for_request_stream_direction)
703       tp_call_async_cb, NULL, NULL, G_OBJECT (call));
704 }
705
706 void
707 empathy_tp_call_add_preview_video (EmpathyTpCall *call,
708                                    guint preview_video_socket_id)
709 {
710   EmpathyTpCallPriv *priv = GET_PRIV (call);
711
712   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
713
714   DEBUG ("Adding preview video");
715
716   emp_cli_stream_engine_call_add_preview_window (priv->stream_engine, -1,
717       preview_video_socket_id,
718       tp_call_async_cb,
719       "adding preview window", NULL,
720       G_OBJECT (call));
721 }
722
723 void
724 empathy_tp_call_remove_preview_video (EmpathyTpCall *call,
725                                       guint preview_video_socket_id)
726 {
727   EmpathyTpCallPriv *priv = GET_PRIV (call);
728
729   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
730
731   DEBUG ("Removing preview video");
732
733   emp_cli_stream_engine_call_remove_preview_window (priv->stream_engine, -1,
734       preview_video_socket_id,
735       tp_call_async_cb,
736       "removing preview window", NULL,
737       G_OBJECT (call));
738 }
739
740 void
741 empathy_tp_call_add_output_video (EmpathyTpCall *call,
742                                   guint output_video_socket_id)
743 {
744   EmpathyTpCallPriv *priv = GET_PRIV (call);
745
746   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
747
748   DEBUG ("Adding output video - socket: %d", output_video_socket_id);
749
750   emp_cli_stream_engine_call_set_output_window (priv->stream_engine, -1,
751       TP_PROXY (priv->channel)->object_path,
752       priv->video->id, output_video_socket_id,
753       tp_call_async_cb,
754       "setting output window", NULL,
755       G_OBJECT (call));
756 }
757
758 void
759 empathy_tp_call_set_output_volume (EmpathyTpCall *call,
760                                    guint volume)
761 {
762   EmpathyTpCallPriv *priv = GET_PRIV (call);
763
764   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
765   g_return_if_fail (priv->status != EMPATHY_TP_CALL_STATUS_CLOSED);
766
767   DEBUG ("Setting output volume: %d", volume);
768
769   emp_cli_stream_engine_call_set_output_volume (priv->stream_engine, -1,
770       TP_PROXY (priv->channel)->object_path,
771       priv->audio->id, volume,
772       tp_call_async_cb,
773       "setting output volume", NULL,
774       G_OBJECT (call));
775 }
776
777 void
778 empathy_tp_call_mute_output (EmpathyTpCall *call,
779                              gboolean is_muted)
780 {
781   EmpathyTpCallPriv *priv = GET_PRIV (call);
782
783   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
784
785   DEBUG ("Setting output mute: %d", is_muted);
786
787   emp_cli_stream_engine_call_mute_output (priv->stream_engine, -1,
788       TP_PROXY (priv->channel)->object_path,
789       priv->audio->id, is_muted,
790       tp_call_async_cb,
791       "muting output", NULL,
792       G_OBJECT (call));
793 }
794
795 void
796 empathy_tp_call_mute_input (EmpathyTpCall *call,
797                             gboolean is_muted)
798 {
799   EmpathyTpCallPriv *priv = GET_PRIV (call);
800
801   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
802
803   DEBUG ("Setting input mute: %d", is_muted);
804
805   emp_cli_stream_engine_call_mute_input (priv->stream_engine, -1,
806       TP_PROXY (priv->channel)->object_path,
807       priv->audio->id, is_muted,
808       tp_call_async_cb,
809       "muting input", NULL,
810       G_OBJECT (call));
811 }
812
813 void
814 empathy_tp_call_start_tone (EmpathyTpCall *call, TpDTMFEvent event)
815 {
816   EmpathyTpCallPriv *priv = GET_PRIV (call);
817
818   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
819   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_ACCEPTED);
820
821   if (!priv->audio->exists)
822       return;
823
824   tp_cli_channel_interface_dtmf_call_start_tone (priv->channel, -1,
825       priv->audio->id, event,
826       (tp_cli_channel_interface_dtmf_callback_for_start_tone) tp_call_async_cb,
827       "starting tone", NULL, G_OBJECT (call));
828 }
829
830 void
831 empathy_tp_call_stop_tone (EmpathyTpCall *call)
832 {
833   EmpathyTpCallPriv *priv = GET_PRIV (call);
834
835   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
836   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_ACCEPTED);
837
838   if (!priv->audio->exists)
839       return;
840
841   tp_cli_channel_interface_dtmf_call_stop_tone (priv->channel, -1,
842       priv->audio->id,
843       (tp_cli_channel_interface_dtmf_callback_for_stop_tone) tp_call_async_cb,
844       "stoping tone", NULL, G_OBJECT (call));
845 }
846
847 gboolean
848 empathy_tp_call_has_dtmf (EmpathyTpCall *call)
849 {
850   EmpathyTpCallPriv *priv = GET_PRIV (call);
851
852   g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), FALSE);
853
854   return tp_proxy_has_interface_by_id (priv->channel,
855       TP_IFACE_QUARK_CHANNEL_INTERFACE_DTMF);
856 }
857