summaryrefslogtreecommitdiff
path: root/ytstenut/yts-contact-internal.h
blob: eafc1473c305b1450aa904f74a04c1b5a9398645 (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
/*
 * Copyright © 2011 Intel Corp.
 *
 * 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 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/>.
 *
 * Authored by: Rob Staudinger <robsta@linux.intel.com>
 */

#ifndef YTS_CONTACT_INTERNAL_H
#define YTS_CONTACT_INTERNAL_H

#include <stdbool.h>
#include <telepathy-glib/channel.h>
#include <telepathy-glib/contact.h>
#include <ytstenut/yts-contact.h>

#define YTS_CONTACT_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), YTS_TYPE_CONTACT, YtsContactClass))

#define YTS_IS_CONTACT_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), YTS_TYPE_CONTACT))

#define YTS_CONTACT_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), YTS_TYPE_CONTACT, YtsContactClass))

struct YtsContact {
  GObject parent;
};

typedef struct {
  GObjectClass parent;
} YtsContactClass;

bool
yts_contact_dispatch_event (YtsContact  *self,
                            char const  *capability,
                            char const  *aspect,
                            GVariant    *arguments);

bool
yts_contact_dispatch_response (YtsContact *self,
                               char const *capability,
                               char const *invocation_id,
                               GVariant   *response);

void
yts_contact_add_service (YtsContact *contact,
                         YtsService *service);

YtsService *const
yts_contact_find_service_by_id (YtsContact  *self,
                                char const  *service_id);

TpContact *const
yts_contact_get_tp_contact (YtsContact const *self);

void
yts_contact_remove_service_by_id (YtsContact  *contact,
                                  char const  *service_id);

bool
yts_contact_is_empty (YtsContact *contact);

void
yts_contact_set_ft_channel (YtsContact  *item,
                            TpChannel   *channel);

void
yts_contact_update_service_status (YtsContact *self,
                                   char const *service_id,
                                   char const *fqc_id,
                                   char const *status_xml);

#endif /* YTS_CONTACT_INTERNAL_H */