]> www.fi.muni.cz Git - evince.git/blob - lib/ev-debug.h
Add debugging helpers
[evince.git] / lib / ev-debug.h
1 /*
2  *  Copyright (C) 2003 Marco Pesenti Gritti
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2, or (at your option)
7  *  any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  *  $Id$
19  */
20
21 #ifndef EV_DEBUG_H
22 #define EV_DEBUG_H
23
24 #include "config.h"
25
26 #include <glib.h>
27
28 G_BEGIN_DECLS
29
30 #ifndef GNOME_ENABLE_DEBUG
31 #define DISABLE_LOGGING
32 #define DISABLE_PROFILING
33 #endif
34
35 #ifdef DISABLE_LOGGING
36 #define LOG(msg, args...)
37 #else
38 #define LOG(msg, args...)                                               \
39 g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                         \
40        "[ %s ] " msg,                                           \
41        __FILE__ , ## args);
42 #endif
43
44 #ifdef DISABLE_PROFILING
45 #define START_PROFILER(name)
46 #define STOP_PROFILER(name)
47 #else
48 #define START_PROFILER(name)    \
49 ev_profiler_start (name, __FILE__);
50 #define STOP_PROFILER(name)     \
51 ev_profiler_stop (name);
52 #endif
53
54 typedef struct
55 {
56         GTimer *timer;
57         char *name;
58         char *module;
59 } EvProfiler;
60
61 void            ev_debug_init           (void);
62
63 #ifndef DISABLE_PROFILING
64
65 void            ev_profiler_start       (const char *name,
66                                          const char *module);
67
68 void            ev_profiler_stop        (const char *name);
69
70 #endif
71
72 G_END_DECLS
73
74 #endif