1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
* arch-tag: Implementation of simple Rhythmbox debugging interface
*
* Copyright (C) 2002 Jorn Baayen
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* NOTES: log domain hack stolen from nautilus
*
*/
#include <glib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <signal.h>
#include <time.h>
#include "rb-debug.h"
static void log_handler (const char *domain,
GLogLevelFlags level,
const char *message,
gpointer data);
static gboolean debugging = FALSE;
/* Our own funky debugging function, should only be used when something
* is not going wrong, if something *is* wrong use g_warning.
*/
void
rb_debug_real (const char *func,
const char *file,
const int line,
const char *format, ...)
{
va_list args;
char buffer[1025];
char *str_time;
time_t the_time;
if (debugging == FALSE) return;
va_start (args, format);
g_vsnprintf (buffer, 1024, format, args);
va_end (args);
time (&the_time);
str_time = g_new0 (char, 255);
strftime (str_time, 254, "%H:%M:%S", localtime (&the_time));
g_printerr ("[%p] [%s] %s:%d (%s): %s\n", g_thread_self (),
func, file, line, str_time, buffer);
g_free (str_time);
}
void
rb_debug_init (gboolean debug)
{
guint i;
/* This is a workaround for the fact that there is not way to
* make this useful debugging feature happen for ALL domains.
*
* What we did here is list all the ones we could think of that
* were interesting to us. It's OK to add more to the list.
*/
static const char * const standard_log_domains[] = {
"",
"Bonobo",
"BonoboUI",
"Echo",
"Eel",
"GConf",
"GConf-Backends",
"GConf-Tests",
"GConfEd",
"GLib",
"GLib-GObject",
"GModule",
"GThread",
"GStreamer",
"Gdk",
"Gdk-Pixbuf",
"GdkPixbuf",
"Glib",
"Gnome",
"GnomeCanvas",
"GnomePrint",
"GnomeUI",
"GnomeVFS",
"GnomeVFS-CORBA",
"GnomeVFS-pthread",
"GnomeVFSMonikers",
"Gtk",
"Rhythmbox",
"RhythmDB",
"MonkeyMedia",
"ORBit",
"ZVT",
"libIDL",
"libgconf-scm",
"libglade",
"libgnomevfs",
"librsvg",
};
debugging = debug;
if (debugging)
for (i = 0; i < G_N_ELEMENTS (standard_log_domains); i++)
g_log_set_handler (standard_log_domains[i], G_LOG_LEVEL_MASK, log_handler, NULL);
rb_debug ("Debugging enabled");
}
/* Raise a SIGINT signal to get the attention of the debugger.
* When not running under the debugger, we don't want to stop,
* so we ignore the signal for just the moment that we raise it.
*/
void
rb_debug_stop_in_debugger (void)
{
void (* saved_handler) (int);
saved_handler = signal (SIGINT, SIG_IGN);
raise (SIGINT);
signal (SIGINT, saved_handler);
}
/* Stop in the debugger after running the default log handler.
* This makes certain kinds of messages stop in the debugger
* without making them fatal (you can continue).
*/
static void
log_handler (const char *domain,
GLogLevelFlags level,
const char *message,
gpointer data)
{
g_log_default_handler (domain, level, message, data);
if ((level & (G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING)) != 0)
{
rb_debug_stop_in_debugger ();
}
}
struct RBProfiler
{
GTimer *timer;
char *name;
};
RBProfiler *
rb_profiler_new (const char *name)
{
RBProfiler *profiler;
if (debugging == FALSE)
return NULL;
profiler = g_new0 (RBProfiler, 1);
profiler->timer = g_timer_new ();
profiler->name = g_strdup (name);
g_timer_start (profiler->timer);
return profiler;
}
void
rb_profiler_dump (RBProfiler *profiler)
{
long elapsed;
double seconds;
if (debugging == FALSE)
return;
if (profiler == NULL)
return;
seconds = g_timer_elapsed (profiler->timer, &elapsed);
rb_debug ("PROFILER %s %ld ms (%f s) elapsed", profiler->name,
elapsed / (G_USEC_PER_SEC / 1000), seconds);
}
void
rb_profiler_reset (RBProfiler *profiler)
{
if (debugging == FALSE)
return;
if (profiler == NULL)
return;
g_timer_start (profiler->timer);
}
void
rb_profiler_free (RBProfiler *profiler)
{
if (debugging == FALSE)
return;
if (profiler == NULL)
return;
g_timer_destroy (profiler->timer);
g_free (profiler->name);
g_free (profiler);
}
|