New test.
[mono.git] / eglib / src / goutput.c
1 /*
2  * Output and debugging functions
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@novell.com)
6  *
7  * (C) 2006 Novell, Inc.
8  * Permission is hereby granted, free of charge, to any person obtaining
9  * a 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, sublicense, 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:
15  *
16  * The above copyright notice and this permission notice shall be
17  * included in all copies or substantial portions of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26  */
27 #define _GNU_SOURCE
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <glib.h>
31
32 /* The current fatal levels, error is always fatal */
33 static GLogLevelFlags fatal = G_LOG_LEVEL_ERROR;
34
35 void
36 g_print (const gchar *format, ...)
37 {
38         va_list args;
39
40         va_start (args, format);
41         vprintf (format, args);
42         va_end (args);
43 }
44
45 GLogLevelFlags
46 g_log_set_always_fatal (GLogLevelFlags fatal_mask)
47 {
48         GLogLevelFlags old_fatal = fatal;
49
50         fatal |= fatal_mask;
51         
52         return old_fatal;
53 }
54
55 GLogLevelFlags
56 g_log_set_fatal_mask (const gchar *log_domain, GLogLevelFlags fatal_mask)
57 {
58         /*
59          * Mono does not use a G_LOG_DOMAIN currently, so we just assume things are fatal
60          * if we decide to set G_LOG_DOMAIN (we probably should) we should implement
61          * this.
62          */
63         return fatal_mask;
64 }
65
66 void
67 g_logv (const gchar *log_domain, GLogLevelFlags log_level, const gchar *format, va_list args)
68 {
69         char *msg;
70         
71         vasprintf (&msg, format, args);
72         printf ("%s%s%s",
73                 log_domain != NULL ? log_domain : "",
74                 log_domain != NULL ? ": " : "",
75                 msg);
76         free (msg);
77         if (log_level & fatal)
78                 abort ();
79 }
80
81 void
82 g_log (const gchar *log_domain, GLogLevelFlags log_level, const gchar *format, ...)
83 {
84         char *fmt;
85         va_list args;
86
87         va_start (args, format);
88         g_logv (log_domain, log_level, format, args);
89         fmt = g_strdup_printf (format, args);
90         va_end (args);
91 }
92