]> git.0d.be Git - empathy.git/blob - src/empathy.c
Update Simplified Chinese help translation.
[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-yell/telepathy-yell.h>
48
49 #include <telepathy-logger/log-manager.h>
50
51 #include <libempathy/empathy-presence-manager.h>
52 #include <libempathy/empathy-utils.h>
53 #include <libempathy/empathy-chatroom-manager.h>
54 #include <libempathy/empathy-account-settings.h>
55 #include <libempathy/empathy-connectivity.h>
56 #include <libempathy/empathy-connection-managers.h>
57 #include <libempathy/empathy-request-util.h>
58 #include <libempathy/empathy-ft-factory.h>
59 #include <libempathy/empathy-gsettings.h>
60 #include <libempathy/empathy-tp-chat.h>
61
62 #include <libempathy-gtk/empathy-ui-utils.h>
63 #include <libempathy-gtk/empathy-location-manager.h>
64
65 #include "empathy-main-window.h"
66 #include "empathy-accounts-common.h"
67 #include "empathy-accounts-dialog.h"
68 #include "empathy-status-icon.h"
69 #include "empathy-ft-manager.h"
70 #include "empathy-notifications-approver.h"
71
72 #include "extensions/extensions.h"
73
74 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
75 #include <libempathy/empathy-debug.h>
76
77 #define EMPATHY_DBUS_NAME "org.gnome.Empathy"
78
79 #define EMPATHY_TYPE_APP (empathy_app_get_type ())
80 #define EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_APP, EmpathyApp))
81 #define EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
82 #define EMPATHY_IS_EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_APP))
83 #define EMPATHY_IS_EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_APP))
84 #define EMPATHY_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
85
86 typedef struct _EmpathyApp EmpathyApp;
87 typedef struct _EmpathyAppClass EmpathyAppClass;
88
89 enum
90 {
91   PROP_NO_CONNECT = 1,
92   PROP_START_HIDDEN
93 };
94
95 GType empathy_app_get_type (void);
96
97 struct _EmpathyAppClass
98 {
99   GtkApplicationClass parent_class;
100 };
101
102 struct _EmpathyApp
103 {
104   GtkApplication parent;
105
106   /* Properties */
107   gboolean no_connect;
108   gboolean start_hidden;
109
110   gboolean activated;
111
112   GtkWidget *window;
113   EmpathyStatusIcon *icon;
114   TpAccountManager *account_manager;
115   TplLogManager *log_manager;
116   EmpathyChatroomManager *chatroom_manager;
117   EmpathyFTFactory  *ft_factory;
118   EmpathyPresenceManager *presence_mgr;
119   EmpathyConnectivity *connectivity;
120   GSettings *gsettings;
121   EmpathyNotificationsApprover *notifications_approver;
122 #ifdef HAVE_GEOCLUE
123   EmpathyLocationManager *location_manager;
124 #endif
125 #ifdef ENABLE_DEBUG
126   TpDebugSender *debug_sender;
127 #endif
128 };
129
130
131 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
132
133 static void
134 empathy_app_dispose (GObject *object)
135 {
136   EmpathyApp *self = EMPATHY_APP (object);
137   void (*dispose) (GObject *) =
138     G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
139
140   if (self->presence_mgr != NULL)
141     {
142       empathy_presence_manager_set_state (self->presence_mgr,
143           TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
144     }
145
146 #ifdef ENABLE_DEBUG
147   tp_clear_object (&self->debug_sender);
148 #endif
149
150   tp_clear_object (&self->presence_mgr);
151   tp_clear_object (&self->connectivity);
152   tp_clear_object (&self->icon);
153   tp_clear_object (&self->account_manager);
154   tp_clear_object (&self->log_manager);
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       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_presence_manager_set_state (self->presence_mgr,
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_join_chatrooms (TpAccount *account,
533   EmpathyChatroomManager *chatroom_manager)
534 {
535   TpConnection *conn;
536   GList *chatrooms, *p;
537
538   if (tp_account_get_connection_status (account, NULL) !=
539       TP_CONNECTION_STATUS_CONNECTED)
540     return;
541
542   /* If we're connected we should have a connection */
543   conn = tp_account_get_connection (account);
544   g_return_if_fail (conn != NULL);
545
546   chatrooms = empathy_chatroom_manager_get_chatrooms (
547           chatroom_manager, account);
548
549   for (p = chatrooms; p != NULL; p = p->next)
550     {
551       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
552
553       if (!empathy_chatroom_get_auto_connect (room))
554         continue;
555
556       empathy_join_muc (account, empathy_chatroom_get_room (room),
557         TP_USER_ACTION_TIME_NOT_USER_ACTION);
558     }
559   g_list_free (chatrooms);
560 }
561
562 static void
563 account_status_changed_cb (TpAccount *account,
564     guint old_status,
565     guint new_status,
566     guint reason,
567     gchar *dbus_error_name,
568     GHashTable *details,
569     EmpathyChatroomManager *manager)
570 {
571   account_join_chatrooms (account, manager);
572 }
573
574 static void
575 account_manager_chatroom_ready_cb (GObject *source_object,
576     GAsyncResult *result,
577     gpointer user_data)
578 {
579   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
580   EmpathyChatroomManager *chatroom_manager = user_data;
581   GList *accounts, *l;
582   GError *error = NULL;
583
584   if (!tp_account_manager_prepare_finish (account_manager, result, &error))
585     {
586       DEBUG ("Failed to prepare account manager: %s", error->message);
587       g_error_free (error);
588       return;
589     }
590
591   accounts = tp_account_manager_get_valid_accounts (account_manager);
592
593   for (l = accounts; l != NULL; l = g_list_next (l))
594     {
595       TpAccount *account = TP_ACCOUNT (l->data);
596
597       /* Try to join all rooms if we're connected */
598       account_join_chatrooms (account, chatroom_manager);
599
600       /* And/or join them on (re)connection */
601       tp_g_signal_connect_object (account, "status-changed",
602         G_CALLBACK (account_status_changed_cb), chatroom_manager, 0);
603     }
604   g_list_free (accounts);
605 }
606
607 static void
608 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
609     GParamSpec *pspec,
610     gpointer user_data)
611 {
612   TpAccountManager *account_manager = user_data;
613
614   tp_account_manager_prepare_async (account_manager, NULL,
615       account_manager_chatroom_ready_cb, chatroom_manager);
616 }
617
618 static void
619 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
620                                 const gchar *key,
621                                 gpointer user_data)
622 {
623         EmpathyPresenceManager *presence_mgr = user_data;
624
625         empathy_presence_manager_set_auto_away (presence_mgr,
626       g_settings_get_boolean (gsettings, key));
627 }
628
629 static void
630 empathy_app_constructed (GObject *object)
631 {
632   EmpathyApp *self = (EmpathyApp *) object;
633   gboolean chatroom_manager_ready;
634   gboolean autoaway;
635
636   g_set_application_name (_(PACKAGE_NAME));
637
638   gtk_window_set_default_icon_name ("empathy");
639   textdomain (GETTEXT_PACKAGE);
640
641 #ifdef ENABLE_DEBUG
642   /* Set up debug sender */
643   self->debug_sender = tp_debug_sender_dup ();
644   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
645 #endif
646
647   notify_init (_(PACKAGE_NAME));
648
649   /* Setting up Idle */
650   self->presence_mgr = empathy_presence_manager_dup_singleton ();
651
652   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
653   autoaway = g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOAWAY);
654
655   g_signal_connect (self->gsettings,
656       "changed::" EMPATHY_PREFS_AUTOAWAY,
657       G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
658       self->presence_mgr);
659
660   empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
661
662   /* Setting up Connectivity */
663   self->connectivity = empathy_connectivity_dup_singleton ();
664   use_conn_notify_cb (self->gsettings, EMPATHY_PREFS_USE_CONN,
665       self->connectivity);
666   g_signal_connect (self->gsettings,
667       "changed::" EMPATHY_PREFS_USE_CONN,
668       G_CALLBACK (use_conn_notify_cb), self->connectivity);
669
670   /* account management */
671   self->account_manager = tp_account_manager_dup ();
672   tp_account_manager_prepare_async (self->account_manager, NULL,
673       account_manager_ready_cb, self);
674
675   migrate_config_to_xdg_dir ();
676
677   /* Logging */
678   self->log_manager = tpl_log_manager_dup_singleton ();
679
680   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
681
682   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
683   if (!chatroom_manager_ready)
684     {
685       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
686           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
687     }
688   else
689     {
690       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
691           self->account_manager);
692     }
693
694   /* Location mananger */
695 #ifdef HAVE_GEOCLUE
696   self->location_manager = empathy_location_manager_dup_singleton ();
697 #endif
698
699   self->activated = FALSE;
700   self->ft_factory = NULL;
701   self->window = NULL;
702 }
703
704 int
705 main (int argc, char *argv[])
706 {
707   EmpathyApp *app;
708   gint retval;
709
710   g_thread_init (NULL);
711   g_type_init ();
712
713 #ifdef HAVE_LIBCHAMPLAIN
714   gtk_clutter_init (&argc, &argv);
715 #endif
716
717   g_type_init ();
718   tpy_cli_init ();
719   empathy_init ();
720   gtk_init (&argc, &argv);
721   empathy_gtk_init ();
722
723   app = g_object_new (EMPATHY_TYPE_APP,
724       "application-id", EMPATHY_DBUS_NAME,
725       "flags", G_APPLICATION_HANDLES_COMMAND_LINE,
726       NULL);
727
728   retval = g_application_run (G_APPLICATION (app), argc, argv);
729
730   notify_uninit ();
731   xmlCleanupParser ();
732
733   g_object_unref (app);
734
735   return retval;
736 }