]> git.0d.be Git - empathy.git/blob - src/empathy.c
Make the core empathy a command-line GApplication.
[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 <stdlib.h>
25 #include <errno.h>
26 #include <string.h>
27
28 #include <glib.h>
29 #include <glib/gstdio.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkx.h>
33
34 #ifdef HAVE_LIBCHAMPLAIN
35 #include <clutter-gtk/clutter-gtk.h>
36 #endif
37
38 #include <libnotify/notify.h>
39
40 #include <telepathy-glib/account-manager.h>
41 #include <telepathy-glib/dbus.h>
42 #include <telepathy-glib/debug-sender.h>
43 #include <telepathy-glib/util.h>
44 #include <telepathy-glib/connection-manager.h>
45 #include <telepathy-glib/interfaces.h>
46
47 #include <telepathy-logger/log-manager.h>
48
49 #include <libempathy/empathy-idle.h>
50 #include <libempathy/empathy-utils.h>
51 #include <libempathy/empathy-chatroom-manager.h>
52 #include <libempathy/empathy-account-settings.h>
53 #include <libempathy/empathy-connectivity.h>
54 #include <libempathy/empathy-connection-managers.h>
55 #include <libempathy/empathy-dispatcher.h>
56 #include <libempathy/empathy-ft-factory.h>
57 #include <libempathy/empathy-gsettings.h>
58 #include <libempathy/empathy-tp-chat.h>
59
60 #include <libempathy-gtk/empathy-ui-utils.h>
61 #include <libempathy-gtk/empathy-location-manager.h>
62
63 #include "empathy-main-window.h"
64 #include "empathy-accounts-common.h"
65 #include "empathy-accounts-dialog.h"
66 #include "empathy-status-icon.h"
67 #include "empathy-ft-manager.h"
68
69 #include "extensions/extensions.h"
70
71 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
72 #include <libempathy/empathy-debug.h>
73
74 #define EMPATHY_DBUS_NAME "org.gnome.Empathy"
75
76 #define EMPATHY_TYPE_APP (empathy_app_get_type ())
77 #define EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_APP, EmpathyApp))
78 #define EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
79 #define EMPATHY_IS_EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_APP))
80 #define EMPATHY_IS_EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_APP))
81 #define EMPATHY_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
82
83 typedef struct _EmpathyApp EmpathyApp;
84 typedef struct _EmpathyAppClass EmpathyAppClass;
85
86 enum
87 {
88   PROP_NO_CONNECT = 1,
89   PROP_START_HIDDEN
90 };
91
92 GType empathy_app_get_type (void);
93
94 struct _EmpathyAppClass
95 {
96   GtkApplicationClass parent_class;
97 };
98
99 struct _EmpathyApp
100 {
101   GtkApplication parent;
102
103   /* Properties */
104   gboolean no_connect;
105   gboolean start_hidden;
106
107   gboolean activated;
108
109   GtkWidget *window;
110   EmpathyStatusIcon *icon;
111   EmpathyDispatcher *dispatcher;
112   TpAccountManager *account_manager;
113   TplLogManager *log_manager;
114   EmpathyChatroomManager *chatroom_manager;
115   EmpathyFTFactory  *ft_factory;
116   EmpathyIdle *idle;
117   EmpathyConnectivity *connectivity;
118   GSettings *gsettings;
119 #ifdef HAVE_GEOCLUE
120   EmpathyLocationManager *location_manager;
121 #endif
122 #ifdef ENABLE_DEBUG
123   TpDebugSender *debug_sender;
124 #endif
125 };
126
127
128 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
129
130 static void
131 empathy_app_dispose (GObject *object)
132 {
133   EmpathyApp *self = EMPATHY_APP (object);
134   void (*dispose) (GObject *) =
135     G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
136
137   if (self->idle != NULL)
138     {
139       empathy_idle_set_state (self->idle, TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
140     }
141
142 #ifdef ENABLE_DEBUG
143   tp_clear_object (&self->debug_sender);
144 #endif
145
146   tp_clear_object (&self->idle);
147   tp_clear_object (&self->connectivity);
148   tp_clear_object (&self->icon);
149   tp_clear_object (&self->account_manager);
150   tp_clear_object (&self->log_manager);
151   tp_clear_object (&self->dispatcher);
152   tp_clear_object (&self->chatroom_manager);
153 #ifdef HAVE_GEOCLUE
154   tp_clear_object (&self->location_manager);
155 #endif
156   tp_clear_object (&self->ft_factory);
157   tp_clear_object (&self->gsettings);
158
159   if (dispose != NULL)
160     dispose (object);
161 }
162
163 static void
164 empathy_app_finalize (GObject *object)
165 {
166   EmpathyApp *self = EMPATHY_APP (object);
167   void (*finalize) (GObject *) =
168     G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
169
170   if (self->window != NULL)
171     gtk_widget_destroy (self->window);
172
173   if (finalize != NULL)
174     finalize (object);
175 }
176
177 static void account_manager_ready_cb (GObject *source_object,
178     GAsyncResult *result,
179     gpointer user_data);
180
181 static void
182 empathy_app_set_property (GObject *object,
183     guint prop_id,
184     const GValue *value,
185     GParamSpec *pspec)
186 {
187   EmpathyApp *self = EMPATHY_APP (object);
188
189   switch (prop_id)
190     {
191       case PROP_NO_CONNECT:
192         self->no_connect = g_value_get_boolean (value);
193         break;
194       case PROP_START_HIDDEN:
195         self->start_hidden = g_value_get_boolean (value);
196         break;
197       default:
198         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
199         break;
200     }
201 }
202
203 static void
204 new_incoming_transfer_cb (EmpathyFTFactory *factory,
205     EmpathyFTHandler *handler,
206     GError *error,
207     gpointer user_data)
208 {
209   if (error)
210     empathy_ft_manager_display_error (handler, error);
211   else
212     empathy_receive_file_with_file_chooser (handler);
213 }
214
215 static void
216 new_ft_handler_cb (EmpathyFTFactory *factory,
217     EmpathyFTHandler *handler,
218     GError *error,
219     gpointer user_data)
220 {
221   if (error)
222     empathy_ft_manager_display_error (handler, error);
223   else
224     empathy_ft_manager_add_handler (handler);
225
226   g_object_unref (handler);
227 }
228
229 static int
230 empathy_app_command_line (GApplication *app,
231     GApplicationCommandLine *cmdline)
232 {
233   EmpathyApp *self = (EmpathyApp *) app;
234
235   if (!self->activated)
236     {
237       GError *error = NULL;
238
239       /* Create the FT factory */
240       self->ft_factory = empathy_ft_factory_dup_singleton ();
241       g_signal_connect (self->ft_factory, "new-ft-handler",
242           G_CALLBACK (new_ft_handler_cb), NULL);
243       g_signal_connect (self->ft_factory, "new-incoming-transfer",
244           G_CALLBACK (new_incoming_transfer_cb), NULL);
245
246       if (!empathy_ft_factory_register (self->ft_factory, &error))
247         {
248           g_warning ("Failed to register FileTransfer handler: %s",
249               error->message);
250           g_error_free (error);
251         }
252
253       g_application_hold (G_APPLICATION (app));
254       self->activated = TRUE;
255
256       /* Setting up UI */
257       self->window = empathy_main_window_dup ();
258       gtk_widget_show (self->window);
259       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
260           self->start_hidden);
261     }
262   else
263     {
264       /* We're requested to show stuff again, disable the start hidden global in
265        * case the accounts wizard wants to pop up.
266        */
267       self->start_hidden = FALSE;
268     }
269
270   if (!self->start_hidden)
271     empathy_window_present (GTK_WINDOW (self->window));
272
273   /* Display the accounts dialog if needed */
274   tp_account_manager_prepare_async (self->account_manager, NULL,
275       account_manager_ready_cb, self);
276
277   return 0;
278 }
279
280 static gboolean
281 show_version_cb (const char *option_name,
282     const char *value,
283     gpointer data,
284     GError **error);
285
286 static gboolean
287 empathy_app_local_command_line (GApplication *app,
288     gchar ***arguments,
289     gint *exit_status)
290 {
291   EmpathyApp *self = (EmpathyApp *) app;
292   gint i;
293   gchar **argv;
294   gint argc = 0;
295   gboolean retval = FALSE;
296   GError *error = NULL;
297   gboolean no_connect = FALSE, start_hidden = FALSE;
298
299   GOptionContext *optcontext;
300   GOptionEntry options[] = {
301       { "no-connect", 'n',
302         0, G_OPTION_ARG_NONE, &no_connect,
303         N_("Don't connect on startup"),
304         NULL },
305       { "start-hidden", 'h',
306         0, G_OPTION_ARG_NONE, &start_hidden,
307         N_("Don't display the contact list or any other dialogs on startup"),
308         NULL },
309       { "version", 'v',
310         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
311         NULL, NULL },
312       { NULL }
313   };
314
315   optcontext = g_option_context_new (N_("- Empathy IM Client"));
316   g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
317   g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
318
319   argv = *arguments;
320   for (i = 0; argv[i] != NULL; i++)
321     argc++;
322
323   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
324     {
325       g_print ("%s\nRun '%s --help' to see a full list of available command "
326           "line options.\n",
327           error->message, argv[0]);
328       g_warning ("Error in empathy init: %s", error->message);
329
330       *exit_status = EXIT_FAILURE;
331       retval = TRUE;
332     }
333
334   g_option_context_free (optcontext);
335
336   self->no_connect = no_connect;
337   self->start_hidden = start_hidden;
338
339   return retval;
340 }
341
342 static void empathy_app_constructed (GObject *object);
343
344 static void
345 empathy_app_class_init (EmpathyAppClass *klass)
346 {
347   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
348   GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
349   GParamSpec *spec;
350
351   gobject_class->set_property = empathy_app_set_property;
352   gobject_class->constructed = empathy_app_constructed;
353   gobject_class->dispose = empathy_app_dispose;
354   gobject_class->finalize = empathy_app_finalize;
355
356   g_app_class->command_line = empathy_app_command_line;
357   g_app_class->local_command_line = empathy_app_local_command_line;
358
359   spec = g_param_spec_boolean ("no-connect", "no connect",
360       "Don't connect on startup",
361       FALSE,
362       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
363   g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
364
365   spec = g_param_spec_boolean ("start-hidden", "start hidden",
366       "Don't display the contact list or any other dialogs on startup",
367       FALSE,
368       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
369   g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
370 }
371
372 static void
373 empathy_app_init (EmpathyApp *self)
374 {
375 }
376
377 static void
378 use_conn_notify_cb (GSettings *gsettings,
379     const gchar *key,
380     gpointer     user_data)
381 {
382   EmpathyConnectivity *connectivity = user_data;
383
384   empathy_connectivity_set_use_conn (connectivity,
385       g_settings_get_boolean (gsettings, key));
386 }
387
388 static void
389 migrate_config_to_xdg_dir (void)
390 {
391   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
392   int i;
393   GFile *xdg_file, *old_file;
394   static const gchar* filenames[] = {
395     "geometry.ini",
396     "irc-networks.xml",
397     "chatrooms.xml",
398     "contact-groups.xml",
399     "status-presets.xml",
400     "accels.txt",
401     NULL
402   };
403
404   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
405   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
406     {
407       /* xdg config dir already exists */
408       g_free (xdg_dir);
409       return;
410     }
411
412   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
413       PACKAGE_NAME, NULL);
414   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
415     {
416       /* old config dir didn't exist */
417       g_free (xdg_dir);
418       g_free (old_dir);
419       return;
420     }
421
422   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
423     {
424       DEBUG ("Failed to create configuration directory; aborting migration");
425       g_free (xdg_dir);
426       g_free (old_dir);
427       return;
428     }
429
430   for (i = 0; filenames[i]; i++)
431     {
432       old_filename = g_build_filename (old_dir, filenames[i], NULL);
433       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
434         {
435           g_free (old_filename);
436           continue;
437         }
438       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
439       old_file = g_file_new_for_path (old_filename);
440       xdg_file = g_file_new_for_path (xdg_filename);
441
442       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
443           NULL, NULL, NULL, NULL))
444         DEBUG ("Failed to migrate %s", filenames[i]);
445
446       g_free (old_filename);
447       g_free (xdg_filename);
448       g_object_unref (old_file);
449       g_object_unref (xdg_file);
450     }
451
452   g_free (xdg_dir);
453   g_free (old_dir);
454 }
455
456 static void
457 show_accounts_ui (EmpathyApp *self,
458     GdkScreen *screen,
459     gboolean if_needed)
460 {
461   empathy_accounts_dialog_show_application (screen,
462       NULL, if_needed, self->start_hidden);
463 }
464
465 static gboolean
466 show_version_cb (const char *option_name,
467     const char *value,
468     gpointer data,
469     GError **error)
470 {
471   g_print ("%s\n", PACKAGE_STRING);
472
473   exit (EXIT_SUCCESS);
474 }
475
476 static void
477 account_manager_ready_cb (GObject *source_object,
478     GAsyncResult *result,
479     gpointer user_data)
480 {
481   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
482   EmpathyApp *self = user_data;
483   GError *error = NULL;
484   TpConnectionPresenceType presence;
485
486   if (!tp_account_manager_prepare_finish (manager, result, &error))
487     {
488       GtkWidget *dialog;
489
490       DEBUG ("Failed to prepare account manager: %s", error->message);
491
492       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
493           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
494           _("Error contacting the Account Manager"));
495       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
496           _("There was an error while trying to connect to the Telepathy "
497             "Account Manager. The error was:\n\n%s"),
498           error->message);
499
500       gtk_dialog_run (GTK_DIALOG (dialog));
501       gtk_widget_destroy (dialog);
502
503       g_error_free (error);
504       return;
505     }
506
507   /* Autoconnect */
508   presence = tp_account_manager_get_most_available_presence (manager, NULL,
509       NULL);
510
511   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
512       !self->no_connect &&
513       tp_connection_presence_type_cmp_availability
514           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
515             <= 0)
516       /* if current state is Offline, then put it online */
517       empathy_idle_set_state (self->idle,
518           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
519
520   /* Pop up the accounts dialog if we don't have any account */
521   if (!empathy_accounts_has_accounts (manager))
522     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
523 }
524
525 static void
526 account_status_changed_cb (TpAccount *account,
527     guint old_status,
528     guint new_status,
529     guint reason,
530     gchar *dbus_error_name,
531     GHashTable *details,
532     EmpathyChatroom *room)
533 {
534   if (new_status != TP_CONNECTION_STATUS_CONNECTED)
535     return;
536
537   empathy_dispatcher_join_muc (account,
538       empathy_chatroom_get_room (room), TP_USER_ACTION_TIME_NOT_USER_ACTION);
539 }
540
541 static void
542 account_manager_chatroom_ready_cb (GObject *source_object,
543     GAsyncResult *result,
544     gpointer user_data)
545 {
546   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
547   EmpathyChatroomManager *chatroom_manager = user_data;
548   GList *accounts, *l;
549   GError *error = NULL;
550
551   if (!tp_account_manager_prepare_finish (account_manager, result, &error))
552     {
553       DEBUG ("Failed to prepare account manager: %s", error->message);
554       g_error_free (error);
555       return;
556     }
557
558   accounts = tp_account_manager_get_valid_accounts (account_manager);
559
560   for (l = accounts; l != NULL; l = g_list_next (l))
561     {
562       TpAccount *account = TP_ACCOUNT (l->data);
563       TpConnection *conn;
564       GList *chatrooms, *p;
565
566       conn = tp_account_get_connection (account);
567
568       chatrooms = empathy_chatroom_manager_get_chatrooms (
569           chatroom_manager, account);
570
571       for (p = chatrooms; p != NULL; p = p->next)
572         {
573           EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
574
575           if (!empathy_chatroom_get_auto_connect (room))
576             continue;
577
578           if (conn == NULL)
579             {
580               g_signal_connect (G_OBJECT (account), "status-changed",
581                   G_CALLBACK (account_status_changed_cb), room);
582             }
583           else
584             {
585               empathy_dispatcher_join_muc (account,
586                   empathy_chatroom_get_room (room),
587                   TP_USER_ACTION_TIME_NOT_USER_ACTION);
588             }
589         }
590
591       g_list_free (chatrooms);
592     }
593
594   g_list_free (accounts);
595 }
596
597 static void
598 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
599     GParamSpec *pspec,
600     gpointer user_data)
601 {
602   TpAccountManager *account_manager = user_data;
603
604   tp_account_manager_prepare_async (account_manager, NULL,
605       account_manager_chatroom_ready_cb, chatroom_manager);
606 }
607
608 static void
609 empathy_idle_set_auto_away_cb (GSettings *gsettings,
610                                 const gchar *key,
611                                 gpointer user_data)
612 {
613         EmpathyIdle *idle = user_data;
614
615         empathy_idle_set_auto_away (idle,
616       g_settings_get_boolean (gsettings, key));
617 }
618
619 static void
620 empathy_app_constructed (GObject *object)
621 {
622   EmpathyApp *self = (EmpathyApp *) object;
623   gboolean chatroom_manager_ready;
624   gboolean autoaway;
625
626   g_set_application_name (_(PACKAGE_NAME));
627
628   gtk_window_set_default_icon_name ("empathy");
629   textdomain (GETTEXT_PACKAGE);
630
631 #ifdef ENABLE_DEBUG
632   /* Set up debug sender */
633   self->debug_sender = tp_debug_sender_dup ();
634   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
635 #endif
636
637   notify_init (_(PACKAGE_NAME));
638
639   /* Setting up Idle */
640   self->idle = empathy_idle_dup_singleton ();
641
642   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
643   autoaway = g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOAWAY);
644
645   g_signal_connect (self->gsettings,
646       "changed::" EMPATHY_PREFS_AUTOAWAY,
647       G_CALLBACK (empathy_idle_set_auto_away_cb), self->idle);
648
649   empathy_idle_set_auto_away (self->idle, autoaway);
650
651   /* Setting up Connectivity */
652   self->connectivity = empathy_connectivity_dup_singleton ();
653   use_conn_notify_cb (self->gsettings, EMPATHY_PREFS_USE_CONN,
654       self->connectivity);
655   g_signal_connect (self->gsettings,
656       "changed::" EMPATHY_PREFS_USE_CONN,
657       G_CALLBACK (use_conn_notify_cb), self->connectivity);
658
659   /* account management */
660   self->account_manager = tp_account_manager_dup ();
661   tp_account_manager_prepare_async (self->account_manager, NULL,
662       account_manager_ready_cb, self);
663
664   /* The EmpathyDispatcher doesn't dispatch anything any more but we have to
665    * keep it around as we still use it to request channels */
666   self->dispatcher = empathy_dispatcher_dup_singleton ();
667
668   migrate_config_to_xdg_dir ();
669
670   /* Logging */
671   self->log_manager = tpl_log_manager_dup_singleton ();
672
673   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
674
675   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
676   if (!chatroom_manager_ready)
677     {
678       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
679           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
680     }
681   else
682     {
683       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
684           self->account_manager);
685     }
686
687   /* Location mananger */
688 #ifdef HAVE_GEOCLUE
689   self->location_manager = empathy_location_manager_dup_singleton ();
690 #endif
691
692   self->activated = FALSE;
693   self->ft_factory = NULL;
694   self->window = NULL;
695 }
696
697 int
698 main (int argc, char *argv[])
699 {
700   EmpathyApp *app;
701
702   g_thread_init (NULL);
703   g_type_init ();
704
705 #ifdef HAVE_LIBCHAMPLAIN
706   gtk_clutter_init (&argc, &argv);
707 #endif
708
709   empathy_init ();
710   gtk_init (&argc, &argv);
711   empathy_gtk_init ();
712
713   app = g_object_new (EMPATHY_TYPE_APP,
714       "application-id", EMPATHY_DBUS_NAME,
715       "flags", G_APPLICATION_HANDLES_COMMAND_LINE,
716       NULL);
717
718   g_application_run (G_APPLICATION (app), argc, argv);
719
720   notify_uninit ();
721   xmlCleanupParser ();
722
723   g_object_unref (app);
724   return EXIT_SUCCESS;
725 }