3 * This file is part of Evince
5 * Copyright (C) 1998, 1999 Alex Roberts, Evan Lawrence
6 * Copyright (C) 2000, 2001 Chema Celorio, Paolo Maggi
7 * Copyright (C) 2002 - 2005 Paolo Maggi
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330,
22 * Boston, MA 02111-1307, USA.
26 * Modified by the gedit Team, 1998-2005. See the AUTHORS file for a
27 * list of people on the gedit Team.
28 * See the ChangeLog files for a list of changes.
30 * $Id: gedit-debug.c 4809 2006-04-08 14:46:31Z pborelli $
33 /* Modified by Evince Team */
43 #ifdef EV_ENABLE_DEBUG
44 static EvDebugSection ev_debug = EV_NO_DEBUG;
45 static EvProfileSection ev_profile = EV_NO_PROFILE;
47 static GHashTable *timers = NULL;
52 if (g_getenv ("EV_DEBUG") != NULL) {
53 /* enable all debugging */
54 ev_debug = ~EV_NO_DEBUG;
58 if (g_getenv ("EV_DEBUG_JOBS") != NULL)
59 ev_debug |= EV_DEBUG_JOBS;
65 if (g_getenv ("EV_PROFILE") != NULL) {
66 /* enable all profiling */
67 ev_profile = ~EV_NO_PROFILE;
69 if (g_getenv ("EV_PROFILE_JOBS") != NULL)
70 ev_profile |= EV_PROFILE_JOBS;
74 timers = g_hash_table_new_full (g_str_hash,
76 (GDestroyNotify) g_free,
77 (GDestroyNotify) g_timer_destroy);
92 g_hash_table_destroy (timers);
98 ev_debug_message (EvDebugSection section,
101 const gchar *function,
102 const gchar *format, ...)
104 if (G_UNLIKELY (ev_debug & section)) {
110 va_start (args, format);
111 msg = g_strdup_vprintf (format, args);
115 g_print ("%s:%d (%s) %s\n", file, line, function, msg ? msg : "");
124 ev_profiler_start (EvProfileSection section,
125 const gchar *format, ...)
127 if (G_UNLIKELY (ev_profile & section)) {
135 va_start (args, format);
136 name = g_strdup_vprintf (format, args);
139 timer = g_hash_table_lookup (timers, name);
141 timer = g_timer_new ();
142 g_hash_table_insert (timers, g_strdup (name), timer);
144 g_timer_start (timer);
150 ev_profiler_stop (EvProfileSection section,
151 const gchar *format, ...)
153 if (G_UNLIKELY (ev_profile & section)) {
162 va_start (args, format);
163 name = g_strdup_vprintf (format, args);
166 timer = g_hash_table_lookup (timers, name);
170 g_timer_stop (timer);
171 seconds = g_timer_elapsed (timer, NULL);
172 g_print ("[ %s ] %f s elapsed\n", name, seconds);
177 #endif /* EV_ENABLE_DEBUG */