From 19dc1bdbd665f4ce79ec186294618218f65be49f Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Fri, 9 Jan 2009 16:11:48 +0000 Subject: Add empathy_contact_call_when_ready Signed-off-by: Sjoerd Simons svn path=/trunk/; revision=2126 --- libempathy/empathy-contact.c | 74 +++++++++++++++++++++++++++++++++++++------- 1 file changed, 63 insertions(+), 11 deletions(-) (limited to 'libempathy/empathy-contact.c') diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 541858673..a8a617c29 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -53,8 +53,15 @@ typedef struct { gboolean is_user; guint hash; EmpathyContactReady ready; + GList *ready_callbacks; } EmpathyContactPriv; +typedef struct { + EmpathyContactReady ready; + EmpathyContactReadyCb *callback; + gpointer user_data; +} ReadyCbData; + static void contact_finalize (GObject *object); static void contact_get_property (GObject *object, guint param_id, GValue *value, GParamSpec *pspec); @@ -330,6 +337,21 @@ contact_set_property (GObject *object, }; } +static gboolean +contact_is_ready (EmpathyContact *contact, EmpathyContactReady ready) +{ + EmpathyContactPriv *priv = GET_PRIV (contact); + + /* When the name is NULL, empathy_contact_get_name() fallback to the id. + * When the caller want to wait the name to be ready, it also want to wait + * the id to be ready in case of fallback. */ + if ((ready & EMPATHY_CONTACT_READY_NAME) && G_STR_EMPTY (priv->name)) + ready |= EMPATHY_CONTACT_READY_ID; + + return (priv->ready & ready) == ready; +} + + static void contact_set_ready_flag (EmpathyContact *contact, EmpathyContactReady flag) @@ -338,8 +360,24 @@ contact_set_ready_flag (EmpathyContact *contact, if (!(priv->ready & flag)) { + GList *l, *ln; + priv->ready |= flag; g_object_notify (G_OBJECT (contact), "ready"); + + for (l = priv->ready_callbacks ; l != NULL ; l = ln ) + { + ReadyCbData *d = (ReadyCbData *)l->data; + ln = g_list_next (l); + + if (contact_is_ready (contact, d->ready)) + { + d->callback (contact, d->user_data); + + priv->ready_callbacks = g_list_delete_link + (priv->ready_callbacks, l); + } + } } } @@ -768,22 +806,36 @@ empathy_contact_hash (gconstpointer key) return priv->hash; } -static gboolean -contact_is_ready_func (GObject *contact, - gpointer user_data) +void empathy_contact_call_when_ready (EmpathyContact *contact, + EmpathyContactReady ready, EmpathyContactReadyCb *callback, gpointer + user_data) { EmpathyContactPriv *priv = GET_PRIV (contact); - EmpathyContactReady ready; - ready = GPOINTER_TO_UINT (user_data); + g_return_if_fail (contact != NULL); + g_return_if_fail (callback != NULL); - /* When the name is NULL, empathy_contact_get_name() fallback to the id. - * When the caller want to wait the name to be ready, it also want to wait - * the id to be ready in case of fallback. */ - if ((ready & EMPATHY_CONTACT_READY_NAME) && G_STR_EMPTY (priv->name)) - ready |= EMPATHY_CONTACT_READY_ID; + if (contact_is_ready (contact, ready)) + { + callback (contact, user_data); + } + else + { + ReadyCbData *d = g_slice_new0 (ReadyCbData); + d->ready = ready; + d->callback = callback; + d->user_data = user_data; + priv->ready_callbacks = g_list_prepend (priv->ready_callbacks, + d); + } +} - return (priv->ready & ready) == ready; +static gboolean +contact_is_ready_func (GObject *contact, + gpointer user_data) +{ + return contact_is_ready (EMPATHY_CONTACT (contact), + GPOINTER_TO_UINT (user_data)); } void -- cgit v1.2.3