summaryrefslogtreecommitdiff
path: root/telepathy-glib/channel-manager-request-internal.h
blob: b3306a0b8783bdbb5490ae936c0bc9d7e24c1b8d (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * channel-manager-request-internal.h
 *
 * Copyright (C) 2014 Collabora Ltd. <http://www.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, see <http://www.gnu.org/licenses/>.
 */

#ifndef __TP_CHANNEL_MANAGER_REQUEST_INTERNAL_H__
#define __TP_CHANNEL_MANAGER_REQUEST_INTERNAL_H__

#include "channel-manager-request.h"

#include <glib-object.h>

#include <telepathy-glib/_gdbus/Connection_Interface_Requests.h>
#include <telepathy-glib/telepathy-glib.h>

G_BEGIN_DECLS

typedef enum {
    TP_CHANNEL_MANAGER_REQUEST_METHOD_CREATE_CHANNEL,
    TP_CHANNEL_MANAGER_REQUEST_METHOD_ENSURE_CHANNEL,
    TP_NUM_CHANNEL_MANAGER_REQUEST_METHODS,
} TpChannelManagerRequestMethod;

struct _TpChannelManagerRequestClass
{
  /*<private>*/
  GObjectClass parent_class;
};

struct _TpChannelManagerRequest
{
  /*<private>*/
  GObject parent;

  GDBusMethodInvocation *context;
  _TpGDBusConnectionInterfaceRequests *skeleton;
  TpChannelManagerRequestMethod method;

  gchar *channel_type;
  TpEntityType entity_type;
  TpHandle handle;

  /* only meaningful for METHOD_ENSURE_CHANNEL; only true if this is the first
   * request to be satisfied with a particular channel, and no other request
   * satisfied by that channel has a different method.
   */
  gboolean yours;
};

GType tp_channel_manager_request_get_type (void);

/* TYPE MACROS */
#define TP_TYPE_CHANNEL_MANAGER_REQUEST \
  (tp_channel_manager_request_get_type ())
#define TP_CHANNEL_MANAGER_REQUEST(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), \
    TP_TYPE_CHANNEL_MANAGER_REQUEST, \
    TpChannelManagerRequest))
#define TP_CHANNEL_MANAGER_REQUEST_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST((klass), \
    TP_TYPE_CHANNEL_MANAGER_REQUEST, \
    TpChannelManagerRequestClass))
#define TP_IS_CHANNEL_MANAGER_REQUEST(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
    TP_TYPE_CHANNEL_MANAGER_REQUEST))
#define TP_IS_CHANNEL_MANAGER_REQUEST_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass), \
    TP_TYPE_CHANNEL_MANAGER_REQUEST))
#define TP_CHANNEL_MANAGER_REQUEST_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
    TP_TYPE_CHANNEL_MANAGER_REQUEST, \
    TpChannelManagerRequestClass))

TpChannelManagerRequest * _tp_channel_manager_request_new (
    GDBusMethodInvocation *context,
    _TpGDBusConnectionInterfaceRequests *skeleton,
    TpChannelManagerRequestMethod method,
    const char *channel_type,
    TpEntityType entity_type,
    TpHandle handle);

void _tp_channel_manager_request_cancel (TpChannelManagerRequest *self);

void _tp_channel_manager_request_satisfy (TpChannelManagerRequest *self,
    TpBaseChannel *channel);

void _tp_channel_manager_request_fail (TpChannelManagerRequest *self,
    GError *error);

G_END_DECLS

#endif /* #ifndef __TP_CHANNEL_MANAGER_REQUEST_INTERNAL_H__*/