/*
* contact-list
*
* Copyright © 2011 Collabora Ltd.
*
* 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
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_usable_accounts (manager);
for (l = accounts; l != NULL; l = l->next)
{
TpAccount *account = l->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;
TpClientFactory *factory;
GMainLoop *loop;
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_client_factory_add_account_features_varargs (factory,
TP_ACCOUNT_FEATURE_CONNECTION,
0);
tp_client_factory_add_connection_features_varargs (factory,
TP_CONNECTION_FEATURE_CONTACT_LIST,
0);
tp_client_factory_add_contact_features_varargs (factory,
TP_CONTACT_FEATURE_ALIAS,
TP_CONTACT_FEATURE_CONTACT_GROUPS,
0);
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;
}