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