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
|
/*
* contact-list
*
* Copyright © 2011 Collabora Ltd. <http://www.collabora.co.uk/>
*
* Copying and distribution of this file, with or without modification,
* are permitted in any medium without royalty provided the copyright
* notice and this notice are preserved.
*/
#include "config.h"
#include <telepathy-glib/telepathy-glib.h>
static void
account_manager_prepared_cb (GObject *object,
GAsyncResult *res,
gpointer user_data)
{
TpAccountManager *manager = (TpAccountManager *) object;
GMainLoop *loop = user_data;
GList *accounts, *l;
GError *error = NULL;
if (!tp_proxy_prepare_finish (object, res, &error))
{
g_print ("Error preparing AM: %s\n", error->message);
goto OUT;
}
accounts = tp_account_manager_dup_valid_accounts (manager);
for (l = accounts; l != NULL; l = l->next)
{
TpAccount *account = accounts->data;
TpConnection *connection = tp_account_get_connection (account);
GPtrArray *contacts;
guint i;
/* Verify account is online and received its contact list. If state is not
* SUCCESS this means we didn't received the roster from server yet and
* we would have to wait for the "notify:contact-list-state" signal. */
if (connection == NULL ||
tp_connection_get_contact_list_state (connection) !=
TP_CONTACT_LIST_STATE_SUCCESS)
continue;
contacts = tp_connection_dup_contact_list (connection);
for (i = 0; i < contacts->len; i++)
{
TpContact *contact = g_ptr_array_index (contacts, i);
const gchar * const *groups;
g_print ("contact %s (%s) in groups:\n",
tp_contact_get_identifier (contact),
tp_contact_get_alias (contact));
for (groups = tp_contact_get_contact_groups (contact);
*groups != NULL; groups++)
g_print (" %s\n", *groups);
}
g_ptr_array_unref (contacts);
}
g_list_free_full (accounts, g_object_unref);
OUT:
g_main_loop_quit (loop);
}
int
main (int argc,
char **argv)
{
TpAccountManager *manager;
TpSimpleClientFactory *factory;
GMainLoop *loop;
g_type_init ();
tp_debug_set_flags (g_getenv ("EXAMPLE_DEBUG"));
loop = g_main_loop_new (NULL, FALSE);
manager = tp_account_manager_dup ();
factory = tp_proxy_get_factory (manager);
tp_simple_client_factory_add_account_features_varargs (factory,
TP_ACCOUNT_FEATURE_CONNECTION,
0);
tp_simple_client_factory_add_connection_features_varargs (factory,
TP_CONNECTION_FEATURE_CONTACT_LIST,
0);
tp_simple_client_factory_add_contact_features_varargs (factory,
TP_CONTACT_FEATURE_ALIAS,
TP_CONTACT_FEATURE_CONTACT_GROUPS,
TP_CONTACT_FEATURE_INVALID);
tp_proxy_prepare_async (manager, NULL, account_manager_prepared_cb, loop);
g_main_loop_run (loop);
g_object_unref (manager);
g_main_loop_unref (loop);
return 0;
}
|