]> git.0d.be Git - empathy.git/blob - src/empathy-debug-dialog.c
check-whitespace.sh: check trailing tabs
[empathy.git] / src / empathy-debug-dialog.c
1 /*
2 *  Copyright (C) 2009 Collabora Ltd.
3 *
4 *  This library is free software; you can redistribute it and/or
5 *  modify it under the terms of the GNU Lesser General Public
6 *  License as published by the Free Software Foundation; either
7 *  version 2.1 of the License, or (at your option) any later version.
8 *
9 *  This library 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 *  Lesser General Public License for more details.
13 *
14 *  You should have received a copy of the GNU Lesser General Public
15 *  License along with this library; if not, write to the Free Software
16 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 *
18 *  Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
19 */
20
21 #include "config.h"
22
23 #include <glib/gi18n.h>
24 #include <gtk/gtk.h>
25 #include <gio/gio.h>
26
27 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
28 #include <libempathy/empathy-debug.h>
29 #include <libempathy/empathy-utils.h>
30
31 #include <libempathy-gtk/empathy-account-chooser.h>
32
33 #include <telepathy-glib/dbus.h>
34 #include <telepathy-glib/util.h>
35 #include <telepathy-glib/proxy-subclass.h>
36
37 #include "extensions/extensions.h"
38
39 #include "empathy-debug-dialog.h"
40
41 G_DEFINE_TYPE (EmpathyDebugDialog, empathy_debug_dialog,
42     GTK_TYPE_DIALOG)
43
44 enum
45 {
46   COL_DEBUG_TIMESTAMP = 0,
47   COL_DEBUG_DOMAIN,
48   COL_DEBUG_CATEGORY,
49   COL_DEBUG_LEVEL_STRING,
50   COL_DEBUG_MESSAGE,
51   COL_DEBUG_LEVEL_VALUE,
52   NUM_DEBUG_COLS
53 };
54
55 enum
56 {
57   COL_CM_NAME = 0,
58   COL_CM_UNIQUE_NAME,
59   NUM_COLS_CM
60 };
61
62 enum
63 {
64   COL_LEVEL_NAME,
65   COL_LEVEL_VALUE,
66   NUM_COLS_LEVEL
67 };
68
69 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyDebugDialog)
70 typedef struct
71 {
72   /* Toolbar items */
73   GtkWidget *cm_chooser;
74   GtkToolItem *save_button;
75   GtkToolItem *copy_button;
76   GtkToolItem *clear_button;
77   GtkToolItem *pause_button;
78   GtkToolItem *level_label;
79   GtkWidget *level_filter;
80
81   /* TreeView */
82   GtkListStore *store;
83   GtkTreeModel *store_filter;
84   GtkWidget *view;
85   GtkWidget *scrolled_win;
86   GtkWidget *not_supported_label;
87   gboolean view_visible;
88
89   /* Connection */
90   TpDBusDaemon *dbus;
91   TpProxy *proxy;
92   TpProxySignalConnection *new_debug_message_signal;
93   TpProxySignalConnection *name_owner_changed_signal;
94
95   /* Whether NewDebugMessage will be fired */
96   gboolean paused;
97
98   /* CM chooser store */
99   GtkListStore *cms;
100
101   /* Misc. */
102   gboolean dispose_run;
103 } EmpathyDebugDialogPriv;
104
105 static const gchar *
106 log_level_to_string (guint level)
107 {
108   switch (level)
109     {
110     case EMP_DEBUG_LEVEL_ERROR:
111       return _("Error");
112       break;
113     case EMP_DEBUG_LEVEL_CRITICAL:
114       return _("Critical");
115       break;
116     case EMP_DEBUG_LEVEL_WARNING:
117       return _("Warning");
118       break;
119     case EMP_DEBUG_LEVEL_MESSAGE:
120       return _("Message");
121       break;
122     case EMP_DEBUG_LEVEL_INFO:
123       return _("Info");
124       break;
125     case EMP_DEBUG_LEVEL_DEBUG:
126       return _("Debug");
127       break;
128     default:
129       g_assert_not_reached ();
130       break;
131     }
132 }
133
134 static void
135 debug_dialog_add_message (EmpathyDebugDialog *debug_dialog,
136     gdouble timestamp,
137     const gchar *domain_category,
138     guint level,
139     const gchar *message)
140 {
141   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
142   gchar *domain, *category;
143   GtkTreeIter iter;
144   gchar *string;
145
146   if (g_strrstr (domain_category, "/"))
147     {
148       gchar **parts = g_strsplit (domain_category, "/", 2);
149       domain = g_strdup (parts[0]);
150       category = g_strdup (parts[1]);
151       g_strfreev (parts);
152     }
153   else
154     {
155       domain = g_strdup (domain_category);
156       category = g_strdup ("");
157     }
158
159   if (g_str_has_suffix (message, "\n"))
160     string = g_strchomp (g_strdup (message));
161   else
162     string = g_strdup (message);
163
164
165   gtk_list_store_append (priv->store, &iter);
166   gtk_list_store_set (priv->store, &iter,
167       COL_DEBUG_TIMESTAMP, timestamp,
168       COL_DEBUG_DOMAIN, domain,
169       COL_DEBUG_CATEGORY, category,
170       COL_DEBUG_LEVEL_STRING, log_level_to_string (level),
171       COL_DEBUG_MESSAGE, string,
172       COL_DEBUG_LEVEL_VALUE, level,
173       -1);
174
175   g_free (string);
176   g_free (domain);
177   g_free (category);
178 }
179
180 static void
181 debug_dialog_new_debug_message_cb (TpProxy *proxy,
182     gdouble timestamp,
183     const gchar *domain,
184     guint level,
185     const gchar *message,
186     gpointer user_data,
187     GObject *weak_object)
188 {
189   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
190
191   debug_dialog_add_message (debug_dialog, timestamp, domain, level,
192       message);
193 }
194
195 static void
196 debug_dialog_set_enabled (EmpathyDebugDialog *debug_dialog,
197     gboolean enabled)
198 {
199   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
200   GValue *val;
201
202   val = tp_g_value_slice_new_boolean (enabled);
203
204   tp_cli_dbus_properties_call_set (priv->proxy, -1, EMP_IFACE_DEBUG,
205       "Enabled", val, NULL, NULL, NULL, NULL);
206
207   tp_g_value_slice_free (val);
208 }
209
210 static void
211 debug_dialog_set_toolbar_sensitivity (EmpathyDebugDialog *debug_dialog,
212     gboolean sensitive)
213 {
214   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
215   GtkWidget *vbox = GTK_DIALOG (debug_dialog)->vbox;
216
217   gtk_widget_set_sensitive (GTK_WIDGET (priv->save_button), sensitive);
218   gtk_widget_set_sensitive (GTK_WIDGET (priv->copy_button), sensitive);
219   gtk_widget_set_sensitive (GTK_WIDGET (priv->clear_button), sensitive);
220   gtk_widget_set_sensitive (GTK_WIDGET (priv->pause_button), sensitive);
221   gtk_widget_set_sensitive (GTK_WIDGET (priv->level_label), sensitive);
222   gtk_widget_set_sensitive (GTK_WIDGET (priv->level_filter), sensitive);
223   gtk_widget_set_sensitive (GTK_WIDGET (priv->view), sensitive);
224
225   if (sensitive && !priv->view_visible)
226     {
227       /* Add view and remove label */
228       gtk_container_remove (GTK_CONTAINER (vbox), priv->not_supported_label);
229       gtk_box_pack_start (GTK_BOX (vbox), priv->scrolled_win, TRUE, TRUE, 0);
230       priv->view_visible = TRUE;
231     }
232   else if (!sensitive && priv->view_visible)
233     {
234       /* Add label and remove view */
235       gtk_container_remove (GTK_CONTAINER (vbox), priv->scrolled_win);
236       gtk_box_pack_start (GTK_BOX (vbox), priv->not_supported_label,
237           TRUE, TRUE, 0);
238       priv->view_visible = FALSE;
239     }
240 }
241
242 static void
243 debug_dialog_get_messages_cb (TpProxy *proxy,
244     const GPtrArray *messages,
245     const GError *error,
246     gpointer user_data,
247     GObject *weak_object)
248 {
249   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
250   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
251   gint i;
252
253   if (error != NULL)
254     {
255       DEBUG ("GetMessages failed: %s", error->message);
256       debug_dialog_set_toolbar_sensitivity (debug_dialog, FALSE);
257       return;
258     }
259
260   debug_dialog_set_toolbar_sensitivity (debug_dialog, TRUE);
261
262   for (i = 0; i < messages->len; i++)
263     {
264       GValueArray *values = g_ptr_array_index (messages, i);
265
266       debug_dialog_add_message (debug_dialog,
267           g_value_get_double (g_value_array_get_nth (values, 0)),
268           g_value_get_string (g_value_array_get_nth (values, 1)),
269           g_value_get_uint (g_value_array_get_nth (values, 2)),
270           g_value_get_string (g_value_array_get_nth (values, 3)));
271     }
272
273   /* Connect to NewDebugMessage */
274   priv->new_debug_message_signal = emp_cli_debug_connect_to_new_debug_message (
275       proxy, debug_dialog_new_debug_message_cb, debug_dialog,
276       NULL, NULL, NULL);
277
278   /* Set Enabled as appropriate */
279   debug_dialog_set_enabled (debug_dialog, !priv->paused);
280 }
281
282 static void
283 debug_dialog_cm_chooser_changed_cb (GtkComboBox *cm_chooser,
284     EmpathyDebugDialog *debug_dialog)
285 {
286   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
287   MissionControl *mc;
288   TpDBusDaemon *dbus;
289   GError *error = NULL;
290   gchar *bus_name;
291   TpProxy *proxy;
292   GtkTreeIter iter;
293
294   if (!gtk_combo_box_get_active_iter (cm_chooser, &iter))
295     {
296       DEBUG ("No CM is selected");
297       if (gtk_tree_model_iter_n_children (
298           GTK_TREE_MODEL (priv->cms), NULL) > 0)
299         {
300           gtk_combo_box_set_active (cm_chooser, 0);
301         }
302       return;
303     }
304
305   mc = empathy_mission_control_dup_singleton ();
306   dbus = tp_dbus_daemon_dup (&error);
307
308   if (error != NULL)
309     {
310       DEBUG ("Failed at duping the dbus daemon: %s", error->message);
311       g_object_unref (mc);
312     }
313
314   gtk_tree_model_get (GTK_TREE_MODEL (priv->cms), &iter,
315       COL_CM_UNIQUE_NAME, &bus_name, -1);
316   proxy = g_object_new (TP_TYPE_PROXY,
317       "bus-name", bus_name,
318       "dbus-daemon", dbus,
319       "object-path", DEBUG_OBJECT_PATH,
320       NULL);
321   g_free (bus_name);
322
323   gtk_list_store_clear (priv->store);
324
325   /* Disable debug signalling */
326   if (priv->proxy != NULL)
327     debug_dialog_set_enabled (debug_dialog, FALSE);
328
329   /* Disconnect from previous NewDebugMessage signal */
330   if (priv->new_debug_message_signal != NULL)
331     {
332       tp_proxy_signal_connection_disconnect (priv->new_debug_message_signal);
333       priv->new_debug_message_signal = NULL;
334     }
335
336   if (priv->proxy != NULL)
337     g_object_unref (priv->proxy);
338
339   priv->proxy = proxy;
340
341   tp_proxy_add_interface_by_id (priv->proxy, emp_iface_quark_debug ());
342
343   emp_cli_debug_call_get_messages (priv->proxy, -1,
344       debug_dialog_get_messages_cb, debug_dialog, NULL, NULL);
345
346   g_object_unref (dbus);
347   g_object_unref (mc);
348 }
349
350 typedef struct
351 {
352   const gchar *unique_name;
353   gboolean found;
354 } CmInModelForeachData;
355
356 static gboolean
357 debug_dialog_cms_foreach (GtkTreeModel *model,
358     GtkTreePath *path,
359     GtkTreeIter *iter,
360     gpointer user_data)
361 {
362   CmInModelForeachData *data = (CmInModelForeachData *) user_data;
363   gchar *unique_name;
364
365   gtk_tree_model_get (model, iter,
366       COL_CM_UNIQUE_NAME, &unique_name,
367       -1);
368
369   if (!tp_strdiff (unique_name, data->unique_name))
370     data->found = TRUE;
371
372   g_free (unique_name);
373
374   return data->found;
375 }
376
377 static gboolean
378 debug_dialog_cm_is_in_model (EmpathyDebugDialog *debug_dialog,
379     const gchar *unique_name)
380 {
381   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
382   CmInModelForeachData *data;
383   gboolean found;
384
385   data = g_slice_new0 (CmInModelForeachData);
386   data->unique_name = unique_name;
387   data->found = FALSE;
388
389   gtk_tree_model_foreach (GTK_TREE_MODEL (priv->cms),
390       debug_dialog_cms_foreach, data);
391
392   found = data->found;
393
394   g_slice_free (CmInModelForeachData, data);
395
396   return found;
397 }
398
399 typedef struct
400 {
401   EmpathyDebugDialog *debug_dialog;
402   gchar *cm_name;
403 } FillCmChooserData;
404
405 static void
406 debug_dialog_get_name_owner_cb (TpDBusDaemon *proxy,
407     const gchar *out,
408     const GError *error,
409     gpointer user_data,
410     GObject *weak_object)
411 {
412   FillCmChooserData *data = (FillCmChooserData *) user_data;
413   EmpathyDebugDialogPriv *priv = GET_PRIV (data->debug_dialog);
414
415   if (error != NULL)
416     {
417       DEBUG ("GetNameOwner failed: %s", error->message);
418       goto OUT;
419     }
420
421   if (!debug_dialog_cm_is_in_model (data->debug_dialog, out))
422     {
423       GtkTreeIter iter;
424
425       DEBUG ("Adding CM to list: %s at unique name: %s",
426           data->cm_name, out);
427
428       gtk_list_store_append (priv->cms, &iter);
429       gtk_list_store_set (priv->cms, &iter,
430           COL_CM_NAME, data->cm_name,
431           COL_CM_UNIQUE_NAME, out,
432           -1);
433
434       gtk_combo_box_set_active (GTK_COMBO_BOX (priv->cm_chooser), 0);
435     }
436
437 OUT:
438   g_free (data->cm_name);
439   g_slice_free (FillCmChooserData, data);
440 }
441
442 static void
443 debug_dialog_list_connection_names_cb (const gchar * const *names,
444     gsize n,
445     const gchar * const *cms,
446     const gchar * const *protocols,
447     const GError *error,
448     gpointer user_data,
449     GObject *weak_object)
450 {
451   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
452   guint i;
453   TpDBusDaemon *dbus;
454   GError *error2 = NULL;
455
456   if (error != NULL)
457     {
458       DEBUG ("list_connection_names failed: %s", error->message);
459       return;
460     }
461
462   dbus = tp_dbus_daemon_dup (&error2);
463
464   if (error2 != NULL)
465     {
466       DEBUG ("Failed to dup TpDBusDaemon.");
467       g_error_free (error2);
468       return;
469     }
470
471   for (i = 0; cms[i] != NULL; i++)
472     {
473       FillCmChooserData *data;
474
475       data = g_slice_new0 (FillCmChooserData);
476       data->debug_dialog = debug_dialog;
477       data->cm_name = g_strdup (cms[i]);
478
479       tp_cli_dbus_daemon_call_get_name_owner (dbus, -1,
480           names[i], debug_dialog_get_name_owner_cb,
481           data, NULL, NULL);
482     }
483
484   g_object_unref (dbus);
485 }
486
487 static gboolean
488 debug_dialog_remove_cm_foreach (GtkTreeModel *model,
489     GtkTreePath *path,
490     GtkTreeIter *iter,
491     gpointer user_data)
492 {
493   const gchar *unique_name_to_remove = (const gchar *) user_data;
494   gchar *name;
495   gboolean found = FALSE;
496
497   gtk_tree_model_get (model, iter, COL_CM_UNIQUE_NAME, &name, -1);
498
499   if (!tp_strdiff (name, unique_name_to_remove))
500     {
501       found = TRUE;
502       gtk_list_store_remove (GTK_LIST_STORE (model), iter);
503     }
504
505   g_free (name);
506
507   return found;
508 }
509
510 #define CM_WELL_KNOWN_NAME_PREFIX \
511     "org.freedesktop.Telepathy.ConnectionManager."
512
513 static void
514 debug_dialog_name_owner_changed_cb (TpDBusDaemon *proxy,
515     const gchar *arg0,
516     const gchar *arg1,
517     const gchar *arg2,
518     gpointer user_data,
519     GObject *weak_object)
520 {
521   EmpathyDebugDialogPriv *priv = GET_PRIV (user_data);
522
523   /* Wow, I hate all of this code... */
524   if (!g_str_has_prefix (arg0, CM_WELL_KNOWN_NAME_PREFIX))
525     return;
526
527   if (EMP_STR_EMPTY (arg1) && !EMP_STR_EMPTY (arg2))
528     {
529       /* A connection manager joined -- because it's guaranteed
530        * that the CM just joined (because o.fd.Tp.CM.foo
531        * just joined), we don't need to check whether the unique
532        * name is in the CM model. Hooray.
533        */
534       GtkTreeIter iter;
535       const gchar *name = arg0 + strlen (CM_WELL_KNOWN_NAME_PREFIX);
536
537       DEBUG ("Adding new CM '%s' at %s.", name, arg2);
538
539       gtk_list_store_append (priv->cms, &iter);
540       gtk_list_store_set (priv->cms, &iter,
541           COL_CM_NAME, name,
542           COL_CM_UNIQUE_NAME, arg2,
543           -1);
544     }
545   else if (!EMP_STR_EMPTY (arg1) && EMP_STR_EMPTY (arg2))
546     {
547       /* A connection manager died -- because it's guaranteed
548        * that the CM itself just died (because o.fd.Tp.CM.foo
549        * just died), we don't need to check that it was already
550        * in the model.
551        */
552       gchar *to_remove;
553
554       /* Can't pass a const into a GtkTreeModelForeachFunc. */
555       to_remove = g_strdup (arg1);
556
557       DEBUG ("Removing CM from %s.", to_remove);
558
559       gtk_tree_model_foreach (GTK_TREE_MODEL (priv->cms),
560           debug_dialog_remove_cm_foreach, to_remove);
561
562       g_free (to_remove);
563     }
564 }
565
566 static void
567 debug_dialog_fill_cm_chooser (EmpathyDebugDialog *debug_dialog)
568 {
569   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
570   GError *error = NULL;
571
572   priv->dbus = tp_dbus_daemon_dup (&error);
573
574   if (error != NULL)
575     {
576       DEBUG ("Failed to dup dbus daemon: %s", error->message);
577       g_error_free (error);
578       return;
579     }
580
581   tp_list_connection_names (priv->dbus, debug_dialog_list_connection_names_cb,
582       debug_dialog, NULL, NULL);
583
584   priv->name_owner_changed_signal =
585       tp_cli_dbus_daemon_connect_to_name_owner_changed (priv->dbus,
586       debug_dialog_name_owner_changed_cb, debug_dialog, NULL, NULL, NULL);
587 }
588
589 static void
590 debug_dialog_pause_toggled_cb (GtkToggleToolButton *pause,
591     EmpathyDebugDialog *debug_dialog)
592 {
593   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
594
595   priv->paused = gtk_toggle_tool_button_get_active (pause);
596
597   debug_dialog_set_enabled (debug_dialog, !priv->paused);
598 }
599
600 static gboolean
601 debug_dialog_visible_func (GtkTreeModel *model,
602     GtkTreeIter *iter,
603     gpointer user_data)
604 {
605   EmpathyDebugDialog *debug_dialog = (EmpathyDebugDialog *) user_data;
606   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
607   guint filter_value, level;
608   GtkTreeModel *filter_model;
609   GtkTreeIter filter_iter;
610
611   filter_model = gtk_combo_box_get_model (GTK_COMBO_BOX (priv->level_filter));
612   gtk_combo_box_get_active_iter (GTK_COMBO_BOX (priv->level_filter),
613       &filter_iter);
614
615   gtk_tree_model_get (model, iter, COL_DEBUG_LEVEL_VALUE, &level, -1);
616   gtk_tree_model_get (filter_model, &filter_iter,
617       COL_LEVEL_VALUE, &filter_value, -1);
618
619   if (level <= filter_value)
620     return TRUE;
621
622   return FALSE;
623 }
624
625 static void
626 debug_dialog_filter_changed_cb (GtkComboBox *filter,
627     EmpathyDebugDialog *debug_dialog)
628 {
629   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
630
631   gtk_tree_model_filter_refilter (
632       GTK_TREE_MODEL_FILTER (priv->store_filter));
633 }
634
635 static void
636 debug_dialog_clear_clicked_cb (GtkToolButton *clear_button,
637     EmpathyDebugDialog *debug_dialog)
638 {
639   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
640
641   gtk_list_store_clear (priv->store);
642 }
643
644 static void
645 debug_dialog_menu_copy_activate_cb (GtkMenuItem *menu_item,
646     EmpathyDebugDialog *debug_dialog)
647 {
648   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
649   GtkTreePath *path;
650   GtkTreeViewColumn *focus_column;
651   GtkTreeIter iter;
652   gchar *message;
653   GtkClipboard *clipboard;
654
655   gtk_tree_view_get_cursor (GTK_TREE_VIEW (priv->view),
656       &path, &focus_column);
657
658   if (path == NULL)
659     {
660       DEBUG ("No row is in focus");
661       return;
662     }
663
664   gtk_tree_model_get_iter (priv->store_filter, &iter, path);
665
666   gtk_tree_model_get (priv->store_filter, &iter,
667       COL_DEBUG_MESSAGE, &message,
668       -1);
669
670   if (EMP_STR_EMPTY (message))
671     {
672       DEBUG ("Log message is empty");
673       return;
674     }
675
676   clipboard = gtk_clipboard_get_for_display (
677       gtk_widget_get_display (GTK_WIDGET (menu_item)),
678       GDK_SELECTION_CLIPBOARD);
679
680   gtk_clipboard_set_text (clipboard, message, -1);
681
682   g_free (message);
683 }
684
685 typedef struct
686 {
687   EmpathyDebugDialog *debug_dialog;
688   guint button;
689   guint32 time;
690 } MenuPopupData;
691
692 static gboolean
693 debug_dialog_show_menu (gpointer user_data)
694 {
695   MenuPopupData *data = (MenuPopupData *) user_data;
696   GtkWidget *menu, *item;
697   GtkMenuShell *shell;
698
699   menu = gtk_menu_new ();
700   shell = GTK_MENU_SHELL (menu);
701
702   item = gtk_image_menu_item_new_from_stock (GTK_STOCK_COPY, NULL);
703
704   g_signal_connect (item, "activate",
705       G_CALLBACK (debug_dialog_menu_copy_activate_cb), data->debug_dialog);
706
707   gtk_menu_shell_append (shell, item);
708   gtk_widget_show (item);
709
710   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
711      data->button, data->time);
712
713   g_slice_free (MenuPopupData, user_data);
714
715   return FALSE;
716 }
717
718 static gboolean
719 debug_dialog_button_press_event_cb (GtkTreeView *view,
720     GdkEventButton *event,
721     gpointer user_data)
722 {
723   /* A mouse button was pressed on the tree view. */
724
725   if (event->button == 3)
726     {
727       /* The tree view was right-clicked. (3 == third mouse button) */
728       MenuPopupData *data;
729       data = g_slice_new0 (MenuPopupData);
730       data->debug_dialog = user_data;
731       data->button = event->button;
732       data->time = event->time;
733       g_idle_add (debug_dialog_show_menu, data);
734     }
735
736   return FALSE;
737 }
738
739 static gboolean
740 debug_dialog_store_filter_foreach (GtkTreeModel *model,
741     GtkTreePath *path,
742     GtkTreeIter *iter,
743     gpointer user_data)
744 {
745   GFileOutputStream *output_stream = (GFileOutputStream *) user_data;
746   gchar *domain, *category, *message, *level_str, *level_upper;
747   gdouble timestamp;
748   gchar *line;
749   GError *error = NULL;
750   gboolean out = FALSE;
751
752   gtk_tree_model_get (model, iter,
753       COL_DEBUG_TIMESTAMP, &timestamp,
754       COL_DEBUG_DOMAIN, &domain,
755       COL_DEBUG_CATEGORY, &category,
756       COL_DEBUG_LEVEL_STRING, &level_str,
757       COL_DEBUG_MESSAGE, &message,
758       -1);
759
760   level_upper = g_ascii_strup (level_str, -1);
761
762   line = g_strdup_printf ("%s%s%s-%s: %e: %s\n",
763       domain, EMP_STR_EMPTY (category) ? "" : "/",
764       category, level_upper, timestamp, message);
765
766   g_output_stream_write (G_OUTPUT_STREAM (output_stream), line,
767       strlen (line), NULL, &error);
768
769   if (error != NULL)
770     {
771       DEBUG ("Failed to write to file: %s", error->message);
772       g_error_free (error);
773       out = TRUE;
774     }
775
776   g_free (line);
777   g_free (level_upper);
778   g_free (level_str);
779   g_free (domain);
780   g_free (category);
781   g_free (message);
782
783   return out;
784 }
785
786 static void
787 debug_dialog_save_file_chooser_response_cb (GtkDialog *dialog,
788     gint response_id,
789     EmpathyDebugDialog *debug_dialog)
790 {
791   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
792   gchar *filename = NULL;
793   GFile *gfile = NULL;
794   GFileOutputStream *output_stream = NULL;
795   GError *error = NULL;
796
797   if (response_id != GTK_RESPONSE_ACCEPT)
798     goto OUT;
799
800   filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
801
802   DEBUG ("Saving log as %s", filename);
803
804   gfile = g_file_new_for_path (filename);
805   output_stream = g_file_replace (gfile, NULL, FALSE,
806       G_FILE_CREATE_NONE, NULL, &error);
807
808   if (error != NULL)
809     {
810       DEBUG ("Failed to open file for writing: %s", error->message);
811       g_error_free (error);
812       goto OUT;
813     }
814
815   gtk_tree_model_foreach (priv->store_filter,
816       debug_dialog_store_filter_foreach, output_stream);
817
818 OUT:
819   if (gfile != NULL)
820     g_object_unref (gfile);
821
822   if (output_stream != NULL)
823     g_object_unref (output_stream);
824
825   if (filename != NULL)
826     g_free (filename);
827
828   gtk_widget_destroy (GTK_WIDGET (dialog));
829 }
830
831 static void
832 debug_dialog_save_clicked_cb (GtkToolButton *tool_button,
833     EmpathyDebugDialog *debug_dialog)
834 {
835   GtkWidget *file_chooser;
836
837   file_chooser = gtk_file_chooser_dialog_new (_("Save"),
838       GTK_WINDOW (debug_dialog), GTK_FILE_CHOOSER_ACTION_SAVE,
839       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
840       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
841       NULL);
842
843   gtk_window_set_modal (GTK_WINDOW (file_chooser), TRUE);
844   gtk_file_chooser_set_do_overwrite_confirmation (
845       GTK_FILE_CHOOSER (file_chooser), TRUE);
846
847   g_signal_connect (file_chooser, "response",
848       G_CALLBACK (debug_dialog_save_file_chooser_response_cb),
849       debug_dialog);
850
851   gtk_widget_show (file_chooser);
852 }
853
854 static gboolean
855 debug_dialog_copy_model_foreach (GtkTreeModel *model,
856     GtkTreePath *path,
857     GtkTreeIter *iter,
858     gpointer user_data)
859 {
860   gchar **text = (gchar **) user_data;
861   gchar *tmp;
862   gchar *domain, *category, *message, *level_str, *level_upper;
863   gdouble timestamp;
864   gchar *line;
865
866   gtk_tree_model_get (model, iter,
867       COL_DEBUG_TIMESTAMP, &timestamp,
868       COL_DEBUG_DOMAIN, &domain,
869       COL_DEBUG_CATEGORY, &category,
870       COL_DEBUG_LEVEL_STRING, &level_str,
871       COL_DEBUG_MESSAGE, &message,
872       -1);
873
874   level_upper = g_ascii_strup (level_str, -1);
875
876   line = g_strdup_printf ("%s%s%s-%s: %e: %s\n",
877       domain, EMP_STR_EMPTY (category) ? "" : "/",
878       category, level_upper, timestamp, message);
879
880   tmp = g_strconcat (*text, line, NULL);
881
882   g_free (*text);
883   g_free (line);
884   g_free (level_upper);
885   g_free (level_str);
886   g_free (domain);
887   g_free (category);
888   g_free (message);
889
890   *text = tmp;
891
892   return FALSE;
893 }
894
895 static void
896 debug_dialog_copy_clicked_cb (GtkToolButton *tool_button,
897     EmpathyDebugDialog *debug_dialog)
898 {
899   EmpathyDebugDialogPriv *priv = GET_PRIV (debug_dialog);
900   GtkClipboard *clipboard;
901   gchar *text;
902
903   text = g_strdup ("");
904
905   gtk_tree_model_foreach (priv->store_filter,
906       debug_dialog_copy_model_foreach, &text);
907
908   clipboard = gtk_clipboard_get_for_display (
909       gtk_widget_get_display (GTK_WIDGET (tool_button)),
910       GDK_SELECTION_CLIPBOARD);
911
912   DEBUG ("Copying text to clipboard (length: %" G_GSIZE_FORMAT ")",
913       strlen (text));
914
915   gtk_clipboard_set_text (clipboard, text, -1);
916
917   g_free (text);
918 }
919
920 static GObject *
921 debug_dialog_constructor (GType type,
922     guint n_construct_params,
923     GObjectConstructParam *construct_params)
924 {
925   GObject *object;
926   EmpathyDebugDialogPriv *priv;
927   GtkWidget *vbox;
928   GtkWidget *toolbar;
929   GtkWidget *image;
930   GtkWidget *label;
931   GtkToolItem *item;
932   GtkCellRenderer *renderer;
933   GtkListStore *level_store;
934   GtkTreeIter iter;
935
936   object = G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->constructor
937     (type, n_construct_params, construct_params);
938   priv = GET_PRIV (object);
939
940   gtk_window_set_title (GTK_WINDOW (object), _("Debug Window"));
941   gtk_window_set_default_size (GTK_WINDOW (object), 800, 400);
942
943   vbox = GTK_DIALOG (object)->vbox;
944
945   toolbar = gtk_toolbar_new ();
946   gtk_toolbar_set_style (GTK_TOOLBAR (toolbar), GTK_TOOLBAR_BOTH_HORIZ);
947   gtk_toolbar_set_show_arrow (GTK_TOOLBAR (toolbar), TRUE);
948   gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar),
949       GTK_ICON_SIZE_SMALL_TOOLBAR);
950   gtk_widget_show (toolbar);
951
952   gtk_box_pack_start (GTK_BOX (vbox), toolbar, FALSE, FALSE, 0);
953
954   /* CM */
955   priv->cm_chooser = gtk_combo_box_new_text ();
956   priv->cms = gtk_list_store_new (NUM_COLS_CM, G_TYPE_STRING, G_TYPE_STRING);
957   gtk_combo_box_set_model (GTK_COMBO_BOX (priv->cm_chooser),
958       GTK_TREE_MODEL (priv->cms));
959   gtk_widget_show (priv->cm_chooser);
960
961   item = gtk_tool_item_new ();
962   gtk_widget_show (GTK_WIDGET (item));
963   gtk_container_add (GTK_CONTAINER (item), priv->cm_chooser);
964   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
965   g_signal_connect (priv->cm_chooser, "changed",
966       G_CALLBACK (debug_dialog_cm_chooser_changed_cb), object);
967   gtk_widget_show (GTK_WIDGET (priv->cm_chooser));
968
969   item = gtk_separator_tool_item_new ();
970   gtk_widget_show (GTK_WIDGET (item));
971   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
972
973   /* Save */
974   priv->save_button = gtk_tool_button_new_from_stock (GTK_STOCK_SAVE);
975   g_signal_connect (priv->save_button, "clicked",
976       G_CALLBACK (debug_dialog_save_clicked_cb), object);
977   gtk_widget_show (GTK_WIDGET (priv->save_button));
978   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->save_button), TRUE);
979   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->save_button, -1);
980
981   /* Copy */
982   priv->copy_button = gtk_tool_button_new_from_stock (GTK_STOCK_COPY);
983   g_signal_connect (priv->copy_button, "clicked",
984       G_CALLBACK (debug_dialog_copy_clicked_cb), object);
985   gtk_widget_show (GTK_WIDGET (priv->copy_button));
986   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->copy_button), TRUE);
987   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->copy_button, -1);
988
989   /* Clear */
990   priv->clear_button = gtk_tool_button_new_from_stock (GTK_STOCK_CLEAR);
991   g_signal_connect (priv->clear_button, "clicked",
992       G_CALLBACK (debug_dialog_clear_clicked_cb), object);
993   gtk_widget_show (GTK_WIDGET (priv->clear_button));
994   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->clear_button), TRUE);
995   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->clear_button, -1);
996
997   item = gtk_separator_tool_item_new ();
998   gtk_widget_show (GTK_WIDGET (item));
999   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
1000
1001   /* Pause */
1002   priv->paused = FALSE;
1003   image = gtk_image_new_from_stock (GTK_STOCK_MEDIA_PAUSE,
1004       GTK_ICON_SIZE_MENU);
1005   gtk_widget_show (image);
1006   priv->pause_button = gtk_toggle_tool_button_new ();
1007   gtk_toggle_tool_button_set_active (
1008       GTK_TOGGLE_TOOL_BUTTON (priv->pause_button), priv->paused);
1009   g_signal_connect (priv->pause_button, "toggled",
1010       G_CALLBACK (debug_dialog_pause_toggled_cb), object);
1011   gtk_widget_show (GTK_WIDGET (priv->pause_button));
1012   gtk_tool_item_set_is_important (GTK_TOOL_ITEM (priv->pause_button), TRUE);
1013   gtk_tool_button_set_label (GTK_TOOL_BUTTON (priv->pause_button), _("Pause"));
1014   gtk_tool_button_set_icon_widget (
1015       GTK_TOOL_BUTTON (priv->pause_button), image);
1016   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->pause_button, -1);
1017
1018   item = gtk_separator_tool_item_new ();
1019   gtk_widget_show (GTK_WIDGET (item));
1020   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
1021
1022   /* Level */
1023   priv->level_label = gtk_tool_item_new ();
1024   gtk_widget_show (GTK_WIDGET (priv->level_label));
1025   label = gtk_label_new (_("Level "));
1026   gtk_widget_show (label);
1027   gtk_container_add (GTK_CONTAINER (priv->level_label), label);
1028   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), priv->level_label, -1);
1029
1030   priv->level_filter = gtk_combo_box_new_text ();
1031   gtk_widget_show (priv->level_filter);
1032
1033   item = gtk_tool_item_new ();
1034   gtk_widget_show (GTK_WIDGET (item));
1035   gtk_container_add (GTK_CONTAINER (item), priv->level_filter);
1036   gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
1037
1038   level_store = gtk_list_store_new (NUM_COLS_LEVEL,
1039       G_TYPE_STRING, G_TYPE_UINT);
1040   gtk_combo_box_set_model (GTK_COMBO_BOX (priv->level_filter),
1041       GTK_TREE_MODEL (level_store));
1042
1043   gtk_list_store_append (level_store, &iter);
1044   gtk_list_store_set (level_store, &iter,
1045       COL_LEVEL_NAME, _("Debug"),
1046       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_DEBUG,
1047       -1);
1048
1049   gtk_list_store_append (level_store, &iter);
1050   gtk_list_store_set (level_store, &iter,
1051       COL_LEVEL_NAME, _("Info"),
1052       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_INFO,
1053       -1);
1054
1055   gtk_list_store_append (level_store, &iter);
1056   gtk_list_store_set (level_store, &iter,
1057       COL_LEVEL_NAME, _("Message"),
1058       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_MESSAGE,
1059       -1);
1060
1061   gtk_list_store_append (level_store, &iter);
1062   gtk_list_store_set (level_store, &iter,
1063       COL_LEVEL_NAME, _("Warning"),
1064       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_WARNING,
1065       -1);
1066
1067   gtk_list_store_append (level_store, &iter);
1068   gtk_list_store_set (level_store, &iter,
1069       COL_LEVEL_NAME, _("Critical"),
1070       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_CRITICAL,
1071       -1);
1072
1073   gtk_list_store_append (level_store, &iter);
1074   gtk_list_store_set (level_store, &iter,
1075       COL_LEVEL_NAME, _("Error"),
1076       COL_LEVEL_VALUE, EMP_DEBUG_LEVEL_ERROR,
1077       -1);
1078
1079   gtk_combo_box_set_active (GTK_COMBO_BOX (priv->level_filter), 0);
1080   g_signal_connect (priv->level_filter, "changed",
1081       G_CALLBACK (debug_dialog_filter_changed_cb), object);
1082
1083   /* Debug treeview */
1084   priv->view = gtk_tree_view_new ();
1085   gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (priv->view), TRUE);
1086
1087   g_signal_connect (priv->view, "button-press-event",
1088       G_CALLBACK (debug_dialog_button_press_event_cb), object);
1089
1090   renderer = gtk_cell_renderer_text_new ();
1091   g_object_set (renderer, "yalign", 0, NULL);
1092
1093   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
1094       -1, _("Time"), renderer, "text", COL_DEBUG_TIMESTAMP, NULL);
1095   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
1096       -1, _("Domain"), renderer, "text", COL_DEBUG_DOMAIN, NULL);
1097   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
1098       -1, _("Category"), renderer, "text", COL_DEBUG_CATEGORY, NULL);
1099   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
1100       -1, _("Level"), renderer, "text", COL_DEBUG_LEVEL_STRING, NULL);
1101
1102   renderer = gtk_cell_renderer_text_new ();
1103   g_object_set (renderer, "family", "Monospace", NULL);
1104   gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
1105       -1, _("Message"), renderer, "text", COL_DEBUG_MESSAGE, NULL);
1106
1107   priv->store = gtk_list_store_new (NUM_DEBUG_COLS, G_TYPE_DOUBLE,
1108       G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
1109       G_TYPE_UINT);
1110
1111   priv->store_filter = gtk_tree_model_filter_new (
1112       GTK_TREE_MODEL (priv->store), NULL);
1113
1114   gtk_tree_model_filter_set_visible_func (
1115       GTK_TREE_MODEL_FILTER (priv->store_filter),
1116       debug_dialog_visible_func, object, NULL);
1117
1118   gtk_tree_view_set_model (GTK_TREE_VIEW (priv->view), priv->store_filter);
1119
1120   /* Scrolled window */
1121   priv->scrolled_win = g_object_ref (gtk_scrolled_window_new (NULL, NULL));
1122   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->scrolled_win),
1123       GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
1124
1125   gtk_widget_show (priv->view);
1126   gtk_container_add (GTK_CONTAINER (priv->scrolled_win), priv->view);
1127
1128   gtk_widget_show (priv->scrolled_win);
1129
1130   /* Not supported label */
1131   priv->not_supported_label = g_object_ref (gtk_label_new (
1132           _("The selected connection manager does not support the remote "
1133               "debugging extension.")));
1134   gtk_widget_show (priv->not_supported_label);
1135   gtk_box_pack_start (GTK_BOX (vbox), priv->not_supported_label, TRUE, TRUE, 0);
1136
1137   priv->view_visible = FALSE;
1138
1139   debug_dialog_set_toolbar_sensitivity (EMPATHY_DEBUG_DIALOG (object), FALSE);
1140   debug_dialog_fill_cm_chooser (EMPATHY_DEBUG_DIALOG (object));
1141   gtk_widget_show (GTK_WIDGET (object));
1142
1143   return object;
1144 }
1145
1146 static void
1147 empathy_debug_dialog_init (EmpathyDebugDialog *empathy_debug_dialog)
1148 {
1149   EmpathyDebugDialogPriv *priv =
1150       G_TYPE_INSTANCE_GET_PRIVATE (empathy_debug_dialog,
1151       EMPATHY_TYPE_DEBUG_DIALOG, EmpathyDebugDialogPriv);
1152
1153   empathy_debug_dialog->priv = priv;
1154
1155   priv->dispose_run = FALSE;
1156 }
1157
1158 static void
1159 debug_dialog_set_property (GObject *object,
1160     guint prop_id,
1161     const GValue *value,
1162     GParamSpec *pspec)
1163 {
1164   switch (prop_id)
1165     {
1166       default:
1167         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1168         break;
1169     }
1170 }
1171
1172 static void
1173 debug_dialog_get_property (GObject *object,
1174     guint prop_id,
1175     GValue *value,
1176     GParamSpec *pspec)
1177 {
1178   switch (prop_id)
1179     {
1180       default:
1181         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1182         break;
1183     }
1184 }
1185
1186 static void
1187 debug_dialog_dispose (GObject *object)
1188 {
1189   EmpathyDebugDialog *selector = EMPATHY_DEBUG_DIALOG (object);
1190   EmpathyDebugDialogPriv *priv = GET_PRIV (selector);
1191
1192   if (priv->dispose_run)
1193     return;
1194
1195   priv->dispose_run = TRUE;
1196
1197   if (priv->store != NULL)
1198     g_object_unref (priv->store);
1199
1200   if (priv->name_owner_changed_signal != NULL)
1201     tp_proxy_signal_connection_disconnect (priv->name_owner_changed_signal);
1202
1203   if (priv->proxy != NULL)
1204     {
1205       debug_dialog_set_enabled (EMPATHY_DEBUG_DIALOG (object), FALSE);
1206       g_object_unref (priv->proxy);
1207     }
1208
1209   if (priv->new_debug_message_signal != NULL)
1210     tp_proxy_signal_connection_disconnect (priv->new_debug_message_signal);
1211
1212   if (priv->cms != NULL)
1213     g_object_unref (priv->cms);
1214
1215   if (priv->dbus != NULL)
1216     g_object_unref (priv->dbus);
1217
1218   (G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->dispose) (object);
1219 }
1220
1221 static void
1222 empathy_debug_dialog_class_init (EmpathyDebugDialogClass *klass)
1223 {
1224   GObjectClass *object_class = G_OBJECT_CLASS (klass);
1225   object_class->constructor = debug_dialog_constructor;
1226   object_class->dispose = debug_dialog_dispose;
1227   object_class->set_property = debug_dialog_set_property;
1228   object_class->get_property = debug_dialog_get_property;
1229   g_type_class_add_private (klass, sizeof (EmpathyDebugDialogPriv));
1230 }
1231
1232 /* public methods */
1233
1234 GtkWidget *
1235 empathy_debug_dialog_new (GtkWindow *parent)
1236 {
1237   g_return_val_if_fail (GTK_IS_WINDOW (parent), NULL);
1238
1239   return GTK_WIDGET (g_object_new (EMPATHY_TYPE_DEBUG_DIALOG,
1240       "transient-for", parent, NULL));
1241 }