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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
/*
* telepathy-example-inspect-cm - inspect a connection manager
*
* Usage:
*
* telepathy-example-inspect-cm gabble
* Inspect the Gabble connection manager, by reading the installed
* .manager file if available, and introspecting the running CM if not
*
* telepathy-example-inspect-cm gabble data/gabble.manager
* As above, but assume the given filename is correct
*
* telepathy-example-inspect-cm gabble ""
* Don't read any .manager file, just introspect the running CM
*
* Copyright (C) 2007 Collabora Ltd. <http://www.collabora.co.uk/>
* Copyright (C) 2007 Nokia Corporation
* Copyright (C) 2013 Intel 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 "config.h"
#include <stdio.h>
#include <telepathy-glib/telepathy-glib.h>
static const gchar *
nonnull (const gchar *s)
{
if (s == NULL)
return "(null)";
return s;
}
static void
show_cm (TpConnectionManager *cm)
{
GList *protocols;
g_message ("Connection manager name: %s",
tp_connection_manager_get_name (cm));
g_message ("Is running: %s",
tp_connection_manager_is_running (cm) ? "yes" : "no");
g_message ("Source of information: %s",
tp_connection_manager_get_info_source (cm) == TP_CM_INFO_SOURCE_LIVE
? "D-Bus" : ".manager file");
protocols = tp_connection_manager_dup_protocols (cm);
while (protocols)
{
TpProtocol *protocol = protocols->data;
GList *params;
const gchar *const *strv;
const gchar *const *strv_iter;
TpAvatarRequirements *avatar_reqs;
g_message ("Protocol: %s", tp_protocol_get_name (protocol));
g_message ("\tEnglish name: %s", tp_protocol_get_english_name (protocol));
g_message ("\tIcon name: %s", tp_protocol_get_icon_name (protocol));
g_message ("\tvCard field: %s",
nonnull (tp_protocol_get_vcard_field (protocol)));
g_message ("\tCan register accounts via Telepathy: %s",
tp_protocol_can_register (protocol) ? "yes" : "no");
strv = tp_protocol_get_authentication_types (protocol);
for (strv_iter = strv;
strv_iter != NULL && *strv_iter != NULL;
strv_iter++)
g_message ("\tAuthentication type: %s", *strv_iter);
avatar_reqs = tp_protocol_get_avatar_requirements (protocol);
if (avatar_reqs == NULL)
{
g_message ("\tNo known avatar requirements, or no avatar support");
}
else
{
gboolean first = TRUE;
g_message ("\tAvatar requirements:");
for (strv_iter =
(const gchar * const *) avatar_reqs->supported_mime_types;
strv_iter != NULL && *strv_iter != NULL;
strv_iter++)
{
g_message ("\t\t%s MIME type: %s",
(first ? "Recommended" : "Supported"),
*strv_iter);
first = FALSE;
}
g_message ("\t\tMinimum: %ux%u px",
avatar_reqs->minimum_width,
avatar_reqs->minimum_height);
g_message ("\t\tRecommended: %ux%u px",
avatar_reqs->recommended_width,
avatar_reqs->recommended_height);
g_message ("\t\tMaximum: %ux%u px, %u bytes",
avatar_reqs->maximum_width,
avatar_reqs->maximum_height,
avatar_reqs->maximum_bytes);
}
params = tp_protocol_dup_params (protocol);
while (params)
{
TpConnectionManagerParam *param = params->data;
GValue value = { 0 };
g_message ("\tParameter: %s",
tp_connection_manager_param_get_name (param));
g_message ("\t\tD-Bus signature: %s",
tp_connection_manager_param_get_dbus_signature (param));
g_message ("\t\tIs required: %s",
tp_connection_manager_param_is_required (param) ?
"yes" : "no");
if (tp_protocol_can_register (protocol))
{
g_message ("\t\tIs required for registration: %s",
tp_connection_manager_param_is_required_for_registration (
param) ? "yes" : "no");
}
g_message ("\t\tIs secret (password etc.): %s",
tp_connection_manager_param_is_secret (param) ?
"yes" : "no");
g_message ("\t\tIs a D-Bus property: %s",
tp_connection_manager_param_is_dbus_property (param) ?
"yes" : "no");
if (tp_connection_manager_param_get_default (param, &value))
{
gchar *s = g_strdup_value_contents (&value);
g_message ("\t\tDefault value: %s", s);
g_free (s);
g_value_unset (&value);
}
else
{
g_message ("\t\tNo default value");
}
tp_connection_manager_param_free (param);
params = g_list_delete_link (params, params);
}
g_object_unref (protocol);
protocols = g_list_delete_link (protocols, protocols);
}
}
static void
list_cb (GObject *source G_GNUC_UNUSED,
GAsyncResult *result,
gpointer user_data)
{
GMainLoop *mainloop = user_data;
GError *error = NULL;
GList *cms = tp_list_connection_managers_finish (result, &error);
if (error != NULL)
{
g_warning ("Error getting list of CMs: %s", error->message);
g_error_free (error);
}
else if (cms == NULL)
{
g_message ("No Telepathy connection managers found");
}
else
{
while (cms != NULL)
{
show_cm (cms->data);
g_object_unref (cms->data);
cms = g_list_delete_link (cms, cms);
if (cms != NULL)
g_message ("----------------------------------------");
}
}
g_main_loop_quit (mainloop);
}
static void
ready (GObject *source,
GAsyncResult *result,
gpointer user_data)
{
TpConnectionManager *cm = TP_CONNECTION_MANAGER (source);
GMainLoop *mainloop = user_data;
GError *error = NULL;
if (!tp_proxy_prepare_finish (cm, result, &error))
{
g_assert (!tp_proxy_is_prepared (cm,
TP_CONNECTION_MANAGER_FEATURE_CORE));
g_warning ("Error getting CM info: %s", error->message);
g_error_free (error);
}
else
{
g_assert (tp_proxy_is_prepared (cm,
TP_CONNECTION_MANAGER_FEATURE_CORE));
show_cm (cm);
}
g_main_loop_quit (mainloop);
}
int
main (int argc,
char **argv)
{
const gchar *cm_name, *manager_file;
TpConnectionManager *cm = NULL;
GMainLoop *mainloop = NULL;
GError *error = NULL;
TpDBusDaemon *dbus = NULL;
int ret = 1;
tp_debug_set_flags (g_getenv ("EXAMPLE_DEBUG"));
if (g_getenv ("EXAMPLE_TIMING") != NULL)
g_log_set_default_handler (tp_debug_timestamped_log_handler, NULL);
dbus = tp_dbus_daemon_dup (&error);
if (dbus == NULL)
{
g_warning ("%s", error->message);
g_error_free (error);
goto out;
}
mainloop = g_main_loop_new (NULL, FALSE);
if (argc >= 2)
{
cm_name = argv[1];
manager_file = argv[2]; /* possibly NULL */
cm = tp_connection_manager_new (dbus, cm_name, manager_file, &error);
if (cm == NULL)
{
g_warning ("%s", error->message);
g_error_free (error);
goto out;
}
tp_proxy_prepare_async (cm, NULL, ready, mainloop);
}
else
{
tp_list_connection_managers_async (dbus, list_cb, mainloop);
}
g_main_loop_run (mainloop);
ret = 0;
out:
if (cm != NULL)
g_object_unref (cm);
if (mainloop != NULL)
g_main_loop_unref (mainloop);
if (dbus != NULL)
g_object_unref (dbus);
return ret;
}
|