]> git.0d.be Git - empathy.git/blob - src/empathy.c
Make use of tp-glib debug system.
[empathy.git] / src / empathy.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <stdlib.h>
26 #include <errno.h>
27
28 #include <glib.h>
29 #include <glib/gi18n.h>
30 #include <gtk/gtk.h>
31 #include <gdk/gdkx.h>
32
33 #include <libebook/e-book.h>
34
35 #include <telepathy-glib/util.h>
36 #include <libmissioncontrol/mc-account.h>
37 #include <libmissioncontrol/mission-control.h>
38
39 #include <libempathy/empathy-idle.h>
40 #include <libempathy/empathy-utils.h>
41
42 #include <libempathy-gtk/empathy-conf.h>
43
44 #include "empathy-main-window.h"
45 #include "empathy-status-icon.h"
46 #include "bacon-message-connection.h"
47
48 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
49 #include <libempathy/empathy-debug.h>
50
51 static BaconMessageConnection *connection = NULL;
52
53 static void
54 service_ended_cb (MissionControl *mc,
55                   gpointer        user_data)
56 {
57         DEBUG ("Mission Control stopped");
58 }
59
60 static void
61 operation_error_cb (MissionControl *mc,
62                     guint           operation_id,
63                     guint           error_code,
64                     gpointer        user_data)
65 {
66         const gchar *message;
67
68         switch (error_code) {
69         case MC_DISCONNECTED_ERROR:
70                 message = _("Disconnected");
71                 break;
72         case MC_INVALID_HANDLE_ERROR:
73                 message = _("Invalid handle");
74                 break;
75         case MC_NO_MATCHING_CONNECTION_ERROR:
76                 message = _("No matching connection");
77                 break;
78         case MC_INVALID_ACCOUNT_ERROR:
79                 message = _("Invalid account");
80                 break;
81         case MC_PRESENCE_FAILURE_ERROR:
82                 message = _("Presence failure");
83                 break;
84         case MC_NO_ACCOUNTS_ERROR:
85                 message = _("No accounts");
86                 break;
87         case MC_NETWORK_ERROR:
88                 message = _("Network error");
89                 break;
90         case MC_CONTACT_DOES_NOT_SUPPORT_VOICE_ERROR:
91                 message = _("Contact does not support voice");
92                 break;
93         case MC_LOWMEM_ERROR:
94                 message = _("Lowmem");
95                 break;
96         case MC_CHANNEL_REQUEST_GENERIC_ERROR:
97                 message = _("Channel request generic error");
98                 break;
99         case MC_CHANNEL_BANNED_ERROR:
100                 message = _("Channel banned");
101                 break;
102         case MC_CHANNEL_FULL_ERROR:
103                 message = _("Channel full");
104                 break;
105         case MC_CHANNEL_INVITE_ONLY_ERROR:
106                 message = _("Channel invite only");
107                 break;
108         default:
109                 message = _("Unknown error code");
110         }
111
112         DEBUG ("Error during operation %d: %s", operation_id, message);
113 }
114
115 static void
116 use_nm_notify_cb (EmpathyConf *conf,
117                   const gchar *key,
118                   gpointer     user_data)
119 {
120         EmpathyIdle *idle = user_data;
121         gboolean     use_nm;
122
123         if (empathy_conf_get_bool (conf, key, &use_nm)) {
124                 empathy_idle_set_use_nm (idle, use_nm);
125         }
126 }
127
128 static void
129 create_salut_account (void)
130 {
131         McProfile  *profile;
132         McProtocol *protocol;
133         gboolean    salut_created = FALSE;
134         McAccount  *account;
135         GList      *accounts;
136         EBook      *book;
137         EContact   *contact;
138         gchar      *nickname = NULL;
139         gchar      *first_name = NULL;
140         gchar      *last_name = NULL;
141         gchar      *email = NULL;
142         gchar      *jid = NULL;
143         GError     *error = NULL;
144
145         /* Check if we already created a salut account */
146         empathy_conf_get_bool (empathy_conf_get(),
147                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
148                                &salut_created);
149         if (salut_created) {
150                 return;
151         }
152
153         DEBUG ("Try to add a salut account...");
154
155         /* Check if the salut CM is installed */
156         profile = mc_profile_lookup ("salut");
157         protocol = mc_profile_get_protocol (profile);
158         if (!protocol) {
159                 DEBUG ("Salut not installed");
160                 g_object_unref (profile);
161                 return;
162         }
163         g_object_unref (protocol);
164
165         /* Get self EContact from EDS */
166         if (!e_book_get_self (&contact, &book, &error)) {
167                 DEBUG ("Failed to get self econtact: %s",
168                         error ? error->message : "No error given");
169                 g_clear_error (&error);
170                 g_object_unref (profile);
171                 return;
172         }
173
174         empathy_conf_set_bool (empathy_conf_get (),
175                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
176                                TRUE);
177
178         /* Check if there is already a salut account */
179         accounts = mc_accounts_list_by_profile (profile);
180         if (accounts) {
181                 DEBUG ("There is already a salut account");
182                 mc_accounts_list_free (accounts);
183                 g_object_unref (profile);
184                 return;
185         }
186
187         account = mc_account_create (profile);
188         mc_account_set_display_name (account, _("People nearby"));
189         
190         nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
191         first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
192         last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
193         email = e_contact_get (contact, E_CONTACT_EMAIL_1);
194         jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
195         
196         if (!tp_strdiff (nickname, "nickname")) {
197                 g_free (nickname);
198                 nickname = NULL;
199         }
200
201         DEBUG ("Salut account created:\nnickname=%s\nfirst-name=%s\n"
202                 "last-name=%s\nemail=%s\njid=%s\n",
203                 nickname, first_name, last_name, email, jid);
204
205         mc_account_set_param_string (account, "nickname", nickname ? nickname : "");
206         mc_account_set_param_string (account, "first-name", first_name ? first_name : "");
207         mc_account_set_param_string (account, "last-name", last_name ? last_name : "");
208         mc_account_set_param_string (account, "email", email ? email : "");
209         mc_account_set_param_string (account, "jid", jid ? jid : "");
210
211         g_free (nickname);
212         g_free (first_name);
213         g_free (last_name);
214         g_free (email);
215         g_free (jid);
216         g_object_unref (account);
217         g_object_unref (profile);
218         g_object_unref (contact);
219         g_object_unref (book);
220 }
221
222 /* The code that handles single-instance and startup notification is
223  * copied from gedit.
224  *
225  * Copyright (C) 2005 - Paolo Maggi 
226  */
227 static void
228 on_bacon_message_received (const char *message,
229                            gpointer    data)
230 {
231         GtkWidget *window = data;
232         guint32    startup_timestamp;
233
234         g_return_if_fail (message != NULL);
235
236         DEBUG ("Other instance launched, presenting the main window. message='%s'",
237                 message);
238
239         startup_timestamp = atoi (message);
240
241         /* Set the proper interaction time on the window.
242          * Fall back to roundtripping to the X server when we
243          * don't have the timestamp, e.g. when launched from
244          * terminal. We also need to make sure that the window
245          * has been realized otherwise it will not work. lame. */
246         if (startup_timestamp == 0) {
247                 /* Work if launched from the terminal */
248                 DEBUG ("Using X server timestamp as a fallback");
249
250                 if (!GTK_WIDGET_REALIZED (window)) {
251                         gtk_widget_realize (GTK_WIDGET (window));
252                 }
253
254                 startup_timestamp = gdk_x11_get_server_time (window->window);
255         }
256
257         gtk_window_present_with_time (GTK_WINDOW (window), startup_timestamp);
258 }
259
260 static guint32
261 get_startup_timestamp ()
262 {
263         const gchar *startup_id_env;
264         gchar       *startup_id = NULL;
265         gchar       *time_str;
266         gchar       *end;
267         gulong       retval = 0;
268
269         /* we don't unset the env, since startup-notification
270          * may still need it */
271         startup_id_env = g_getenv ("DESKTOP_STARTUP_ID");
272         if (startup_id_env == NULL) {
273                 goto out;
274         }
275
276         startup_id = g_strdup (startup_id_env);
277
278         time_str = g_strrstr (startup_id, "_TIME");
279         if (time_str == NULL) {
280                 goto out;
281         }
282
283         errno = 0;
284
285         /* Skip past the "_TIME" part */
286         time_str += 5;
287
288         retval = strtoul (time_str, &end, 0);
289         if (end == time_str || errno != 0)
290                 retval = 0;
291
292  out:
293         g_free (startup_id);
294
295         return (retval > 0) ? retval : 0;
296 }
297
298 int
299 main (int argc, char *argv[])
300 {
301         guint32            startup_timestamp;
302         EmpathyStatusIcon *icon;
303         GtkWidget         *window;
304         MissionControl    *mc;
305         EmpathyIdle       *idle;
306         gboolean           autoconnect = TRUE;
307         gboolean           no_connect = FALSE; 
308         GError            *error = NULL;
309         GOptionEntry       options[] = {
310                 { "no-connect", 'n',
311                   0, G_OPTION_ARG_NONE, &no_connect,
312                   N_("Don't connect on startup"),
313                   NULL },
314                 { NULL }
315         };
316
317         bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
318         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
319         textdomain (GETTEXT_PACKAGE);
320
321         startup_timestamp = get_startup_timestamp ();
322
323         if (!gtk_init_with_args (&argc, &argv,
324                                  _("- Empathy Instant Messenger"),
325                                  options, GETTEXT_PACKAGE, &error)) {
326                 g_warning ("Error in gtk init: %s", error->message);
327                 return EXIT_FAILURE;
328         }
329
330         if (g_getenv ("EMPATHY_TIMING") != NULL) {
331                 g_log_set_default_handler (tp_debug_timestamped_log_handler, NULL);
332         }
333         empathy_debug_set_flags (g_getenv ("EMPATHY_DEBUG"));
334         tp_debug_divert_messages (g_getenv ("EMPATHY_LOGFILE"));
335
336         g_set_application_name (PACKAGE_NAME);
337
338         gtk_window_set_default_icon_name ("empathy");
339         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
340                                            PKGDATADIR G_DIR_SEPARATOR_S "icons");
341
342         /* Setting up the bacon connection */
343         connection = bacon_message_connection_new ("empathy");
344         if (connection != NULL) {
345                 if (!bacon_message_connection_get_is_server (connection)) {
346                         gchar *message;
347
348                         DEBUG ("Activating existing instance");
349
350                         message = g_strdup_printf ("%" G_GUINT32_FORMAT,
351                                                    startup_timestamp);
352                         bacon_message_connection_send (connection, message);
353
354                         /* We never popup a window, so tell startup-notification
355                          * that we are done. */
356                         gdk_notify_startup_complete ();
357
358                         g_free (message);
359                         bacon_message_connection_free (connection);
360
361                         return EXIT_SUCCESS;
362                 }
363         } else {
364                 g_warning ("Cannot create the 'empathy' bacon connection.");
365         }
366
367         /* Setting up MC */
368         mc = empathy_mission_control_new ();
369         g_signal_connect (mc, "ServiceEnded",
370                           G_CALLBACK (service_ended_cb),
371                           NULL);
372         g_signal_connect (mc, "Error",
373                           G_CALLBACK (operation_error_cb),
374                           NULL);
375
376         /* Setting up Idle */
377         idle = empathy_idle_new ();
378         empathy_idle_set_auto_away (idle, TRUE);
379         use_nm_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_NM, idle);
380         empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_NM,
381                                  use_nm_notify_cb, idle);
382
383         /* Autoconnect */
384         empathy_conf_get_bool (empathy_conf_get(),
385                                EMPATHY_PREFS_AUTOCONNECT,
386                                &autoconnect);
387         if (autoconnect && ! no_connect &&
388             empathy_idle_get_state (idle) <= MC_PRESENCE_OFFLINE) {
389                 empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
390         }
391         
392         create_salut_account ();
393
394         /* Setting up UI */
395         window = empathy_main_window_show ();
396         icon = empathy_status_icon_new (GTK_WINDOW (window));
397
398         if (connection) {
399                 /* We se the callback here because we need window */
400                 bacon_message_connection_set_callback (connection,
401                                                        on_bacon_message_received,
402                                                        window);
403         }
404
405         gtk_main ();
406
407         empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
408
409         g_object_unref (mc);
410         g_object_unref (idle);
411         g_object_unref (icon);
412
413         return EXIT_SUCCESS;
414 }
415