1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #ifndef __G_MESSAGES_H__
28 #define __G_MESSAGES_H__
31 #include <glib/gtypes.h>
32 #include <glib/gmacros.h>
34 /* Suppress warnings when GCC is in -pedantic mode and not -std=c99
36 #if (__GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96))
37 #pragma GCC system_header
42 /* calculate a string size, guaranteed to fit format + args.
44 gsize g_printf_string_upper_bound (const gchar* format,
47 /* Log level shift offset for user defined
48 * log levels (0-7 are used by GLib).
50 #define G_LOG_LEVEL_USER_SHIFT (8)
52 /* Glib log levels and flags.
57 G_LOG_FLAG_RECURSION = 1 << 0,
58 G_LOG_FLAG_FATAL = 1 << 1,
61 G_LOG_LEVEL_ERROR = 1 << 2, /* always fatal */
62 G_LOG_LEVEL_CRITICAL = 1 << 3,
63 G_LOG_LEVEL_WARNING = 1 << 4,
64 G_LOG_LEVEL_MESSAGE = 1 << 5,
65 G_LOG_LEVEL_INFO = 1 << 6,
66 G_LOG_LEVEL_DEBUG = 1 << 7,
68 G_LOG_LEVEL_MASK = ~(G_LOG_FLAG_RECURSION | G_LOG_FLAG_FATAL)
71 /* GLib log levels that are considered fatal by default */
72 #define G_LOG_FATAL_MASK (G_LOG_FLAG_RECURSION | G_LOG_LEVEL_ERROR)
74 typedef void (*GLogFunc) (const gchar *log_domain,
75 GLogLevelFlags log_level,
81 guint g_log_set_handler (const gchar *log_domain,
82 GLogLevelFlags log_levels,
85 void g_log_remove_handler (const gchar *log_domain,
87 void g_log_default_handler (const gchar *log_domain,
88 GLogLevelFlags log_level,
90 gpointer unused_data);
91 GLogFunc g_log_set_default_handler (GLogFunc log_func,
93 void g_log (const gchar *log_domain,
94 GLogLevelFlags log_level,
96 ...) G_GNUC_PRINTF (3, 4);
97 void g_logv (const gchar *log_domain,
98 GLogLevelFlags log_level,
101 GLogLevelFlags g_log_set_fatal_mask (const gchar *log_domain,
102 GLogLevelFlags fatal_mask);
103 GLogLevelFlags g_log_set_always_fatal (GLogLevelFlags fatal_mask);
106 G_GNUC_INTERNAL void _g_log_fallback_handler (const gchar *log_domain,
107 GLogLevelFlags log_level,
108 const gchar *message,
109 gpointer unused_data);
111 /* Internal functions, used to implement the following macros */
112 void g_return_if_fail_warning (const char *log_domain,
113 const char *pretty_function,
114 const char *expression);
115 void g_warn_message (const char *domain,
119 const char *warnexpr);
120 #ifndef G_DISABLE_DEPRECATED
121 void g_assert_warning (const char *log_domain,
124 const char *pretty_function,
125 const char *expression) G_GNUC_NORETURN;
126 #endif /* !G_DISABLE_DEPRECATED */
130 #define G_LOG_DOMAIN ((gchar*) 0)
131 #endif /* G_LOG_DOMAIN */
132 #ifdef G_HAVE_ISO_VARARGS
133 /* for(;;); so that GCC knows that control doesn't go past g_error() */
134 #define g_error(...) G_STMT_START { \
135 g_log (G_LOG_DOMAIN, \
141 #define g_message(...) g_log (G_LOG_DOMAIN, \
142 G_LOG_LEVEL_MESSAGE, \
144 #define g_critical(...) g_log (G_LOG_DOMAIN, \
145 G_LOG_LEVEL_CRITICAL, \
147 #define g_warning(...) g_log (G_LOG_DOMAIN, \
148 G_LOG_LEVEL_WARNING, \
150 #define g_debug(...) g_log (G_LOG_DOMAIN, \
153 #elif defined(G_HAVE_GNUC_VARARGS)
154 #define g_error(format...) G_STMT_START { \
155 g_log (G_LOG_DOMAIN, \
161 #define g_message(format...) g_log (G_LOG_DOMAIN, \
162 G_LOG_LEVEL_MESSAGE, \
164 #define g_critical(format...) g_log (G_LOG_DOMAIN, \
165 G_LOG_LEVEL_CRITICAL, \
167 #define g_warning(format...) g_log (G_LOG_DOMAIN, \
168 G_LOG_LEVEL_WARNING, \
170 #define g_debug(format...) g_log (G_LOG_DOMAIN, \
173 #else /* no varargs macros */
175 g_error (const gchar *format,
179 va_start (args, format);
180 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, args);
186 g_message (const gchar *format,
190 va_start (args, format);
191 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_MESSAGE, format, args);
195 g_critical (const gchar *format,
199 va_start (args, format);
200 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, format, args);
204 g_warning (const gchar *format,
208 va_start (args, format);
209 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, format, args);
213 g_debug (const gchar *format,
217 va_start (args, format);
218 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format, args);
221 #endif /* !__GNUC__ */
223 typedef void (*GPrintFunc) (const gchar *string);
224 void g_print (const gchar *format,
225 ...) G_GNUC_PRINTF (1, 2);
226 GPrintFunc g_set_print_handler (GPrintFunc func);
227 void g_printerr (const gchar *format,
228 ...) G_GNUC_PRINTF (1, 2);
229 GPrintFunc g_set_printerr_handler (GPrintFunc func);
232 /* Provide macros for graceful error handling.
233 * The "return" macros will return from the current function.
234 * Two different definitions are given for the macros in
235 * order to support gcc's __PRETTY_FUNCTION__ capability.
238 #define g_warn_if_reached() do { g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, NULL); } while (0)
239 #define g_warn_if_fail(expr) do { if G_LIKELY (expr) ; else \
240 g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, #expr); } while (0)
242 #ifdef G_DISABLE_CHECKS
244 #define g_return_if_fail(expr) G_STMT_START{ (void)0; }G_STMT_END
245 #define g_return_val_if_fail(expr,val) G_STMT_START{ (void)0; }G_STMT_END
246 #define g_return_if_reached() G_STMT_START{ return; }G_STMT_END
247 #define g_return_val_if_reached(val) G_STMT_START{ return (val); }G_STMT_END
249 #else /* !G_DISABLE_CHECKS */
253 #define g_return_if_fail(expr) G_STMT_START{ \
254 if G_LIKELY(expr) { } else \
256 g_return_if_fail_warning (G_LOG_DOMAIN, \
257 __PRETTY_FUNCTION__, \
262 #define g_return_val_if_fail(expr,val) G_STMT_START{ \
263 if G_LIKELY(expr) { } else \
265 g_return_if_fail_warning (G_LOG_DOMAIN, \
266 __PRETTY_FUNCTION__, \
271 #define g_return_if_reached() G_STMT_START{ \
272 g_log (G_LOG_DOMAIN, \
273 G_LOG_LEVEL_CRITICAL, \
274 "file %s: line %d (%s): should not be reached", \
277 __PRETTY_FUNCTION__); \
280 #define g_return_val_if_reached(val) G_STMT_START{ \
281 g_log (G_LOG_DOMAIN, \
282 G_LOG_LEVEL_CRITICAL, \
283 "file %s: line %d (%s): should not be reached", \
286 __PRETTY_FUNCTION__); \
287 return (val); }G_STMT_END
289 #else /* !__GNUC__ */
291 #define g_return_if_fail(expr) G_STMT_START{ \
294 g_log (G_LOG_DOMAIN, \
295 G_LOG_LEVEL_CRITICAL, \
296 "file %s: line %d: assertion `%s' failed", \
303 #define g_return_val_if_fail(expr, val) G_STMT_START{ \
306 g_log (G_LOG_DOMAIN, \
307 G_LOG_LEVEL_CRITICAL, \
308 "file %s: line %d: assertion `%s' failed", \
315 #define g_return_if_reached() G_STMT_START{ \
316 g_log (G_LOG_DOMAIN, \
317 G_LOG_LEVEL_CRITICAL, \
318 "file %s: line %d: should not be reached", \
323 #define g_return_val_if_reached(val) G_STMT_START{ \
324 g_log (G_LOG_DOMAIN, \
325 G_LOG_LEVEL_CRITICAL, \
326 "file %s: line %d: should not be reached", \
329 return (val); }G_STMT_END
331 #endif /* !__GNUC__ */
333 #endif /* !G_DISABLE_CHECKS */
337 #endif /* __G_MESSAGES_H__ */