]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-individual-store.c
Bug 637097 — Port to latest folks API changes
[empathy.git] / libempathy-gtk / empathy-individual-store.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2005-2007 Imendio AB
4  * Copyright (C) 2007-2010 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Mikael Hallendal <micke@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  *          Xavier Claessens <xclaesse@gmail.com>
24  *          Travis Reitter <travis.reitter@collabora.co.uk>
25  */
26
27 #include "config.h"
28
29 #include <string.h>
30
31 #include <glib.h>
32 #include <glib/gi18n-lib.h>
33 #include <gtk/gtk.h>
34
35 #include <folks/folks.h>
36 #include <folks/folks-telepathy.h>
37 #include <telepathy-glib/util.h>
38
39 #include <libempathy/empathy-utils.h>
40 #include <libempathy/empathy-enum-types.h>
41 #include <libempathy/empathy-individual-manager.h>
42
43 #include "empathy-individual-store.h"
44 #include "empathy-ui-utils.h"
45 #include "empathy-gtk-enum-types.h"
46
47 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
48 #include <libempathy/empathy-debug.h>
49
50 /* Active users are those which have recently changed state
51  * (e.g. online, offline or from normal to a busy state).
52  */
53
54 /* Time in seconds user is shown as active */
55 #define ACTIVE_USER_SHOW_TIME 7
56
57 /* Time in seconds after connecting which we wait before active users are enabled */
58 #define ACTIVE_USER_WAIT_TO_ENABLE_TIME 5
59
60 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyIndividualStore)
61 typedef struct
62 {
63   EmpathyIndividualManager *manager;
64   gboolean show_avatars;
65   gboolean show_groups;
66   gboolean is_compact;
67   gboolean show_protocols;
68   gboolean show_active;
69   EmpathyIndividualStoreSort sort_criterium;
70   guint inhibit_active;
71   guint setup_idle_id;
72   gboolean dispose_has_run;
73   GHashTable *status_icons;
74   /* List of owned GCancellables for each pending avatar load operation */
75   GList *avatar_cancellables;
76 } EmpathyIndividualStorePriv;
77
78 typedef struct
79 {
80   GtkTreeIter iter;
81   const gchar *name;
82   gboolean found;
83 } FindGroup;
84
85 typedef struct
86 {
87   FolksIndividual *individual;
88   gboolean found;
89   GList *iters;
90 } FindContact;
91
92 typedef struct
93 {
94   EmpathyIndividualStore *self;
95   FolksIndividual *individual;
96   gboolean remove;
97   guint timeout;
98 } ShowActiveData;
99
100 enum
101 {
102   PROP_0,
103   PROP_INDIVIDUAL_MANAGER,
104   PROP_SHOW_AVATARS,
105   PROP_SHOW_PROTOCOLS,
106   PROP_SHOW_GROUPS,
107   PROP_IS_COMPACT,
108   PROP_SORT_CRITERIUM
109 };
110
111 /* prototypes to break cycles */
112 static void individual_store_contact_update (EmpathyIndividualStore *self,
113     FolksIndividual *individual);
114
115 G_DEFINE_TYPE (EmpathyIndividualStore, empathy_individual_store,
116     GTK_TYPE_TREE_STORE);
117
118 /* Calculate whether the Individual can do audio or video calls.
119  * FIXME: We can remove this once libfolks has grown capabilities support
120  * again: bgo#626179. */
121 static void
122 individual_can_audio_video_call (FolksIndividual *individual,
123     gboolean *can_audio_call,
124     gboolean *can_video_call)
125 {
126   GList *personas, *l;
127   gboolean can_audio = FALSE, can_video = FALSE;
128
129   personas = folks_individual_get_personas (individual);
130   for (l = personas; l != NULL; l = l->next)
131     {
132       TpContact *tp_contact;
133       EmpathyContact *contact;
134
135       if (!TPF_IS_PERSONA (l->data))
136         continue;
137
138       tp_contact = tpf_persona_get_contact (TPF_PERSONA (l->data));
139       contact = empathy_contact_dup_from_tp_contact (tp_contact);
140       empathy_contact_set_persona (contact, FOLKS_PERSONA (l->data));
141
142       can_audio = can_audio || empathy_contact_get_capabilities (contact) &
143           EMPATHY_CAPABILITIES_AUDIO;
144       can_video = can_video || empathy_contact_get_capabilities (contact) &
145           EMPATHY_CAPABILITIES_VIDEO;
146
147       g_object_unref (contact);
148
149       if (can_audio && can_video)
150         break;
151     }
152
153   *can_audio_call = can_audio;
154   *can_video_call = can_video;
155 }
156
157 static const gchar * const *
158 individual_get_client_types (FolksIndividual *individual)
159 {
160   GList *personas, *l;
161   const gchar * const *types = NULL;
162   FolksPresenceType presence_type = FOLKS_PRESENCE_TYPE_UNSET;
163
164   personas = folks_individual_get_personas (individual);
165   for (l = personas; l != NULL; l = l->next)
166     {
167       FolksHasPresence *presence;
168
169       /* We only want personas which implement FolksHasPresence */
170       if (!FOLKS_IS_HAS_PRESENCE (l->data))
171         continue;
172
173       presence = FOLKS_HAS_PRESENCE (l->data);
174
175       if (folks_has_presence_typecmp (
176               folks_has_presence_get_presence_type (presence),
177               presence_type) > 0)
178         {
179           TpContact *tp_contact;
180
181           presence_type = folks_has_presence_get_presence_type (presence);
182
183           tp_contact = tpf_persona_get_contact (TPF_PERSONA (l->data));
184           types = tp_contact_get_client_types (tp_contact);
185         }
186     }
187
188   return types;
189 }
190
191 static void
192 add_individual_to_store (GtkTreeStore *self,
193     GtkTreeIter *iter,
194     GtkTreeIter *parent,
195     FolksIndividual *individual)
196 {
197   gboolean can_audio_call, can_video_call;
198   const gchar * const *types;
199
200   individual_can_audio_video_call (individual, &can_audio_call,
201       &can_video_call);
202
203   types = individual_get_client_types (individual);
204
205   gtk_tree_store_insert_with_values (self, iter, parent, 0,
206       EMPATHY_INDIVIDUAL_STORE_COL_NAME,
207       folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)),
208       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, individual,
209       EMPATHY_INDIVIDUAL_STORE_COL_IS_GROUP, FALSE,
210       EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, FALSE,
211       EMPATHY_INDIVIDUAL_STORE_COL_CAN_AUDIO_CALL, can_audio_call,
212       EMPATHY_INDIVIDUAL_STORE_COL_CAN_VIDEO_CALL, can_video_call,
213       EMPATHY_INDIVIDUAL_STORE_COL_CLIENT_TYPES, types,
214       -1);
215 }
216
217 static gboolean
218 individual_store_get_group_foreach (GtkTreeModel *model,
219     GtkTreePath *path,
220     GtkTreeIter *iter,
221     FindGroup *fg)
222 {
223   gchar *str;
224   gboolean is_group;
225
226   /* Groups are only at the top level. */
227   if (gtk_tree_path_get_depth (path) != 1)
228     return FALSE;
229
230   gtk_tree_model_get (model, iter,
231       EMPATHY_INDIVIDUAL_STORE_COL_NAME, &str,
232       EMPATHY_INDIVIDUAL_STORE_COL_IS_GROUP, &is_group, -1);
233
234   if (is_group && !tp_strdiff (str, fg->name))
235     {
236       fg->found = TRUE;
237       fg->iter = *iter;
238     }
239
240   g_free (str);
241
242   return fg->found;
243 }
244
245 static void
246 individual_store_get_group (EmpathyIndividualStore *self,
247     const gchar *name,
248     GtkTreeIter *iter_group_to_set,
249     GtkTreeIter *iter_separator_to_set,
250     gboolean *created,
251     gboolean is_fake_group)
252 {
253   EmpathyIndividualStorePriv *priv;
254   GtkTreeModel *model;
255   GtkTreeIter iter_group;
256   GtkTreeIter iter_separator;
257   FindGroup fg;
258
259   priv = GET_PRIV (self);
260
261   memset (&fg, 0, sizeof (fg));
262
263   fg.name = name;
264
265   model = GTK_TREE_MODEL (self);
266   gtk_tree_model_foreach (model,
267       (GtkTreeModelForeachFunc) individual_store_get_group_foreach, &fg);
268
269   if (!fg.found)
270     {
271       if (created)
272         *created = TRUE;
273
274       gtk_tree_store_insert_with_values (GTK_TREE_STORE (self), &iter_group,
275           NULL, 0,
276           EMPATHY_INDIVIDUAL_STORE_COL_ICON_STATUS, NULL,
277           EMPATHY_INDIVIDUAL_STORE_COL_NAME, name,
278           EMPATHY_INDIVIDUAL_STORE_COL_IS_GROUP, TRUE,
279           EMPATHY_INDIVIDUAL_STORE_COL_IS_ACTIVE, FALSE,
280           EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, FALSE,
281           EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP, is_fake_group,
282           -1);
283
284       if (iter_group_to_set)
285         *iter_group_to_set = iter_group;
286
287       gtk_tree_store_insert_with_values (GTK_TREE_STORE (self), &iter_separator,
288           &iter_group, 0,
289           EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, TRUE,
290           -1);
291
292       if (iter_separator_to_set)
293         *iter_separator_to_set = iter_separator;
294     }
295   else
296     {
297       if (created)
298         *created = FALSE;
299
300       if (iter_group_to_set)
301         *iter_group_to_set = fg.iter;
302
303       iter_separator = fg.iter;
304
305       if (gtk_tree_model_iter_next (model, &iter_separator))
306         {
307           gboolean is_separator;
308
309           gtk_tree_model_get (model, &iter_separator,
310               EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, &is_separator, -1);
311
312           if (is_separator && iter_separator_to_set)
313             *iter_separator_to_set = iter_separator;
314         }
315     }
316 }
317
318 static gboolean
319 individual_store_find_contact_foreach (GtkTreeModel *model,
320     GtkTreePath *path,
321     GtkTreeIter *iter,
322     FindContact *fc)
323 {
324   FolksIndividual *individual;
325
326   gtk_tree_model_get (model, iter,
327       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual, -1);
328
329   if (individual == fc->individual)
330     {
331       fc->found = TRUE;
332       fc->iters = g_list_append (fc->iters, gtk_tree_iter_copy (iter));
333     }
334
335   tp_clear_object (&individual);
336
337   return FALSE;
338 }
339
340 static GList *
341 individual_store_find_contact (EmpathyIndividualStore *self,
342     FolksIndividual *individual)
343 {
344   EmpathyIndividualStorePriv *priv;
345   GtkTreeModel *model;
346   GList *l = NULL;
347   FindContact fc;
348
349   priv = GET_PRIV (self);
350
351   memset (&fc, 0, sizeof (fc));
352
353   fc.individual = individual;
354
355   model = GTK_TREE_MODEL (self);
356   gtk_tree_model_foreach (model,
357       (GtkTreeModelForeachFunc) individual_store_find_contact_foreach, &fc);
358
359   if (fc.found)
360     l = fc.iters;
361
362   return l;
363 }
364
365 static void
366 free_iters (GList *iters)
367 {
368   g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
369   g_list_free (iters);
370 }
371
372 static void
373 individual_store_remove_individual (EmpathyIndividualStore *self,
374     FolksIndividual *individual)
375 {
376   EmpathyIndividualStorePriv *priv;
377   GtkTreeModel *model;
378   GList *iters, *l;
379
380   priv = GET_PRIV (self);
381
382   iters = individual_store_find_contact (self, individual);
383   if (iters == NULL)
384     return;
385
386   /* Clean up model */
387   model = GTK_TREE_MODEL (self);
388
389   for (l = iters; l; l = l->next)
390     {
391       GtkTreeIter parent;
392
393       /* NOTE: it is only <= 2 here because we have
394        * separators after the group name, otherwise it
395        * should be 1.
396        */
397       if (gtk_tree_model_iter_parent (model, &parent, l->data) &&
398           gtk_tree_model_iter_n_children (model, &parent) <= 2)
399         {
400           gtk_tree_store_remove (GTK_TREE_STORE (self), &parent);
401         }
402       else
403         {
404           gtk_tree_store_remove (GTK_TREE_STORE (self), l->data);
405         }
406     }
407
408   free_iters (iters);
409 }
410
411 static void
412 individual_store_add_individual (EmpathyIndividualStore *self,
413     FolksIndividual *individual)
414 {
415   EmpathyIndividualStorePriv *priv;
416   GtkTreeIter iter;
417   GHashTable *group_set = NULL;
418   GList *groups = NULL, *l;
419   EmpathyContact *contact;
420   TpConnection *connection;
421   gchar *protocol_name;
422
423   priv = GET_PRIV (self);
424
425   if (EMP_STR_EMPTY (folks_aliasable_get_alias (FOLKS_ALIASABLE (individual))))
426     return;
427
428   if (priv->show_groups)
429     {
430       group_set = folks_groupable_get_groups (FOLKS_GROUPABLE (individual));
431       groups = g_hash_table_get_keys (group_set);
432     }
433
434   contact = empathy_contact_dup_from_folks_individual (individual);
435   connection = empathy_contact_get_connection (contact);
436
437   tp_connection_parse_object_path (connection, &protocol_name, NULL);
438
439   if (groups == NULL)
440     {
441       GtkTreeIter iter_group, *parent;
442
443       parent = &iter_group;
444
445       if (!priv->show_groups)
446         parent = NULL;
447       else if (!tp_strdiff (protocol_name, "local-xmpp"))
448         {
449           /* these are People Nearby */
450           individual_store_get_group (self,
451               EMPATHY_INDIVIDUAL_STORE_PEOPLE_NEARBY, &iter_group, NULL, NULL,
452               TRUE);
453         }
454       else
455         {
456           individual_store_get_group (self,
457               EMPATHY_INDIVIDUAL_STORE_UNGROUPED,
458               &iter_group, NULL, NULL, TRUE);
459         }
460
461       add_individual_to_store (GTK_TREE_STORE (self), &iter, parent,
462           individual);
463     }
464
465   g_free (protocol_name);
466
467   /* Else add to each group. */
468   for (l = groups; l; l = l->next)
469     {
470       GtkTreeIter iter_group;
471
472       individual_store_get_group (self, l->data, &iter_group, NULL, NULL,
473           FALSE);
474
475       add_individual_to_store (GTK_TREE_STORE (self), &iter, &iter_group,
476           individual);
477     }
478   g_list_free (groups);
479
480   if (priv->show_groups &&
481       folks_favouritable_get_is_favourite (FOLKS_FAVOURITABLE (individual)))
482     {
483       /* Add contact to the fake 'Favorites' group */
484       GtkTreeIter iter_group;
485
486       individual_store_get_group (self, EMPATHY_INDIVIDUAL_STORE_FAVORITE,
487           &iter_group, NULL, NULL, TRUE);
488
489       add_individual_to_store (GTK_TREE_STORE (self), &iter, &iter_group,
490           individual);
491     }
492
493   individual_store_contact_update (self, individual);
494
495   tp_clear_object (&contact);
496 }
497
498 static void
499 individual_store_contact_set_active (EmpathyIndividualStore *self,
500     FolksIndividual *individual,
501     gboolean active,
502     gboolean set_changed)
503 {
504   EmpathyIndividualStorePriv *priv;
505   GtkTreeModel *model;
506   GList *iters, *l;
507
508   priv = GET_PRIV (self);
509   model = GTK_TREE_MODEL (self);
510
511   iters = individual_store_find_contact (self, individual);
512   for (l = iters; l; l = l->next)
513     {
514       GtkTreePath *path;
515
516       gtk_tree_store_set (GTK_TREE_STORE (self), l->data,
517           EMPATHY_INDIVIDUAL_STORE_COL_IS_ACTIVE, active,
518           -1);
519
520       DEBUG ("Set item %s", active ? "active" : "inactive");
521
522       if (set_changed)
523         {
524           path = gtk_tree_model_get_path (model, l->data);
525           gtk_tree_model_row_changed (model, path, l->data);
526           gtk_tree_path_free (path);
527         }
528     }
529
530   free_iters (iters);
531 }
532
533 static void individual_store_contact_active_free (ShowActiveData *data);
534
535 static void
536 individual_store_contact_active_invalidated (ShowActiveData *data,
537     GObject *old_object)
538 {
539   /* Remove the timeout and free the struct, since the individual or individual
540    * store has disappeared. */
541   g_source_remove (data->timeout);
542
543   if (old_object == (GObject *) data->self)
544     data->self = NULL;
545   else if (old_object == (GObject *) data->individual)
546     data->individual = NULL;
547   else
548     g_assert_not_reached ();
549
550   individual_store_contact_active_free (data);
551 }
552
553 static ShowActiveData *
554 individual_store_contact_active_new (EmpathyIndividualStore *self,
555     FolksIndividual *individual,
556     gboolean remove_)
557 {
558   ShowActiveData *data;
559
560   DEBUG ("Individual'%s' now active, and %s be removed",
561       folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)),
562       remove_ ? "WILL" : "WILL NOT");
563
564   data = g_slice_new0 (ShowActiveData);
565
566   /* We don't actually want to force either the IndividualStore or the
567    * Individual to stay alive, since the user could quit Empathy or disable
568    * the account before the contact_active timeout is fired. */
569   g_object_weak_ref (G_OBJECT (self),
570       (GWeakNotify) individual_store_contact_active_invalidated, data);
571   g_object_weak_ref (G_OBJECT (individual),
572       (GWeakNotify) individual_store_contact_active_invalidated, data);
573
574   data->self = self;
575   data->individual = individual;
576   data->remove = remove_;
577   data->timeout = 0;
578
579   return data;
580 }
581
582 static void
583 individual_store_contact_active_free (ShowActiveData *data)
584 {
585   if (data->self != NULL)
586     {
587       g_object_weak_unref (G_OBJECT (data->self),
588           (GWeakNotify) individual_store_contact_active_invalidated, data);
589     }
590
591   if (data->individual != NULL)
592     {
593       g_object_weak_unref (G_OBJECT (data->individual),
594           (GWeakNotify) individual_store_contact_active_invalidated, data);
595     }
596
597   g_slice_free (ShowActiveData, data);
598 }
599
600 static gboolean
601 individual_store_contact_active_cb (ShowActiveData *data)
602 {
603   if (data->remove)
604     {
605       DEBUG ("Individual'%s' active timeout, removing item",
606           folks_aliasable_get_alias (FOLKS_ALIASABLE (data->individual)));
607       individual_store_remove_individual (data->self, data->individual);
608     }
609
610   DEBUG ("Individual'%s' no longer active",
611       folks_aliasable_get_alias (FOLKS_ALIASABLE (data->individual)));
612
613   individual_store_contact_set_active (data->self,
614       data->individual, FALSE, TRUE);
615
616   individual_store_contact_active_free (data);
617
618   return FALSE;
619 }
620
621 typedef struct {
622   EmpathyIndividualStore *store; /* weak */
623   GCancellable *cancellable; /* owned */
624 } LoadAvatarData;
625
626 static void
627 individual_avatar_pixbuf_received_cb (FolksIndividual *individual,
628     GAsyncResult *result,
629     LoadAvatarData *data)
630 {
631   GError *error = NULL;
632   GdkPixbuf *pixbuf;
633
634   pixbuf = empathy_pixbuf_avatar_from_individual_scaled_finish (individual,
635       result, &error);
636
637   if (error != NULL)
638     {
639       DEBUG ("failed to retrieve pixbuf for individual %s: %s",
640           folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)),
641           error->message);
642       g_clear_error (&error);
643     }
644   else if (data->store != NULL)
645     {
646       GList *iters, *l;
647
648       iters = individual_store_find_contact (data->store, individual);
649       for (l = iters; l; l = l->next)
650         {
651           gtk_tree_store_set (GTK_TREE_STORE (data->store), l->data,
652               EMPATHY_INDIVIDUAL_STORE_COL_PIXBUF_AVATAR, pixbuf,
653               -1);
654         }
655
656       free_iters (iters);
657     }
658
659   /* Free things */
660   if (data->store != NULL)
661     {
662       EmpathyIndividualStorePriv *priv = GET_PRIV (data->store);
663
664       g_object_remove_weak_pointer (G_OBJECT (data->store),
665           (gpointer *) &data->store);
666       priv->avatar_cancellables = g_list_remove (priv->avatar_cancellables,
667           data->cancellable);
668     }
669
670   tp_clear_object (&pixbuf);
671   g_object_unref (data->cancellable);
672   g_slice_free (LoadAvatarData, data);
673 }
674
675 static void
676 individual_store_contact_update (EmpathyIndividualStore *self,
677     FolksIndividual *individual)
678 {
679   EmpathyIndividualStorePriv *priv;
680   ShowActiveData *data;
681   GtkTreeModel *model;
682   GList *iters, *l;
683   gboolean in_list;
684   gboolean was_online = TRUE;
685   gboolean now_online = FALSE;
686   gboolean set_model = FALSE;
687   gboolean do_remove = FALSE;
688   gboolean do_set_active = FALSE;
689   gboolean do_set_refresh = FALSE;
690   gboolean show_avatar = FALSE;
691   GdkPixbuf *pixbuf_status;
692   LoadAvatarData *load_avatar_data;
693
694   priv = GET_PRIV (self);
695
696   model = GTK_TREE_MODEL (self);
697
698   iters = individual_store_find_contact (self, individual);
699   if (!iters)
700     {
701       in_list = FALSE;
702     }
703   else
704     {
705       in_list = TRUE;
706     }
707
708   /* Get online state now. */
709   now_online = folks_has_presence_is_online (FOLKS_HAS_PRESENCE (individual));
710
711   if (!in_list)
712     {
713       DEBUG ("Individual'%s' in list:NO, should be:YES",
714           folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
715
716       individual_store_add_individual (self, individual);
717
718       if (priv->show_active)
719         {
720           do_set_active = TRUE;
721
722           DEBUG ("Set active (individual added)");
723         }
724     }
725   else
726     {
727       DEBUG ("Individual'%s' in list:YES, should be:YES",
728           folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
729
730       /* Get online state before. */
731       if (iters && g_list_length (iters) > 0)
732         {
733           gtk_tree_model_get (model, iters->data,
734               EMPATHY_INDIVIDUAL_STORE_COL_IS_ONLINE, &was_online, -1);
735         }
736
737       /* Is this really an update or an online/offline. */
738       if (priv->show_active)
739         {
740           if (was_online != now_online)
741             {
742               do_set_active = TRUE;
743               do_set_refresh = TRUE;
744
745               DEBUG ("Set active (individual updated %s)",
746                   was_online ? "online  -> offline" : "offline -> online");
747             }
748           else
749             {
750               /* Was TRUE for presence updates. */
751               /* do_set_active = FALSE;  */
752               do_set_refresh = TRUE;
753
754               DEBUG ("Set active (individual updated)");
755             }
756         }
757
758       set_model = TRUE;
759     }
760
761   if (priv->show_avatars && !priv->is_compact)
762     {
763       show_avatar = TRUE;
764     }
765
766   /* Load the avatar asynchronously */
767   load_avatar_data = g_slice_new (LoadAvatarData);
768   load_avatar_data->store = self;
769   g_object_add_weak_pointer (G_OBJECT (self),
770       (gpointer *) &load_avatar_data->store);
771   load_avatar_data->cancellable = g_cancellable_new ();
772
773   priv->avatar_cancellables = g_list_prepend (priv->avatar_cancellables,
774       load_avatar_data->cancellable);
775   empathy_pixbuf_avatar_from_individual_scaled_async (individual, 32, 32,
776       load_avatar_data->cancellable,
777       (GAsyncReadyCallback) individual_avatar_pixbuf_received_cb,
778       load_avatar_data);
779
780   pixbuf_status =
781       empathy_individual_store_get_individual_status_icon (self, individual);
782
783   for (l = iters; l && set_model; l = l->next)
784     {
785       gboolean can_audio_call, can_video_call;
786       const gchar * const *types;
787
788       individual_can_audio_video_call (individual, &can_audio_call,
789           &can_video_call);
790
791       types = individual_get_client_types (individual);
792
793       gtk_tree_store_set (GTK_TREE_STORE (self), l->data,
794           EMPATHY_INDIVIDUAL_STORE_COL_ICON_STATUS, pixbuf_status,
795           EMPATHY_INDIVIDUAL_STORE_COL_PIXBUF_AVATAR_VISIBLE, show_avatar,
796           EMPATHY_INDIVIDUAL_STORE_COL_NAME,
797             folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)),
798           EMPATHY_INDIVIDUAL_STORE_COL_PRESENCE_TYPE,
799             folks_has_presence_get_presence_type (
800                 FOLKS_HAS_PRESENCE (individual)),
801           EMPATHY_INDIVIDUAL_STORE_COL_STATUS,
802             folks_has_presence_get_presence_message (
803                 FOLKS_HAS_PRESENCE (individual)),
804           EMPATHY_INDIVIDUAL_STORE_COL_COMPACT, priv->is_compact,
805           EMPATHY_INDIVIDUAL_STORE_COL_IS_GROUP, FALSE,
806           EMPATHY_INDIVIDUAL_STORE_COL_IS_ONLINE, now_online,
807           EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, FALSE,
808           EMPATHY_INDIVIDUAL_STORE_COL_CAN_AUDIO_CALL, can_audio_call,
809           EMPATHY_INDIVIDUAL_STORE_COL_CAN_VIDEO_CALL, can_video_call,
810           EMPATHY_INDIVIDUAL_STORE_COL_CLIENT_TYPES, types,
811           -1);
812     }
813
814   if (priv->show_active && do_set_active)
815     {
816       individual_store_contact_set_active (self, individual, do_set_active,
817           do_set_refresh);
818
819       if (do_set_active)
820         {
821           data =
822               individual_store_contact_active_new (self, individual,
823               do_remove);
824           data->timeout = g_timeout_add_seconds (ACTIVE_USER_SHOW_TIME,
825               (GSourceFunc) individual_store_contact_active_cb, data);
826         }
827     }
828
829   /* FIXME: when someone goes online then offline quickly, the
830    * first timeout sets the user to be inactive and the second
831    * timeout removes the user from the contact list, really we
832    * should remove the first timeout.
833    */
834   free_iters (iters);
835 }
836
837 static void
838 individual_store_individual_updated_cb (FolksIndividual *individual,
839     GParamSpec *param,
840     EmpathyIndividualStore *self)
841 {
842   DEBUG ("Individual'%s' updated, checking roster is in sync...",
843       folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
844
845   individual_store_contact_update (self, individual);
846 }
847
848 static void
849 individual_store_contact_updated_cb (EmpathyContact *contact,
850     GParamSpec *pspec,
851     EmpathyIndividualStore *self)
852 {
853   FolksIndividual *individual;
854
855   DEBUG ("Contact '%s' updated, checking roster is in sync...",
856       empathy_contact_get_alias (contact));
857
858   individual = g_object_get_data (G_OBJECT (contact), "individual");
859   if (individual == NULL)
860     return;
861
862   individual_store_contact_update (self, individual);
863 }
864
865 static void
866 individual_personas_changed_cb (FolksIndividual *individual,
867     GList *added,
868     GList *removed,
869     EmpathyIndividualStore *self)
870 {
871   GList *l;
872
873   DEBUG ("Individual '%s' personas-changed.",
874       folks_individual_get_id (individual));
875
876   /* FIXME: libfolks hasn't grown capabilities support yet, so we have to go
877    * through the EmpathyContacts for them. */
878   for (l = removed; l != NULL; l = l->next)
879     {
880       TpContact *tp_contact;
881       EmpathyContact *contact;
882
883       if (!TPF_IS_PERSONA (l->data))
884         continue;
885
886       tp_contact = tpf_persona_get_contact (TPF_PERSONA (l->data));
887       contact = empathy_contact_dup_from_tp_contact (tp_contact);
888       empathy_contact_set_persona (contact, FOLKS_PERSONA (l->data));
889
890       g_object_set_data (G_OBJECT (contact), "individual", NULL);
891       g_signal_handlers_disconnect_by_func (contact,
892           (GCallback) individual_store_contact_updated_cb, self);
893
894       g_object_unref (contact);
895     }
896
897   for (l = added; l != NULL; l = l->next)
898     {
899       TpContact *tp_contact;
900       EmpathyContact *contact;
901
902       if (!TPF_IS_PERSONA (l->data))
903         continue;
904
905       tp_contact = tpf_persona_get_contact (TPF_PERSONA (l->data));
906       contact = empathy_contact_dup_from_tp_contact (tp_contact);
907       empathy_contact_set_persona (contact, FOLKS_PERSONA (l->data));
908
909       g_object_set_data (G_OBJECT (contact), "individual", individual);
910       g_signal_connect (contact, "notify::capabilities",
911           (GCallback) individual_store_contact_updated_cb, self);
912       g_signal_connect (contact, "notify::client-types",
913           (GCallback) individual_store_contact_updated_cb, self);
914
915       g_object_unref (contact);
916     }
917 }
918
919 static void
920 individual_store_add_individual_and_connect (EmpathyIndividualStore *self,
921     FolksIndividual *individual)
922 {
923   individual_store_add_individual (self, individual);
924
925   g_signal_connect (individual, "notify::avatar",
926       (GCallback) individual_store_individual_updated_cb, self);
927   g_signal_connect (individual, "notify::presence-type",
928       (GCallback) individual_store_individual_updated_cb, self);
929   g_signal_connect (individual, "notify::presence-message",
930       (GCallback) individual_store_individual_updated_cb, self);
931   g_signal_connect (individual, "notify::alias",
932       (GCallback) individual_store_individual_updated_cb, self);
933   g_signal_connect (individual, "personas-changed",
934       (GCallback) individual_personas_changed_cb, self);
935
936   individual_personas_changed_cb (individual,
937       folks_individual_get_personas (individual), NULL, self);
938 }
939
940 static void
941 individual_store_disconnect_individual (EmpathyIndividualStore *self,
942     FolksIndividual *individual)
943 {
944   individual_personas_changed_cb (individual, NULL,
945       folks_individual_get_personas (individual), self);
946
947   g_signal_handlers_disconnect_by_func (individual,
948       (GCallback) individual_store_individual_updated_cb, self);
949   g_signal_handlers_disconnect_by_func (individual,
950       (GCallback) individual_personas_changed_cb, self);
951 }
952
953 static void
954 individual_store_remove_individual_and_disconnect (
955     EmpathyIndividualStore *self,
956     FolksIndividual *individual)
957 {
958   individual_store_disconnect_individual (self, individual);
959   individual_store_remove_individual (self, individual);
960 }
961
962 static void
963 individual_store_members_changed_cb (EmpathyIndividualManager *manager,
964     const gchar *message,
965     GList *added,
966     GList *removed,
967     guint reason,
968     EmpathyIndividualStore *self)
969 {
970   GList *l;
971
972   for (l = added; l; l = l->next)
973     {
974       DEBUG ("Individual %s %s", folks_individual_get_id (l->data), "added");
975
976       individual_store_add_individual_and_connect (self, l->data);
977     }
978   for (l = removed; l; l = l->next)
979     {
980       DEBUG ("Individual %s %s",
981           folks_individual_get_id (l->data), "removed");
982
983       individual_store_remove_individual_and_disconnect (self, l->data);
984     }
985 }
986
987 static void
988 individual_store_favourites_changed_cb (EmpathyIndividualManager *manager,
989     FolksIndividual *individual,
990     gboolean is_favourite,
991     EmpathyIndividualStore *self)
992 {
993   EmpathyIndividualStorePriv *priv;
994
995   priv = GET_PRIV (self);
996
997   DEBUG ("Individual %s is %s a favourite",
998       folks_individual_get_id (individual),
999       is_favourite ? "now" : "no longer");
1000
1001   individual_store_remove_individual (self, individual);
1002   individual_store_add_individual (self, individual);
1003 }
1004
1005 static void
1006 individual_store_groups_changed_cb (EmpathyIndividualManager *manager,
1007     FolksIndividual *individual,
1008     gchar *group,
1009     gboolean is_member,
1010     EmpathyIndividualStore *self)
1011 {
1012   EmpathyIndividualStorePriv *priv;
1013   gboolean show_active;
1014
1015   priv = GET_PRIV (self);
1016
1017   DEBUG ("Updating groups for individual %s",
1018       folks_individual_get_id (individual));
1019
1020   /* We do this to make sure the groups are correct, if not, we
1021    * would have to check the groups already set up for each
1022    * contact and then see what has been updated.
1023    */
1024   show_active = priv->show_active;
1025   priv->show_active = FALSE;
1026   individual_store_remove_individual (self, individual);
1027   individual_store_add_individual (self, individual);
1028   priv->show_active = show_active;
1029 }
1030
1031 static gboolean
1032 individual_store_manager_setup (gpointer user_data)
1033 {
1034   EmpathyIndividualStore *self = user_data;
1035   EmpathyIndividualStorePriv *priv = GET_PRIV (self);
1036   GList *individuals;
1037
1038   /* Signal connection. */
1039
1040   /* TODO: implement */
1041   DEBUG ("handling individual renames unimplemented");
1042
1043   g_signal_connect (priv->manager,
1044       "members-changed",
1045       G_CALLBACK (individual_store_members_changed_cb), self);
1046
1047   g_signal_connect (priv->manager,
1048       "favourites-changed",
1049       G_CALLBACK (individual_store_favourites_changed_cb), self);
1050
1051   g_signal_connect (priv->manager,
1052       "groups-changed",
1053       G_CALLBACK (individual_store_groups_changed_cb), self);
1054
1055   /* Add contacts already created. */
1056   individuals = empathy_individual_manager_get_members (priv->manager);
1057   if (individuals != NULL && FOLKS_IS_INDIVIDUAL (individuals->data))
1058     {
1059       individual_store_members_changed_cb (priv->manager, "initial add",
1060           individuals, NULL, 0, self);
1061       g_list_free (individuals);
1062     }
1063
1064   priv->setup_idle_id = 0;
1065   return FALSE;
1066 }
1067
1068 static void
1069 individual_store_set_individual_manager (EmpathyIndividualStore *self,
1070     EmpathyIndividualManager *manager)
1071 {
1072   EmpathyIndividualStorePriv *priv = GET_PRIV (self);
1073
1074   priv->manager = g_object_ref (manager);
1075
1076   /* Let a chance to have all properties set before populating */
1077   priv->setup_idle_id = g_idle_add (individual_store_manager_setup, self);
1078 }
1079
1080 static void
1081 individual_store_member_renamed_cb (EmpathyIndividualManager *manager,
1082     FolksIndividual *old_individual,
1083     FolksIndividual *new_individual,
1084     guint reason,
1085     const gchar *message,
1086     EmpathyIndividualStore *self)
1087 {
1088   EmpathyIndividualStorePriv *priv;
1089
1090   priv = GET_PRIV (self);
1091
1092   DEBUG ("Individual %s renamed to %s",
1093       folks_individual_get_id (old_individual),
1094       folks_individual_get_id (new_individual));
1095
1096   /* add the new contact */
1097   individual_store_add_individual_and_connect (self, new_individual);
1098
1099   /* remove old contact */
1100   individual_store_remove_individual_and_disconnect (self, old_individual);
1101 }
1102
1103 static void
1104 individual_store_dispose (GObject *object)
1105 {
1106   EmpathyIndividualStorePriv *priv = GET_PRIV (object);
1107   GList *individuals, *l;
1108
1109   if (priv->dispose_has_run)
1110     return;
1111   priv->dispose_has_run = TRUE;
1112
1113   /* Cancel any pending avatar load operations */
1114   for (l = priv->avatar_cancellables; l != NULL; l = l->next)
1115     {
1116       /* The cancellables are freed in individual_avatar_pixbuf_received_cb() */
1117       g_cancellable_cancel (G_CANCELLABLE (l->data));
1118     }
1119   g_list_free (priv->avatar_cancellables);
1120
1121   individuals = empathy_individual_manager_get_members (priv->manager);
1122   for (l = individuals; l; l = l->next)
1123     {
1124       individual_store_disconnect_individual (EMPATHY_INDIVIDUAL_STORE (object),
1125           FOLKS_INDIVIDUAL (l->data));
1126     }
1127   g_list_free (individuals);
1128
1129   g_signal_handlers_disconnect_by_func (priv->manager,
1130       G_CALLBACK (individual_store_member_renamed_cb), object);
1131   g_signal_handlers_disconnect_by_func (priv->manager,
1132       G_CALLBACK (individual_store_members_changed_cb), object);
1133   g_signal_handlers_disconnect_by_func (priv->manager,
1134       G_CALLBACK (individual_store_favourites_changed_cb), object);
1135   g_signal_handlers_disconnect_by_func (priv->manager,
1136       G_CALLBACK (individual_store_groups_changed_cb), object);
1137   g_object_unref (priv->manager);
1138
1139   if (priv->inhibit_active)
1140     {
1141       g_source_remove (priv->inhibit_active);
1142     }
1143
1144   if (priv->setup_idle_id != 0)
1145     {
1146       g_source_remove (priv->setup_idle_id);
1147     }
1148
1149   g_hash_table_destroy (priv->status_icons);
1150   G_OBJECT_CLASS (empathy_individual_store_parent_class)->dispose (object);
1151 }
1152
1153 static void
1154 individual_store_get_property (GObject *object,
1155     guint param_id,
1156     GValue *value,
1157     GParamSpec *pspec)
1158 {
1159   EmpathyIndividualStorePriv *priv;
1160
1161   priv = GET_PRIV (object);
1162
1163   switch (param_id)
1164     {
1165     case PROP_INDIVIDUAL_MANAGER:
1166       g_value_set_object (value, priv->manager);
1167       break;
1168     case PROP_SHOW_AVATARS:
1169       g_value_set_boolean (value, priv->show_avatars);
1170       break;
1171     case PROP_SHOW_PROTOCOLS:
1172       g_value_set_boolean (value, priv->show_protocols);
1173       break;
1174     case PROP_SHOW_GROUPS:
1175       g_value_set_boolean (value, priv->show_groups);
1176       break;
1177     case PROP_IS_COMPACT:
1178       g_value_set_boolean (value, priv->is_compact);
1179       break;
1180     case PROP_SORT_CRITERIUM:
1181       g_value_set_enum (value, priv->sort_criterium);
1182       break;
1183     default:
1184       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
1185       break;
1186     };
1187 }
1188
1189 static void
1190 individual_store_set_property (GObject *object,
1191     guint param_id,
1192     const GValue *value,
1193     GParamSpec *pspec)
1194 {
1195   EmpathyIndividualStorePriv *priv;
1196
1197   priv = GET_PRIV (object);
1198
1199   switch (param_id)
1200     {
1201     case PROP_INDIVIDUAL_MANAGER:
1202       individual_store_set_individual_manager (EMPATHY_INDIVIDUAL_STORE
1203           (object), g_value_get_object (value));
1204       break;
1205     case PROP_SHOW_AVATARS:
1206       empathy_individual_store_set_show_avatars (EMPATHY_INDIVIDUAL_STORE
1207           (object), g_value_get_boolean (value));
1208       break;
1209     case PROP_SHOW_PROTOCOLS:
1210       empathy_individual_store_set_show_protocols (EMPATHY_INDIVIDUAL_STORE
1211           (object), g_value_get_boolean (value));
1212       break;
1213     case PROP_SHOW_GROUPS:
1214       empathy_individual_store_set_show_groups (EMPATHY_INDIVIDUAL_STORE
1215           (object), g_value_get_boolean (value));
1216       break;
1217     case PROP_IS_COMPACT:
1218       empathy_individual_store_set_is_compact (EMPATHY_INDIVIDUAL_STORE
1219           (object), g_value_get_boolean (value));
1220       break;
1221     case PROP_SORT_CRITERIUM:
1222       empathy_individual_store_set_sort_criterium (EMPATHY_INDIVIDUAL_STORE
1223           (object), g_value_get_enum (value));
1224       break;
1225     default:
1226       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
1227       break;
1228     };
1229 }
1230
1231 static void
1232 empathy_individual_store_class_init (EmpathyIndividualStoreClass *klass)
1233 {
1234   GObjectClass *object_class = G_OBJECT_CLASS (klass);
1235
1236   object_class->dispose = individual_store_dispose;
1237   object_class->get_property = individual_store_get_property;
1238   object_class->set_property = individual_store_set_property;
1239
1240   g_object_class_install_property (object_class,
1241       PROP_INDIVIDUAL_MANAGER,
1242       g_param_spec_object ("individual-manager",
1243           "The individual manager",
1244           "The individual manager",
1245           EMPATHY_TYPE_INDIVIDUAL_MANAGER,
1246           G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE));
1247   g_object_class_install_property (object_class,
1248       PROP_SHOW_AVATARS,
1249       g_param_spec_boolean ("show-avatars",
1250           "Show Avatars",
1251           "Whether contact list should display "
1252           "avatars for contacts", TRUE, G_PARAM_READWRITE));
1253   g_object_class_install_property (object_class,
1254       PROP_SHOW_PROTOCOLS,
1255       g_param_spec_boolean ("show-protocols",
1256           "Show Protocols",
1257           "Whether contact list should display "
1258           "protocols for contacts", FALSE, G_PARAM_READWRITE));
1259   g_object_class_install_property (object_class,
1260       PROP_SHOW_GROUPS,
1261       g_param_spec_boolean ("show-groups",
1262           "Show Groups",
1263           "Whether contact list should display "
1264           "contact groups", TRUE, G_PARAM_READWRITE));
1265   g_object_class_install_property (object_class,
1266       PROP_IS_COMPACT,
1267       g_param_spec_boolean ("is-compact",
1268           "Is Compact",
1269           "Whether the contact list is in compact mode or not",
1270           FALSE, G_PARAM_READWRITE));
1271
1272   g_object_class_install_property (object_class,
1273       PROP_SORT_CRITERIUM,
1274       g_param_spec_enum ("sort-criterium",
1275           "Sort citerium",
1276           "The sort criterium to use for sorting the contact list",
1277           EMPATHY_TYPE_INDIVIDUAL_STORE_SORT,
1278           EMPATHY_INDIVIDUAL_STORE_SORT_NAME, G_PARAM_READWRITE));
1279
1280   g_type_class_add_private (object_class,
1281       sizeof (EmpathyIndividualStorePriv));
1282 }
1283
1284 static gint
1285 get_position (const char **strv,
1286     const char *str)
1287 {
1288   int i;
1289
1290   for (i = 0; strv[i] != NULL; i++)
1291     {
1292       if (!tp_strdiff (strv[i], str))
1293         return i;
1294     }
1295
1296   return -1;
1297 }
1298
1299 static gint
1300 compare_separator_and_groups (gboolean is_separator_a,
1301     gboolean is_separator_b,
1302     const gchar *name_a,
1303     const gchar *name_b,
1304     FolksIndividual *individual_a,
1305     FolksIndividual *individual_b,
1306     gboolean fake_group_a,
1307     gboolean fake_group_b)
1308 {
1309   /* these two lists are the sorted list of fake groups to include at the
1310    * top and bottom of the roster */
1311   const char *top_groups[] = {
1312     EMPATHY_INDIVIDUAL_STORE_FAVORITE,
1313     NULL
1314   };
1315
1316   const char *bottom_groups[] = {
1317     EMPATHY_INDIVIDUAL_STORE_UNGROUPED,
1318     NULL
1319   };
1320
1321   if (is_separator_a || is_separator_b)
1322     {
1323       /* We have at least one separator */
1324       if (is_separator_a)
1325         {
1326           return -1;
1327         }
1328       else if (is_separator_b)
1329         {
1330           return 1;
1331         }
1332     }
1333
1334   /* One group and one contact */
1335   if (!individual_a && individual_b)
1336     {
1337       return 1;
1338     }
1339   else if (individual_a && !individual_b)
1340     {
1341       return -1;
1342     }
1343   else if (!individual_a && !individual_b)
1344     {
1345       gboolean a_in_top, b_in_top, a_in_bottom, b_in_bottom;
1346
1347       a_in_top = fake_group_a && tp_strv_contains (top_groups, name_a);
1348       b_in_top = fake_group_b && tp_strv_contains (top_groups, name_b);
1349       a_in_bottom = fake_group_a && tp_strv_contains (bottom_groups, name_a);
1350       b_in_bottom = fake_group_b && tp_strv_contains (bottom_groups, name_b);
1351
1352       if (a_in_top && b_in_top)
1353         {
1354           /* compare positions */
1355           return CLAMP (get_position (top_groups, name_a) -
1356               get_position (top_groups, name_b), -1, 1);
1357         }
1358       else if (a_in_bottom && b_in_bottom)
1359         {
1360           /* compare positions */
1361           return CLAMP (get_position (bottom_groups, name_a) -
1362               get_position (bottom_groups, name_b), -1, 1);
1363         }
1364       else if (a_in_top || b_in_bottom)
1365         {
1366           return -1;
1367         }
1368       else if (b_in_top || a_in_bottom)
1369         {
1370           return 1;
1371         }
1372       else
1373         {
1374           return g_utf8_collate (name_a, name_b);
1375         }
1376     }
1377
1378   /* Two contacts, ordering depends of the sorting policy */
1379   return 0;
1380 }
1381
1382 static gint
1383 individual_store_contact_sort (FolksIndividual *individual_a,
1384     FolksIndividual *individual_b)
1385 {
1386   gint ret_val;
1387   EmpathyContact *contact_a = NULL, *contact_b = NULL;
1388   TpAccount *account_a, *account_b;
1389
1390   g_return_val_if_fail (individual_a != NULL || individual_b != NULL, 0);
1391
1392   /* alias */
1393   ret_val = g_utf8_collate (
1394       folks_aliasable_get_alias (FOLKS_ALIASABLE (individual_a)),
1395       folks_aliasable_get_alias (FOLKS_ALIASABLE (individual_b)));
1396
1397   if (ret_val != 0)
1398     goto out;
1399
1400   contact_a = empathy_contact_dup_from_folks_individual (individual_a);
1401   contact_b = empathy_contact_dup_from_folks_individual (individual_b);
1402   account_a = empathy_contact_get_account (contact_a);
1403   account_b = empathy_contact_get_account (contact_b);
1404
1405   g_assert (account_a != NULL);
1406   g_assert (account_b != NULL);
1407
1408   /* protocol */
1409   ret_val = g_strcmp0 (tp_account_get_protocol (account_a),
1410       tp_account_get_protocol (account_b));
1411
1412   if (ret_val != 0)
1413     goto out;
1414
1415   /* account ID */
1416   ret_val = g_strcmp0 (tp_proxy_get_object_path (account_a),
1417       tp_proxy_get_object_path (account_b));
1418
1419   if (ret_val != 0)
1420     goto out;
1421
1422   /* identifier */
1423   ret_val = g_utf8_collate (folks_individual_get_id (individual_a),
1424       folks_individual_get_id (individual_b));
1425
1426 out:
1427   tp_clear_object (&contact_a);
1428   tp_clear_object (&contact_b);
1429
1430   return ret_val;
1431 }
1432
1433 static gint
1434 individual_store_state_sort_func (GtkTreeModel *model,
1435     GtkTreeIter *iter_a,
1436     GtkTreeIter *iter_b,
1437     gpointer user_data)
1438 {
1439   gint ret_val;
1440   FolksIndividual *individual_a, *individual_b;
1441   gchar *name_a, *name_b;
1442   gboolean is_separator_a, is_separator_b;
1443   gboolean fake_group_a, fake_group_b;
1444   FolksPresenceType folks_presence_type_a, folks_presence_type_b;
1445   TpConnectionPresenceType tp_presence_a, tp_presence_b;
1446
1447   gtk_tree_model_get (model, iter_a,
1448       EMPATHY_INDIVIDUAL_STORE_COL_NAME, &name_a,
1449       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual_a,
1450       EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, &is_separator_a,
1451       EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP, &fake_group_a, -1);
1452   gtk_tree_model_get (model, iter_b,
1453       EMPATHY_INDIVIDUAL_STORE_COL_NAME, &name_b,
1454       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual_b,
1455       EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, &is_separator_b,
1456       EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP, &fake_group_b, -1);
1457
1458   if (individual_a == NULL || individual_b == NULL)
1459     {
1460       ret_val = compare_separator_and_groups (is_separator_a, is_separator_b,
1461           name_a, name_b, individual_a, individual_b, fake_group_a,
1462           fake_group_b);
1463       goto free_and_out;
1464     }
1465
1466   /* If we managed to get this far, we can start looking at
1467    * the presences.
1468    */
1469   folks_presence_type_a =
1470       folks_has_presence_get_presence_type (FOLKS_HAS_PRESENCE (individual_a));
1471   folks_presence_type_b =
1472       folks_has_presence_get_presence_type (FOLKS_HAS_PRESENCE (individual_b));
1473   tp_presence_a = empathy_folks_presence_type_to_tp (folks_presence_type_a);
1474   tp_presence_b = empathy_folks_presence_type_to_tp (folks_presence_type_b);
1475
1476   ret_val = -tp_connection_presence_type_cmp_availability (tp_presence_a,
1477       tp_presence_b);
1478
1479   if (ret_val == 0)
1480     {
1481       /* Fallback: compare by name et al. */
1482       ret_val = individual_store_contact_sort (individual_a, individual_b);
1483     }
1484
1485 free_and_out:
1486   g_free (name_a);
1487   g_free (name_b);
1488   tp_clear_object (&individual_a);
1489   tp_clear_object (&individual_b);
1490
1491   return ret_val;
1492 }
1493
1494 static gint
1495 individual_store_name_sort_func (GtkTreeModel *model,
1496     GtkTreeIter *iter_a,
1497     GtkTreeIter *iter_b,
1498     gpointer user_data)
1499 {
1500   gchar *name_a, *name_b;
1501   FolksIndividual *individual_a, *individual_b;
1502   gboolean is_separator_a = FALSE, is_separator_b = FALSE;
1503   gint ret_val;
1504   gboolean fake_group_a, fake_group_b;
1505
1506   gtk_tree_model_get (model, iter_a,
1507       EMPATHY_INDIVIDUAL_STORE_COL_NAME, &name_a,
1508       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual_a,
1509       EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, &is_separator_a,
1510       EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP, &fake_group_a, -1);
1511   gtk_tree_model_get (model, iter_b,
1512       EMPATHY_INDIVIDUAL_STORE_COL_NAME, &name_b,
1513       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual_b,
1514       EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, &is_separator_b,
1515       EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP, &fake_group_b, -1);
1516
1517   if (individual_a == NULL || individual_b == NULL)
1518     ret_val = compare_separator_and_groups (is_separator_a, is_separator_b,
1519         name_a, name_b, individual_a, individual_b, fake_group_a, fake_group_b);
1520   else
1521     ret_val = individual_store_contact_sort (individual_a, individual_b);
1522
1523   tp_clear_object (&individual_a);
1524   tp_clear_object (&individual_b);
1525   g_free (name_a);
1526   g_free (name_b);
1527
1528   return ret_val;
1529 }
1530
1531 static void
1532 individual_store_setup (EmpathyIndividualStore *self)
1533 {
1534   EmpathyIndividualStorePriv *priv;
1535   GType types[] = {
1536     GDK_TYPE_PIXBUF,            /* Status pixbuf */
1537     GDK_TYPE_PIXBUF,            /* Avatar pixbuf */
1538     G_TYPE_BOOLEAN,             /* Avatar pixbuf visible */
1539     G_TYPE_STRING,              /* Name */
1540     G_TYPE_UINT,                /* Presence type */
1541     G_TYPE_STRING,              /* Status string */
1542     G_TYPE_BOOLEAN,             /* Compact view */
1543     FOLKS_TYPE_INDIVIDUAL,      /* Individual type */
1544     G_TYPE_BOOLEAN,             /* Is group */
1545     G_TYPE_BOOLEAN,             /* Is active */
1546     G_TYPE_BOOLEAN,             /* Is online */
1547     G_TYPE_BOOLEAN,             /* Is separator */
1548     G_TYPE_BOOLEAN,             /* Can make audio calls */
1549     G_TYPE_BOOLEAN,             /* Can make video calls */
1550     G_TYPE_BOOLEAN,             /* Is a fake group */
1551     G_TYPE_STRV,                /* Client types */
1552   };
1553
1554   priv = GET_PRIV (self);
1555
1556   gtk_tree_store_set_column_types (GTK_TREE_STORE (self),
1557       EMPATHY_INDIVIDUAL_STORE_COL_COUNT, types);
1558
1559   /* Set up sorting */
1560   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (self),
1561       EMPATHY_INDIVIDUAL_STORE_COL_NAME,
1562       individual_store_name_sort_func, self, NULL);
1563   gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (self),
1564       EMPATHY_INDIVIDUAL_STORE_COL_STATUS,
1565       individual_store_state_sort_func, self, NULL);
1566
1567   priv->sort_criterium = EMPATHY_INDIVIDUAL_STORE_SORT_NAME;
1568   empathy_individual_store_set_sort_criterium (self, priv->sort_criterium);
1569 }
1570
1571 static gboolean
1572 individual_store_inhibit_active_cb (EmpathyIndividualStore *self)
1573 {
1574   EmpathyIndividualStorePriv *priv;
1575
1576   priv = GET_PRIV (self);
1577
1578   priv->show_active = TRUE;
1579   priv->inhibit_active = 0;
1580
1581   return FALSE;
1582 }
1583
1584 static void
1585 empathy_individual_store_init (EmpathyIndividualStore *self)
1586 {
1587   EmpathyIndividualStorePriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
1588       EMPATHY_TYPE_INDIVIDUAL_STORE, EmpathyIndividualStorePriv);
1589
1590   self->priv = priv;
1591   priv->show_avatars = TRUE;
1592   priv->show_groups = TRUE;
1593   priv->show_protocols = FALSE;
1594   priv->inhibit_active =
1595       g_timeout_add_seconds (ACTIVE_USER_WAIT_TO_ENABLE_TIME,
1596       (GSourceFunc) individual_store_inhibit_active_cb, self);
1597   priv->status_icons =
1598       g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
1599   individual_store_setup (self);
1600 }
1601
1602 EmpathyIndividualStore *
1603 empathy_individual_store_new (EmpathyIndividualManager *manager)
1604 {
1605   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_MANAGER (manager), NULL);
1606
1607   return g_object_new (EMPATHY_TYPE_INDIVIDUAL_STORE,
1608       "individual-manager", manager, NULL);
1609 }
1610
1611 EmpathyIndividualManager *
1612 empathy_individual_store_get_manager (EmpathyIndividualStore *self)
1613 {
1614   EmpathyIndividualStorePriv *priv;
1615
1616   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self), FALSE);
1617
1618   priv = GET_PRIV (self);
1619
1620   return priv->manager;
1621 }
1622
1623 gboolean
1624 empathy_individual_store_get_show_avatars (EmpathyIndividualStore *self)
1625 {
1626   EmpathyIndividualStorePriv *priv;
1627
1628   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self), TRUE);
1629
1630   priv = GET_PRIV (self);
1631
1632   return priv->show_avatars;
1633 }
1634
1635 static gboolean
1636 individual_store_update_list_mode_foreach (GtkTreeModel *model,
1637     GtkTreePath *path,
1638     GtkTreeIter *iter,
1639     EmpathyIndividualStore *self)
1640 {
1641   EmpathyIndividualStorePriv *priv;
1642   gboolean show_avatar = FALSE;
1643   FolksIndividual *individual;
1644   GdkPixbuf *pixbuf_status;
1645
1646   priv = GET_PRIV (self);
1647
1648   if (priv->show_avatars && !priv->is_compact)
1649     {
1650       show_avatar = TRUE;
1651     }
1652
1653   gtk_tree_model_get (model, iter,
1654       EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL, &individual, -1);
1655
1656   if (individual == NULL)
1657     {
1658       return FALSE;
1659     }
1660   /* get icon from hash_table */
1661   pixbuf_status =
1662       empathy_individual_store_get_individual_status_icon (self, individual);
1663
1664   gtk_tree_store_set (GTK_TREE_STORE (self), iter,
1665       EMPATHY_INDIVIDUAL_STORE_COL_ICON_STATUS, pixbuf_status,
1666       EMPATHY_INDIVIDUAL_STORE_COL_PIXBUF_AVATAR_VISIBLE, show_avatar,
1667       EMPATHY_INDIVIDUAL_STORE_COL_COMPACT, priv->is_compact, -1);
1668
1669   g_object_unref (individual);
1670
1671   return FALSE;
1672 }
1673
1674 void
1675 empathy_individual_store_set_show_avatars (EmpathyIndividualStore *self,
1676     gboolean show_avatars)
1677 {
1678   EmpathyIndividualStorePriv *priv;
1679   GtkTreeModel *model;
1680
1681   g_return_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self));
1682
1683   priv = GET_PRIV (self);
1684
1685   priv->show_avatars = show_avatars;
1686
1687   model = GTK_TREE_MODEL (self);
1688
1689   gtk_tree_model_foreach (model,
1690       (GtkTreeModelForeachFunc)
1691       individual_store_update_list_mode_foreach, self);
1692
1693   g_object_notify (G_OBJECT (self), "show-avatars");
1694 }
1695
1696 gboolean
1697 empathy_individual_store_get_show_protocols (EmpathyIndividualStore *self)
1698 {
1699   EmpathyIndividualStorePriv *priv;
1700
1701   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self), TRUE);
1702
1703   priv = GET_PRIV (self);
1704
1705   return priv->show_protocols;
1706 }
1707
1708 void
1709 empathy_individual_store_set_show_protocols (EmpathyIndividualStore *self,
1710     gboolean show_protocols)
1711 {
1712   EmpathyIndividualStorePriv *priv;
1713   GtkTreeModel *model;
1714
1715   g_return_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self));
1716
1717   priv = GET_PRIV (self);
1718
1719   priv->show_protocols = show_protocols;
1720
1721   model = GTK_TREE_MODEL (self);
1722
1723   gtk_tree_model_foreach (model,
1724       (GtkTreeModelForeachFunc)
1725       individual_store_update_list_mode_foreach, self);
1726
1727   g_object_notify (G_OBJECT (self), "show-protocols");
1728 }
1729
1730 gboolean
1731 empathy_individual_store_get_show_groups (EmpathyIndividualStore *self)
1732 {
1733   EmpathyIndividualStorePriv *priv;
1734
1735   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self), TRUE);
1736
1737   priv = GET_PRIV (self);
1738
1739   return priv->show_groups;
1740 }
1741
1742 void
1743 empathy_individual_store_set_show_groups (EmpathyIndividualStore *self,
1744     gboolean show_groups)
1745 {
1746   EmpathyIndividualStorePriv *priv;
1747
1748   g_return_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self));
1749
1750   priv = GET_PRIV (self);
1751
1752   if (priv->show_groups == show_groups)
1753     {
1754       return;
1755     }
1756
1757   priv->show_groups = show_groups;
1758
1759   if (priv->setup_idle_id == 0)
1760     {
1761       /* Remove all contacts and add them back, not optimized but
1762        * that's the easy way :)
1763        *
1764        * This is only done if there's not a pending setup idle
1765        * callback, otherwise it will race and the contacts will get
1766        * added twice */
1767       GList *contacts;
1768
1769       gtk_tree_store_clear (GTK_TREE_STORE (self));
1770       contacts = empathy_individual_manager_get_members (priv->manager);
1771
1772       individual_store_members_changed_cb (priv->manager,
1773           "re-adding members: toggled group visibility",
1774           contacts, NULL, 0, self);
1775       g_list_free (contacts);
1776     }
1777
1778   g_object_notify (G_OBJECT (self), "show-groups");
1779 }
1780
1781 gboolean
1782 empathy_individual_store_get_is_compact (EmpathyIndividualStore *self)
1783 {
1784   EmpathyIndividualStorePriv *priv;
1785
1786   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self), TRUE);
1787
1788   priv = GET_PRIV (self);
1789
1790   return priv->is_compact;
1791 }
1792
1793 void
1794 empathy_individual_store_set_is_compact (EmpathyIndividualStore *self,
1795     gboolean is_compact)
1796 {
1797   EmpathyIndividualStorePriv *priv;
1798   GtkTreeModel *model;
1799
1800   g_return_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self));
1801
1802   priv = GET_PRIV (self);
1803
1804   priv->is_compact = is_compact;
1805
1806   model = GTK_TREE_MODEL (self);
1807
1808   gtk_tree_model_foreach (model,
1809       (GtkTreeModelForeachFunc)
1810       individual_store_update_list_mode_foreach, self);
1811
1812   g_object_notify (G_OBJECT (self), "is-compact");
1813 }
1814
1815 EmpathyIndividualStoreSort
1816 empathy_individual_store_get_sort_criterium (EmpathyIndividualStore *self)
1817 {
1818   EmpathyIndividualStorePriv *priv;
1819
1820   g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self), 0);
1821
1822   priv = GET_PRIV (self);
1823
1824   return priv->sort_criterium;
1825 }
1826
1827 void
1828 empathy_individual_store_set_sort_criterium (EmpathyIndividualStore *self,
1829     EmpathyIndividualStoreSort sort_criterium)
1830 {
1831   EmpathyIndividualStorePriv *priv;
1832
1833   g_return_if_fail (EMPATHY_IS_INDIVIDUAL_STORE (self));
1834
1835   priv = GET_PRIV (self);
1836
1837   priv->sort_criterium = sort_criterium;
1838
1839   switch (sort_criterium)
1840     {
1841     case EMPATHY_INDIVIDUAL_STORE_SORT_STATE:
1842       gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (self),
1843           EMPATHY_INDIVIDUAL_STORE_COL_STATUS, GTK_SORT_ASCENDING);
1844       break;
1845
1846     case EMPATHY_INDIVIDUAL_STORE_SORT_NAME:
1847       gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (self),
1848           EMPATHY_INDIVIDUAL_STORE_COL_NAME, GTK_SORT_ASCENDING);
1849       break;
1850
1851     default:
1852       g_assert_not_reached ();
1853     }
1854
1855   g_object_notify (G_OBJECT (self), "sort-criterium");
1856 }
1857
1858 gboolean
1859 empathy_individual_store_row_separator_func (GtkTreeModel *model,
1860     GtkTreeIter *iter,
1861     gpointer data)
1862 {
1863   gboolean is_separator = FALSE;
1864
1865   g_return_val_if_fail (GTK_IS_TREE_MODEL (model), FALSE);
1866
1867   gtk_tree_model_get (model, iter,
1868       EMPATHY_INDIVIDUAL_STORE_COL_IS_SEPARATOR, &is_separator, -1);
1869
1870   return is_separator;
1871 }
1872
1873 gchar *
1874 empathy_individual_store_get_parent_group (GtkTreeModel *model,
1875     GtkTreePath *path,
1876     gboolean *path_is_group,
1877     gboolean *is_fake_group)
1878 {
1879   GtkTreeIter parent_iter, iter;
1880   gchar *name = NULL;
1881   gboolean is_group;
1882   gboolean fake = FALSE;
1883
1884   g_return_val_if_fail (GTK_IS_TREE_MODEL (model), NULL);
1885
1886   if (path_is_group)
1887     {
1888       *path_is_group = FALSE;
1889     }
1890
1891   if (!gtk_tree_model_get_iter (model, &iter, path))
1892     {
1893       return NULL;
1894     }
1895
1896   gtk_tree_model_get (model, &iter,
1897       EMPATHY_INDIVIDUAL_STORE_COL_IS_GROUP, &is_group,
1898       EMPATHY_INDIVIDUAL_STORE_COL_NAME, &name, -1);
1899
1900   if (!is_group)
1901     {
1902       g_free (name);
1903       name = NULL;
1904
1905       if (!gtk_tree_model_iter_parent (model, &parent_iter, &iter))
1906         {
1907           return NULL;
1908         }
1909
1910       iter = parent_iter;
1911
1912       gtk_tree_model_get (model, &iter,
1913           EMPATHY_INDIVIDUAL_STORE_COL_IS_GROUP, &is_group,
1914           EMPATHY_INDIVIDUAL_STORE_COL_NAME, &name,
1915           EMPATHY_INDIVIDUAL_STORE_COL_IS_FAKE_GROUP, &fake, -1);
1916       if (!is_group)
1917         {
1918           g_free (name);
1919           return NULL;
1920         }
1921     }
1922
1923   if (path_is_group)
1924     {
1925       *path_is_group = TRUE;
1926     }
1927
1928   if (is_fake_group != NULL)
1929     *is_fake_group = fake;
1930
1931   return name;
1932 }
1933
1934 static GdkPixbuf *
1935 individual_store_get_individual_status_icon_with_icon_name (
1936     EmpathyIndividualStore *self,
1937     FolksIndividual *individual,
1938     const gchar *status_icon_name)
1939 {
1940   GdkPixbuf *pixbuf_status = NULL;
1941   EmpathyIndividualStorePriv *priv;
1942   const gchar *protocol_name = NULL;
1943   gchar *icon_name = NULL;
1944   GList *personas, *l;
1945   guint contact_count;
1946   EmpathyContact *contact = NULL;
1947   gboolean show_protocols_here;
1948
1949   priv = GET_PRIV (self);
1950
1951   personas = folks_individual_get_personas (individual);
1952   for (l = personas, contact_count = 0; l; l = l->next)
1953     {
1954       if (TPF_IS_PERSONA (l->data))
1955         contact_count++;
1956
1957       if (contact_count > 1)
1958         break;
1959     }
1960
1961   show_protocols_here = (priv->show_protocols && (contact_count == 1));
1962   if (show_protocols_here)
1963     {
1964       contact = empathy_contact_dup_from_folks_individual (individual);
1965       protocol_name = empathy_protocol_name_for_contact (contact);
1966       icon_name = g_strdup_printf ("%s-%s", status_icon_name, protocol_name);
1967     }
1968   else
1969     {
1970       icon_name = g_strdup_printf ("%s", status_icon_name);
1971     }
1972   if (pixbuf_status == NULL)
1973     {
1974       pixbuf_status =
1975           empathy_pixbuf_contact_status_icon_with_icon_name (contact,
1976           status_icon_name, show_protocols_here);
1977       if (pixbuf_status != NULL)
1978         {
1979           g_hash_table_insert (priv->status_icons,
1980               g_strdup (icon_name), pixbuf_status);
1981         }
1982     }
1983
1984   g_free (icon_name);
1985   tp_clear_object (&contact);
1986
1987   return pixbuf_status;
1988 }
1989
1990 GdkPixbuf *
1991 empathy_individual_store_get_individual_status_icon (
1992     EmpathyIndividualStore *self,
1993     FolksIndividual *individual)
1994 {
1995   GdkPixbuf *pixbuf_status = NULL;
1996   const gchar *status_icon_name = NULL;
1997
1998   status_icon_name = empathy_icon_name_for_individual (individual);
1999   if (status_icon_name == NULL)
2000     return NULL;
2001
2002   pixbuf_status =
2003       individual_store_get_individual_status_icon_with_icon_name (self,
2004       individual, status_icon_name);
2005
2006   return pixbuf_status;
2007 }