Mercurial > pidgin
annotate finch/gntdebug.c @ 16852:340fbf90d7ee
de.po update
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Fri, 04 May 2007 02:48:12 +0000 |
| parents | 30829e806dae |
| children | 87748f771638 |
| rev | line source |
|---|---|
| 15817 | 1 /** |
| 2 * @file gntdebug.c GNT Debug API | |
|
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
16124
diff
changeset
|
3 * @ingroup finch |
| 15817 | 4 * |
|
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
5 * finch |
| 15817 | 6 * |
|
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
7 * Finch is the legal property of its developers, whose names are too numerous |
| 15817 | 8 * to list here. Please refer to the COPYRIGHT file distributed with this |
| 9 * source distribution. | |
| 10 * | |
| 11 * This program is free software; you can redistribute it and/or modify | |
| 12 * it under the terms of the GNU General Public License as published by | |
| 13 * the Free Software Foundation; either version 2 of the License, or | |
| 14 * (at your option) any later version. | |
| 15 * | |
| 16 * This program is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 * GNU General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU General Public License | |
| 22 * along with this program; if not, write to the Free Software | |
| 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 */ | |
| 25 #include <gnt.h> | |
| 26 #include <gntbox.h> | |
| 27 #include <gnttextview.h> | |
| 28 #include <gntbutton.h> | |
| 29 #include <gntcheckbox.h> | |
| 30 #include <gntline.h> | |
| 31 | |
| 32 #include "gntdebug.h" | |
| 15822 | 33 #include "finch.h" |
| 15817 | 34 #include "util.h" |
| 35 | |
| 36 #include <stdio.h> | |
| 37 #include <string.h> | |
| 38 | |
|
16424
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16194
diff
changeset
|
39 #define PREF_ROOT "/finch/debug" |
| 15817 | 40 |
| 41 static struct | |
| 42 { | |
| 43 GntWidget *window; | |
| 44 GntWidget *tview; | |
| 45 gboolean paused; | |
| 46 gboolean timestamps; | |
| 47 } debug; | |
| 48 | |
| 49 static void | |
| 15822 | 50 finch_debug_print(PurpleDebugLevel level, const char *category, |
| 15817 | 51 const char *args) |
| 52 { | |
| 53 if (debug.window && !debug.paused) | |
| 54 { | |
| 55 int pos = gnt_text_view_get_lines_below(GNT_TEXT_VIEW(debug.tview)); | |
| 56 GntTextFormatFlags flag = GNT_TEXT_FLAG_NORMAL; | |
| 57 | |
| 58 if (debug.timestamps) { | |
| 59 const char *mdate; | |
| 60 time_t mtime = time(NULL); | |
| 15822 | 61 mdate = purple_utf8_strftime("%H:%M:%S ", localtime(&mtime)); |
| 15817 | 62 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), |
| 63 mdate, flag); | |
| 64 } | |
| 65 | |
| 66 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), | |
| 67 category, GNT_TEXT_FLAG_BOLD); | |
| 68 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), | |
| 69 ": ", GNT_TEXT_FLAG_BOLD); | |
| 70 | |
| 71 switch (level) | |
| 72 { | |
| 15822 | 73 case PURPLE_DEBUG_WARNING: |
| 15817 | 74 flag |= GNT_TEXT_FLAG_UNDERLINE; |
| 15822 | 75 case PURPLE_DEBUG_ERROR: |
| 76 case PURPLE_DEBUG_FATAL: | |
| 15817 | 77 flag |= GNT_TEXT_FLAG_BOLD; |
| 78 break; | |
| 79 default: | |
| 80 break; | |
| 81 } | |
| 82 | |
| 83 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), args, flag); | |
| 84 if (pos <= 1) | |
| 85 gnt_text_view_scroll(GNT_TEXT_VIEW(debug.tview), 0); | |
| 86 } | |
| 87 } | |
| 88 | |
|
15985
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
89 static gboolean |
|
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
90 finch_debug_is_enabled(PurpleDebugLevel level, const char *category) |
|
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
91 { |
|
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
92 return debug.window && !debug.paused; |
|
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
93 } |
|
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
94 |
| 15822 | 95 static PurpleDebugUiOps uiops = |
| 15817 | 96 { |
| 97 finch_debug_print, | |
|
16669
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
98 finch_debug_is_enabled, |
|
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
99 |
|
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
100 /* padding */ |
|
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
101 NULL, |
|
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
102 NULL, |
|
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
103 NULL, |
|
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
104 NULL |
| 15817 | 105 }; |
| 106 | |
| 15822 | 107 PurpleDebugUiOps *finch_debug_get_ui_ops() |
| 15817 | 108 { |
| 109 return &uiops; | |
| 110 } | |
| 111 | |
| 112 static void | |
| 113 reset_debug_win(GntWidget *w, gpointer null) | |
| 114 { | |
| 115 debug.window = debug.tview = NULL; | |
| 116 } | |
| 117 | |
| 118 static void | |
| 119 clear_debug_win(GntWidget *w, GntTextView *tv) | |
| 120 { | |
| 121 gnt_text_view_clear(tv); | |
| 122 } | |
| 123 | |
| 124 static void | |
| 125 print_stderr(const char *string) | |
| 126 { | |
| 127 g_printerr("%s", string); | |
| 128 } | |
| 129 | |
| 130 static void | |
| 131 suppress_error_messages(const char *message) | |
| 132 {} | |
| 133 | |
| 134 static void | |
| 135 toggle_pause(GntWidget *w, gpointer n) | |
| 136 { | |
| 137 debug.paused = !debug.paused; | |
| 138 } | |
| 139 | |
| 140 static void | |
| 141 toggle_timestamps(GntWidget *w, gpointer n) | |
| 142 { | |
| 143 debug.timestamps = !debug.timestamps; | |
|
16424
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16194
diff
changeset
|
144 purple_prefs_set_bool("/purple/debug/timestamps", debug.timestamps); |
| 15817 | 145 } |
| 146 | |
| 147 /* Xerox */ | |
| 148 static void | |
| 15822 | 149 purple_glib_log_handler(const gchar *domain, GLogLevelFlags flags, |
| 15817 | 150 const gchar *msg, gpointer user_data) |
| 151 { | |
| 15822 | 152 PurpleDebugLevel level; |
| 15817 | 153 char *new_msg = NULL; |
| 154 char *new_domain = NULL; | |
| 155 | |
| 156 if ((flags & G_LOG_LEVEL_ERROR) == G_LOG_LEVEL_ERROR) | |
| 15822 | 157 level = PURPLE_DEBUG_ERROR; |
| 15817 | 158 else if ((flags & G_LOG_LEVEL_CRITICAL) == G_LOG_LEVEL_CRITICAL) |
| 15822 | 159 level = PURPLE_DEBUG_FATAL; |
| 15817 | 160 else if ((flags & G_LOG_LEVEL_WARNING) == G_LOG_LEVEL_WARNING) |
| 15822 | 161 level = PURPLE_DEBUG_WARNING; |
| 15817 | 162 else if ((flags & G_LOG_LEVEL_MESSAGE) == G_LOG_LEVEL_MESSAGE) |
| 15822 | 163 level = PURPLE_DEBUG_INFO; |
| 15817 | 164 else if ((flags & G_LOG_LEVEL_INFO) == G_LOG_LEVEL_INFO) |
| 15822 | 165 level = PURPLE_DEBUG_INFO; |
| 15817 | 166 else if ((flags & G_LOG_LEVEL_DEBUG) == G_LOG_LEVEL_DEBUG) |
| 15822 | 167 level = PURPLE_DEBUG_MISC; |
| 15817 | 168 else |
| 169 { | |
| 15822 | 170 purple_debug_warning("gntdebug", |
| 15817 | 171 "Unknown glib logging level in %d\n", flags); |
| 172 | |
| 15822 | 173 level = PURPLE_DEBUG_MISC; /* This will never happen. */ |
| 15817 | 174 } |
| 175 | |
| 176 if (msg != NULL) | |
| 15822 | 177 new_msg = purple_utf8_try_convert(msg); |
| 15817 | 178 |
| 179 if (domain != NULL) | |
| 15822 | 180 new_domain = purple_utf8_try_convert(domain); |
| 15817 | 181 |
| 182 if (new_msg != NULL) | |
| 183 { | |
| 15822 | 184 purple_debug(level, (new_domain != NULL ? new_domain : "g_log"), |
| 15817 | 185 "%s\n", new_msg); |
| 186 | |
| 187 g_free(new_msg); | |
| 188 } | |
| 189 | |
| 190 g_free(new_domain); | |
| 191 } | |
| 192 | |
| 193 static void | |
| 194 size_changed_cb(GntWidget *widget, int oldw, int oldh) | |
| 195 { | |
| 196 int w, h; | |
| 197 gnt_widget_get_size(widget, &w, &h); | |
| 15822 | 198 purple_prefs_set_int(PREF_ROOT "/size/width", w); |
| 199 purple_prefs_set_int(PREF_ROOT "/size/height", h); | |
| 15817 | 200 } |
| 201 | |
| 202 void finch_debug_window_show() | |
| 203 { | |
| 204 debug.paused = FALSE; | |
|
16424
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16194
diff
changeset
|
205 debug.timestamps = purple_prefs_get_bool("/purple/debug/timestamps"); |
| 15817 | 206 if (debug.window == NULL) |
| 207 { | |
| 208 GntWidget *wid, *box; | |
| 209 debug.window = gnt_vbox_new(FALSE); | |
| 210 gnt_box_set_toplevel(GNT_BOX(debug.window), TRUE); | |
| 211 gnt_box_set_title(GNT_BOX(debug.window), _("Debug Window")); | |
| 212 gnt_box_set_pad(GNT_BOX(debug.window), 0); | |
| 213 gnt_box_set_alignment(GNT_BOX(debug.window), GNT_ALIGN_MID); | |
| 214 | |
| 215 debug.tview = gnt_text_view_new(); | |
| 216 gnt_box_add_widget(GNT_BOX(debug.window), debug.tview); | |
| 217 gnt_widget_set_size(debug.tview, | |
| 15822 | 218 purple_prefs_get_int(PREF_ROOT "/size/width"), |
| 219 purple_prefs_get_int(PREF_ROOT "/size/height")); | |
| 15817 | 220 g_signal_connect(G_OBJECT(debug.tview), "size_changed", G_CALLBACK(size_changed_cb), NULL); |
| 221 | |
| 222 gnt_box_add_widget(GNT_BOX(debug.window), gnt_line_new(FALSE)); | |
| 223 | |
| 224 box = gnt_hbox_new(FALSE); | |
| 225 gnt_box_set_alignment(GNT_BOX(box), GNT_ALIGN_MID); | |
| 226 gnt_box_set_fill(GNT_BOX(box), FALSE); | |
| 227 | |
| 228 /* XXX: Setting the GROW_Y for the following widgets don't make sense. But right now | |
| 229 * it's necessary to make the width of the debug window resizable ... like I said, | |
| 230 * it doesn't make sense. The bug is likely in the packing in gntbox.c. | |
| 231 */ | |
| 232 wid = gnt_button_new(_("Clear")); | |
| 233 g_signal_connect(G_OBJECT(wid), "activate", G_CALLBACK(clear_debug_win), debug.tview); | |
| 234 GNT_WIDGET_SET_FLAGS(wid, GNT_WIDGET_GROW_Y); | |
| 235 gnt_box_add_widget(GNT_BOX(box), wid); | |
| 236 | |
| 237 wid = gnt_check_box_new(_("Pause")); | |
| 238 g_signal_connect(G_OBJECT(wid), "toggled", G_CALLBACK(toggle_pause), NULL); | |
| 239 GNT_WIDGET_SET_FLAGS(wid, GNT_WIDGET_GROW_Y); | |
| 240 gnt_box_add_widget(GNT_BOX(box), wid); | |
| 241 | |
| 242 wid = gnt_check_box_new(_("Timestamps")); | |
| 243 gnt_check_box_set_checked(GNT_CHECK_BOX(wid), debug.timestamps); | |
| 244 g_signal_connect(G_OBJECT(wid), "toggled", G_CALLBACK(toggle_timestamps), NULL); | |
| 245 GNT_WIDGET_SET_FLAGS(wid, GNT_WIDGET_GROW_Y); | |
| 246 gnt_box_add_widget(GNT_BOX(box), wid); | |
| 247 | |
| 248 gnt_box_add_widget(GNT_BOX(debug.window), box); | |
| 249 GNT_WIDGET_SET_FLAGS(box, GNT_WIDGET_GROW_Y); | |
| 250 | |
| 251 gnt_widget_set_name(debug.window, "debug-window"); | |
| 252 | |
| 253 g_signal_connect(G_OBJECT(debug.window), "destroy", G_CALLBACK(reset_debug_win), NULL); | |
|
16124
ab3f93232a2d
Add a utility function to assist scrolling in a textview.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15985
diff
changeset
|
254 gnt_text_view_attach_scroll_widget(GNT_TEXT_VIEW(debug.tview), debug.window); |
| 15817 | 255 } |
| 256 | |
| 257 gnt_widget_show(debug.window); | |
| 258 } | |
| 259 | |
| 260 static gboolean | |
| 261 start_with_debugwin(gpointer null) | |
| 262 { | |
| 263 finch_debug_window_show(); | |
| 264 return FALSE; | |
| 265 } | |
| 266 | |
| 267 void finch_debug_init() | |
| 268 { | |
| 269 /* Xerox */ | |
| 270 #define REGISTER_G_LOG_HANDLER(name) \ | |
| 271 g_log_set_handler((name), G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL \ | |
| 272 | G_LOG_FLAG_RECURSION, \ | |
| 15822 | 273 purple_glib_log_handler, NULL) |
| 15817 | 274 |
| 275 /* Register the glib log handlers. */ | |
| 276 REGISTER_G_LOG_HANDLER(NULL); | |
| 277 REGISTER_G_LOG_HANDLER("GLib"); | |
| 278 REGISTER_G_LOG_HANDLER("GModule"); | |
| 279 REGISTER_G_LOG_HANDLER("GLib-GObject"); | |
| 280 REGISTER_G_LOG_HANDLER("GThread"); | |
| 281 | |
| 282 g_set_print_handler(print_stderr); /* Redirect the debug messages to stderr */ | |
| 283 g_set_printerr_handler(suppress_error_messages); | |
| 284 | |
| 15822 | 285 purple_prefs_add_none(PREF_ROOT); |
| 286 purple_prefs_add_none(PREF_ROOT "/size"); | |
| 287 purple_prefs_add_int(PREF_ROOT "/size/width", 60); | |
| 288 purple_prefs_add_int(PREF_ROOT "/size/height", 15); | |
| 15817 | 289 |
| 15822 | 290 if (purple_debug_is_enabled()) |
| 15817 | 291 g_timeout_add(0, start_with_debugwin, NULL); |
| 292 } | |
| 293 | |
| 294 void finch_debug_uninit() | |
| 295 { | |
| 296 } | |
| 297 |
