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 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
28 #error "Only <glib.h> can be included directly."
31 #ifndef __G_MESSAGES_H__
32 #define __G_MESSAGES_H__
35 #include <glib/gtypes.h>
36 #include <glib/gmacros.h>
38 /* Suppress warnings when GCC is in -pedantic mode and not -std=c99
40 #if (__GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96))
41 #pragma GCC system_header
46 /* calculate a string size, guaranteed to fit format + args.
48 gsize g_printf_string_upper_bound (const gchar* format,
51 /* Log level shift offset for user defined
52 * log levels (0-7 are used by GLib).
54 #define G_LOG_LEVEL_USER_SHIFT (8)
56 /* Glib log levels and flags.
61 G_LOG_FLAG_RECURSION = 1 << 0,
62 G_LOG_FLAG_FATAL = 1 << 1,
65 G_LOG_LEVEL_ERROR = 1 << 2, /* always fatal */
66 G_LOG_LEVEL_CRITICAL = 1 << 3,
67 G_LOG_LEVEL_WARNING = 1 << 4,
68 G_LOG_LEVEL_MESSAGE = 1 << 5,
69 G_LOG_LEVEL_INFO = 1 << 6,
70 G_LOG_LEVEL_DEBUG = 1 << 7,
72 G_LOG_LEVEL_MASK = ~(G_LOG_FLAG_RECURSION | G_LOG_FLAG_FATAL)
75 /* GLib log levels that are considered fatal by default */
76 #define G_LOG_FATAL_MASK (G_LOG_FLAG_RECURSION | G_LOG_LEVEL_ERROR)
78 typedef void (*GLogFunc) (const gchar *log_domain,
79 GLogLevelFlags log_level,
85 guint g_log_set_handler (const gchar *log_domain,
86 GLogLevelFlags log_levels,
89 void g_log_remove_handler (const gchar *log_domain,
91 void g_log_default_handler (const gchar *log_domain,
92 GLogLevelFlags log_level,
94 gpointer unused_data);
95 GLogFunc g_log_set_default_handler (GLogFunc log_func,
97 void g_log (const gchar *log_domain,
98 GLogLevelFlags log_level,
100 ...) G_GNUC_PRINTF (3, 4);
101 void g_logv (const gchar *log_domain,
102 GLogLevelFlags log_level,
105 GLogLevelFlags g_log_set_fatal_mask (const gchar *log_domain,
106 GLogLevelFlags fatal_mask);
107 GLogLevelFlags g_log_set_always_fatal (GLogLevelFlags fatal_mask);
110 G_GNUC_INTERNAL void _g_log_fallback_handler (const gchar *log_domain,
111 GLogLevelFlags log_level,
112 const gchar *message,
113 gpointer unused_data);
115 /* Internal functions, used to implement the following macros */
116 void g_return_if_fail_warning (const char *log_domain,
117 const char *pretty_function,
118 const char *expression);
119 void g_warn_message (const char *domain,
123 const char *warnexpr);
125 void g_assert_warning (const char *log_domain,
128 const char *pretty_function,
129 const char *expression) G_GNUC_NORETURN;
133 #define G_LOG_DOMAIN ((gchar*) 0)
134 #endif /* G_LOG_DOMAIN */
135 #ifdef G_HAVE_ISO_VARARGS
136 /* for(;;) ; so that GCC knows that control doesn't go past g_error().
137 * Put space before ending semicolon to avoid C++ build warnings.
139 #define g_error(...) G_STMT_START { \
140 g_log (G_LOG_DOMAIN, \
146 #define g_message(...) g_log (G_LOG_DOMAIN, \
147 G_LOG_LEVEL_MESSAGE, \
149 #define g_critical(...) g_log (G_LOG_DOMAIN, \
150 G_LOG_LEVEL_CRITICAL, \
152 #define g_warning(...) g_log (G_LOG_DOMAIN, \
153 G_LOG_LEVEL_WARNING, \
155 #define g_debug(...) g_log (G_LOG_DOMAIN, \
158 #elif defined(G_HAVE_GNUC_VARARGS)
159 #define g_error(format...) G_STMT_START { \
160 g_log (G_LOG_DOMAIN, \
166 #define g_message(format...) g_log (G_LOG_DOMAIN, \
167 G_LOG_LEVEL_MESSAGE, \
169 #define g_critical(format...) g_log (G_LOG_DOMAIN, \
170 G_LOG_LEVEL_CRITICAL, \
172 #define g_warning(format...) g_log (G_LOG_DOMAIN, \
173 G_LOG_LEVEL_WARNING, \
175 #define g_debug(format...) g_log (G_LOG_DOMAIN, \
178 #else /* no varargs macros */
180 g_error (const gchar *format,
184 va_start (args, format);
185 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, args);
191 g_message (const gchar *format,
195 va_start (args, format);
196 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_MESSAGE, format, args);
200 g_critical (const gchar *format,
204 va_start (args, format);
205 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, format, args);
209 g_warning (const gchar *format,
213 va_start (args, format);
214 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, format, args);
218 g_debug (const gchar *format,
222 va_start (args, format);
223 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format, args);
226 #endif /* !__GNUC__ */
230 * @string: the message to output
232 * Specifies the type of the print handler functions.
233 * These are called with the complete formatted string to output.
235 typedef void (*GPrintFunc) (const gchar *string);
236 void g_print (const gchar *format,
237 ...) G_GNUC_PRINTF (1, 2);
238 GPrintFunc g_set_print_handler (GPrintFunc func);
239 void g_printerr (const gchar *format,
240 ...) G_GNUC_PRINTF (1, 2);
241 GPrintFunc g_set_printerr_handler (GPrintFunc func);
246 * Logs a critical warning.
250 #define g_warn_if_reached() \
252 g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, NULL); \
257 * @expr: the expression to check
259 * Logs a warning if the expression is not true.
263 #define g_warn_if_fail(expr) \
265 if G_LIKELY (expr) ; \
266 else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, #expr); \
269 #ifdef G_DISABLE_CHECKS
273 * @expr: the expression to check
275 * Verifies that the expression evaluates to %TRUE. If the expression
276 * evaluates to %FALSE, a critical message is logged and the current
277 * function returns. This can only be used in functions which do not
280 * If G_DISABLE_CHECKS is defined then the check is not performed. You
281 * should therefore not depend on any side effects of @expr.
283 #define g_return_if_fail(expr) G_STMT_START{ (void)0; }G_STMT_END
286 * g_return_val_if_fail:
287 * @expr: the expression to check
288 * @val: the value to return from the current function
289 * if the expression is not true
291 * Verifies that the expression evaluates to %TRUE. If the expression
292 * evaluates to %FALSE, a critical message is logged and @val is
293 * returned from the current function.
295 * If G_DISABLE_CHECKS is defined then the check is not performed. You
296 * should therefore not depend on any side effects of @expr.
298 #define g_return_val_if_fail(expr,val) G_STMT_START{ (void)0; }G_STMT_END
301 * g_return_if_reached:
303 * Logs a critical message and returns from the current function.
304 * This can only be used in functions which do not return a value.
306 #define g_return_if_reached() G_STMT_START{ return; }G_STMT_END
309 * g_return_val_if_reached:
310 * @val: the value to return from the current function
312 * Logs a critical message and returns @val.
314 #define g_return_val_if_reached(val) G_STMT_START{ return (val); }G_STMT_END
316 #else /* !G_DISABLE_CHECKS */
320 #define g_return_if_fail(expr) G_STMT_START{ \
321 if G_LIKELY(expr) { } else \
323 g_return_if_fail_warning (G_LOG_DOMAIN, \
324 __PRETTY_FUNCTION__, \
329 #define g_return_val_if_fail(expr,val) G_STMT_START{ \
330 if G_LIKELY(expr) { } else \
332 g_return_if_fail_warning (G_LOG_DOMAIN, \
333 __PRETTY_FUNCTION__, \
338 #define g_return_if_reached() G_STMT_START{ \
339 g_log (G_LOG_DOMAIN, \
340 G_LOG_LEVEL_CRITICAL, \
341 "file %s: line %d (%s): should not be reached", \
344 __PRETTY_FUNCTION__); \
347 #define g_return_val_if_reached(val) G_STMT_START{ \
348 g_log (G_LOG_DOMAIN, \
349 G_LOG_LEVEL_CRITICAL, \
350 "file %s: line %d (%s): should not be reached", \
353 __PRETTY_FUNCTION__); \
354 return (val); }G_STMT_END
356 #else /* !__GNUC__ */
358 #define g_return_if_fail(expr) G_STMT_START{ \
361 g_log (G_LOG_DOMAIN, \
362 G_LOG_LEVEL_CRITICAL, \
363 "file %s: line %d: assertion `%s' failed", \
370 #define g_return_val_if_fail(expr, val) G_STMT_START{ \
373 g_log (G_LOG_DOMAIN, \
374 G_LOG_LEVEL_CRITICAL, \
375 "file %s: line %d: assertion `%s' failed", \
382 #define g_return_if_reached() G_STMT_START{ \
383 g_log (G_LOG_DOMAIN, \
384 G_LOG_LEVEL_CRITICAL, \
385 "file %s: line %d: should not be reached", \
390 #define g_return_val_if_reached(val) G_STMT_START{ \
391 g_log (G_LOG_DOMAIN, \
392 G_LOG_LEVEL_CRITICAL, \
393 "file %s: line %d: should not be reached", \
396 return (val); }G_STMT_END
398 #endif /* !__GNUC__ */
400 #endif /* !G_DISABLE_CHECKS */
404 #endif /* __G_MESSAGES_H__ */