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
|
/*
* telepathy-example-list-managers - list installed connection managers
*
* Copyright (C) 2007-2008 Collabora Ltd. <http://www.collabora.co.uk/>
* Copyright (C) 2007-2008 Nokia Corporation
*
* 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 <telepathy-glib/telepathy-glib.h>
typedef struct {
GMainLoop *mainloop;
int exit_code;
} ExampleData;
static void
got_connection_managers (TpConnectionManager * const *cms,
gsize n_cms,
const GError *error,
gpointer user_data,
GObject *unused)
{
ExampleData *data = user_data;
if (error != NULL)
{
g_warning ("%s", error->message);
data->exit_code = 1;
}
else
{
TpConnectionManager * const *iter = cms;
g_message ("Found %" G_GSIZE_FORMAT " connection managers:", n_cms);
for (iter = cms; *iter != NULL; iter++)
{
gchar *name;
g_object_get (*iter,
"connection-manager", &name,
NULL);
g_message ("- %s", name);
g_free (name);
}
}
g_main_loop_quit (data->mainloop);
}
int
main (int argc,
char **argv)
{
ExampleData data = { g_main_loop_new (NULL, FALSE), 0 };
TpDBusDaemon *bus_daemon;
GError *error = NULL;
g_type_init ();
tp_debug_set_flags (g_getenv ("EXAMPLE_DEBUG"));
bus_daemon = tp_dbus_daemon_dup (&error);
if (bus_daemon == NULL)
{
g_warning ("%s", error->message);
g_error_free (error);
data.exit_code = 1;
goto out;
}
tp_list_connection_managers (bus_daemon, got_connection_managers, &data,
NULL, NULL);
g_main_loop_run (data.mainloop);
out:
if (data.mainloop != NULL)
g_main_loop_unref (data.mainloop);
if (bus_daemon != NULL)
g_object_unref (bus_daemon);
return data.exit_code;
}
|