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