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