Mention 64bit integer types.
[glib.git] / glib / gmessages.h
blob0037af6c1e27ae39c44f63613ff1a3e266585a5b
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 #include <stdarg.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
38 #endif
40 G_BEGIN_DECLS
42 /* calculate a string size, guaranteed to fit format + args.
44 gsize g_printf_string_upper_bound (const gchar* format,
45 va_list args);
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.
54 typedef enum
56 /* log flags */
57 G_LOG_FLAG_RECURSION = 1 << 0,
58 G_LOG_FLAG_FATAL = 1 << 1,
60 /* GLib log levels */
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)
69 } GLogLevelFlags;
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,
76 const gchar *message,
77 gpointer user_data);
79 /* Logging mechanism
81 guint g_log_set_handler (const gchar *log_domain,
82 GLogLevelFlags log_levels,
83 GLogFunc log_func,
84 gpointer user_data);
85 void g_log_remove_handler (const gchar *log_domain,
86 guint handler_id);
87 void g_log_default_handler (const gchar *log_domain,
88 GLogLevelFlags log_level,
89 const gchar *message,
90 gpointer unused_data);
91 GLogFunc g_log_set_default_handler (GLogFunc log_func,
92 gpointer user_data);
93 void g_log (const gchar *log_domain,
94 GLogLevelFlags log_level,
95 const gchar *format,
96 ...) G_GNUC_PRINTF (3, 4);
97 void g_logv (const gchar *log_domain,
98 GLogLevelFlags log_level,
99 const gchar *format,
100 va_list args);
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);
105 /* internal */
106 void _g_log_fallback_handler (const gchar *log_domain,
107 GLogLevelFlags log_level,
108 const gchar *message,
109 gpointer unused_data) G_GNUC_INTERNAL;
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_assert_warning (const char *log_domain,
116 const char *file,
117 const int line,
118 const char *pretty_function,
119 const char *expression) G_GNUC_NORETURN;
122 #ifndef G_LOG_DOMAIN
123 #define G_LOG_DOMAIN ((gchar*) 0)
124 #endif /* G_LOG_DOMAIN */
125 #ifdef G_HAVE_ISO_VARARGS
126 #define g_error(...) g_log (G_LOG_DOMAIN, \
127 G_LOG_LEVEL_ERROR, \
128 __VA_ARGS__)
129 #define g_message(...) g_log (G_LOG_DOMAIN, \
130 G_LOG_LEVEL_MESSAGE, \
131 __VA_ARGS__)
132 #define g_critical(...) g_log (G_LOG_DOMAIN, \
133 G_LOG_LEVEL_CRITICAL, \
134 __VA_ARGS__)
135 #define g_warning(...) g_log (G_LOG_DOMAIN, \
136 G_LOG_LEVEL_WARNING, \
137 __VA_ARGS__)
138 #define g_debug(...) g_log (G_LOG_DOMAIN, \
139 G_LOG_LEVEL_DEBUG, \
140 __VA_ARGS__)
141 #elif defined(G_HAVE_GNUC_VARARGS)
142 #define g_error(format...) g_log (G_LOG_DOMAIN, \
143 G_LOG_LEVEL_ERROR, \
144 format)
145 #define g_message(format...) g_log (G_LOG_DOMAIN, \
146 G_LOG_LEVEL_MESSAGE, \
147 format)
148 #define g_critical(format...) g_log (G_LOG_DOMAIN, \
149 G_LOG_LEVEL_CRITICAL, \
150 format)
151 #define g_warning(format...) g_log (G_LOG_DOMAIN, \
152 G_LOG_LEVEL_WARNING, \
153 format)
154 #define g_debug(format...) g_log (G_LOG_DOMAIN, \
155 G_LOG_LEVEL_DEBUG, \
156 format)
157 #else /* no varargs macros */
158 static void
159 g_error (const gchar *format,
160 ...)
162 va_list args;
163 va_start (args, format);
164 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, args);
165 va_end (args);
167 static void
168 g_message (const gchar *format,
169 ...)
171 va_list args;
172 va_start (args, format);
173 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_MESSAGE, format, args);
174 va_end (args);
176 static void
177 g_critical (const gchar *format,
178 ...)
180 va_list args;
181 va_start (args, format);
182 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, format, args);
183 va_end (args);
185 static void
186 g_warning (const gchar *format,
187 ...)
189 va_list args;
190 va_start (args, format);
191 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, format, args);
192 va_end (args);
194 static void
195 g_debug (const gchar *format,
196 ...)
198 va_list args;
199 va_start (args, format);
200 g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format, args);
201 va_end (args);
203 #endif /* !__GNUC__ */
205 typedef void (*GPrintFunc) (const gchar *string);
206 void g_print (const gchar *format,
207 ...) G_GNUC_PRINTF (1, 2);
208 GPrintFunc g_set_print_handler (GPrintFunc func);
209 void g_printerr (const gchar *format,
210 ...) G_GNUC_PRINTF (1, 2);
211 GPrintFunc g_set_printerr_handler (GPrintFunc func);
214 /* Provide macros for error handling. The "assert" macros will
215 * exit on failure. The "return" macros will exit the current
216 * function. Two different definitions are given for the macros
217 * if G_DISABLE_ASSERT is not defined, in order to support gcc's
218 * __PRETTY_FUNCTION__ capability.
221 #ifdef G_DISABLE_ASSERT
223 #define g_assert(expr) G_STMT_START{ (void)0; }G_STMT_END
224 #define g_assert_not_reached() G_STMT_START{ (void)0; }G_STMT_END
226 #else /* !G_DISABLE_ASSERT */
228 #ifdef __GNUC__
230 #define g_assert(expr) G_STMT_START{ \
231 if G_LIKELY(expr) { } else \
232 g_assert_warning (G_LOG_DOMAIN, \
233 __FILE__, \
234 __LINE__, \
235 __PRETTY_FUNCTION__, \
236 #expr); }G_STMT_END
238 #define g_assert_not_reached() G_STMT_START{ \
239 g_assert_warning (G_LOG_DOMAIN, \
240 __FILE__, \
241 __LINE__, \
242 __PRETTY_FUNCTION__, \
243 NULL); }G_STMT_END
245 #else /* !__GNUC__ */
247 #define g_assert(expr) G_STMT_START{ \
248 if (expr) { } else \
249 g_log (G_LOG_DOMAIN, \
250 G_LOG_LEVEL_ERROR, \
251 "file %s: line %d: assertion failed: (%s)", \
252 __FILE__, \
253 __LINE__, \
254 #expr); }G_STMT_END
256 #define g_assert_not_reached() G_STMT_START{ \
257 g_log (G_LOG_DOMAIN, \
258 G_LOG_LEVEL_ERROR, \
259 "file %s: line %d: should not be reached", \
260 __FILE__, \
261 __LINE__); }G_STMT_END
263 #endif /* __GNUC__ */
265 #endif /* !G_DISABLE_ASSERT */
268 #ifdef G_DISABLE_CHECKS
270 #define g_return_if_fail(expr) G_STMT_START{ (void)0; }G_STMT_END
271 #define g_return_val_if_fail(expr,val) G_STMT_START{ (void)0; }G_STMT_END
272 #define g_return_if_reached() G_STMT_START{ return; }G_STMT_END
273 #define g_return_val_if_reached(val) G_STMT_START{ return (val); }G_STMT_END
275 #else /* !G_DISABLE_CHECKS */
277 #ifdef __GNUC__
279 #define g_return_if_fail(expr) G_STMT_START{ \
280 if G_LIKELY(expr) { } else \
282 g_return_if_fail_warning (G_LOG_DOMAIN, \
283 __PRETTY_FUNCTION__, \
284 #expr); \
285 return; \
286 }; }G_STMT_END
288 #define g_return_val_if_fail(expr,val) G_STMT_START{ \
289 if G_LIKELY(expr) { } else \
291 g_return_if_fail_warning (G_LOG_DOMAIN, \
292 __PRETTY_FUNCTION__, \
293 #expr); \
294 return (val); \
295 }; }G_STMT_END
297 #define g_return_if_reached() G_STMT_START{ \
298 g_log (G_LOG_DOMAIN, \
299 G_LOG_LEVEL_CRITICAL, \
300 "file %s: line %d (%s): should not be reached", \
301 __FILE__, \
302 __LINE__, \
303 __PRETTY_FUNCTION__); \
304 return; }G_STMT_END
306 #define g_return_val_if_reached(val) G_STMT_START{ \
307 g_log (G_LOG_DOMAIN, \
308 G_LOG_LEVEL_CRITICAL, \
309 "file %s: line %d (%s): should not be reached", \
310 __FILE__, \
311 __LINE__, \
312 __PRETTY_FUNCTION__); \
313 return (val); }G_STMT_END
315 #else /* !__GNUC__ */
317 #define g_return_if_fail(expr) G_STMT_START{ \
318 if (expr) { } else \
320 g_log (G_LOG_DOMAIN, \
321 G_LOG_LEVEL_CRITICAL, \
322 "file %s: line %d: assertion `%s' failed", \
323 __FILE__, \
324 __LINE__, \
325 #expr); \
326 return; \
327 }; }G_STMT_END
329 #define g_return_val_if_fail(expr, val) G_STMT_START{ \
330 if (expr) { } else \
332 g_log (G_LOG_DOMAIN, \
333 G_LOG_LEVEL_CRITICAL, \
334 "file %s: line %d: assertion `%s' failed", \
335 __FILE__, \
336 __LINE__, \
337 #expr); \
338 return (val); \
339 }; }G_STMT_END
341 #define g_return_if_reached() G_STMT_START{ \
342 g_log (G_LOG_DOMAIN, \
343 G_LOG_LEVEL_CRITICAL, \
344 "file %s: line %d: should not be reached", \
345 __FILE__, \
346 __LINE__); \
347 return; }G_STMT_END
349 #define g_return_val_if_reached(val) G_STMT_START{ \
350 g_log (G_LOG_DOMAIN, \
351 G_LOG_LEVEL_CRITICAL, \
352 "file %s: line %d: should not be reached", \
353 __FILE__, \
354 __LINE__); \
355 return (val); }G_STMT_END
357 #endif /* !__GNUC__ */
359 #endif /* !G_DISABLE_CHECKS */
361 G_END_DECLS
363 #endif /* __G_MESSAGES_H__ */