Mercurial > pidgin
annotate finch/gntdebug.c @ 16989:06e354620f6c
merge of '69bd78e558413b6ac26267b477e217cfe5b4a594'
and 'c112d064ac0465ea983af7c97a9ddaebd6a9d371'
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Thu, 10 May 2007 02:17:26 +0000 |
parents | 87748f771638 |
children | 531a4585d437 |
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 } debug; | |
47 | |
48 static void | |
15822 | 49 finch_debug_print(PurpleDebugLevel level, const char *category, |
15817 | 50 const char *args) |
51 { | |
52 if (debug.window && !debug.paused) | |
53 { | |
54 int pos = gnt_text_view_get_lines_below(GNT_TEXT_VIEW(debug.tview)); | |
55 GntTextFormatFlags flag = GNT_TEXT_FLAG_NORMAL; | |
16988
87748f771638
The timestamp pref has been removed. Update finch accordingly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16669
diff
changeset
|
56 const char *mdate; |
87748f771638
The timestamp pref has been removed. Update finch accordingly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16669
diff
changeset
|
57 time_t mtime = time(NULL); |
87748f771638
The timestamp pref has been removed. Update finch accordingly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16669
diff
changeset
|
58 mdate = purple_utf8_strftime("%H:%M:%S ", localtime(&mtime)); |
87748f771638
The timestamp pref has been removed. Update finch accordingly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16669
diff
changeset
|
59 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), |
87748f771638
The timestamp pref has been removed. Update finch accordingly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16669
diff
changeset
|
60 mdate, flag); |
15817 | 61 |
62 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), | |
63 category, GNT_TEXT_FLAG_BOLD); | |
64 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), | |
65 ": ", GNT_TEXT_FLAG_BOLD); | |
66 | |
67 switch (level) | |
68 { | |
15822 | 69 case PURPLE_DEBUG_WARNING: |
15817 | 70 flag |= GNT_TEXT_FLAG_UNDERLINE; |
15822 | 71 case PURPLE_DEBUG_ERROR: |
72 case PURPLE_DEBUG_FATAL: | |
15817 | 73 flag |= GNT_TEXT_FLAG_BOLD; |
74 break; | |
75 default: | |
76 break; | |
77 } | |
78 | |
79 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(debug.tview), args, flag); | |
80 if (pos <= 1) | |
81 gnt_text_view_scroll(GNT_TEXT_VIEW(debug.tview), 0); | |
82 } | |
83 } | |
84 | |
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
|
85 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
|
86 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
|
87 { |
6dc5dc83a61b
Add a whimpy ui op to the debug API that returns TRUE if debugging
Mark Doliner <mark@kingant.net>
parents:
15870
diff
changeset
|
88 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
|
89 } |
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 |
15822 | 91 static PurpleDebugUiOps uiops = |
15817 | 92 { |
93 finch_debug_print, | |
16669
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
94 finch_debug_is_enabled, |
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
95 |
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
96 /* padding */ |
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
97 NULL, |
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
98 NULL, |
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
99 NULL, |
30829e806dae
And finch is up to date
Gary Kramlich <grim@reaperworld.com>
parents:
16424
diff
changeset
|
100 NULL |
15817 | 101 }; |
102 | |
15822 | 103 PurpleDebugUiOps *finch_debug_get_ui_ops() |
15817 | 104 { |
105 return &uiops; | |
106 } | |
107 | |
108 static void | |
109 reset_debug_win(GntWidget *w, gpointer null) | |
110 { | |
111 debug.window = debug.tview = NULL; | |
112 } | |
113 | |
114 static void | |
115 clear_debug_win(GntWidget *w, GntTextView *tv) | |
116 { | |
117 gnt_text_view_clear(tv); | |
118 } | |
119 | |
120 static void | |
121 print_stderr(const char *string) | |
122 { | |
123 g_printerr("%s", string); | |
124 } | |
125 | |
126 static void | |
127 suppress_error_messages(const char *message) | |
128 {} | |
129 | |
130 static void | |
131 toggle_pause(GntWidget *w, gpointer n) | |
132 { | |
133 debug.paused = !debug.paused; | |
134 } | |
135 | |
136 /* Xerox */ | |
137 static void | |
15822 | 138 purple_glib_log_handler(const gchar *domain, GLogLevelFlags flags, |
15817 | 139 const gchar *msg, gpointer user_data) |
140 { | |
15822 | 141 PurpleDebugLevel level; |
15817 | 142 char *new_msg = NULL; |
143 char *new_domain = NULL; | |
144 | |
145 if ((flags & G_LOG_LEVEL_ERROR) == G_LOG_LEVEL_ERROR) | |
15822 | 146 level = PURPLE_DEBUG_ERROR; |
15817 | 147 else if ((flags & G_LOG_LEVEL_CRITICAL) == G_LOG_LEVEL_CRITICAL) |
15822 | 148 level = PURPLE_DEBUG_FATAL; |
15817 | 149 else if ((flags & G_LOG_LEVEL_WARNING) == G_LOG_LEVEL_WARNING) |
15822 | 150 level = PURPLE_DEBUG_WARNING; |
15817 | 151 else if ((flags & G_LOG_LEVEL_MESSAGE) == G_LOG_LEVEL_MESSAGE) |
15822 | 152 level = PURPLE_DEBUG_INFO; |
15817 | 153 else if ((flags & G_LOG_LEVEL_INFO) == G_LOG_LEVEL_INFO) |
15822 | 154 level = PURPLE_DEBUG_INFO; |
15817 | 155 else if ((flags & G_LOG_LEVEL_DEBUG) == G_LOG_LEVEL_DEBUG) |
15822 | 156 level = PURPLE_DEBUG_MISC; |
15817 | 157 else |
158 { | |
15822 | 159 purple_debug_warning("gntdebug", |
15817 | 160 "Unknown glib logging level in %d\n", flags); |
161 | |
15822 | 162 level = PURPLE_DEBUG_MISC; /* This will never happen. */ |
15817 | 163 } |
164 | |
165 if (msg != NULL) | |
15822 | 166 new_msg = purple_utf8_try_convert(msg); |
15817 | 167 |
168 if (domain != NULL) | |
15822 | 169 new_domain = purple_utf8_try_convert(domain); |
15817 | 170 |
171 if (new_msg != NULL) | |
172 { | |
15822 | 173 purple_debug(level, (new_domain != NULL ? new_domain : "g_log"), |
15817 | 174 "%s\n", new_msg); |
175 | |
176 g_free(new_msg); | |
177 } | |
178 | |
179 g_free(new_domain); | |
180 } | |
181 | |
182 static void | |
183 size_changed_cb(GntWidget *widget, int oldw, int oldh) | |
184 { | |
185 int w, h; | |
186 gnt_widget_get_size(widget, &w, &h); | |
15822 | 187 purple_prefs_set_int(PREF_ROOT "/size/width", w); |
188 purple_prefs_set_int(PREF_ROOT "/size/height", h); | |
15817 | 189 } |
190 | |
191 void finch_debug_window_show() | |
192 { | |
193 debug.paused = FALSE; | |
194 if (debug.window == NULL) | |
195 { | |
196 GntWidget *wid, *box; | |
197 debug.window = gnt_vbox_new(FALSE); | |
198 gnt_box_set_toplevel(GNT_BOX(debug.window), TRUE); | |
199 gnt_box_set_title(GNT_BOX(debug.window), _("Debug Window")); | |
200 gnt_box_set_pad(GNT_BOX(debug.window), 0); | |
201 gnt_box_set_alignment(GNT_BOX(debug.window), GNT_ALIGN_MID); | |
202 | |
203 debug.tview = gnt_text_view_new(); | |
204 gnt_box_add_widget(GNT_BOX(debug.window), debug.tview); | |
205 gnt_widget_set_size(debug.tview, | |
15822 | 206 purple_prefs_get_int(PREF_ROOT "/size/width"), |
207 purple_prefs_get_int(PREF_ROOT "/size/height")); | |
15817 | 208 g_signal_connect(G_OBJECT(debug.tview), "size_changed", G_CALLBACK(size_changed_cb), NULL); |
209 | |
210 gnt_box_add_widget(GNT_BOX(debug.window), gnt_line_new(FALSE)); | |
211 | |
212 box = gnt_hbox_new(FALSE); | |
213 gnt_box_set_alignment(GNT_BOX(box), GNT_ALIGN_MID); | |
214 gnt_box_set_fill(GNT_BOX(box), FALSE); | |
215 | |
216 /* XXX: Setting the GROW_Y for the following widgets don't make sense. But right now | |
217 * it's necessary to make the width of the debug window resizable ... like I said, | |
218 * it doesn't make sense. The bug is likely in the packing in gntbox.c. | |
219 */ | |
220 wid = gnt_button_new(_("Clear")); | |
221 g_signal_connect(G_OBJECT(wid), "activate", G_CALLBACK(clear_debug_win), debug.tview); | |
222 GNT_WIDGET_SET_FLAGS(wid, GNT_WIDGET_GROW_Y); | |
223 gnt_box_add_widget(GNT_BOX(box), wid); | |
224 | |
225 wid = gnt_check_box_new(_("Pause")); | |
226 g_signal_connect(G_OBJECT(wid), "toggled", G_CALLBACK(toggle_pause), NULL); | |
227 GNT_WIDGET_SET_FLAGS(wid, GNT_WIDGET_GROW_Y); | |
228 gnt_box_add_widget(GNT_BOX(box), wid); | |
229 | |
230 gnt_box_add_widget(GNT_BOX(debug.window), box); | |
231 GNT_WIDGET_SET_FLAGS(box, GNT_WIDGET_GROW_Y); | |
232 | |
233 gnt_widget_set_name(debug.window, "debug-window"); | |
234 | |
235 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
|
236 gnt_text_view_attach_scroll_widget(GNT_TEXT_VIEW(debug.tview), debug.window); |
15817 | 237 } |
238 | |
239 gnt_widget_show(debug.window); | |
240 } | |
241 | |
242 static gboolean | |
243 start_with_debugwin(gpointer null) | |
244 { | |
245 finch_debug_window_show(); | |
246 return FALSE; | |
247 } | |
248 | |
249 void finch_debug_init() | |
250 { | |
251 /* Xerox */ | |
252 #define REGISTER_G_LOG_HANDLER(name) \ | |
253 g_log_set_handler((name), G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL \ | |
254 | G_LOG_FLAG_RECURSION, \ | |
15822 | 255 purple_glib_log_handler, NULL) |
15817 | 256 |
257 /* Register the glib log handlers. */ | |
258 REGISTER_G_LOG_HANDLER(NULL); | |
259 REGISTER_G_LOG_HANDLER("GLib"); | |
260 REGISTER_G_LOG_HANDLER("GModule"); | |
261 REGISTER_G_LOG_HANDLER("GLib-GObject"); | |
262 REGISTER_G_LOG_HANDLER("GThread"); | |
263 | |
264 g_set_print_handler(print_stderr); /* Redirect the debug messages to stderr */ | |
265 g_set_printerr_handler(suppress_error_messages); | |
266 | |
15822 | 267 purple_prefs_add_none(PREF_ROOT); |
268 purple_prefs_add_none(PREF_ROOT "/size"); | |
269 purple_prefs_add_int(PREF_ROOT "/size/width", 60); | |
270 purple_prefs_add_int(PREF_ROOT "/size/height", 15); | |
15817 | 271 |
15822 | 272 if (purple_debug_is_enabled()) |
15817 | 273 g_timeout_add(0, start_with_debugwin, NULL); |
274 } | |
275 | |
276 void finch_debug_uninit() | |
277 { | |
278 } | |
279 |