aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-debug.c
blob: 99ca80b3ef78ef3d2270839ab0b7a037fbe48f2c (plain) (blame)
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
 *  Copyright © 2003 Marco Pesenti Gritti
 *
 *  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.
 *
 *  $Id$
 */

#include "config.h"

#include "ephy-debug.h"

#include <string.h>
#ifdef HAVE_EXECINFO_H
#include <execinfo.h>
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <glib/gbacktrace.h>

static const char *ephy_debug_break = NULL;

#ifndef DISABLE_PROFILING
static GHashTable *ephy_profilers_hash = NULL;
static char **ephy_profile_modules;
static gboolean ephy_profile_all_modules;
#endif /* !DISABLE_PROFILING */

#ifdef GNOME_ENABLE_DEBUG

static char **
build_modules (const char *name,
           gboolean* is_all)
{
    const char *env;

    *is_all = FALSE;

    env = g_getenv (name);
    if (env == NULL) return NULL;

    if (strcmp (env, "all") == 0)
    {
        *is_all = TRUE;
        return NULL;
    }

    return g_strsplit (g_getenv (name), ":", -1);
}

#endif

#ifndef DISABLE_LOGGING

static char **ephy_log_modules;
static gboolean ephy_log_all_modules;

static void
log_module (const gchar *log_domain,
        GLogLevelFlags log_level,
        const char *message,
        gpointer user_data)
{
    gboolean should_log = ephy_log_all_modules;

    if (!ephy_log_all_modules && !ephy_log_modules) return;

    if (ephy_log_modules != NULL)
    {
        guint i;

        for (i = 0; ephy_log_modules[i] != NULL; i++)
        {
            if (strstr (message, ephy_log_modules [i]) != NULL)
            {
                should_log = TRUE;
                break;
            }
        }
    }

    if (should_log)
    {
        g_print ("%s\n", message);
    }
}

#endif /* !DISABLE_LOGGING */

#define MAX_DEPTH 200

static void 
trap_handler (const char *log_domain,
          GLogLevelFlags log_level,
          const char *message,
          gpointer user_data)
{
    g_log_default_handler (log_domain, log_level, message, user_data);

    if (ephy_debug_break != NULL &&
        (log_level & (G_LOG_LEVEL_WARNING |
              G_LOG_LEVEL_ERROR |
              G_LOG_LEVEL_CRITICAL |
              G_LOG_FLAG_FATAL)))
    {
        if (strcmp (ephy_debug_break, "suspend") == 0)
        {
            /* the suspend case is first because we wanna send the signal before 
             * other threads have had a chance to get too far from the state that
             * caused this assertion (in case they happen to have been involved).
             */
            g_print ("Suspending program; attach with the debugger.\n");

            raise (SIGSTOP);
        }
        else if (strcmp (ephy_debug_break, "stack") == 0)
        {
#ifdef HAVE_EXECINFO_H
            void *array[MAX_DEPTH];
            size_t size;
            
            size = backtrace (array, MAX_DEPTH);
            backtrace_symbols_fd (array, size, 2);
#else
            g_on_error_stack_trace (g_get_prgname ());
#endif /* HAVE_EXECINFO_H */
        }
        else if (strcmp (ephy_debug_break, "trap") == 0)
        {
            /* FIXME: disable the handler for a moment so we 
             * don't crash if we don't actually run under gdb
             */
            G_BREAKPOINT ();
        }
        else if (strcmp (ephy_debug_break, "warn") == 0)
        {
            /* default behaviour only */
        }
        else if (ephy_debug_break[0] != '\0')
        {
            g_print ("Unrecognised value of EPHY_DEBUG_BREAK env var: %s!\n",
                 ephy_debug_break);
        }
    }
}

void
ephy_debug_init (void)
{
#ifndef DISABLE_LOGGING
    ephy_log_modules = build_modules ("EPHY_LOG_MODULES", &ephy_log_all_modules);

    g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, log_module, NULL);

#endif

    ephy_debug_break = g_getenv ("EPHY_DEBUG_BREAK");
    g_log_set_default_handler (trap_handler, NULL);

#ifndef DISABLE_PROFILING
    ephy_profile_modules = build_modules ("EPHY_PROFILE_MODULES", &ephy_profile_all_modules);
#endif
}

#ifndef DISABLE_PROFILING

static EphyProfiler *
ephy_profiler_new (const char *name, const char *module)
{
    EphyProfiler *profiler;

    profiler = g_new0 (EphyProfiler, 1);
    profiler->timer = g_timer_new ();
    profiler->name  = g_strdup (name);
    profiler->module  = g_strdup (module);

    g_timer_start (profiler->timer);

    return profiler;
}

static gboolean
ephy_should_profile (const char *module)
{
    char *slash;
    gboolean result = FALSE;
    guint i;

    slash = strrchr (module, '/');

    /* Happens on builddir != srcdir builds */
    if (slash != NULL) module = slash + 1;

    for (i = 0; ephy_profile_modules[i] != NULL; i++)
    {
        if (strcmp (ephy_profile_modules[i], module) == 0)
        {
            result = TRUE;
            break;
        }
    }

    return result;
}

static void
ephy_profiler_dump (EphyProfiler *profiler)
{
    double seconds;

    g_return_if_fail (profiler != NULL);

    seconds = g_timer_elapsed (profiler->timer, NULL);

    g_print ("[ %s ] %s %f s elapsed\n",
         profiler->module, profiler->name,
         seconds);
}

static void
ephy_profiler_free (EphyProfiler *profiler)
{
    g_return_if_fail (profiler != NULL);

    g_timer_destroy (profiler->timer);
    g_free (profiler->name);
    g_free (profiler->module);
    g_free (profiler);
}

void
ephy_profiler_start (const char *name, const char *module)
{
    EphyProfiler *profiler;

    if (ephy_profilers_hash == NULL)
    {
        ephy_profilers_hash =
            g_hash_table_new_full (g_str_hash, g_str_equal,
                           g_free, NULL);
    }

    if (!ephy_profile_all_modules &&
        (ephy_profile_modules == NULL || !ephy_should_profile (module))) return;

    profiler = ephy_profiler_new (name, module);

    g_hash_table_insert (ephy_profilers_hash, g_strdup (name), profiler);
}

void
ephy_profiler_stop (const char *name)
{
    EphyProfiler *profiler;

    profiler = g_hash_table_lookup (ephy_profilers_hash, name);
    if (profiler == NULL) return;
    g_hash_table_remove (ephy_profilers_hash, name);

    ephy_profiler_dump (profiler);
    ephy_profiler_free (profiler);
}

#endif