Updated Occitan translation
[empathy-mirror.git] / src / empathy.c
blobbde8a01a7db635c75bf3880357025c21b526d5ea
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 /* 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)
124 empathy_presence_manager_set_state (self->presence_mgr,
125 TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
128 #ifdef ENABLE_DEBUG
129 tp_clear_object (&self->debug_sender);
130 #endif
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);
145 if (dispose != NULL)
146 dispose (object);
149 static void
150 empathy_app_finalize (GObject *object)
152 EmpathyApp *self = EMPATHY_APP (object);
153 void (*finalize) (GObject *) =
154 G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
156 g_free (self->preferences_tab);
158 if (finalize != NULL)
159 finalize (object);
162 static void account_manager_ready_cb (GObject *source_object,
163 GAsyncResult *result,
164 gpointer user_data);
166 static void
167 empathy_app_set_property (GObject *object,
168 guint prop_id,
169 const GValue *value,
170 GParamSpec *pspec)
172 EmpathyApp *self = EMPATHY_APP (object);
174 switch (prop_id)
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;
188 static void
189 new_incoming_transfer_cb (EmpathyFTFactory *factory,
190 EmpathyFTHandler *handler,
191 GError *error,
192 gpointer user_data)
194 if (error)
195 empathy_ft_manager_display_error (handler, error);
196 else
197 empathy_receive_file_with_file_chooser (handler);
200 static void
201 new_ft_handler_cb (EmpathyFTFactory *factory,
202 EmpathyFTHandler *handler,
203 GError *error,
204 gpointer user_data)
206 if (error)
207 empathy_ft_manager_display_error (handler, error);
208 else
209 empathy_ft_manager_add_handler (handler);
211 g_object_unref (handler);
214 static void
215 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
216 const gchar *key,
217 gpointer user_data)
219 EmpathyPresenceManager *presence_mgr = user_data;
221 empathy_presence_manager_set_auto_away (presence_mgr,
222 g_settings_get_boolean (gsettings, key));
225 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
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)
234 EmpathyApp *self = (EmpathyApp *) weak_object;
235 guint i;
237 if (error != NULL)
238 goto out;
240 for (i = 0; names[i] != NULL; i++)
242 if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
244 self->shell_running = TRUE;
245 break;
249 out:
250 if (self->shell_running)
252 DEBUG ("GNOME Shell is running, don't create status icon");
254 /* Rely on GNOME Shell to watch session state */
255 empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE);
257 empathy_roster_window_set_shell_running (
258 EMPATHY_ROSTER_WINDOW (self->window), TRUE);
260 else
262 gboolean autoaway;
264 self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
265 self->start_hidden);
267 /* Allow Empathy to watch session state */
268 autoaway = g_settings_get_boolean (self->gsettings,
269 EMPATHY_PREFS_AUTOAWAY);
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);
276 empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
279 /* Now that we have been started, reset this flag so future invocation will
280 * be able to raise the window, see bgo#729282 */
281 self->start_hidden = FALSE;
284 static void
285 empathy_app_activate (GApplication *app)
287 EmpathyApp *self = (EmpathyApp *) app;
289 if (!self->activated)
291 GError *error = NULL;
292 TpDBusDaemon *dbus;
294 empathy_gtk_init ();
296 /* Create the FT factory */
297 self->ft_factory = empathy_ft_factory_dup_singleton ();
298 g_signal_connect (self->ft_factory, "new-ft-handler",
299 G_CALLBACK (new_ft_handler_cb), NULL);
300 g_signal_connect (self->ft_factory, "new-incoming-transfer",
301 G_CALLBACK (new_incoming_transfer_cb), NULL);
303 if (!empathy_ft_factory_register (self->ft_factory, &error))
305 g_warning ("Failed to register FileTransfer handler: %s",
306 error->message);
307 g_error_free (error);
310 self->activated = TRUE;
312 /* Setting up UI */
313 self->window = empathy_roster_window_new (GTK_APPLICATION (app));
314 gtk_application_set_app_menu (GTK_APPLICATION (self),
315 empathy_roster_window_get_menu_model (
316 EMPATHY_ROSTER_WINDOW (self->window)));
318 gtk_application_add_window (GTK_APPLICATION (app),
319 GTK_WINDOW (self->window));
320 gtk_application_add_accelerator (GTK_APPLICATION (app),
321 "<Primary>h",
322 "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
323 NULL);
325 /* check if Shell is running */
326 dbus = tp_dbus_daemon_dup (&error);
327 g_assert_no_error (error);
329 tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
330 self, NULL, G_OBJECT (self));
332 g_object_unref (dbus);
334 self->notifications_approver =
335 empathy_notifications_approver_dup_singleton ();
338 if (self->show_preferences)
340 empathy_roster_window_show_preferences (
341 EMPATHY_ROSTER_WINDOW (self->window),
342 tp_str_empty (self->preferences_tab) ? NULL : self->preferences_tab);
344 self->show_preferences = FALSE;
346 else
348 if (!self->start_hidden)
349 tpaw_window_present (GTK_WINDOW (self->window));
352 /* Display the accounts dialog if needed */
353 tp_proxy_prepare_async (self->account_manager, NULL,
354 account_manager_ready_cb, self);
357 static gboolean
358 preferences_cb (const char *option_name,
359 const char *value,
360 gpointer data,
361 GError **error)
363 EmpathyApp *self = data;
365 self->show_preferences = TRUE;
367 g_free (self->preferences_tab);
368 self->preferences_tab = g_strdup (value);
370 return TRUE;
373 static gboolean
374 show_version_cb (const char *option_name,
375 const char *value,
376 gpointer data,
377 GError **error);
379 static void
380 open_preference_action_cb (GAction *action,
381 GVariant *parameter,
382 gpointer data)
384 EmpathyApp *self = EMPATHY_APP (data);
386 self->show_preferences = TRUE;
388 g_free (self->preferences_tab);
389 self->preferences_tab = g_variant_dup_string (parameter, NULL);
392 static gboolean
393 empathy_app_local_command_line (GApplication *app,
394 gchar ***arguments,
395 gint *exit_status)
397 EmpathyApp *self = (EmpathyApp *) app;
398 GSimpleAction *action;
399 gint i;
400 gchar **argv;
401 gint argc = 0;
402 gboolean retval = TRUE;
403 GError *error = NULL;
404 gboolean no_connect = FALSE, start_hidden = FALSE;
406 GOptionContext *optcontext;
407 GOptionGroup *group;
408 GOptionEntry options[] = {
409 { "no-connect", 'n',
410 0, G_OPTION_ARG_NONE, &no_connect,
411 N_("Don't connect on startup"),
412 NULL },
413 { "start-hidden", 'h',
414 0, G_OPTION_ARG_NONE, &start_hidden,
415 N_("Don't display the contact list or any other dialogs on startup"),
416 NULL },
417 { "show-preferences", 'p',
418 G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
419 NULL, NULL },
420 { "version", 'v',
421 G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
422 NULL, NULL },
423 { NULL }
426 if (!g_application_register (app, NULL, &error))
428 g_warning ("Impossible to register empathy: %s", error->message);
429 g_clear_error (&error);
430 *exit_status = EXIT_FAILURE;
431 return retval;
434 action = g_simple_action_new ("open-preferences", G_VARIANT_TYPE_STRING);
435 g_signal_connect (action, "activate", G_CALLBACK (open_preference_action_cb), app);
436 g_action_map_add_action (G_ACTION_MAP (app), G_ACTION (action));
437 g_object_unref (action);
439 /* We create a group so that GOptionArgFuncs get the user data */
440 group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
441 g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
442 g_option_group_add_entries (group, options);
444 optcontext = g_option_context_new (N_("- Empathy IM Client"));
445 g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
446 g_option_context_set_main_group (optcontext, group);
447 g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
449 argc = g_strv_length (*arguments);
451 /* We dup the args because g_option_context_parse() sets things to NULL,
452 * but we want to parse all the command line to the primary instance
453 * if necessary. */
454 argv = g_new (gchar*, argc + 1);
455 for (i = 0; i <= argc; i++)
456 argv[i] = (*arguments)[i];
458 if (!g_option_context_parse (optcontext, &argc, &argv, &error))
460 g_print ("%s\nRun '%s --help' to see a full list of available command "
461 "line options.\n",
462 error->message, argv[0]);
463 g_warning ("Error in empathy init: %s", error->message);
464 g_clear_error (&error);
466 *exit_status = EXIT_FAILURE;
468 else
470 self->no_connect = no_connect;
471 self->start_hidden = start_hidden;
473 if (self->show_preferences)
475 GVariant *parameter;
476 parameter = g_variant_new_string (self->preferences_tab ? self->preferences_tab : "");
477 g_action_group_activate_action (G_ACTION_GROUP (app), "open-preferences", parameter);
480 g_application_activate (app);
483 g_free (argv);
484 g_option_context_free (optcontext);
486 return retval;
489 static void empathy_app_constructed (GObject *object);
491 static void
492 empathy_app_class_init (EmpathyAppClass *klass)
494 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
495 GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
496 GParamSpec *spec;
498 gobject_class->set_property = empathy_app_set_property;
499 gobject_class->constructed = empathy_app_constructed;
500 gobject_class->dispose = empathy_app_dispose;
501 gobject_class->finalize = empathy_app_finalize;
503 g_app_class->local_command_line = empathy_app_local_command_line;
504 g_app_class->activate = empathy_app_activate;
506 spec = g_param_spec_boolean ("no-connect", "no connect",
507 "Don't connect on startup",
508 FALSE,
509 G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
510 g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
512 spec = g_param_spec_boolean ("start-hidden", "start hidden",
513 "Don't display the contact list or any other dialogs on startup",
514 FALSE,
515 G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
516 g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
519 static void
520 empathy_app_init (EmpathyApp *self)
524 static void
525 migrate_config_to_xdg_dir (void)
527 gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
528 int i;
529 GFile *xdg_file, *old_file;
530 static const gchar* filenames[] = {
531 "geometry.ini",
532 "irc-networks.xml",
533 "chatrooms.xml",
534 "contact-groups.xml",
535 "status-presets.xml",
536 "accels.txt",
537 NULL
540 xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
541 if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
543 /* xdg config dir already exists */
544 g_free (xdg_dir);
545 return;
548 old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
549 PACKAGE_NAME, NULL);
550 if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
552 /* old config dir didn't exist */
553 g_free (xdg_dir);
554 g_free (old_dir);
555 return;
558 if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
560 DEBUG ("Failed to create configuration directory; aborting migration");
561 g_free (xdg_dir);
562 g_free (old_dir);
563 return;
566 for (i = 0; filenames[i]; i++)
568 old_filename = g_build_filename (old_dir, filenames[i], NULL);
569 if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
571 g_free (old_filename);
572 continue;
574 xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
575 old_file = g_file_new_for_path (old_filename);
576 xdg_file = g_file_new_for_path (xdg_filename);
578 if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
579 NULL, NULL, NULL, NULL))
580 DEBUG ("Failed to migrate %s", filenames[i]);
582 g_free (old_filename);
583 g_free (xdg_filename);
584 g_object_unref (old_file);
585 g_object_unref (xdg_file);
588 g_free (xdg_dir);
589 g_free (old_dir);
592 static void
593 show_accounts_ui (EmpathyApp *self,
594 GdkScreen *screen,
595 gboolean if_needed)
597 empathy_accounts_dialog_show_application (screen,
598 NULL, if_needed, self->start_hidden);
601 static gboolean
602 show_version_cb (const char *option_name,
603 const char *value,
604 gpointer data,
605 GError **error)
607 g_print ("%s\n", PACKAGE_STRING);
609 exit (EXIT_SUCCESS);
612 static void
613 account_manager_ready_cb (GObject *source_object,
614 GAsyncResult *result,
615 gpointer user_data)
617 TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
618 EmpathyApp *self = user_data;
619 GError *error = NULL;
620 TpConnectionPresenceType presence;
622 if (!tp_proxy_prepare_finish (manager, result, &error))
624 GtkWidget *dialog;
626 DEBUG ("Failed to prepare account manager: %s", error->message);
628 dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
629 GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
630 _("Error contacting the Account Manager"));
631 gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
632 _("There was an error while trying to connect to the Telepathy "
633 "Account Manager. The error was:\n\n%s"),
634 error->message);
636 gtk_dialog_run (GTK_DIALOG (dialog));
637 gtk_widget_destroy (dialog);
639 g_error_free (error);
640 return;
643 /* Autoconnect */
644 presence = tp_account_manager_get_most_available_presence (manager, NULL,
645 NULL);
647 if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
648 !self->no_connect &&
649 tp_connection_presence_type_cmp_availability
650 (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
651 <= 0)
652 /* if current state is Offline, then put it online */
653 empathy_presence_manager_set_state (self->presence_mgr,
654 TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
656 /* Pop up the accounts dialog if we don't have any account */
657 if (!empathy_accounts_has_accounts (manager))
658 show_accounts_ui (self, gdk_screen_get_default (), TRUE);
661 static void
662 account_join_chatrooms (TpAccount *account,
663 EmpathyChatroomManager *chatroom_manager)
665 TpConnection *conn;
666 GList *chatrooms, *p;
668 /* Wait if we are not connected or the TpConnection is not prepared yet */
669 conn = tp_account_get_connection (account);
670 if (conn == NULL)
671 return;
673 chatrooms = empathy_chatroom_manager_get_chatrooms (
674 chatroom_manager, account);
676 for (p = chatrooms; p != NULL; p = p->next)
678 EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
680 if (!empathy_chatroom_get_auto_connect (room))
681 continue;
683 empathy_join_muc (account, empathy_chatroom_get_room (room),
684 TP_USER_ACTION_TIME_NOT_USER_ACTION);
686 g_list_free (chatrooms);
689 static void
690 account_connection_changed_cb (TpAccount *account,
691 GParamSpec *spec,
692 EmpathyChatroomManager *manager)
694 account_join_chatrooms (account, manager);
697 static void
698 account_manager_chatroom_ready_cb (GObject *source_object,
699 GAsyncResult *result,
700 gpointer user_data)
702 TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
703 EmpathyChatroomManager *chatroom_manager = user_data;
704 GList *accounts, *l;
705 GError *error = NULL;
707 if (!tp_proxy_prepare_finish (account_manager, result, &error))
709 DEBUG ("Failed to prepare account manager: %s", error->message);
710 g_error_free (error);
711 return;
714 accounts = tp_account_manager_dup_valid_accounts (account_manager);
716 for (l = accounts; l != NULL; l = g_list_next (l))
718 TpAccount *account = TP_ACCOUNT (l->data);
720 /* Try to join all rooms if we're connected */
721 account_join_chatrooms (account, chatroom_manager);
723 /* And/or join them on (re)connection */
724 tp_g_signal_connect_object (account, "notify::connection",
725 G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
727 g_list_free_full (accounts, g_object_unref);
730 static void
731 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
732 GParamSpec *pspec,
733 gpointer user_data)
735 TpAccountManager *account_manager = user_data;
737 tp_proxy_prepare_async (account_manager, NULL,
738 account_manager_chatroom_ready_cb, chatroom_manager);
741 static void
742 empathy_app_constructed (GObject *object)
744 EmpathyApp *self = (EmpathyApp *) object;
745 gboolean chatroom_manager_ready;
747 textdomain (GETTEXT_PACKAGE);
748 g_set_application_name (_(PACKAGE_NAME));
750 gtk_window_set_default_icon_name ("empathy");
752 #ifdef ENABLE_DEBUG
753 /* Set up debug sender */
754 self->debug_sender = tp_debug_sender_dup ();
755 g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
756 #endif
758 notify_init (_(PACKAGE_NAME));
760 /* Setting up Idle */
761 self->presence_mgr = empathy_presence_manager_dup_singleton ();
763 self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
765 /* account management */
766 self->account_manager = tp_account_manager_dup ();
767 tp_proxy_prepare_async (self->account_manager, NULL,
768 account_manager_ready_cb, self);
770 tp_account_manager_enable_restart (self->account_manager);
772 migrate_config_to_xdg_dir ();
774 /* Logging */
775 self->log_manager = tpl_log_manager_dup_singleton ();
777 self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
779 g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
780 if (!chatroom_manager_ready)
782 g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
783 G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
785 else
787 chatroom_manager_ready_cb (self->chatroom_manager, NULL,
788 self->account_manager);
791 /* Location mananger */
792 #ifdef HAVE_GEOCLUE
793 self->location_manager = empathy_location_manager_dup_singleton ();
794 #endif
796 self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
798 self->activated = FALSE;
799 self->ft_factory = NULL;
800 self->window = NULL;
803 static void
804 add_empathy_features (void)
806 /* Add 'empathy' specific feature before doing any preparation */
807 EmpathyClientFactory *factory;
809 factory = empathy_client_factory_dup ();
811 tp_simple_client_factory_add_connection_features_varargs (
812 TP_SIMPLE_CLIENT_FACTORY (factory),
813 /* empathy_connection_aggregator_get_all_groups(), used by
814 * EmpathyGroupsWidget relies on it */
815 TP_CONNECTION_FEATURE_CONTACT_GROUPS,
816 /* empathy_connection_aggregator_dup_all_contacts(), used by
817 * EmpathyEventManager relies on it */
818 TP_CONNECTION_FEATURE_CONTACT_LIST,
819 NULL);
821 g_object_unref (factory);
825 main (int argc, char *argv[])
827 EmpathyApp *app;
828 gint retval;
830 g_type_init ();
832 #ifdef HAVE_LIBCHAMPLAIN
833 g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
834 CLUTTER_INIT_SUCCESS, 1);
835 #endif
837 g_type_init ();
838 empathy_init ();
840 add_empathy_features ();
842 app = g_object_new (EMPATHY_TYPE_APP,
843 "application-id", EMPATHY_BUS_NAME,
844 NULL);
846 retval = g_application_run (G_APPLICATION (app), argc, argv);
848 notify_uninit ();
849 xmlCleanupParser ();
851 g_object_unref (app);
853 return retval;