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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
eel-debug.c: Eel debugging aids.
Copyright (C) 2000, 2001 Eazel, Inc.
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 of the
License, 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.
Author: Darin Adler <darin@eazel.com>
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "eel-debug.h"
#define EEL_N_ELEMENTS(array) (sizeof (array) / sizeof ((array)[0]))
#include <glib.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
/* Try and read the command line used to run the current process.
* On Linux, the file /proc/self/cmdline contains this information.
* In that case the function returns a constant static string with
* the command line.
*
* On platform where this feature is not available, the result is
* NULL.
*/
static const char *
get_process_name (void)
{
static char name[_POSIX_PATH_MAX];
static gboolean cmdline_read;
FILE *stream;
if (!cmdline_read) {
cmdline_read = TRUE;
stream = fopen ("/proc/self/cmdline", "r");
if (stream != NULL) {
if (fgets (name, sizeof (name), stream) == NULL) {
name[0] = '\0';
}
fclose (stream);
}
}
return name[0] != '\0' ? name : NULL;
}
/* 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
eel_stop_in_debugger (void)
{
void (* saved_handler) (int);
saved_handler = signal (SIGINT, SIG_IGN);
raise (SIGINT);
signal (SIGINT, saved_handler);
}
static void
call_default_log_handler_with_better_message (const char *domain,
GLogLevelFlags level,
const char *message,
gpointer data)
{
const char *name;
char *better_message;
/* FIXME: Need to make a version that doesn't allocate memory. */
/* If the command line is known (non-zero length) then print
* that out along with the process id to make the warning or
* critical more useful.
*
* If the command line is not known, then just print the
* process id.
*/
name = get_process_name ();
if (name != NULL) {
better_message = g_strdup_printf ("%s(%lu): %s",
name,
(unsigned long) getpid (),
message);
} else {
better_message = g_strdup_printf ("%lu: %s",
(unsigned long) getpid (),
message);
}
g_log_default_handler (domain, level, better_message, data);
g_free (better_message);
}
/* Stop in the debugger after running the default log handler.
This makes certain kinds of messages stop in the debugger
without making them fatal.
*/
static void
log_handler (const char *domain,
GLogLevelFlags level,
const char *message,
gpointer data)
{
call_default_log_handler_with_better_message (domain, level, message, data);
if ((level & (G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING)) != 0) {
eel_stop_in_debugger ();
}
}
static void
set_log_handler (const char *domain)
{
g_log_set_handler (domain, G_LOG_LEVEL_MASK, log_handler, NULL);
}
void
eel_make_warnings_and_criticals_stop_in_debugger (const char *first_domain, ...)
{
va_list domains;
const char *domain;
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",
"Eel",
"Glib",
"Gdk",
"Gdk-Pixbuf",
"Gnome",
"GnomeUI",
"GnomeVFS",
"GnomeVFS-pthread",
"Gtk",
"ORBit"
};
set_log_handler (first_domain);
va_start (domains, first_domain);
for (;;) {
domain = va_arg (domains, const char *);
if (domain == NULL) {
break;
}
set_log_handler (domain);
}
va_end (domains);
set_log_handler (g_log_domain_glib);
for (i = 0; i < EEL_N_ELEMENTS (standard_log_domains); i++) {
set_log_handler (standard_log_domains[i]);
}
}
int
eel_get_available_file_descriptor_count (void)
{
int count;
GList *list;
GList *p;
FILE *file;
list = NULL;
for (count = 0; ; count++) {
file = fopen("/dev/null", "r");
if (file == NULL) {
break;
}
list = g_list_prepend (list, file);
}
for (p = list; p != NULL; p = p->next) {
fclose (p->data);
}
g_list_free (list);
return count;
}
|