Remove duplicate NEWS item
[geany-mirror.git] / src / log.c
blob9444446f9f70e8f866f20e38b1e42266a3aa7152
1 /*
2 * log.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2008-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2008-2011 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * Logging functions and the debug messages window.
26 #include "geany.h"
28 #ifdef HAVE_LOCALE_H
29 # include <locale.h>
30 #endif
32 #include "log.h"
33 #include "support.h"
34 #include "utils.h"
35 #include "ui_utils.h"
38 static GString *log_buffer = NULL;
39 static GtkTextBuffer *dialog_textbuffer = NULL;
41 enum
43 DIALOG_RESPONSE_CLEAR = 1
47 static void update_dialog(void)
49 if (dialog_textbuffer != NULL)
51 GtkTextMark *mark;
52 GtkTextView *textview = g_object_get_data(G_OBJECT(dialog_textbuffer), "textview");
54 gtk_text_buffer_set_text(dialog_textbuffer, log_buffer->str, log_buffer->len);
55 /* scroll to the end of the messages as this might be most interesting */
56 mark = gtk_text_buffer_get_insert(dialog_textbuffer);
57 gtk_text_view_scroll_to_mark(textview, mark, 0.0, FALSE, 0.0, 0.0);
62 /* Geany's main debug/log function, declared in geany.h */
63 void geany_debug(gchar const *format, ...)
65 va_list args;
66 va_start(args, format);
67 g_logv(G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format, args);
68 va_end(args);
72 static void handler_print(const gchar *msg)
74 printf("%s\n", msg);
75 if (G_LIKELY(log_buffer != NULL))
77 g_string_append_printf(log_buffer, "%s\n", msg);
78 update_dialog();
83 static void handler_printerr(const gchar *msg)
85 fprintf(stderr, "%s\n", msg);
86 if (G_LIKELY(log_buffer != NULL))
88 g_string_append_printf(log_buffer, "%s\n", msg);
89 update_dialog();
94 static const gchar *get_log_prefix(GLogLevelFlags log_level)
96 switch (log_level & G_LOG_LEVEL_MASK)
98 case G_LOG_LEVEL_ERROR:
99 return "ERROR\t\t";
100 case G_LOG_LEVEL_CRITICAL:
101 return "CRITICAL\t";
102 case G_LOG_LEVEL_WARNING:
103 return "WARNING\t";
104 case G_LOG_LEVEL_MESSAGE:
105 return "MESSAGE\t";
106 case G_LOG_LEVEL_INFO:
107 return "INFO\t\t";
108 case G_LOG_LEVEL_DEBUG:
109 return "DEBUG\t";
111 return "LOG";
115 static void handler_log(const gchar *domain, GLogLevelFlags level, const gchar *msg, gpointer data)
117 gchar *time_str;
119 if (G_LIKELY(app != NULL && app->debug_mode))
121 #ifdef G_OS_WIN32
122 /* On Windows g_log_default_handler() is not enough, we need to print it
123 * explicitly on stderr for the console window */
124 /** TODO this can be removed if/when we remove the console window on Windows */
125 if (domain != NULL)
126 fprintf(stderr, "%s: %s\n", domain, msg);
127 else
128 fprintf(stderr, "%s\n", msg);
129 #else
130 /* print the message as usual on stdout/stderr */
131 g_log_default_handler(domain, level, msg, data);
132 #endif
135 time_str = utils_get_current_time_string();
137 g_string_append_printf(log_buffer, "%s: %s %s: %s\n", time_str, domain,
138 get_log_prefix(level), msg);
140 g_free(time_str);
142 update_dialog();
146 void log_handlers_init(void)
148 log_buffer = g_string_sized_new(2048);
150 g_set_print_handler(handler_print);
151 g_set_printerr_handler(handler_printerr);
152 g_log_set_default_handler(handler_log, NULL);
156 static void on_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
158 if (response == DIALOG_RESPONSE_CLEAR)
160 GtkTextIter start_iter, end_iter;
162 gtk_text_buffer_get_start_iter(dialog_textbuffer, &start_iter);
163 gtk_text_buffer_get_end_iter(dialog_textbuffer, &end_iter);
164 gtk_text_buffer_delete(dialog_textbuffer, &start_iter, &end_iter);
166 g_string_erase(log_buffer, 0, -1);
168 else
170 gtk_widget_destroy(GTK_WIDGET(dialog));
171 dialog_textbuffer = NULL;
176 void log_show_debug_messages_dialog(void)
178 GtkWidget *dialog, *textview, *vbox, *swin;
180 dialog = gtk_dialog_new_with_buttons(_("Debug Messages"), GTK_WINDOW(main_widgets.window),
181 GTK_DIALOG_DESTROY_WITH_PARENT,
182 _("Cl_ear"), DIALOG_RESPONSE_CLEAR,
183 GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL);
184 vbox = ui_dialog_vbox_new(GTK_DIALOG(dialog));
185 gtk_box_set_spacing(GTK_BOX(vbox), 6);
186 gtk_widget_set_name(dialog, "GeanyDialog");
188 gtk_window_set_default_size(GTK_WINDOW(dialog), 550, 300);
189 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_CLOSE);
191 textview = gtk_text_view_new();
192 dialog_textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));
193 g_object_set_data(G_OBJECT(dialog_textbuffer), "textview", textview);
194 gtk_text_view_set_editable(GTK_TEXT_VIEW(textview), FALSE);
195 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(textview), FALSE);
196 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), GTK_WRAP_WORD_CHAR);
198 swin = gtk_scrolled_window_new(NULL, NULL);
199 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(swin),
200 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
201 gtk_container_add(GTK_CONTAINER(swin), textview);
203 gtk_box_pack_start(GTK_BOX(vbox), swin, TRUE, TRUE, 0);
205 g_signal_connect(dialog, "response", G_CALLBACK(on_dialog_response), textview);
206 gtk_widget_show_all(dialog);
208 update_dialog(); /* set text after showing the window, to not scroll an unrealized textview */
212 void log_finalize(void)
214 g_log_set_default_handler(g_log_default_handler, NULL);
216 g_string_free(log_buffer, TRUE);
217 log_buffer = NULL;