summaryrefslogtreecommitdiff
path: root/src/ring-call-stream.c
blob: d79e83f77e634ae12aa0688a923e414e8d066ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * ring-call-stream.c - a Stream object owned by a RingCallContent
 * Copyright ©2010 Collabora Ltd.
 * Copyright ©2010 Nokia Corporation
 *   @author Will Thompson <will.thompson@collabora.co.uk>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "ring-call-stream.h"

#define DEBUG_FLAG RING_DEBUG_MEDIA
#include "ring-debug.h"

static void implement_call_stream (gpointer klass, gpointer unused);

G_DEFINE_TYPE_WITH_CODE (RingCallStream, ring_call_stream,
    GABBLE_TYPE_BASE_CALL_STREAM,
    G_IMPLEMENT_INTERFACE (RING_TYPE_SVC_CALL_STREAM, implement_call_stream)
)

static void
ring_call_stream_init (RingCallStream *self)
{
}

static void
ring_call_stream_class_init (RingCallStreamClass *klass)
{
}

RingCallStream *
ring_call_stream_new (RingConnection *connection,
    const gchar *object_path)
{
  return g_object_new (RING_TYPE_CALL_STREAM,
      "connection", connection,
      "object-path", object_path,
      NULL);
}

static void
ring_call_stream_set_sending (
    RingSvcCallStream *self,
    gboolean send,
    DBusGMethodInvocation *context)
{
  GError error = { TP_ERRORS, TP_ERROR_NOT_IMPLEMENTED,
      "SetSending is not supported for cellular calls." };

 /* Maybe we should put the call on hold/resume? */

  dbus_g_method_return_error (context, &error);
}

static void
ring_call_stream_request_receiving (
    RingSvcCallStream *self,
    TpHandle contact,
    gboolean receive,
    DBusGMethodInvocation *context)
{
  GError error = { TP_ERRORS, TP_ERROR_NOT_IMPLEMENTED,
      "RequestReceiving is not supported for cellular calls." };

  dbus_g_method_return_error (context, &error);
}

static void
implement_call_stream (gpointer klass,
    gpointer unused G_GNUC_UNUSED)
{
#define IMPLEMENT(x) ring_svc_call_stream_implement_##x (\
  klass, ring_call_stream_##x)
  IMPLEMENT (set_sending);
  IMPLEMENT (request_receiving);
#undef IMPLEMENT
}