]>
Dogcows Code - chaz/openbox/blob - openbox/debug.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 debug.c for the Openbox window manager
4 Copyright (c) 2003-2007 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
21 #include "obt/paths.h"
33 static gboolean enabled_types
[OB_DEBUG_TYPE_NUM
] = {FALSE
};
34 static FILE *log_file
= NULL
;
35 static guint rr_handler_id
= 0;
36 static guint obt_handler_id
= 0;
37 static guint ob_handler_id
= 0;
39 static void log_handler(const gchar
*log_domain
, GLogLevelFlags log_level
,
40 const gchar
*message
, gpointer user_data
);
42 void ob_debug_startup(void)
44 ObtPaths
*p
= obt_paths_new();
45 gchar
*dir
= g_build_filename(obt_paths_cache_home(p
),
48 /* log messages to a log file! fancy, no? */
49 if (!obt_paths_mkdir_path(dir
, 0777))
50 g_message(_("Unable to make directory '%s': %s"),
51 dir
, g_strerror(errno
));
53 gchar
*name
= g_build_filename(obt_paths_cache_home(p
),
54 "openbox", "openbox.log", NULL
);
55 /* unlink it before opening to remove competition */
57 log_file
= fopen(name
, "w");
62 g_log_set_handler("ObRender", G_LOG_LEVEL_MASK
| G_LOG_FLAG_FATAL
|
63 G_LOG_FLAG_RECURSION
, log_handler
, NULL
);
65 g_log_set_handler("Obt", G_LOG_LEVEL_MASK
| G_LOG_FLAG_FATAL
|
66 G_LOG_FLAG_RECURSION
, log_handler
, NULL
);
68 g_log_set_handler("Openbox", G_LOG_LEVEL_MASK
| G_LOG_FLAG_FATAL
|
69 G_LOG_FLAG_RECURSION
, log_handler
, NULL
);
75 void ob_debug_shutdown(void)
77 g_log_remove_handler("ObRender", rr_handler_id
);
78 g_log_remove_handler("Obt", obt_handler_id
);
79 g_log_remove_handler("Openbox", ob_handler_id
);
87 void ob_debug_enable(ObDebugType type
, gboolean enable
)
89 g_assert(type
< OB_DEBUG_TYPE_NUM
);
90 enabled_types
[type
] = enable
;
93 static inline void log_print(FILE *out
, const gchar
* log_domain
,
94 const gchar
*level
, const gchar
*message
)
96 fprintf(out
, log_domain
);
100 fprintf(out
, message
);
105 static void log_handler(const gchar
*log_domain
, GLogLevelFlags log_level
,
106 const gchar
*message
, gpointer data
)
111 switch (log_level
& G_LOG_LEVEL_MASK
) {
112 case G_LOG_LEVEL_DEBUG
: level
= "Debug"; out
= stdout
; break;
113 case G_LOG_LEVEL_INFO
: level
= "Info"; out
= stdout
; break;
114 case G_LOG_LEVEL_MESSAGE
: level
= "Message"; out
= stdout
; break;
115 case G_LOG_LEVEL_WARNING
: level
= "Warning"; out
= stderr
; break;
116 case G_LOG_LEVEL_CRITICAL
: level
= "Critical"; out
= stderr
; break;
117 case G_LOG_LEVEL_ERROR
: level
= "Error"; out
= stderr
; break;
118 default: g_assert_not_reached(); /* invalid level.. */
121 log_print(out
, log_domain
, level
, message
);
122 if (log_file
) log_print(log_file
, log_domain
, level
, message
);
125 static inline void log_argv(ObDebugType type
,
126 const gchar
*format
, va_list args
)
131 g_assert(type
< OB_DEBUG_TYPE_NUM
);
132 if (!enabled_types
[type
]) return;
135 case OB_DEBUG_FOCUS
: prefix
= "(FOCUS) "; break;
136 case OB_DEBUG_APP_BUGS
: prefix
= "(APPLICATION BUG) "; break;
137 case OB_DEBUG_SM
: prefix
= "(SESSION) "; break;
138 default: prefix
= NULL
; break;
141 message
= g_strdup_vprintf(format
, args
);
144 message
= g_strconcat(prefix
, message
, NULL
);
152 void ob_debug(const gchar
*a
, ...)
157 log_argv(OB_DEBUG_NORMAL
, a
, vl
);
161 void ob_debug_type(ObDebugType type
, const gchar
*a
, ...)
166 log_argv(type
, a
, vl
);
This page took 0.057895 seconds and 4 git commands to generate.