]> git.0d.be Git - empathy.git/blob - src/empathy.c
Empathy: Use g_application_activate to pass platform-data to the GtkApplication
[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 gboolean
215 empathy_app_local_command_line (GApplication *app,
216     gchar ***arguments,
217     gint *exit_status);
218
219 static void
220 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
221     const gchar *key,
222     gpointer user_data)
223 {
224   EmpathyPresenceManager *presence_mgr = user_data;
225
226   empathy_presence_manager_set_auto_away (presence_mgr,
227       g_settings_get_boolean (gsettings, key));
228 }
229
230 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
231
232 static void
233 list_names_cb (TpDBusDaemon *bus_daemon,
234         const gchar * const *names,
235         const GError *error,
236         gpointer user_data,
237         GObject *weak_object)
238 {
239   EmpathyApp *self = (EmpathyApp *) weak_object;
240   guint i;
241
242   if (error != NULL)
243       goto out;
244
245   for (i = 0; names[i] != NULL; i++)
246     {
247       if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
248         {
249           self->shell_running = TRUE;
250           break;
251         }
252     }
253
254 out:
255   if (self->shell_running)
256     {
257       DEBUG ("GNOME Shell is running, don't create status icon");
258
259       /* Rely on GNOME Shell to watch session state */
260       empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE);
261
262       empathy_roster_window_set_shell_running (
263           EMPATHY_ROSTER_WINDOW (self->window), TRUE);
264     }
265   else
266     {
267       gboolean autoaway;
268
269       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
270           self->start_hidden);
271
272       /* Allow Empathy to watch session state */
273       autoaway = g_settings_get_boolean (self->gsettings,
274           EMPATHY_PREFS_AUTOAWAY);
275
276       g_signal_connect (self->gsettings,
277           "changed::" EMPATHY_PREFS_AUTOAWAY,
278           G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
279           self->presence_mgr);
280
281       empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
282     }
283 }
284
285 static void
286 empathy_app_activate (GApplication *app)
287 {
288   EmpathyApp *self = (EmpathyApp *) app;
289
290   if (!self->activated)
291     {
292       GError *error = NULL;
293       TpDBusDaemon *dbus;
294
295       empathy_gtk_init ();
296
297       /* Create the FT factory */
298       self->ft_factory = empathy_ft_factory_dup_singleton ();
299       g_signal_connect (self->ft_factory, "new-ft-handler",
300           G_CALLBACK (new_ft_handler_cb), NULL);
301       g_signal_connect (self->ft_factory, "new-incoming-transfer",
302           G_CALLBACK (new_incoming_transfer_cb), NULL);
303
304       if (!empathy_ft_factory_register (self->ft_factory, &error))
305         {
306           g_warning ("Failed to register FileTransfer handler: %s",
307               error->message);
308           g_error_free (error);
309         }
310
311       self->activated = TRUE;
312
313       /* Setting up UI */
314       self->window = empathy_roster_window_new (GTK_APPLICATION (app));
315       gtk_application_set_app_menu (GTK_APPLICATION (self),
316           empathy_roster_window_get_menu_model (
317             EMPATHY_ROSTER_WINDOW (self->window)));
318
319       gtk_application_add_window (GTK_APPLICATION (app),
320           GTK_WINDOW (self->window));
321       gtk_application_add_accelerator (GTK_APPLICATION (app),
322           "<Primary>h",
323           "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
324           NULL);
325
326       /* check if Shell is running */
327       dbus = tp_dbus_daemon_dup (&error);
328       g_assert_no_error (error);
329
330       tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
331               self, NULL, G_OBJECT (self));
332
333       g_object_unref (dbus);
334
335       self->notifications_approver =
336         empathy_notifications_approver_dup_singleton ();
337     }
338
339   if (self->show_preferences)
340     empathy_roster_window_show_preferences (
341         EMPATHY_ROSTER_WINDOW (self->window), self->preferences_tab);
342
343   if (!self->start_hidden)
344     empathy_window_present (GTK_WINDOW (self->window));
345
346   /* Display the accounts dialog if needed */
347   tp_proxy_prepare_async (self->account_manager, NULL,
348       account_manager_ready_cb, self);
349 }
350
351 static gboolean
352 preferences_cb (const char *option_name,
353     const char *value,
354     gpointer data,
355     GError **error)
356 {
357   EmpathyApp *self = data;
358
359   self->show_preferences = TRUE;
360
361   g_free (self->preferences_tab);
362   self->preferences_tab = g_strdup (value);
363
364   return TRUE;
365 }
366
367 static gboolean
368 show_version_cb (const char *option_name,
369     const char *value,
370     gpointer data,
371     GError **error);
372
373 static gboolean
374 empathy_app_local_command_line (GApplication *app,
375     gchar ***arguments,
376     gint *exit_status)
377 {
378   EmpathyApp *self = (EmpathyApp *) app;
379   gint i;
380   gchar **argv;
381   gint argc = 0;
382   gboolean retval = TRUE;
383   GError *error = NULL;
384   gboolean no_connect = FALSE, start_hidden = FALSE;
385
386   GOptionContext *optcontext;
387   GOptionGroup *group;
388   GOptionEntry options[] = {
389       { "no-connect", 'n',
390         0, G_OPTION_ARG_NONE, &no_connect,
391         N_("Don't connect on startup"),
392         NULL },
393       { "start-hidden", 'h',
394         0, G_OPTION_ARG_NONE, &start_hidden,
395         N_("Don't display the contact list or any other dialogs on startup"),
396         NULL },
397       { "show-preferences", 'p',
398         G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
399         NULL, NULL },
400       { "version", 'v',
401         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
402         NULL, NULL },
403       { NULL }
404   };
405
406   if (!g_application_register (app, NULL, &error))
407     {
408       g_warning("Impossible to register empathy: %s", error->message);
409       *exit_status = EXIT_FAILURE;
410       return retval;
411     }
412
413   /* We create a group so that GOptionArgFuncs get the user data */
414   group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
415   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
416   g_option_group_add_entries (group, options);
417
418   optcontext = g_option_context_new (N_("- Empathy IM Client"));
419   g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
420   g_option_context_set_main_group (optcontext, group);
421   g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
422
423   argc = g_strv_length (*arguments);
424
425   /* We dup the args because g_option_context_parse() sets things to NULL,
426    * but we want to parse all the command line to the primary instance
427    * if necessary. */
428   argv = g_new (gchar*, argc + 1);
429   for (i = 0; i <= argc; i++)
430     argv[i] = (*arguments)[i];
431
432   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
433     {
434       g_print ("%s\nRun '%s --help' to see a full list of available command "
435           "line options.\n",
436           error->message, argv[0]);
437       g_warning ("Error in empathy init: %s", error->message);
438
439       *exit_status = EXIT_FAILURE;
440     }
441
442   g_free (argv);
443
444   g_option_context_free (optcontext);
445
446   self->no_connect = no_connect;
447   self->start_hidden = start_hidden;
448
449   g_application_activate (app);
450
451   return retval;
452 }
453
454 static void empathy_app_constructed (GObject *object);
455
456 static void
457 empathy_app_class_init (EmpathyAppClass *klass)
458 {
459   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
460   GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
461   GParamSpec *spec;
462
463   gobject_class->set_property = empathy_app_set_property;
464   gobject_class->constructed = empathy_app_constructed;
465   gobject_class->dispose = empathy_app_dispose;
466   gobject_class->finalize = empathy_app_finalize;
467
468   g_app_class->local_command_line = empathy_app_local_command_line;
469   g_app_class->activate = empathy_app_activate;
470
471   spec = g_param_spec_boolean ("no-connect", "no connect",
472       "Don't connect on startup",
473       FALSE,
474       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
475   g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
476
477   spec = g_param_spec_boolean ("start-hidden", "start hidden",
478       "Don't display the contact list or any other dialogs on startup",
479       FALSE,
480       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
481   g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
482 }
483
484 static void
485 empathy_app_init (EmpathyApp *self)
486 {
487 }
488
489 static void
490 migrate_config_to_xdg_dir (void)
491 {
492   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
493   int i;
494   GFile *xdg_file, *old_file;
495   static const gchar* filenames[] = {
496     "geometry.ini",
497     "irc-networks.xml",
498     "chatrooms.xml",
499     "contact-groups.xml",
500     "status-presets.xml",
501     "accels.txt",
502     NULL
503   };
504
505   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
506   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
507     {
508       /* xdg config dir already exists */
509       g_free (xdg_dir);
510       return;
511     }
512
513   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
514       PACKAGE_NAME, NULL);
515   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
516     {
517       /* old config dir didn't exist */
518       g_free (xdg_dir);
519       g_free (old_dir);
520       return;
521     }
522
523   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
524     {
525       DEBUG ("Failed to create configuration directory; aborting migration");
526       g_free (xdg_dir);
527       g_free (old_dir);
528       return;
529     }
530
531   for (i = 0; filenames[i]; i++)
532     {
533       old_filename = g_build_filename (old_dir, filenames[i], NULL);
534       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
535         {
536           g_free (old_filename);
537           continue;
538         }
539       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
540       old_file = g_file_new_for_path (old_filename);
541       xdg_file = g_file_new_for_path (xdg_filename);
542
543       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
544           NULL, NULL, NULL, NULL))
545         DEBUG ("Failed to migrate %s", filenames[i]);
546
547       g_free (old_filename);
548       g_free (xdg_filename);
549       g_object_unref (old_file);
550       g_object_unref (xdg_file);
551     }
552
553   g_free (xdg_dir);
554   g_free (old_dir);
555 }
556
557 static void
558 show_accounts_ui (EmpathyApp *self,
559     GdkScreen *screen,
560     gboolean if_needed)
561 {
562   empathy_accounts_dialog_show_application (screen,
563       NULL, if_needed, self->start_hidden);
564 }
565
566 static gboolean
567 show_version_cb (const char *option_name,
568     const char *value,
569     gpointer data,
570     GError **error)
571 {
572   g_print ("%s\n", PACKAGE_STRING);
573
574   exit (EXIT_SUCCESS);
575 }
576
577 static void
578 account_manager_ready_cb (GObject *source_object,
579     GAsyncResult *result,
580     gpointer user_data)
581 {
582   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
583   EmpathyApp *self = user_data;
584   GError *error = NULL;
585   TpConnectionPresenceType presence;
586
587   if (!tp_proxy_prepare_finish (manager, result, &error))
588     {
589       GtkWidget *dialog;
590
591       DEBUG ("Failed to prepare account manager: %s", error->message);
592
593       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
594           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
595           _("Error contacting the Account Manager"));
596       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
597           _("There was an error while trying to connect to the Telepathy "
598             "Account Manager. The error was:\n\n%s"),
599           error->message);
600
601       gtk_dialog_run (GTK_DIALOG (dialog));
602       gtk_widget_destroy (dialog);
603
604       g_error_free (error);
605       return;
606     }
607
608   /* Autoconnect */
609   presence = tp_account_manager_get_most_available_presence (manager, NULL,
610       NULL);
611
612   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
613       !self->no_connect &&
614       tp_connection_presence_type_cmp_availability
615           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
616             <= 0)
617       /* if current state is Offline, then put it online */
618       empathy_presence_manager_set_state (self->presence_mgr,
619           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
620
621   /* Pop up the accounts dialog if we don't have any account */
622   if (!empathy_accounts_has_accounts (manager))
623     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
624 }
625
626 static void
627 account_join_chatrooms (TpAccount *account,
628   EmpathyChatroomManager *chatroom_manager)
629 {
630   TpConnection *conn;
631   GList *chatrooms, *p;
632
633   /* Wait if we are not connected or the TpConnection is not prepared yet */
634   conn = tp_account_get_connection (account);
635   if (conn == NULL)
636     return;
637
638   chatrooms = empathy_chatroom_manager_get_chatrooms (
639           chatroom_manager, account);
640
641   for (p = chatrooms; p != NULL; p = p->next)
642     {
643       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
644
645       if (!empathy_chatroom_get_auto_connect (room))
646         continue;
647
648       empathy_join_muc (account, empathy_chatroom_get_room (room),
649         TP_USER_ACTION_TIME_NOT_USER_ACTION);
650     }
651   g_list_free (chatrooms);
652 }
653
654 static void
655 account_connection_changed_cb (TpAccount *account,
656     GParamSpec *spec,
657     EmpathyChatroomManager *manager)
658 {
659   account_join_chatrooms (account, manager);
660 }
661
662 static void
663 account_manager_chatroom_ready_cb (GObject *source_object,
664     GAsyncResult *result,
665     gpointer user_data)
666 {
667   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
668   EmpathyChatroomManager *chatroom_manager = user_data;
669   GList *accounts, *l;
670   GError *error = NULL;
671
672   if (!tp_proxy_prepare_finish (account_manager, result, &error))
673     {
674       DEBUG ("Failed to prepare account manager: %s", error->message);
675       g_error_free (error);
676       return;
677     }
678
679   accounts = tp_account_manager_dup_valid_accounts (account_manager);
680
681   for (l = accounts; l != NULL; l = g_list_next (l))
682     {
683       TpAccount *account = TP_ACCOUNT (l->data);
684
685       /* Try to join all rooms if we're connected */
686       account_join_chatrooms (account, chatroom_manager);
687
688       /* And/or join them on (re)connection */
689       tp_g_signal_connect_object (account, "notify::connection",
690         G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
691     }
692   g_list_free_full (accounts, g_object_unref);
693 }
694
695 static void
696 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
697     GParamSpec *pspec,
698     gpointer user_data)
699 {
700   TpAccountManager *account_manager = user_data;
701
702   tp_proxy_prepare_async (account_manager, NULL,
703       account_manager_chatroom_ready_cb, chatroom_manager);
704 }
705
706 static void
707 empathy_app_constructed (GObject *object)
708 {
709   EmpathyApp *self = (EmpathyApp *) object;
710   gboolean chatroom_manager_ready;
711
712   textdomain (GETTEXT_PACKAGE);
713   g_set_application_name (_(PACKAGE_NAME));
714
715   gtk_window_set_default_icon_name ("empathy");
716
717 #ifdef ENABLE_DEBUG
718   /* Set up debug sender */
719   self->debug_sender = tp_debug_sender_dup ();
720   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
721 #endif
722
723   notify_init (_(PACKAGE_NAME));
724
725   /* Setting up Idle */
726   self->presence_mgr = empathy_presence_manager_dup_singleton ();
727
728   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
729
730   /* account management */
731   self->account_manager = tp_account_manager_dup ();
732   tp_proxy_prepare_async (self->account_manager, NULL,
733       account_manager_ready_cb, self);
734
735   tp_account_manager_enable_restart (self->account_manager);
736
737   migrate_config_to_xdg_dir ();
738
739   /* Logging */
740   self->log_manager = tpl_log_manager_dup_singleton ();
741
742   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
743
744   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
745   if (!chatroom_manager_ready)
746     {
747       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
748           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
749     }
750   else
751     {
752       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
753           self->account_manager);
754     }
755
756   /* Location mananger */
757 #ifdef HAVE_GEOCLUE
758   self->location_manager = empathy_location_manager_dup_singleton ();
759 #endif
760
761   self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
762
763   self->activated = FALSE;
764   self->ft_factory = NULL;
765   self->window = NULL;
766 }
767
768 static void
769 add_empathy_features (void)
770 {
771   /* Add 'empathy' specific feature before doing any preparation */
772   EmpathyClientFactory *factory;
773
774   factory = empathy_client_factory_dup ();
775
776   tp_simple_client_factory_add_connection_features_varargs (
777       TP_SIMPLE_CLIENT_FACTORY (factory),
778       /* empathy_connection_aggregator_get_all_groups(), used by
779        * EmpathyGroupsWidget relies on it */
780       TP_CONNECTION_FEATURE_CONTACT_GROUPS,
781       /* empathy_connection_aggregator_dup_all_contacts(), used by
782        * EmpathyEventManager relies on it */
783       TP_CONNECTION_FEATURE_CONTACT_LIST,
784       NULL);
785
786   g_object_unref (factory);
787 }
788
789 int
790 main (int argc, char *argv[])
791 {
792   EmpathyApp *app;
793   gint retval;
794
795   g_type_init ();
796
797 #ifdef HAVE_LIBCHAMPLAIN
798   g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
799       CLUTTER_INIT_SUCCESS, 1);
800 #endif
801
802   g_type_init ();
803   empathy_init ();
804
805   add_empathy_features ();
806
807   app = g_object_new (EMPATHY_TYPE_APP,
808       "application-id", EMPATHY_DBUS_NAME,
809       NULL);
810
811   retval = g_application_run (G_APPLICATION (app), argc, argv);
812
813   notify_uninit ();
814   xmlCleanupParser ();
815
816   g_object_unref (app);
817
818   return retval;
819 }