1 /**************************************************************************
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * Copyright 2009-2010 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright 2010 LunarG, Inc.
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
28 **************************************************************************/
32 * Logging facility for debug/info messages.
33 * _EGL_FATAL messages are printed to stderr
34 * The EGL_LOG_LEVEL var controls the output of other warning/info/debug msgs.
44 #include "eglstring.h"
47 #define MAXSTRING 1000
48 #define FALLBACK_LOG_LEVEL _EGL_WARNING
54 EGLBoolean initialized
;
59 #if !defined(_EGL_OS_AROS)
60 _EGL_MUTEX_INITIALIZER
,
66 .initialized
= EGL_FALSE
,
67 .level
= FALLBACK_LOG_LEVEL
,
73 static const char *level_strings
[] = {
74 /* the order is important */
84 * Set the function to be called when there is a message to log.
85 * Note that the function will be called with an internal lock held.
86 * Recursive logging is not allowed.
89 _eglSetLogProc(_EGLLogProc logger
)
91 EGLint num_messages
= 0;
93 _eglLockMutex(&logging
.mutex
);
95 if (logging
.logger
!= logger
) {
96 logging
.logger
= logger
;
98 num_messages
= logging
.num_messages
;
99 logging
.num_messages
= 0;
102 _eglUnlockMutex(&logging
.mutex
);
106 "New logger installed. "
107 "Messages before the new logger might not be available.");
112 * Set the log reporting level.
115 _eglSetLogLevel(EGLint level
)
122 _eglLockMutex(&logging
.mutex
);
123 logging
.level
= level
;
124 _eglUnlockMutex(&logging
.mutex
);
132 #if defined(_EGL_OS_AROS)
133 #include <aros/debug.h>
136 * The default logger. It prints the message to stderr.
139 _eglDefaultLogger(EGLint level
, const char *msg
)
141 #if !defined(_EGL_OS_AROS)
142 fprintf(stderr
, "libEGL %s: %s\n", level_strings
[level
], msg
);
144 bug("[EGL]: %s: %s\n", level_strings
[level
], msg
);
150 * Initialize the logging facility.
156 EGLint i
, level
= -1;
158 if (logging
.initialized
)
161 log_env
= getenv("EGL_LOG_LEVEL");
163 for (i
= 0; level_strings
[i
]; i
++) {
164 if (_eglstrcasecmp(log_env
, level_strings
[i
]) == 0) {
171 level
= FALLBACK_LOG_LEVEL
;
174 logging
.logger
= _eglDefaultLogger
;
175 logging
.level
= (level
>= 0) ? level
: FALLBACK_LOG_LEVEL
;
176 logging
.initialized
= EGL_TRUE
;
177 #if defined(_EGL_OS_AROS)
178 _eglInitMutex(&logging
.mutex
);
181 /* it is fine to call _eglLog now */
182 if (log_env
&& level
< 0) {
183 _eglLog(_EGL_WARNING
,
184 "Unrecognized EGL_LOG_LEVEL environment variable value. "
185 "Expected one of \"fatal\", \"warning\", \"info\", \"debug\". "
186 "Got \"%s\". Falling back to \"%s\".",
187 log_env
, level_strings
[FALLBACK_LOG_LEVEL
]);
193 * Log a message with message logger.
194 * \param level one of _EGL_FATAL, _EGL_WARNING, _EGL_INFO, _EGL_DEBUG.
197 _eglLog(EGLint level
, const char *fmtStr
, ...)
203 /* one-time initialization; a little race here is fine */
204 if (!logging
.initialized
)
206 if (level
> logging
.level
|| level
< 0)
209 _eglLockMutex(&logging
.mutex
);
211 if (logging
.logger
) {
212 va_start(args
, fmtStr
);
213 ret
= vsnprintf(msg
, MAXSTRING
, fmtStr
, args
);
214 if (ret
< 0 || ret
>= MAXSTRING
)
215 strcpy(msg
, "<message truncated>");
218 logging
.logger(level
, msg
);
219 logging
.num_messages
++;
222 _eglUnlockMutex(&logging
.mutex
);
224 if (level
== _EGL_FATAL
)
225 exit(1); /* or abort()? */