]> git.0d.be Git - empathy.git/blob - src/empathy.c
EmpathyApp: don't open the main instance if only the preferences are requested
[empathy.git] / src / empathy.c
1 /*
2  * Copyright (C) 2007-2009 Collabora Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include "config.h"
23
24 #include <glib/gstdio.h>
25 #include <glib/gi18n.h>
26 #include <libnotify/notify.h>
27
28 #ifdef HAVE_LIBCHAMPLAIN
29 #include <clutter-gtk/clutter-gtk.h>
30 #endif
31
32 #include "empathy-accounts-common.h"
33 #include "empathy-accounts-dialog.h"
34 #include "empathy-chatroom-manager.h"
35 #include "empathy-client-factory.h"
36 #include "empathy-connection-aggregator.h"
37 #include "empathy-ft-factory.h"
38 #include "empathy-ft-manager.h"
39 #include "empathy-gsettings.h"
40 #include "empathy-location-manager.h"
41 #include "empathy-notifications-approver.h"
42 #include "empathy-presence-manager.h"
43 #include "empathy-request-util.h"
44 #include "empathy-roster-window.h"
45 #include "empathy-status-icon.h"
46 #include "empathy-ui-utils.h"
47 #include "empathy-utils.h"
48
49 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
50 #include "empathy-debug.h"
51
52 #define EMPATHY_DBUS_NAME "org.gnome.Empathy"
53
54 #define EMPATHY_TYPE_APP (empathy_app_get_type ())
55 #define EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_APP, EmpathyApp))
56 #define EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
57 #define EMPATHY_IS_EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_APP))
58 #define EMPATHY_IS_EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_APP))
59 #define EMPATHY_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
60
61 typedef struct _EmpathyApp EmpathyApp;
62 typedef struct _EmpathyAppClass EmpathyAppClass;
63
64 enum
65 {
66   PROP_NO_CONNECT = 1,
67   PROP_START_HIDDEN
68 };
69
70 GType empathy_app_get_type (void);
71
72 struct _EmpathyAppClass
73 {
74   GtkApplicationClass parent_class;
75 };
76
77 struct _EmpathyApp
78 {
79   GtkApplication parent;
80
81   /* Properties */
82   gboolean no_connect;
83   gboolean start_hidden;
84   gboolean show_preferences;
85   gchar *preferences_tab;
86
87   gboolean activated;
88
89   GtkWidget *window;
90   EmpathyStatusIcon *icon;
91   TpAccountManager *account_manager;
92   TplLogManager *log_manager;
93   EmpathyChatroomManager *chatroom_manager;
94   EmpathyFTFactory  *ft_factory;
95   EmpathyPresenceManager *presence_mgr;
96   GSettings *gsettings;
97   EmpathyNotificationsApprover *notifications_approver;
98   EmpathyConnectionAggregator *conn_aggregator;
99 #ifdef HAVE_GEOCLUE
100   EmpathyLocationManager *location_manager;
101 #endif
102 #ifdef ENABLE_DEBUG
103   TpDebugSender *debug_sender;
104 #endif
105
106   gboolean shell_running;
107 };
108
109
110 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
111
112 static void
113 empathy_app_dispose (GObject *object)
114 {
115   EmpathyApp *self = EMPATHY_APP (object);
116   void (*dispose) (GObject *) =
117     G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
118
119   /* Only set our presence to offline when exiting if GNOME Shell is not
120    * running */
121   if (self->presence_mgr != NULL &&
122       !self->shell_running)
123     {
124       empathy_presence_manager_set_state (self->presence_mgr,
125           TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
126     }
127
128 #ifdef ENABLE_DEBUG
129   tp_clear_object (&self->debug_sender);
130 #endif
131
132   tp_clear_object (&self->presence_mgr);
133   tp_clear_object (&self->icon);
134   tp_clear_object (&self->account_manager);
135   tp_clear_object (&self->log_manager);
136   tp_clear_object (&self->chatroom_manager);
137 #ifdef HAVE_GEOCLUE
138   tp_clear_object (&self->location_manager);
139 #endif
140   tp_clear_object (&self->ft_factory);
141   tp_clear_object (&self->gsettings);
142   tp_clear_object (&self->notifications_approver);
143   tp_clear_object (&self->conn_aggregator);
144
145   if (dispose != NULL)
146     dispose (object);
147 }
148
149 static void
150 empathy_app_finalize (GObject *object)
151 {
152   EmpathyApp *self = EMPATHY_APP (object);
153   void (*finalize) (GObject *) =
154     G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
155
156   g_free (self->preferences_tab);
157
158   if (finalize != NULL)
159     finalize (object);
160 }
161
162 static void account_manager_ready_cb (GObject *source_object,
163     GAsyncResult *result,
164     gpointer user_data);
165
166 static void
167 empathy_app_set_property (GObject *object,
168     guint prop_id,
169     const GValue *value,
170     GParamSpec *pspec)
171 {
172   EmpathyApp *self = EMPATHY_APP (object);
173
174   switch (prop_id)
175     {
176       case PROP_NO_CONNECT:
177         self->no_connect = g_value_get_boolean (value);
178         break;
179       case PROP_START_HIDDEN:
180         self->start_hidden = g_value_get_boolean (value);
181         break;
182       default:
183         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
184         break;
185     }
186 }
187
188 static void
189 new_incoming_transfer_cb (EmpathyFTFactory *factory,
190     EmpathyFTHandler *handler,
191     GError *error,
192     gpointer user_data)
193 {
194   if (error)
195     empathy_ft_manager_display_error (handler, error);
196   else
197     empathy_receive_file_with_file_chooser (handler);
198 }
199
200 static void
201 new_ft_handler_cb (EmpathyFTFactory *factory,
202     EmpathyFTHandler *handler,
203     GError *error,
204     gpointer user_data)
205 {
206   if (error)
207     empathy_ft_manager_display_error (handler, error);
208   else
209     empathy_ft_manager_add_handler (handler);
210
211   g_object_unref (handler);
212 }
213
214 static void
215 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
216     const gchar *key,
217     gpointer user_data)
218 {
219   EmpathyPresenceManager *presence_mgr = user_data;
220
221   empathy_presence_manager_set_auto_away (presence_mgr,
222       g_settings_get_boolean (gsettings, key));
223 }
224
225 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
226
227 static void
228 list_names_cb (TpDBusDaemon *bus_daemon,
229         const gchar * const *names,
230         const GError *error,
231         gpointer user_data,
232         GObject *weak_object)
233 {
234   EmpathyApp *self = (EmpathyApp *) weak_object;
235   guint i;
236
237   if (error != NULL)
238       goto out;
239
240   for (i = 0; names[i] != NULL; i++)
241     {
242       if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
243         {
244           self->shell_running = TRUE;
245           break;
246         }
247     }
248
249 out:
250   if (self->shell_running)
251     {
252       DEBUG ("GNOME Shell is running, don't create status icon");
253
254       /* Rely on GNOME Shell to watch session state */
255       empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE);
256
257       empathy_roster_window_set_shell_running (
258           EMPATHY_ROSTER_WINDOW (self->window), TRUE);
259     }
260   else
261     {
262       gboolean autoaway;
263
264       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
265           self->start_hidden);
266
267       /* Allow Empathy to watch session state */
268       autoaway = g_settings_get_boolean (self->gsettings,
269           EMPATHY_PREFS_AUTOAWAY);
270
271       g_signal_connect (self->gsettings,
272           "changed::" EMPATHY_PREFS_AUTOAWAY,
273           G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
274           self->presence_mgr);
275
276       empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
277     }
278 }
279
280 static void
281 empathy_app_activate (GApplication *app)
282 {
283   EmpathyApp *self = (EmpathyApp *) app;
284
285   if (!self->activated)
286     {
287       GError *error = NULL;
288       TpDBusDaemon *dbus;
289
290       empathy_gtk_init ();
291
292       /* Create the FT factory */
293       self->ft_factory = empathy_ft_factory_dup_singleton ();
294       g_signal_connect (self->ft_factory, "new-ft-handler",
295           G_CALLBACK (new_ft_handler_cb), NULL);
296       g_signal_connect (self->ft_factory, "new-incoming-transfer",
297           G_CALLBACK (new_incoming_transfer_cb), NULL);
298
299       if (!empathy_ft_factory_register (self->ft_factory, &error))
300         {
301           g_warning ("Failed to register FileTransfer handler: %s",
302               error->message);
303           g_error_free (error);
304         }
305
306       self->activated = TRUE;
307
308       /* Setting up UI */
309       self->window = empathy_roster_window_new (GTK_APPLICATION (app));
310       gtk_application_set_app_menu (GTK_APPLICATION (self),
311           empathy_roster_window_get_menu_model (
312             EMPATHY_ROSTER_WINDOW (self->window)));
313
314       gtk_application_add_window (GTK_APPLICATION (app),
315           GTK_WINDOW (self->window));
316       gtk_application_add_accelerator (GTK_APPLICATION (app),
317           "<Primary>h",
318           "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
319           NULL);
320
321       /* check if Shell is running */
322       dbus = tp_dbus_daemon_dup (&error);
323       g_assert_no_error (error);
324
325       tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
326               self, NULL, G_OBJECT (self));
327
328       g_object_unref (dbus);
329
330       self->notifications_approver =
331         empathy_notifications_approver_dup_singleton ();
332     }
333
334   if (self->show_preferences)
335     {
336       empathy_roster_window_show_preferences (
337           EMPATHY_ROSTER_WINDOW (self->window), self->preferences_tab);
338
339       self->show_preferences = FALSE;
340     }
341   else
342     {
343       if (!self->start_hidden)
344         empathy_window_present (GTK_WINDOW (self->window));
345     }
346
347   /* Display the accounts dialog if needed */
348   tp_proxy_prepare_async (self->account_manager, NULL,
349       account_manager_ready_cb, self);
350 }
351
352 static gboolean
353 preferences_cb (const char *option_name,
354     const char *value,
355     gpointer data,
356     GError **error)
357 {
358   EmpathyApp *self = data;
359
360   self->show_preferences = TRUE;
361
362   g_free (self->preferences_tab);
363   self->preferences_tab = g_strdup (value);
364
365   return TRUE;
366 }
367
368 static gboolean
369 show_version_cb (const char *option_name,
370     const char *value,
371     gpointer data,
372     GError **error);
373
374 static gboolean
375 empathy_app_local_command_line (GApplication *app,
376     gchar ***arguments,
377     gint *exit_status)
378 {
379   EmpathyApp *self = (EmpathyApp *) app;
380   gint i;
381   gchar **argv;
382   gint argc = 0;
383   gboolean retval = TRUE;
384   GError *error = NULL;
385   gboolean no_connect = FALSE, start_hidden = FALSE;
386
387   GOptionContext *optcontext;
388   GOptionGroup *group;
389   GOptionEntry options[] = {
390       { "no-connect", 'n',
391         0, G_OPTION_ARG_NONE, &no_connect,
392         N_("Don't connect on startup"),
393         NULL },
394       { "start-hidden", 'h',
395         0, G_OPTION_ARG_NONE, &start_hidden,
396         N_("Don't display the contact list or any other dialogs on startup"),
397         NULL },
398       { "show-preferences", 'p',
399         G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
400         NULL, NULL },
401       { "version", 'v',
402         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
403         NULL, NULL },
404       { NULL }
405   };
406
407   if (!g_application_register (app, NULL, &error))
408     {
409       g_warning("Impossible to register empathy: %s", error->message);
410       g_clear_error (&error);
411       *exit_status = EXIT_FAILURE;
412       return retval;
413     }
414
415   /* We create a group so that GOptionArgFuncs get the user data */
416   group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
417   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
418   g_option_group_add_entries (group, options);
419
420   optcontext = g_option_context_new (N_("- Empathy IM Client"));
421   g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
422   g_option_context_set_main_group (optcontext, group);
423   g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
424
425   argc = g_strv_length (*arguments);
426
427   /* We dup the args because g_option_context_parse() sets things to NULL,
428    * but we want to parse all the command line to the primary instance
429    * if necessary. */
430   argv = g_new (gchar*, argc + 1);
431   for (i = 0; i <= argc; i++)
432     argv[i] = (*arguments)[i];
433
434   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
435     {
436       g_print ("%s\nRun '%s --help' to see a full list of available command "
437           "line options.\n",
438           error->message, argv[0]);
439       g_warning ("Error in empathy init: %s", error->message);
440       g_clear_error (&error);
441
442       *exit_status = EXIT_FAILURE;
443     }
444   else
445     {
446       self->no_connect = no_connect;
447       self->start_hidden = start_hidden;
448
449       g_application_activate (app);
450     }
451
452   g_free (argv);
453   g_option_context_free (optcontext);
454
455   return retval;
456 }
457
458 static void empathy_app_constructed (GObject *object);
459
460 static void
461 empathy_app_class_init (EmpathyAppClass *klass)
462 {
463   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
464   GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
465   GParamSpec *spec;
466
467   gobject_class->set_property = empathy_app_set_property;
468   gobject_class->constructed = empathy_app_constructed;
469   gobject_class->dispose = empathy_app_dispose;
470   gobject_class->finalize = empathy_app_finalize;
471
472   g_app_class->local_command_line = empathy_app_local_command_line;
473   g_app_class->activate = empathy_app_activate;
474
475   spec = g_param_spec_boolean ("no-connect", "no connect",
476       "Don't connect on startup",
477       FALSE,
478       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
479   g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
480
481   spec = g_param_spec_boolean ("start-hidden", "start hidden",
482       "Don't display the contact list or any other dialogs on startup",
483       FALSE,
484       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
485   g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
486 }
487
488 static void
489 empathy_app_init (EmpathyApp *self)
490 {
491 }
492
493 static void
494 migrate_config_to_xdg_dir (void)
495 {
496   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
497   int i;
498   GFile *xdg_file, *old_file;
499   static const gchar* filenames[] = {
500     "geometry.ini",
501     "irc-networks.xml",
502     "chatrooms.xml",
503     "contact-groups.xml",
504     "status-presets.xml",
505     "accels.txt",
506     NULL
507   };
508
509   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
510   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
511     {
512       /* xdg config dir already exists */
513       g_free (xdg_dir);
514       return;
515     }
516
517   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
518       PACKAGE_NAME, NULL);
519   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
520     {
521       /* old config dir didn't exist */
522       g_free (xdg_dir);
523       g_free (old_dir);
524       return;
525     }
526
527   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
528     {
529       DEBUG ("Failed to create configuration directory; aborting migration");
530       g_free (xdg_dir);
531       g_free (old_dir);
532       return;
533     }
534
535   for (i = 0; filenames[i]; i++)
536     {
537       old_filename = g_build_filename (old_dir, filenames[i], NULL);
538       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
539         {
540           g_free (old_filename);
541           continue;
542         }
543       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
544       old_file = g_file_new_for_path (old_filename);
545       xdg_file = g_file_new_for_path (xdg_filename);
546
547       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
548           NULL, NULL, NULL, NULL))
549         DEBUG ("Failed to migrate %s", filenames[i]);
550
551       g_free (old_filename);
552       g_free (xdg_filename);
553       g_object_unref (old_file);
554       g_object_unref (xdg_file);
555     }
556
557   g_free (xdg_dir);
558   g_free (old_dir);
559 }
560
561 static void
562 show_accounts_ui (EmpathyApp *self,
563     GdkScreen *screen,
564     gboolean if_needed)
565 {
566   empathy_accounts_dialog_show_application (screen,
567       NULL, if_needed, self->start_hidden);
568 }
569
570 static gboolean
571 show_version_cb (const char *option_name,
572     const char *value,
573     gpointer data,
574     GError **error)
575 {
576   g_print ("%s\n", PACKAGE_STRING);
577
578   exit (EXIT_SUCCESS);
579 }
580
581 static void
582 account_manager_ready_cb (GObject *source_object,
583     GAsyncResult *result,
584     gpointer user_data)
585 {
586   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
587   EmpathyApp *self = user_data;
588   GError *error = NULL;
589   TpConnectionPresenceType presence;
590
591   if (!tp_proxy_prepare_finish (manager, result, &error))
592     {
593       GtkWidget *dialog;
594
595       DEBUG ("Failed to prepare account manager: %s", error->message);
596
597       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
598           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
599           _("Error contacting the Account Manager"));
600       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
601           _("There was an error while trying to connect to the Telepathy "
602             "Account Manager. The error was:\n\n%s"),
603           error->message);
604
605       gtk_dialog_run (GTK_DIALOG (dialog));
606       gtk_widget_destroy (dialog);
607
608       g_error_free (error);
609       return;
610     }
611
612   /* Autoconnect */
613   presence = tp_account_manager_get_most_available_presence (manager, NULL,
614       NULL);
615
616   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
617       !self->no_connect &&
618       tp_connection_presence_type_cmp_availability
619           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
620             <= 0)
621       /* if current state is Offline, then put it online */
622       empathy_presence_manager_set_state (self->presence_mgr,
623           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
624
625   /* Pop up the accounts dialog if we don't have any account */
626   if (!empathy_accounts_has_accounts (manager))
627     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
628 }
629
630 static void
631 account_join_chatrooms (TpAccount *account,
632   EmpathyChatroomManager *chatroom_manager)
633 {
634   TpConnection *conn;
635   GList *chatrooms, *p;
636
637   /* Wait if we are not connected or the TpConnection is not prepared yet */
638   conn = tp_account_get_connection (account);
639   if (conn == NULL)
640     return;
641
642   chatrooms = empathy_chatroom_manager_get_chatrooms (
643           chatroom_manager, account);
644
645   for (p = chatrooms; p != NULL; p = p->next)
646     {
647       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
648
649       if (!empathy_chatroom_get_auto_connect (room))
650         continue;
651
652       empathy_join_muc (account, empathy_chatroom_get_room (room),
653         TP_USER_ACTION_TIME_NOT_USER_ACTION);
654     }
655   g_list_free (chatrooms);
656 }
657
658 static void
659 account_connection_changed_cb (TpAccount *account,
660     GParamSpec *spec,
661     EmpathyChatroomManager *manager)
662 {
663   account_join_chatrooms (account, manager);
664 }
665
666 static void
667 account_manager_chatroom_ready_cb (GObject *source_object,
668     GAsyncResult *result,
669     gpointer user_data)
670 {
671   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
672   EmpathyChatroomManager *chatroom_manager = user_data;
673   GList *accounts, *l;
674   GError *error = NULL;
675
676   if (!tp_proxy_prepare_finish (account_manager, result, &error))
677     {
678       DEBUG ("Failed to prepare account manager: %s", error->message);
679       g_error_free (error);
680       return;
681     }
682
683   accounts = tp_account_manager_dup_valid_accounts (account_manager);
684
685   for (l = accounts; l != NULL; l = g_list_next (l))
686     {
687       TpAccount *account = TP_ACCOUNT (l->data);
688
689       /* Try to join all rooms if we're connected */
690       account_join_chatrooms (account, chatroom_manager);
691
692       /* And/or join them on (re)connection */
693       tp_g_signal_connect_object (account, "notify::connection",
694         G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
695     }
696   g_list_free_full (accounts, g_object_unref);
697 }
698
699 static void
700 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
701     GParamSpec *pspec,
702     gpointer user_data)
703 {
704   TpAccountManager *account_manager = user_data;
705
706   tp_proxy_prepare_async (account_manager, NULL,
707       account_manager_chatroom_ready_cb, chatroom_manager);
708 }
709
710 static void
711 empathy_app_constructed (GObject *object)
712 {
713   EmpathyApp *self = (EmpathyApp *) object;
714   gboolean chatroom_manager_ready;
715
716   textdomain (GETTEXT_PACKAGE);
717   g_set_application_name (_(PACKAGE_NAME));
718
719   gtk_window_set_default_icon_name ("empathy");
720
721 #ifdef ENABLE_DEBUG
722   /* Set up debug sender */
723   self->debug_sender = tp_debug_sender_dup ();
724   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
725 #endif
726
727   notify_init (_(PACKAGE_NAME));
728
729   /* Setting up Idle */
730   self->presence_mgr = empathy_presence_manager_dup_singleton ();
731
732   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
733
734   /* account management */
735   self->account_manager = tp_account_manager_dup ();
736   tp_proxy_prepare_async (self->account_manager, NULL,
737       account_manager_ready_cb, self);
738
739   tp_account_manager_enable_restart (self->account_manager);
740
741   migrate_config_to_xdg_dir ();
742
743   /* Logging */
744   self->log_manager = tpl_log_manager_dup_singleton ();
745
746   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
747
748   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
749   if (!chatroom_manager_ready)
750     {
751       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
752           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
753     }
754   else
755     {
756       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
757           self->account_manager);
758     }
759
760   /* Location mananger */
761 #ifdef HAVE_GEOCLUE
762   self->location_manager = empathy_location_manager_dup_singleton ();
763 #endif
764
765   self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
766
767   self->activated = FALSE;
768   self->ft_factory = NULL;
769   self->window = NULL;
770 }
771
772 static void
773 add_empathy_features (void)
774 {
775   /* Add 'empathy' specific feature before doing any preparation */
776   EmpathyClientFactory *factory;
777
778   factory = empathy_client_factory_dup ();
779
780   tp_simple_client_factory_add_connection_features_varargs (
781       TP_SIMPLE_CLIENT_FACTORY (factory),
782       /* empathy_connection_aggregator_get_all_groups(), used by
783        * EmpathyGroupsWidget relies on it */
784       TP_CONNECTION_FEATURE_CONTACT_GROUPS,
785       /* empathy_connection_aggregator_dup_all_contacts(), used by
786        * EmpathyEventManager relies on it */
787       TP_CONNECTION_FEATURE_CONTACT_LIST,
788       NULL);
789
790   g_object_unref (factory);
791 }
792
793 int
794 main (int argc, char *argv[])
795 {
796   EmpathyApp *app;
797   gint retval;
798
799   g_type_init ();
800
801 #ifdef HAVE_LIBCHAMPLAIN
802   g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
803       CLUTTER_INIT_SUCCESS, 1);
804 #endif
805
806   g_type_init ();
807   empathy_init ();
808
809   add_empathy_features ();
810
811   app = g_object_new (EMPATHY_TYPE_APP,
812       "application-id", EMPATHY_DBUS_NAME,
813       NULL);
814
815   retval = g_application_run (G_APPLICATION (app), argc, argv);
816
817   notify_uninit ();
818   xmlCleanupParser ();
819
820   g_object_unref (app);
821
822   return retval;
823 }