Update Catalan translation
[empathy-mirror.git] / src / empathy.c
blob3b77a940f0dcefaab46c301e3e7876e09380a14f
1 /*
2 * Copyright (C) 2007-2009 Collabora Ltd.
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.
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.
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
19 * Authors: Xavier Claessens <xclaesse@gmail.com>
22 #include "config.h"
24 #include <glib/gstdio.h>
25 #include <glib/gi18n.h>
26 #include <libnotify/notify.h>
27 #include <tp-account-widgets/tpaw-utils.h>
29 #ifdef HAVE_LIBCHAMPLAIN
30 #include <clutter-gtk/clutter-gtk.h>
31 #endif
33 #include "empathy-accounts-common.h"
34 #include "empathy-accounts-dialog.h"
35 #include "empathy-bus-names.h"
36 #include "empathy-chatroom-manager.h"
37 #include "empathy-client-factory.h"
38 #include "empathy-connection-aggregator.h"
39 #include "empathy-ft-factory.h"
40 #include "empathy-ft-manager.h"
41 #include "empathy-gsettings.h"
42 #include "empathy-location-manager.h"
43 #include "empathy-notifications-approver.h"
44 #include "empathy-presence-manager.h"
45 #include "empathy-request-util.h"
46 #include "empathy-roster-window.h"
47 #include "empathy-status-icon.h"
48 #include "empathy-ui-utils.h"
49 #include "empathy-utils.h"
51 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
52 #include "empathy-debug.h"
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))
61 typedef struct _EmpathyApp EmpathyApp;
62 typedef struct _EmpathyAppClass EmpathyAppClass;
64 enum
66 PROP_NO_CONNECT = 1,
67 PROP_START_HIDDEN
70 GType empathy_app_get_type (void);
72 struct _EmpathyAppClass
74 GtkApplicationClass parent_class;
77 struct _EmpathyApp
79 GtkApplication parent;
81 /* Properties */
82 gboolean no_connect;
83 gboolean start_hidden;
84 gboolean show_preferences;
85 gchar *preferences_tab;
87 gboolean activated;
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
106 gboolean shell_running;
110 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
112 static void
113 empathy_app_dispose (GObject *object)
115 EmpathyApp *self = EMPATHY_APP (object);
116 void (*dispose) (GObject *) =
117 G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
119 empathy_presence_manager_set_state (self->presence_mgr,
120 TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
122 #ifdef ENABLE_DEBUG
123 tp_clear_object (&self->debug_sender);
124 #endif
126 tp_clear_object (&self->presence_mgr);
127 tp_clear_object (&self->icon);
128 tp_clear_object (&self->account_manager);
129 tp_clear_object (&self->log_manager);
130 tp_clear_object (&self->chatroom_manager);
131 #ifdef HAVE_GEOCLUE
132 tp_clear_object (&self->location_manager);
133 #endif
134 tp_clear_object (&self->ft_factory);
135 tp_clear_object (&self->gsettings);
136 tp_clear_object (&self->notifications_approver);
137 tp_clear_object (&self->conn_aggregator);
139 if (dispose != NULL)
140 dispose (object);
143 static void
144 empathy_app_finalize (GObject *object)
146 EmpathyApp *self = EMPATHY_APP (object);
147 void (*finalize) (GObject *) =
148 G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
150 g_free (self->preferences_tab);
152 if (finalize != NULL)
153 finalize (object);
156 static void account_manager_ready_cb (GObject *source_object,
157 GAsyncResult *result,
158 gpointer user_data);
160 static void
161 empathy_app_set_property (GObject *object,
162 guint prop_id,
163 const GValue *value,
164 GParamSpec *pspec)
166 EmpathyApp *self = EMPATHY_APP (object);
168 switch (prop_id)
170 case PROP_NO_CONNECT:
171 self->no_connect = g_value_get_boolean (value);
172 break;
173 case PROP_START_HIDDEN:
174 self->start_hidden = g_value_get_boolean (value);
175 break;
176 default:
177 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
178 break;
182 static void
183 new_incoming_transfer_cb (EmpathyFTFactory *factory,
184 EmpathyFTHandler *handler,
185 GError *error,
186 gpointer user_data)
188 if (error)
189 empathy_ft_manager_display_error (handler, error);
190 else
191 empathy_receive_file_with_file_chooser (handler);
194 static void
195 new_ft_handler_cb (EmpathyFTFactory *factory,
196 EmpathyFTHandler *handler,
197 GError *error,
198 gpointer user_data)
200 if (error)
201 empathy_ft_manager_display_error (handler, error);
202 else
203 empathy_ft_manager_add_handler (handler);
205 g_object_unref (handler);
208 static void
209 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
210 const gchar *key,
211 gpointer user_data)
213 EmpathyPresenceManager *presence_mgr = user_data;
215 empathy_presence_manager_set_auto_away (presence_mgr,
216 g_settings_get_boolean (gsettings, key));
219 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
220 #define GNOME_FLASHBACK_BUS_NAME "org.gnome.Flashback"
222 static void
223 list_names_cb (TpDBusDaemon *bus_daemon,
224 const gchar * const *names,
225 const GError *error,
226 gpointer user_data,
227 GObject *weak_object)
229 EmpathyApp *self = (EmpathyApp *) weak_object;
231 if (error != NULL)
232 goto out;
234 if (g_strv_contains (names, GNOME_SHELL_BUS_NAME) &&
235 !g_strv_contains (names, GNOME_FLASHBACK_BUS_NAME))
237 self->shell_running = TRUE;
240 out:
241 if (self->shell_running)
243 DEBUG ("GNOME Shell is running, don't create status icon");
245 empathy_roster_window_set_shell_running (
246 EMPATHY_ROSTER_WINDOW (self->window), TRUE);
248 else
250 self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
251 self->start_hidden);
254 /* Now that we have been started, reset this flag so future invocation will
255 * be able to raise the window, see bgo#729282 */
256 self->start_hidden = FALSE;
259 static void
260 empathy_app_activate (GApplication *app)
262 EmpathyApp *self = (EmpathyApp *) app;
264 if (!self->activated)
266 GError *error = NULL;
267 TpDBusDaemon *dbus;
268 gboolean autoaway;
270 empathy_gtk_init ();
272 /* Create the FT factory */
273 self->ft_factory = empathy_ft_factory_dup_singleton ();
274 g_signal_connect (self->ft_factory, "new-ft-handler",
275 G_CALLBACK (new_ft_handler_cb), NULL);
276 g_signal_connect (self->ft_factory, "new-incoming-transfer",
277 G_CALLBACK (new_incoming_transfer_cb), NULL);
279 if (!empathy_ft_factory_register (self->ft_factory, &error))
281 g_warning ("Failed to register FileTransfer handler: %s",
282 error->message);
283 g_error_free (error);
286 self->activated = TRUE;
288 /* Setting up UI */
289 self->window = empathy_roster_window_new (GTK_APPLICATION (app));
290 gtk_application_set_app_menu (GTK_APPLICATION (self),
291 empathy_roster_window_get_menu_model (
292 EMPATHY_ROSTER_WINDOW (self->window)));
294 gtk_application_add_window (GTK_APPLICATION (app),
295 GTK_WINDOW (self->window));
296 gtk_application_add_accelerator (GTK_APPLICATION (app),
297 "<Primary>h",
298 "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
299 NULL);
300 gtk_application_add_accelerator (GTK_APPLICATION (app),
301 "<Control>Page_Up", "win.tab-prev", NULL);
302 gtk_application_add_accelerator (GTK_APPLICATION (app),
303 "<Control>Page_Down", "win.tab-next", NULL);
305 /* Allow Empathy to watch session state */
306 autoaway = g_settings_get_boolean (self->gsettings,
307 EMPATHY_PREFS_AUTOAWAY);
309 g_signal_connect (self->gsettings,
310 "changed::" EMPATHY_PREFS_AUTOAWAY,
311 G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
312 self->presence_mgr);
314 empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
316 /* check if Shell is running */
317 dbus = tp_dbus_daemon_dup (&error);
318 g_assert_no_error (error);
320 tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
321 self, NULL, G_OBJECT (self));
323 g_object_unref (dbus);
325 self->notifications_approver =
326 empathy_notifications_approver_dup_singleton ();
329 if (self->show_preferences)
331 empathy_roster_window_show_preferences (
332 EMPATHY_ROSTER_WINDOW (self->window),
333 tp_str_empty (self->preferences_tab) ? NULL : self->preferences_tab);
335 self->show_preferences = FALSE;
337 else
339 if (!self->start_hidden)
340 tpaw_window_present (GTK_WINDOW (self->window));
343 /* Display the accounts dialog if needed */
344 tp_proxy_prepare_async (self->account_manager, NULL,
345 account_manager_ready_cb, self);
348 static gboolean
349 preferences_cb (const char *option_name,
350 const char *value,
351 gpointer data,
352 GError **error)
354 EmpathyApp *self = data;
356 self->show_preferences = TRUE;
358 g_free (self->preferences_tab);
359 self->preferences_tab = g_strdup (value);
361 return TRUE;
364 static gboolean
365 show_version_cb (const char *option_name,
366 const char *value,
367 gpointer data,
368 GError **error);
370 static void
371 open_preference_action_cb (GAction *action,
372 GVariant *parameter,
373 gpointer data)
375 EmpathyApp *self = EMPATHY_APP (data);
377 self->show_preferences = TRUE;
379 g_free (self->preferences_tab);
380 self->preferences_tab = g_variant_dup_string (parameter, NULL);
383 static gboolean
384 empathy_app_local_command_line (GApplication *app,
385 gchar ***arguments,
386 gint *exit_status)
388 EmpathyApp *self = (EmpathyApp *) app;
389 GSimpleAction *action;
390 gint i;
391 gchar **argv;
392 gint argc = 0;
393 gboolean retval = TRUE;
394 GError *error = NULL;
395 gboolean no_connect = FALSE, start_hidden = FALSE;
397 GOptionContext *optcontext;
398 GOptionGroup *group;
399 GOptionEntry options[] = {
400 { "no-connect", 'n',
401 0, G_OPTION_ARG_NONE, &no_connect,
402 N_("Don’t connect on startup"),
403 NULL },
404 { "start-hidden", 'h',
405 0, G_OPTION_ARG_NONE, &start_hidden,
406 N_("Don’t display the contact list or any other dialogs on startup"),
407 NULL },
408 { "show-preferences", 'p',
409 G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
410 NULL, NULL },
411 { "version", 'v',
412 G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
413 NULL, NULL },
414 { NULL }
417 if (!g_application_register (app, NULL, &error))
419 g_warning ("Impossible to register empathy: %s", error->message);
420 g_clear_error (&error);
421 *exit_status = EXIT_FAILURE;
422 return retval;
425 action = g_simple_action_new ("open-preferences", G_VARIANT_TYPE_STRING);
426 g_signal_connect (action, "activate", G_CALLBACK (open_preference_action_cb), app);
427 g_action_map_add_action (G_ACTION_MAP (app), G_ACTION (action));
428 g_object_unref (action);
430 /* We create a group so that GOptionArgFuncs get the user data */
431 group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
432 g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
433 g_option_group_add_entries (group, options);
435 optcontext = g_option_context_new (N_("— Empathy IM Client"));
436 g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
437 g_option_context_set_main_group (optcontext, group);
438 g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
440 argc = g_strv_length (*arguments);
442 /* We dup the args because g_option_context_parse() sets things to NULL,
443 * but we want to parse all the command line to the primary instance
444 * if necessary. */
445 argv = g_new (gchar*, argc + 1);
446 for (i = 0; i <= argc; i++)
447 argv[i] = (*arguments)[i];
449 if (!g_option_context_parse (optcontext, &argc, &argv, &error))
451 g_print ("%s\nRun '%s --help' to see a full list of available command "
452 "line options.\n",
453 error->message, argv[0]);
454 g_warning ("Error in empathy init: %s", error->message);
455 g_clear_error (&error);
457 *exit_status = EXIT_FAILURE;
459 else
461 self->no_connect = no_connect;
462 self->start_hidden = start_hidden;
464 if (self->show_preferences)
466 GVariant *parameter;
467 parameter = g_variant_new_string (self->preferences_tab ? self->preferences_tab : "");
468 g_action_group_activate_action (G_ACTION_GROUP (app), "open-preferences", parameter);
471 g_application_activate (app);
474 g_free (argv);
475 g_option_context_free (optcontext);
477 return retval;
480 static void empathy_app_constructed (GObject *object);
482 static void
483 empathy_app_class_init (EmpathyAppClass *klass)
485 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
486 GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
487 GParamSpec *spec;
489 gobject_class->set_property = empathy_app_set_property;
490 gobject_class->constructed = empathy_app_constructed;
491 gobject_class->dispose = empathy_app_dispose;
492 gobject_class->finalize = empathy_app_finalize;
494 g_app_class->local_command_line = empathy_app_local_command_line;
495 g_app_class->activate = empathy_app_activate;
497 spec = g_param_spec_boolean ("no-connect", "no connect",
498 "Don't connect on startup",
499 FALSE,
500 G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
501 g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
503 spec = g_param_spec_boolean ("start-hidden", "start hidden",
504 "Don't display the contact list or any other dialogs on startup",
505 FALSE,
506 G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
507 g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
510 static void
511 empathy_app_init (EmpathyApp *self)
515 static void
516 migrate_config_to_xdg_dir (void)
518 gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
519 int i;
520 GFile *xdg_file, *old_file;
521 static const gchar* filenames[] = {
522 "geometry.ini",
523 "irc-networks.xml",
524 "chatrooms.xml",
525 "contact-groups.xml",
526 "status-presets.xml",
527 "accels.txt",
528 NULL
531 xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
532 if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
534 /* xdg config dir already exists */
535 g_free (xdg_dir);
536 return;
539 old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
540 PACKAGE_NAME, NULL);
541 if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
543 /* old config dir didn't exist */
544 g_free (xdg_dir);
545 g_free (old_dir);
546 return;
549 if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
551 DEBUG ("Failed to create configuration directory; aborting migration");
552 g_free (xdg_dir);
553 g_free (old_dir);
554 return;
557 for (i = 0; filenames[i]; i++)
559 old_filename = g_build_filename (old_dir, filenames[i], NULL);
560 if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
562 g_free (old_filename);
563 continue;
565 xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
566 old_file = g_file_new_for_path (old_filename);
567 xdg_file = g_file_new_for_path (xdg_filename);
569 if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
570 NULL, NULL, NULL, NULL))
571 DEBUG ("Failed to migrate %s", filenames[i]);
573 g_free (old_filename);
574 g_free (xdg_filename);
575 g_object_unref (old_file);
576 g_object_unref (xdg_file);
579 g_free (xdg_dir);
580 g_free (old_dir);
583 static void
584 show_accounts_ui (EmpathyApp *self,
585 GdkScreen *screen,
586 gboolean if_needed)
588 empathy_accounts_dialog_show_application (screen,
589 NULL, if_needed, self->start_hidden);
592 static gboolean
593 show_version_cb (const char *option_name,
594 const char *value,
595 gpointer data,
596 GError **error)
598 g_print ("%s\n", PACKAGE_STRING);
600 exit (EXIT_SUCCESS);
603 static void
604 account_manager_ready_cb (GObject *source_object,
605 GAsyncResult *result,
606 gpointer user_data)
608 TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
609 EmpathyApp *self = user_data;
610 GError *error = NULL;
611 TpConnectionPresenceType presence;
613 if (!tp_proxy_prepare_finish (manager, result, &error))
615 GtkWidget *dialog;
617 DEBUG ("Failed to prepare account manager: %s", error->message);
619 dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
620 GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
621 _("Error contacting the Account Manager"));
622 gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
623 _("There was an error while trying to connect to the Telepathy "
624 "Account Manager. The error was:\n\n%s"),
625 error->message);
627 gtk_dialog_run (GTK_DIALOG (dialog));
628 gtk_widget_destroy (dialog);
630 g_error_free (error);
631 return;
634 /* Autoconnect */
635 presence = tp_account_manager_get_most_available_presence (manager, NULL,
636 NULL);
638 if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
639 !self->no_connect &&
640 tp_connection_presence_type_cmp_availability
641 (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
642 <= 0)
643 /* if current state is Offline, then put it online */
644 empathy_presence_manager_set_state (self->presence_mgr,
645 TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
647 /* Pop up the accounts dialog if we don't have any account */
648 if (!empathy_accounts_has_accounts (manager))
649 show_accounts_ui (self, gdk_screen_get_default (), TRUE);
652 static void
653 account_join_chatrooms (TpAccount *account,
654 EmpathyChatroomManager *chatroom_manager)
656 TpConnection *conn;
657 GList *chatrooms, *p;
659 /* Wait if we are not connected or the TpConnection is not prepared yet */
660 conn = tp_account_get_connection (account);
661 if (conn == NULL)
662 return;
664 chatrooms = empathy_chatroom_manager_get_chatrooms (
665 chatroom_manager, account);
667 for (p = chatrooms; p != NULL; p = p->next)
669 EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
671 if (!empathy_chatroom_get_auto_connect (room))
672 continue;
674 empathy_join_muc (account, empathy_chatroom_get_room (room),
675 TP_USER_ACTION_TIME_NOT_USER_ACTION);
677 g_list_free (chatrooms);
680 static void
681 account_connection_changed_cb (TpAccount *account,
682 GParamSpec *spec,
683 EmpathyChatroomManager *manager)
685 account_join_chatrooms (account, manager);
688 static void
689 account_manager_chatroom_ready_cb (GObject *source_object,
690 GAsyncResult *result,
691 gpointer user_data)
693 TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
694 EmpathyChatroomManager *chatroom_manager = user_data;
695 GList *accounts, *l;
696 GError *error = NULL;
698 if (!tp_proxy_prepare_finish (account_manager, result, &error))
700 DEBUG ("Failed to prepare account manager: %s", error->message);
701 g_error_free (error);
702 return;
705 accounts = tp_account_manager_dup_valid_accounts (account_manager);
707 for (l = accounts; l != NULL; l = g_list_next (l))
709 TpAccount *account = TP_ACCOUNT (l->data);
711 /* Try to join all rooms if we're connected */
712 account_join_chatrooms (account, chatroom_manager);
714 /* And/or join them on (re)connection */
715 tp_g_signal_connect_object (account, "notify::connection",
716 G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
718 g_list_free_full (accounts, g_object_unref);
721 static void
722 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
723 GParamSpec *pspec,
724 gpointer user_data)
726 TpAccountManager *account_manager = user_data;
728 tp_proxy_prepare_async (account_manager, NULL,
729 account_manager_chatroom_ready_cb, chatroom_manager);
732 static void
733 empathy_app_constructed (GObject *object)
735 EmpathyApp *self = (EmpathyApp *) object;
736 gboolean chatroom_manager_ready;
738 textdomain (GETTEXT_PACKAGE);
739 g_set_application_name (_(PACKAGE_NAME));
741 gtk_window_set_default_icon_name ("empathy");
743 #ifdef ENABLE_DEBUG
744 /* Set up debug sender */
745 self->debug_sender = tp_debug_sender_dup ();
746 g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
747 #endif
749 notify_init (_(PACKAGE_NAME));
751 /* Setting up Idle */
752 self->presence_mgr = empathy_presence_manager_dup_singleton ();
754 self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
756 /* account management */
757 self->account_manager = tp_account_manager_dup ();
758 tp_proxy_prepare_async (self->account_manager, NULL,
759 account_manager_ready_cb, self);
761 tp_account_manager_enable_restart (self->account_manager);
763 migrate_config_to_xdg_dir ();
765 /* Logging */
766 self->log_manager = tpl_log_manager_dup_singleton ();
768 self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
770 g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
771 if (!chatroom_manager_ready)
773 g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
774 G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
776 else
778 chatroom_manager_ready_cb (self->chatroom_manager, NULL,
779 self->account_manager);
782 /* Location mananger */
783 #ifdef HAVE_GEOCLUE
784 self->location_manager = empathy_location_manager_dup_singleton ();
785 #endif
787 self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
789 self->activated = FALSE;
790 self->ft_factory = NULL;
791 self->window = NULL;
794 static void
795 add_empathy_features (void)
797 /* Add 'empathy' specific feature before doing any preparation */
798 EmpathyClientFactory *factory;
800 factory = empathy_client_factory_dup ();
802 tp_simple_client_factory_add_connection_features_varargs (
803 TP_SIMPLE_CLIENT_FACTORY (factory),
804 /* empathy_connection_aggregator_get_all_groups(), used by
805 * EmpathyGroupsWidget relies on it */
806 TP_CONNECTION_FEATURE_CONTACT_GROUPS,
807 /* empathy_connection_aggregator_dup_all_contacts(), used by
808 * EmpathyEventManager relies on it */
809 TP_CONNECTION_FEATURE_CONTACT_LIST,
810 NULL);
812 g_object_unref (factory);
816 main (int argc, char *argv[])
818 EmpathyApp *app;
819 gint retval;
821 g_type_init ();
823 #ifdef HAVE_LIBCHAMPLAIN
824 g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
825 CLUTTER_INIT_SUCCESS, 1);
826 #endif
828 g_type_init ();
829 empathy_init ();
831 add_empathy_features ();
833 app = g_object_new (EMPATHY_TYPE_APP,
834 "application-id", EMPATHY_CHAT_BUS_NAME,
835 NULL);
837 retval = g_application_run (G_APPLICATION (app), argc, argv);
839 notify_uninit ();
840 xmlCleanupParser ();
842 g_object_unref (app);
844 return retval;