]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-call.c
Avoid calling Close() on the media channel if it's already closed.
[empathy.git] / libempathy / empathy-tp-call.c
1 /*
2  *  Copyright (C) 2007 Elliot Fairweather
3  *
4  *  This library is free software; you can redistribute it and/or
5  *  modify it under the terms of the GNU Lesser General Public
6  *  License as published by the Free Software Foundation; either
7  *  version 2.1 of the License, or (at your option) any later version.
8  *
9  *  This library is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  *  Lesser General Public License for more details.
13  *
14  *  You should have received a copy of the GNU Lesser General Public
15  *  License along with this library; if not, write to the Free Software
16  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  *  Authors: Elliot Fairweather <elliot.fairweather@collabora.co.uk>
19  */
20
21 #include <string.h>
22 #include <dbus/dbus-glib.h>
23
24 #include <libtelepathy/tp-chan-type-streamed-media-gen.h>
25 #include <libtelepathy/tp-connmgr.h>
26 #include <libtelepathy/tp-helpers.h>
27 #include <telepathy-glib/proxy-subclass.h>
28
29 #include <libmissioncontrol/mc-account.h>
30
31 #include <extensions/extensions.h>
32 #include <libempathy/empathy-contact-factory.h>
33 #include <libempathy/empathy-debug.h>
34 #include <libempathy/empathy-tp-group.h>
35 #include <libempathy/empathy-utils.h>
36
37 #include "empathy-tp-call.h"
38
39 #define DEBUG_DOMAIN "TpCall"
40
41 #define GET_PRIV(object) (G_TYPE_INSTANCE_GET_PRIVATE \
42     ((object), EMPATHY_TYPE_TP_CALL, EmpathyTpCallPriv))
43
44 #define STREAM_ENGINE_BUS_NAME "org.freedesktop.Telepathy.StreamEngine"
45 #define STREAM_ENGINE_OBJECT_PATH "/org/freedesktop/Telepathy/StreamEngine"
46
47 typedef struct _EmpathyTpCallPriv EmpathyTpCallPriv;
48
49 struct _EmpathyTpCallPriv
50 {
51   TpConn *connection;
52   TpChan *channel;
53   TpProxy *stream_engine;
54   EmpathyTpGroup *group;
55   EmpathyContact *contact;
56   gboolean is_incoming;
57   guint status;
58
59   EmpathyTpCallStream *audio;
60   EmpathyTpCallStream *video;
61 };
62
63 enum
64 {
65   STATUS_CHANGED_SIGNAL,
66   RECEIVING_VIDEO_SIGNAL,
67   SENDING_VIDEO_SIGNAL,
68   LAST_SIGNAL
69 };
70
71 enum
72 {
73   PROP_0,
74   PROP_CONNECTION,
75   PROP_CHANNEL,
76   PROP_CONTACT,
77   PROP_IS_INCOMING,
78   PROP_STATUS,
79   PROP_AUDIO_STREAM,
80   PROP_VIDEO_STREAM
81 };
82
83 static guint signals[LAST_SIGNAL];
84
85 G_DEFINE_TYPE (EmpathyTpCall, empathy_tp_call, G_TYPE_OBJECT)
86
87 static void
88 tp_call_stream_state_changed_cb (DBusGProxy *channel,
89                                  guint stream_id,
90                                  guint stream_state,
91                                  EmpathyTpCall *call)
92 {
93   EmpathyTpCallPriv *priv = GET_PRIV (call);
94
95   empathy_debug (DEBUG_DOMAIN,
96       "Stream state changed - stream id: %d, state state: %d",
97       stream_id, stream_state);
98
99   if (stream_id == priv->audio->id)
100     {
101       priv->audio->state = stream_state;
102     }
103   else if (stream_id == priv->video->id)
104     {
105       priv->video->state = stream_state;
106     }
107
108   g_signal_emit_by_name (call, "status-changed");
109 }
110
111 static void
112 tp_call_identify_streams (EmpathyTpCall *call)
113 {
114   EmpathyTpCallPriv *priv = GET_PRIV (call);
115   GPtrArray *stream_infos;
116   DBusGProxy *streamed_iface;
117   GError *error = NULL;
118   guint i;
119
120   empathy_debug (DEBUG_DOMAIN, "Identifying audio/video streams");
121
122   streamed_iface = tp_chan_get_interface (priv->channel,
123       TELEPATHY_CHAN_IFACE_STREAMED_QUARK);
124
125   if (!tp_chan_type_streamed_media_list_streams (streamed_iface, &stream_infos,
126         &error))
127     {
128       empathy_debug (DEBUG_DOMAIN, "Couldn't list audio/video streams: %s",
129           error->message);
130       g_clear_error (&error);
131       return;
132     }
133
134   for (i = 0; i < stream_infos->len; i++)
135     {
136       GValueArray *values;
137       guint stream_id;
138       guint stream_handle;
139       guint stream_type;
140       guint stream_state;
141       guint stream_direction;
142
143       values = g_ptr_array_index (stream_infos, i);
144       stream_id = g_value_get_uint (g_value_array_get_nth (values, 0));
145       stream_handle = g_value_get_uint (g_value_array_get_nth (values, 1));
146       stream_type = g_value_get_uint (g_value_array_get_nth (values, 2));
147       stream_state = g_value_get_uint (g_value_array_get_nth (values, 3));
148       stream_direction = g_value_get_uint (g_value_array_get_nth (values, 4));
149
150       switch (stream_type)
151         {
152         case TP_MEDIA_STREAM_TYPE_AUDIO:
153           empathy_debug (DEBUG_DOMAIN,
154               "Audio stream - id: %d, state: %d, direction: %d",
155               stream_id, stream_state, stream_direction);
156           priv->audio->exists = TRUE;
157           priv->audio->id = stream_id;
158           priv->audio->state = stream_state;
159           priv->audio->direction = stream_direction;
160           break;
161         case TP_MEDIA_STREAM_TYPE_VIDEO:
162           empathy_debug (DEBUG_DOMAIN,
163               "Video stream - id: %d, state: %d, direction: %d",
164               stream_id, stream_state, stream_direction);
165           priv->video->exists = TRUE;
166           priv->video->id = stream_id;
167           priv->video->state = stream_state;
168           priv->video->direction = stream_direction;
169           break;
170         default:
171           empathy_debug (DEBUG_DOMAIN, "Unknown stream type: %d",
172               stream_type);
173         }
174
175       g_value_array_free (values);
176     }
177 }
178
179 static void
180 tp_call_stream_added_cb (DBusGProxy *channel,
181                          guint stream_id,
182                          guint contact_handle,
183                          guint stream_type,
184                          EmpathyTpCall *call)
185 {
186   empathy_debug (DEBUG_DOMAIN,
187       "Stream added - stream id: %d, contact handle: %d, stream type: %d",
188       stream_id, contact_handle, stream_type);
189
190   tp_call_identify_streams (call);
191 }
192
193
194 static void
195 tp_call_stream_removed_cb (DBusGProxy *channel,
196                            guint stream_id,
197                            EmpathyTpCall *call)
198 {
199   EmpathyTpCallPriv *priv = GET_PRIV (call);
200
201   empathy_debug (DEBUG_DOMAIN, "Stream removed - stream id: %d", stream_id);
202
203   if (stream_id == priv->audio->id)
204     {
205       priv->audio->exists = FALSE;
206     }
207   else if (stream_id == priv->video->id)
208     {
209       priv->video->exists = FALSE;
210     }
211 }
212
213 static void
214 tp_call_channel_closed_cb (TpChan *channel,
215                            EmpathyTpCall *call)
216 {
217   EmpathyTpCallPriv *priv = GET_PRIV (call);
218   DBusGProxy *streamed_iface;
219   DBusGProxy *group_iface;
220
221   empathy_debug (DEBUG_DOMAIN, "Channel closed");
222
223   priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
224   g_signal_emit_by_name (call, "status-changed");
225
226   streamed_iface = tp_chan_get_interface (priv->channel,
227       TELEPATHY_CHAN_IFACE_STREAMED_QUARK);
228   group_iface = tp_chan_get_interface (priv->channel,
229       TELEPATHY_CHAN_IFACE_GROUP_QUARK);
230
231   dbus_g_proxy_disconnect_signal (DBUS_G_PROXY (priv->channel), "Closed",
232       G_CALLBACK (tp_call_channel_closed_cb), (gpointer) call);
233   dbus_g_proxy_disconnect_signal (streamed_iface, "StreamStateChanged",
234       G_CALLBACK (tp_call_stream_state_changed_cb), (gpointer) call);
235   dbus_g_proxy_disconnect_signal (streamed_iface, "StreamAdded",
236       G_CALLBACK (tp_call_stream_added_cb), (gpointer) call);
237   dbus_g_proxy_disconnect_signal (streamed_iface, "StreamRemoved",
238       G_CALLBACK (tp_call_stream_removed_cb), (gpointer) call);
239 }
240
241 static void
242 tp_call_stream_direction_changed_cb (DBusGProxy *channel,
243                                      guint stream_id,
244                                      guint stream_direction,
245                                      guint flags,
246                                      EmpathyTpCall *call)
247 {
248   EmpathyTpCallPriv *priv = GET_PRIV (call);
249
250   empathy_debug (DEBUG_DOMAIN,
251       "Stream direction changed - stream: %d, direction: %d",
252       stream_id, stream_direction);
253
254   if (stream_id == priv->audio->id)
255     {
256       priv->audio->direction = stream_direction;
257     }
258   else if (stream_id == priv->video->id)
259     {
260       priv->video->direction = stream_direction;
261
262       if (stream_direction & TP_MEDIA_STREAM_DIRECTION_RECEIVE)
263         {
264           empathy_debug (DEBUG_DOMAIN, "RECEIVING");
265           g_signal_emit_by_name (call, "receiving-video", TRUE);
266         }
267       else
268         {
269           empathy_debug (DEBUG_DOMAIN, "NOT RECEIVING");
270           g_signal_emit_by_name (call, "receiving-video", FALSE);
271         }
272
273       if (stream_direction & TP_MEDIA_STREAM_DIRECTION_SEND)
274         {
275           empathy_debug (DEBUG_DOMAIN, "SENDING");
276           g_signal_emit_by_name (call, "sending-video", TRUE);
277         }
278       else
279         {
280           empathy_debug (DEBUG_DOMAIN, "NOT SENDING");
281           g_signal_emit_by_name (call, "sending-video", FALSE);
282         }
283     }
284 }
285
286 static void
287 tp_call_request_streams_for_capabilities (EmpathyTpCall *call,
288                                           EmpathyCapabilities capabilities)
289 {
290   EmpathyTpCallPriv *priv = GET_PRIV (call);
291   DBusGProxy *streamed_iface;
292   GArray *stream_types;
293   guint handle;
294   guint stream_type;
295   GError *error = NULL;
296
297   empathy_debug (DEBUG_DOMAIN, "Requesting new stream for capabilities %d",
298       capabilities);
299
300   streamed_iface = tp_chan_get_interface (priv->channel,
301       TELEPATHY_CHAN_IFACE_STREAMED_QUARK);
302   stream_types = g_array_new (FALSE, FALSE, sizeof (guint));
303   handle = empathy_contact_get_handle (priv->contact);
304
305   if (capabilities & EMPATHY_CAPABILITIES_AUDIO)
306     {
307       stream_type = TP_MEDIA_STREAM_TYPE_AUDIO;
308       g_array_append_val (stream_types, stream_type);
309     }
310   if (capabilities & EMPATHY_CAPABILITIES_VIDEO)
311     {
312       stream_type = TP_MEDIA_STREAM_TYPE_VIDEO;
313       g_array_append_val (stream_types, stream_type);
314     }
315
316   if (!tp_chan_type_streamed_media_request_streams (streamed_iface, handle,
317         stream_types, NULL, &error))
318     {
319       empathy_debug (DEBUG_DOMAIN, "Couldn't request new stream: %s",
320           error->message);
321       g_clear_error (&error);
322     }
323
324   g_array_free (stream_types, TRUE);
325 }
326
327 static void
328 tp_call_request_streams_capabilities_cb (EmpathyContact *contact,
329                                          GParamSpec *property,
330                                          gpointer user_data)
331 {
332   EmpathyTpCall *call = EMPATHY_TP_CALL (user_data);
333
334   g_signal_handlers_disconnect_by_func (contact,
335       tp_call_request_streams_capabilities_cb,
336       user_data);
337
338   tp_call_request_streams_for_capabilities (call,
339      empathy_contact_get_capabilities (contact));
340 }
341
342 static void
343 tp_call_request_streams (EmpathyTpCall *call)
344 {
345   EmpathyTpCallPriv *priv = GET_PRIV (call);
346   EmpathyCapabilities capabilities;
347   DBusGProxy *capabilities_iface;
348
349   empathy_debug (DEBUG_DOMAIN,
350       "Requesting appropriate audio/video streams from contact");
351
352
353   /* FIXME: SIP don't have capabilities interface but we know it supports
354    *        only audio and not video. */
355   capabilities_iface = tp_conn_get_interface (priv->connection,
356       TP_IFACE_QUARK_CONNECTION_INTERFACE_CAPABILITIES);
357   if (!capabilities_iface)
358     {
359       capabilities = EMPATHY_CAPABILITIES_AUDIO;
360     }
361   else
362     {
363       capabilities = empathy_contact_get_capabilities (priv->contact);
364       if (capabilities == EMPATHY_CAPABILITIES_UNKNOWN)
365         {
366           g_signal_connect (priv->contact, "notify::capabilities",
367               G_CALLBACK (tp_call_request_streams_capabilities_cb), call);
368           return;
369         }
370     }
371
372   tp_call_request_streams_for_capabilities (call, capabilities);
373 }
374
375 static void
376 tp_call_is_ready (EmpathyTpCall *call)
377 {
378   EmpathyTpCallPriv *priv = GET_PRIV (call);
379   EmpathyContact *self_contact;
380   GList *members;
381   GList *local_pendings;
382   GList *remote_pendings;
383
384   if (priv->status > EMPATHY_TP_CALL_STATUS_READYING)
385     return;
386
387   members = empathy_tp_group_get_members (priv->group);
388   if (!members)
389     return;
390
391   self_contact = empathy_tp_group_get_self_contact (priv->group);
392   local_pendings = empathy_tp_group_get_local_pendings (priv->group);
393   remote_pendings = empathy_tp_group_get_remote_pendings (priv->group);
394
395   if (local_pendings &&
396       empathy_contact_equal (EMPATHY_CONTACT (((EmpathyPendingInfo *)
397             local_pendings->data)->member), self_contact))
398     {
399       empathy_debug (DEBUG_DOMAIN,
400           "Incoming call is ready - %p",
401           ((EmpathyPendingInfo *) local_pendings->data)->member);
402       priv->is_incoming = TRUE;
403       priv->contact = g_object_ref (members->data);
404     }
405   else if (remote_pendings &&
406       empathy_contact_equal (EMPATHY_CONTACT (members->data), self_contact))
407     {
408       empathy_debug (DEBUG_DOMAIN,
409           "Outgoing call is ready - %p", remote_pendings->data);
410       priv->is_incoming = FALSE;
411       priv->contact = g_object_ref (remote_pendings->data);
412       tp_call_request_streams (call);
413     }
414
415   g_object_unref (self_contact);
416   g_list_foreach (members, (GFunc) g_object_unref, NULL);
417   g_list_free (members);
418   g_list_foreach (local_pendings, (GFunc) empathy_pending_info_free, NULL);
419   g_list_free (local_pendings);
420   g_list_foreach (remote_pendings, (GFunc) g_object_unref, NULL);
421   g_list_free (remote_pendings);
422
423   if (priv->contact)
424     {
425       priv->status = EMPATHY_TP_CALL_STATUS_PENDING;
426       g_signal_emit (call, signals[STATUS_CHANGED_SIGNAL], 0);
427     }
428 }
429
430 static void
431 tp_call_member_added_cb (EmpathyTpGroup *group,
432                          EmpathyContact *contact,
433                          EmpathyContact *actor,
434                          guint reason,
435                          const gchar *message,
436                          EmpathyTpCall *call)
437 {
438   EmpathyTpCallPriv *priv = GET_PRIV (call);
439
440   empathy_debug (DEBUG_DOMAIN, "New member added callback %p", contact);
441   tp_call_is_ready (call);
442
443   if (priv->status == EMPATHY_TP_CALL_STATUS_PENDING)
444     {
445       if ((priv->is_incoming &&
446             !empathy_contact_equal (contact, priv->contact))
447           || (!priv->is_incoming &&
448             empathy_contact_equal (contact, priv->contact)))
449         {
450           priv->status = EMPATHY_TP_CALL_STATUS_ACCEPTED;
451           g_signal_emit (call, signals[STATUS_CHANGED_SIGNAL], 0);
452         }
453     }
454 }
455
456 static void
457 tp_call_local_pending_cb (EmpathyTpGroup *group,
458                           EmpathyContact *contact,
459                           EmpathyContact *actor,
460                           guint reason,
461                           const gchar *message,
462                           EmpathyTpCall *call)
463 {
464   empathy_debug (DEBUG_DOMAIN, "New local pending added callback %p", contact);
465   tp_call_is_ready (call);
466 }
467
468 static void
469 tp_call_remote_pending_cb (EmpathyTpGroup *group,
470                            EmpathyContact *contact,
471                            EmpathyContact *actor,
472                            guint reason,
473                            const gchar *message,
474                            EmpathyTpCall *call)
475 {
476   empathy_debug (DEBUG_DOMAIN, "New remote pending added callback %p", contact);
477   tp_call_is_ready (call);
478 }
479
480 static void
481 tp_call_async_cb (TpProxy *proxy,
482                   const GError *error,
483                   gpointer user_data,
484                   GObject *call)
485 {
486   if (error)
487     {
488       empathy_debug (DEBUG_DOMAIN, "Error %s: %s",
489           user_data, error->message);
490     }
491 }
492
493 static void
494 tp_call_invalidated_cb (TpProxy       *stream_engine,
495                         GQuark         domain,
496                         gint           code,
497                         gchar         *message,
498                         EmpathyTpCall *call)
499 {
500   empathy_debug (DEBUG_DOMAIN, "Stream engine proxy invalidated: %s",
501       message);
502   empathy_tp_call_close_channel (call);
503 }
504
505 static void
506 tp_call_start_stream_engine (EmpathyTpCall *call)
507 {
508   EmpathyTpCallPriv *priv = GET_PRIV (call);
509
510   empathy_debug (DEBUG_DOMAIN, "Revving up the stream engine");
511
512   priv->stream_engine = g_object_new (TP_TYPE_PROXY,
513       "bus-name", STREAM_ENGINE_BUS_NAME,
514       "dbus-connection", tp_get_bus (),
515       "object-path", STREAM_ENGINE_OBJECT_PATH);
516   tp_proxy_add_interface_by_id (priv->stream_engine,
517       EMP_IFACE_QUARK_STREAM_ENGINE);
518   tp_proxy_add_interface_by_id (priv->stream_engine,
519       EMP_IFACE_QUARK_CHANNEL_HANDLER);
520
521   g_signal_connect (priv->stream_engine, "invalidated",
522       G_CALLBACK (tp_call_invalidated_cb),
523       call);
524
525   emp_cli_channel_handler_call_handle_channel (priv->stream_engine, -1,
526         dbus_g_proxy_get_bus_name (DBUS_G_PROXY (priv->connection)),
527         dbus_g_proxy_get_path (DBUS_G_PROXY (priv->connection)),
528         priv->channel->type,
529         dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)),
530         priv->channel->handle_type, priv->channel->handle,
531         tp_call_async_cb,
532         "calling handle channel", NULL,
533         G_OBJECT (call));
534 }
535
536 static GObject *
537 tp_call_constructor (GType type,
538                      guint n_construct_params,
539                      GObjectConstructParam *construct_params)
540 {
541   GObject *object;
542   EmpathyTpCall *call;
543   EmpathyTpCallPriv *priv;
544   DBusGProxy *streamed_iface;
545   MissionControl *mc;
546   McAccount *account;
547
548   object = G_OBJECT_CLASS (empathy_tp_call_parent_class)->constructor (type,
549       n_construct_params, construct_params);
550
551   call = EMPATHY_TP_CALL (object);
552   priv = GET_PRIV (call);
553
554   dbus_g_proxy_connect_signal (DBUS_G_PROXY (priv->channel), "Closed",
555      G_CALLBACK (tp_call_channel_closed_cb), (gpointer) call, NULL);
556
557   streamed_iface = tp_chan_get_interface (priv->channel,
558       TELEPATHY_CHAN_IFACE_STREAMED_QUARK);
559   dbus_g_proxy_connect_signal (streamed_iface, "StreamStateChanged",
560       G_CALLBACK (tp_call_stream_state_changed_cb),
561       (gpointer) call, NULL);
562   dbus_g_proxy_connect_signal (streamed_iface, "StreamDirectionChanged",
563       G_CALLBACK (tp_call_stream_direction_changed_cb),
564       (gpointer) call, NULL);
565   dbus_g_proxy_connect_signal (streamed_iface, "StreamAdded",
566       G_CALLBACK (tp_call_stream_added_cb), (gpointer) call, NULL);
567   dbus_g_proxy_connect_signal (streamed_iface, "StreamRemoved",
568       G_CALLBACK (tp_call_stream_removed_cb), (gpointer) call, NULL);
569
570   mc = empathy_mission_control_new ();
571   account = mission_control_get_account_for_connection (mc, priv->connection,
572       NULL);
573   priv->group = empathy_tp_group_new (account, priv->channel);
574   g_object_unref (mc);
575
576   g_signal_connect (G_OBJECT (priv->group), "member-added",
577       G_CALLBACK (tp_call_member_added_cb), (gpointer) call);
578   g_signal_connect (G_OBJECT (priv->group), "local-pending",
579       G_CALLBACK (tp_call_local_pending_cb), (gpointer) call);
580   g_signal_connect (G_OBJECT (priv->group), "remote-pending",
581       G_CALLBACK (tp_call_remote_pending_cb), (gpointer) call);
582
583   tp_call_start_stream_engine (call);
584   /* FIXME: unnecessary for outgoing? */
585   tp_call_identify_streams (call);
586
587   return object;
588 }
589
590 static void 
591 tp_call_finalize (GObject *object)
592 {
593   EmpathyTpCallPriv *priv = GET_PRIV (object);
594
595   empathy_debug (DEBUG_DOMAIN, "Finalizing: %p", object);
596
597   g_slice_free (EmpathyTpCallStream, priv->audio);
598   g_slice_free (EmpathyTpCallStream, priv->video);
599   g_object_unref (priv->group);
600
601   if (priv->connection != NULL)
602     g_object_unref (priv->connection);
603
604   if (priv->channel != NULL)
605     g_object_unref (priv->channel);
606
607   if (priv->stream_engine != NULL)
608     g_object_unref (priv->stream_engine);
609
610   if (priv->contact)
611       g_object_unref (priv->contact);
612
613   (G_OBJECT_CLASS (empathy_tp_call_parent_class)->finalize) (object);
614 }
615
616 static void 
617 tp_call_set_property (GObject *object,
618                       guint prop_id,
619                       const GValue *value,
620                       GParamSpec *pspec)
621 {
622   EmpathyTpCallPriv *priv = GET_PRIV (object);
623
624   switch (prop_id)
625     {
626     case PROP_CONNECTION:
627       priv->connection = g_value_dup_object (value);
628       break;
629     case PROP_CHANNEL:
630       priv->channel = g_value_dup_object (value);
631       break;
632     case PROP_CONTACT:
633       /* FIXME should this one be writable in the first place ? */
634       g_assert (priv->contact == NULL);
635       priv->contact = g_value_dup_object (value);
636       break;
637     case PROP_IS_INCOMING:
638       priv->is_incoming = g_value_get_boolean (value);
639       break;
640     case PROP_STATUS:
641       priv->status = g_value_get_uint (value);
642       break;
643     case PROP_AUDIO_STREAM:
644       priv->audio = g_value_get_pointer (value);
645       break;
646     case PROP_VIDEO_STREAM:
647       priv->video = g_value_get_pointer (value);
648       break;
649     default:
650       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
651       break;
652   }
653 }
654
655
656 static void
657 tp_call_get_property (GObject *object,
658                       guint prop_id,
659                       GValue *value,
660                       GParamSpec *pspec)
661 {
662   EmpathyTpCallPriv *priv = GET_PRIV (object);
663
664   switch (prop_id)
665     {
666     case PROP_CONNECTION:
667       g_value_set_object (value, priv->connection);
668       break;
669     case PROP_CHANNEL:
670       g_value_set_object (value, priv->channel);
671       break;
672     case PROP_CONTACT:
673       g_value_set_object (value, priv->contact);
674       break;
675     case PROP_IS_INCOMING:
676       g_value_set_boolean (value, priv->is_incoming);
677       break;
678     case PROP_STATUS:
679       g_value_set_uint (value, priv->status);
680       break;
681     case PROP_AUDIO_STREAM:
682       g_value_set_pointer (value, priv->audio);
683       break;
684     case PROP_VIDEO_STREAM:
685       g_value_set_pointer (value, priv->video);
686       break;
687     default:
688       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
689       break;
690   }
691 }
692
693 static void
694 empathy_tp_call_class_init (EmpathyTpCallClass *klass)
695 {
696   GObjectClass *object_class = G_OBJECT_CLASS (klass);
697
698   emp_cli_init ();
699
700   object_class->constructor = tp_call_constructor;
701   object_class->finalize = tp_call_finalize;
702   object_class->set_property = tp_call_set_property;
703   object_class->get_property = tp_call_get_property;
704
705   g_type_class_add_private (klass, sizeof (EmpathyTpCallPriv));
706
707   signals[STATUS_CHANGED_SIGNAL] =
708       g_signal_new ("status-changed", G_TYPE_FROM_CLASS (klass),
709       G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID,
710       G_TYPE_NONE, 0);
711   signals[RECEIVING_VIDEO_SIGNAL] =
712       g_signal_new ("receiving-video", G_TYPE_FROM_CLASS (klass),
713       G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__BOOLEAN,
714       G_TYPE_NONE, 1, G_TYPE_BOOLEAN);
715   signals[SENDING_VIDEO_SIGNAL] =
716       g_signal_new ("sending-video", G_TYPE_FROM_CLASS (klass),
717       G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__BOOLEAN,
718       G_TYPE_NONE, 1, G_TYPE_BOOLEAN);
719
720   g_object_class_install_property (object_class, PROP_CONNECTION,
721       g_param_spec_object ("connection", "connection", "connection",
722       TELEPATHY_CONN_TYPE,
723       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
724       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
725   g_object_class_install_property (object_class, PROP_CHANNEL,
726       g_param_spec_object ("channel", "channel", "channel",
727       TELEPATHY_CHAN_TYPE,
728       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
729       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
730   g_object_class_install_property (object_class, PROP_CONTACT,
731       g_param_spec_object ("contact", "Call contact", "Call contact",
732       EMPATHY_TYPE_CONTACT,
733       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
734   g_object_class_install_property (object_class, PROP_IS_INCOMING,
735       g_param_spec_boolean ("is-incoming", "Is media stream incoming",
736       "Is media stream incoming", FALSE, G_PARAM_READABLE |
737       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
738   g_object_class_install_property (object_class, PROP_STATUS,
739       g_param_spec_uint ("status", "Call status",
740       "Call status", 0, 255, 0, G_PARAM_READABLE | G_PARAM_STATIC_NICK |
741       G_PARAM_STATIC_BLURB));
742   g_object_class_install_property (object_class, PROP_AUDIO_STREAM,
743       g_param_spec_pointer ("audio-stream", "Audio stream data",
744       "Audio stream data",
745       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
746   g_object_class_install_property (object_class, PROP_VIDEO_STREAM,
747       g_param_spec_pointer ("video-stream", "Video stream data",
748       "Video stream data",
749       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
750 }
751
752 static void
753 empathy_tp_call_init (EmpathyTpCall *call)
754 {
755   EmpathyTpCallPriv *priv = GET_PRIV (call);
756
757   priv->status = EMPATHY_TP_CALL_STATUS_READYING;
758   priv->contact = NULL;
759   priv->audio = g_slice_new0 (EmpathyTpCallStream);
760   priv->video = g_slice_new0 (EmpathyTpCallStream);
761   priv->audio->exists = FALSE;
762   priv->video->exists = FALSE;
763 }
764
765 EmpathyTpCall *
766 empathy_tp_call_new (TpConn *connection, TpChan *channel)
767 {
768   return g_object_new (EMPATHY_TYPE_TP_CALL,
769       "connection", connection,
770       "channel", channel,
771       NULL);
772 }
773
774 void
775 empathy_tp_call_accept_incoming_call (EmpathyTpCall *call)
776 {
777   EmpathyTpCallPriv *priv = GET_PRIV (call);
778   GList *local_pendings;
779
780   empathy_debug (DEBUG_DOMAIN, "Accepting incoming call");
781
782   local_pendings = empathy_tp_group_get_local_pendings (priv->group);
783
784   empathy_tp_group_add_member (priv->group, EMPATHY_CONTACT
785       (((EmpathyPendingInfo *) local_pendings->data)->member), NULL);
786
787   g_list_foreach (local_pendings, (GFunc) empathy_pending_info_free, NULL);
788   g_list_free (local_pendings);
789 }
790
791 void
792 empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call,
793                                                 gboolean is_sending)
794 {
795   EmpathyTpCallPriv *priv = GET_PRIV (call);
796   DBusGProxy *streamed_iface;
797   guint new_direction;
798   GError *error = NULL;
799
800   empathy_debug (DEBUG_DOMAIN,
801       "Requesting video stream direction - is_sending: %d", is_sending);
802
803   if (!priv->video->exists)
804     {
805       tp_call_request_streams_for_capabilities (call, EMPATHY_CAPABILITIES_VIDEO);
806       return;
807     }
808
809   streamed_iface = tp_chan_get_interface (priv->channel,
810       TELEPATHY_CHAN_IFACE_STREAMED_QUARK);
811
812   if (is_sending)
813     {
814       new_direction = priv->video->direction | TP_MEDIA_STREAM_DIRECTION_SEND;
815     }
816   else
817     {
818       new_direction = priv->video->direction & ~TP_MEDIA_STREAM_DIRECTION_SEND;
819     }
820
821   if (!tp_chan_type_streamed_media_request_stream_direction (streamed_iface,
822         priv->video->id, new_direction, &error))
823     {
824       empathy_debug (DEBUG_DOMAIN,
825           "Couldn't request video stream direction: %s", error->message);
826       g_clear_error (&error);
827     }
828 }
829
830 void
831 empathy_tp_call_close_channel (EmpathyTpCall *call)
832 {
833   EmpathyTpCallPriv *priv = GET_PRIV (call);
834   GError *error = NULL;
835
836   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
837       return;
838
839   empathy_debug (DEBUG_DOMAIN, "Closing channel");
840
841   if (!tp_chan_close (DBUS_G_PROXY (priv->channel), &error))
842     {
843       empathy_debug (DEBUG_DOMAIN, "Error closing channel: %s",
844           error ? error->message : "No error given");
845       g_clear_error (&error);
846     }
847   else
848         priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
849 }
850
851 void
852 empathy_tp_call_add_preview_video (EmpathyTpCall *call,
853                                    guint preview_video_socket_id)
854 {
855   EmpathyTpCallPriv *priv = GET_PRIV (call);
856
857   empathy_debug (DEBUG_DOMAIN, "Adding preview video");
858
859   emp_cli_stream_engine_call_add_preview_window (priv->stream_engine, -1,
860       preview_video_socket_id,
861       tp_call_async_cb,
862       "adding preview window", NULL,
863       G_OBJECT (call));
864 }
865
866 void
867 empathy_tp_call_remove_preview_video (EmpathyTpCall *call,
868                                       guint preview_video_socket_id)
869 {
870   EmpathyTpCallPriv *priv = GET_PRIV (call);
871
872   empathy_debug (DEBUG_DOMAIN, "Removing preview video");
873
874   emp_cli_stream_engine_call_remove_preview_window (priv->stream_engine, -1,
875       preview_video_socket_id,
876       tp_call_async_cb,
877       "removing preview window", NULL,
878       G_OBJECT (call));
879 }
880
881 void
882 empathy_tp_call_add_output_video (EmpathyTpCall *call,
883                                   guint output_video_socket_id)
884 {
885   EmpathyTpCallPriv *priv = GET_PRIV (call);
886
887   empathy_debug (DEBUG_DOMAIN, "Adding output video - socket: %d",
888       output_video_socket_id);
889
890   emp_cli_stream_engine_call_set_output_window (priv->stream_engine, -1,
891       dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)),
892       priv->video->id, output_video_socket_id,
893       tp_call_async_cb,
894       "setting output window", NULL,
895       G_OBJECT (call));
896 }
897
898 void
899 empathy_tp_call_set_output_volume (EmpathyTpCall *call,
900                                    guint volume)
901 {
902   EmpathyTpCallPriv *priv = GET_PRIV (call);
903
904   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
905     return;
906
907   empathy_debug (DEBUG_DOMAIN, "Setting output volume: %d", volume);
908
909   emp_cli_stream_engine_call_set_output_volume (priv->stream_engine, -1,
910       dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)),
911       priv->audio->id, volume,
912       tp_call_async_cb,
913       "setting output volume", NULL,
914       G_OBJECT (call));
915 }
916
917 void
918 empathy_tp_call_mute_output (EmpathyTpCall *call,
919                              gboolean is_muted)
920 {
921   EmpathyTpCallPriv *priv = GET_PRIV (call);
922
923   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
924     return;
925
926   empathy_debug (DEBUG_DOMAIN, "Setting output mute: %d", is_muted);
927
928   emp_cli_stream_engine_call_mute_output (priv->stream_engine, -1,
929       dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)),
930       priv->audio->id, is_muted,
931       tp_call_async_cb,
932       "muting output", NULL,
933       G_OBJECT (call));
934 }
935
936 void
937 empathy_tp_call_mute_input (EmpathyTpCall *call,
938                             gboolean is_muted)
939 {
940   EmpathyTpCallPriv *priv = GET_PRIV (call);
941
942   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
943     return;
944
945   empathy_debug (DEBUG_DOMAIN, "Setting input mute: %d", is_muted);
946
947   emp_cli_stream_engine_call_mute_input (priv->stream_engine, -1,
948       dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)),
949       priv->audio->id, is_muted,
950       tp_call_async_cb,
951       "muting input", NULL,
952       G_OBJECT (call));
953 }
954