application: Use printerr for runtime errors
[glib.git] / glib / gmessages.h
blobd58fd8a5eee6896198da475dfc36e154507dda50
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__
30 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
31 #error "Only <glib.h> can be included directly."
32 #endif
34 #include <stdarg.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
42 #endif
44 G_BEGIN_DECLS
46 /* calculate a string size, guaranteed to fit format + args.
48 GLIB_AVAILABLE_IN_ALL
49 gsize g_printf_string_upper_bound (const gchar* format,
50 va_list args) G_GNUC_PRINTF(1, 0);
52 /* Log level shift offset for user defined
53 * log levels (0-7 are used by GLib).
55 #define G_LOG_LEVEL_USER_SHIFT (8)
57 /* Glib log levels and flags.
59 typedef enum
61 /* log flags */
62 G_LOG_FLAG_RECURSION = 1 << 0,
63 G_LOG_FLAG_FATAL = 1 << 1,
65 /* GLib log levels */
66 G_LOG_LEVEL_ERROR = 1 << 2, /* always fatal */
67 G_LOG_LEVEL_CRITICAL = 1 << 3,
68 G_LOG_LEVEL_WARNING = 1 << 4,
69 G_LOG_LEVEL_MESSAGE = 1 << 5,
70 G_LOG_LEVEL_INFO = 1 << 6,
71 G_LOG_LEVEL_DEBUG = 1 << 7,
73 G_LOG_LEVEL_MASK = ~(G_LOG_FLAG_RECURSION | G_LOG_FLAG_FATAL)
74 } GLogLevelFlags;
76 /* GLib log levels that are considered fatal by default */
77 #define G_LOG_FATAL_MASK (G_LOG_FLAG_RECURSION | G_LOG_LEVEL_ERROR)
79 typedef void (*GLogFunc) (const gchar *log_domain,
80 GLogLevelFlags log_level,
81 const gchar *message,
82 gpointer user_data);
84 /* Logging mechanism
86 GLIB_AVAILABLE_IN_ALL
87 guint g_log_set_handler (const gchar *log_domain,
88 GLogLevelFlags log_levels,
89 GLogFunc log_func,
90 gpointer user_data);
91 GLIB_AVAILABLE_IN_ALL
92 void g_log_remove_handler (const gchar *log_domain,
93 guint handler_id);
94 GLIB_AVAILABLE_IN_ALL
95 void g_log_default_handler (const gchar *log_domain,
96 GLogLevelFlags log_level,
97 const gchar *message,
98 gpointer unused_data);
99 GLIB_AVAILABLE_IN_ALL
100 GLogFunc g_log_set_default_handler (GLogFunc log_func,
101 gpointer user_data);
102 GLIB_AVAILABLE_IN_ALL
103 void g_log (const gchar *log_domain,
104 GLogLevelFlags log_level,
105 const gchar *format,
106 ...) G_GNUC_PRINTF (3, 4);
107 GLIB_AVAILABLE_IN_ALL
108 void g_logv (const gchar *log_domain,
109 GLogLevelFlags log_level,
110 const gchar *format,
111 va_list args) G_GNUC_PRINTF(3, 0);
112 GLIB_AVAILABLE_IN_ALL
113 GLogLevelFlags g_log_set_fatal_mask (const gchar *log_domain,
114 GLogLevelFlags fatal_mask);
115 GLIB_AVAILABLE_IN_ALL
116 GLogLevelFlags g_log_set_always_fatal (GLogLevelFlags fatal_mask);
118 /* internal */
119 void _g_log_fallback_handler (const gchar *log_domain,
120 GLogLevelFlags log_level,
121 const gchar *message,
122 gpointer unused_data);
124 /* Internal functions, used to implement the following macros */
125 GLIB_AVAILABLE_IN_ALL
126 void g_return_if_fail_warning (const char *log_domain,
127 const char *pretty_function,
128 const char *expression) G_ANALYZER_NORETURN;
129 GLIB_AVAILABLE_IN_ALL
130 void g_warn_message (const char *domain,
131 const char *file,
132 int line,
133 const char *func,
134 const char *warnexpr) G_ANALYZER_NORETURN;
135 GLIB_DEPRECATED
136 void g_assert_warning (const char *log_domain,
137 const char *file,
138 const int line,
139 const char *pretty_function,
140 const char *expression) G_GNUC_NORETURN;
143 #ifndef G_LOG_DOMAIN
144 #define G_LOG_DOMAIN ((gchar*) 0)
145 #endif /* G_LOG_DOMAIN */
147 #if defined(G_HAVE_ISO_VARARGS) && !G_ANALYZER_ANALYZING
148 /* for(;;) ; so that GCC knows that control doesn't go past g_error().
149 * Put space before ending semicolon to avoid C++ build warnings.
151 #define g_error(...) G_STMT_START { \
152 g_log (G_LOG_DOMAIN, \
153 G_LOG_LEVEL_ERROR, \
154 __VA_ARGS__); \
155 for (;;) ; \
156 } G_STMT_END
158 #define g_message(...) g_log (G_LOG_DOMAIN, \
159 G_LOG_LEVEL_MESSAGE, \
160 __VA_ARGS__)
161 #define g_critical(...) g_log (G_LOG_DOMAIN, \
162 G_LOG_LEVEL_CRITICAL, \
163 __VA_ARGS__)
164 #define g_warning(...) g_log (G_LOG_DOMAIN, \
165 G_LOG_LEVEL_WARNING, \
166 __VA_ARGS__)
167 #define g_info(...) g_log (G_LOG_DOMAIN, \
168 G_LOG_LEVEL_INFO, \
169 __VA_ARGS__)
170 #define g_debug(...) g_log (G_LOG_DOMAIN, \
171 G_LOG_LEVEL_DEBUG, \
172 __VA_ARGS__)
173 #elif defined(G_HAVE_GNUC_VARARGS) && !G_ANALYZER_ANALYZING
174 #define g_error(format...) G_STMT_START { \
175 g_log (G_LOG_DOMAIN, \
176 G_LOG_LEVEL_ERROR, \
177 format); \
178 for (;;) ; \
179 } G_STMT_END
181 #define g_message(format...) g_log (G_LOG_DOMAIN, \
182 G_LOG_LEVEL_MESSAGE, \
183 format)
184 #define g_critical(format...) g_log (G_LOG_DOMAIN, \
185 G_LOG_LEVEL_CRITICAL, \
186 format)
187 #define g_warning(format...) g_log (G_LOG_DOMAIN, \
188 G_LOG_LEVEL_WARNING, \
189 format)
190 #define g_info(format...) g_log (G_LOG_DOMAIN, \
191 G_LOG_LEVEL_INFO, \
192 format)
193 #define g_debug(format...) g_log (G_LOG_DOMAIN, \
194 G_LOG_LEVEL_DEBUG, \
195 format)
196 #else /* no varargs macros */
197 static void g_error (const gchar *format, ...) G_ANALYZER_NORETURN;
198 static void g_critical (const gchar *format, ...) G_ANALYZER_NORETURN;
200 static void
201 g_error (const gchar *format,
202 ...)
204 va_list args;
205 va_start (args, format);
206 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, args);
207 va_end (args);
209 for(;;) ;
211 static void
212 g_message (const gchar *format,
213 ...)
215 va_list args;
216 va_start (args, format);
217 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_MESSAGE, format, args);
218 va_end (args);
220 static void
221 g_critical (const gchar *format,
222 ...)
224 va_list args;
225 va_start (args, format);
226 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, format, args);
227 va_end (args);
229 static void
230 g_warning (const gchar *format,
231 ...)
233 va_list args;
234 va_start (args, format);
235 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, format, args);
236 va_end (args);
238 static void
239 g_info (const gchar *format,
240 ...)
242 va_list args;
243 va_start (args, format);
244 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format, args);
245 va_end (args);
247 static void
248 g_debug (const gchar *format,
249 ...)
251 va_list args;
252 va_start (args, format);
253 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format, args);
254 va_end (args);
256 #endif /* !__GNUC__ */
259 * GPrintFunc:
260 * @string: the message to output
262 * Specifies the type of the print handler functions.
263 * These are called with the complete formatted string to output.
265 typedef void (*GPrintFunc) (const gchar *string);
266 GLIB_AVAILABLE_IN_ALL
267 void g_print (const gchar *format,
268 ...) G_GNUC_PRINTF (1, 2);
269 GLIB_AVAILABLE_IN_ALL
270 GPrintFunc g_set_print_handler (GPrintFunc func);
271 GLIB_AVAILABLE_IN_ALL
272 void g_printerr (const gchar *format,
273 ...) G_GNUC_PRINTF (1, 2);
274 GLIB_AVAILABLE_IN_ALL
275 GPrintFunc g_set_printerr_handler (GPrintFunc func);
278 * g_warn_if_reached:
280 * Logs a critical warning.
282 * Since: 2.16
284 #define g_warn_if_reached() \
285 do { \
286 g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, NULL); \
287 } while (0)
290 * g_warn_if_fail:
291 * @expr: the expression to check
293 * Logs a warning if the expression is not true.
295 * Since: 2.16
297 #define g_warn_if_fail(expr) \
298 do { \
299 if G_LIKELY (expr) ; \
300 else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, #expr); \
301 } while (0)
303 #ifdef G_DISABLE_CHECKS
306 * g_return_if_fail:
307 * @expr: the expression to check
309 * Verifies that the expression evaluates to %TRUE. If the expression
310 * evaluates to %FALSE, a critical message is logged and the current
311 * function returns. This can only be used in functions which do not
312 * return a value.
314 * If G_DISABLE_CHECKS is defined then the check is not performed. You
315 * should therefore not depend on any side effects of @expr.
317 #define g_return_if_fail(expr) G_STMT_START{ (void)0; }G_STMT_END
320 * g_return_val_if_fail:
321 * @expr: the expression to check
322 * @val: the value to return from the current function
323 * if the expression is not true
325 * Verifies that the expression evaluates to %TRUE. If the expression
326 * evaluates to %FALSE, a critical message is logged and @val is
327 * returned from the current function.
329 * If G_DISABLE_CHECKS is defined then the check is not performed. You
330 * should therefore not depend on any side effects of @expr.
332 #define g_return_val_if_fail(expr,val) G_STMT_START{ (void)0; }G_STMT_END
335 * g_return_if_reached:
337 * Logs a critical message and returns from the current function.
338 * This can only be used in functions which do not return a value.
340 #define g_return_if_reached() G_STMT_START{ return; }G_STMT_END
343 * g_return_val_if_reached:
344 * @val: the value to return from the current function
346 * Logs a critical message and returns @val.
348 #define g_return_val_if_reached(val) G_STMT_START{ return (val); }G_STMT_END
350 #else /* !G_DISABLE_CHECKS */
352 #define g_return_if_fail(expr) G_STMT_START{ \
353 if G_LIKELY(expr) { } else \
355 g_return_if_fail_warning (G_LOG_DOMAIN, \
356 G_STRFUNC, \
357 #expr); \
358 return; \
359 }; }G_STMT_END
361 #define g_return_val_if_fail(expr,val) G_STMT_START{ \
362 if G_LIKELY(expr) { } else \
364 g_return_if_fail_warning (G_LOG_DOMAIN, \
365 G_STRFUNC, \
366 #expr); \
367 return (val); \
368 }; }G_STMT_END
370 #define g_return_if_reached() G_STMT_START{ \
371 g_log (G_LOG_DOMAIN, \
372 G_LOG_LEVEL_CRITICAL, \
373 "file %s: line %d (%s): should not be reached", \
374 __FILE__, \
375 __LINE__, \
376 G_STRFUNC); \
377 return; }G_STMT_END
379 #define g_return_val_if_reached(val) G_STMT_START{ \
380 g_log (G_LOG_DOMAIN, \
381 G_LOG_LEVEL_CRITICAL, \
382 "file %s: line %d (%s): should not be reached", \
383 __FILE__, \
384 __LINE__, \
385 G_STRFUNC); \
386 return (val); }G_STMT_END
388 #endif /* !G_DISABLE_CHECKS */
390 G_END_DECLS
392 #endif /* __G_MESSAGES_H__ */