4 * Copyright (C) 2010 Red Hat Inc.
7 * Markus Armbruster <armbru@redhat.com>,
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "monitor/monitor.h"
15 #include "qemu/error-report.h"
18 * @report_type is the type of message: error, warning or
27 /* Prepend timestamp to messages */
28 bool message_with_timestamp
;
29 bool error_with_guestname
;
30 const char *error_guest_name
;
32 int error_printf(const char *fmt
, ...)
38 ret
= error_vprintf(fmt
, ap
);
43 static Location std_loc
= {
46 static Location
*cur_loc
= &std_loc
;
49 * Push location saved in LOC onto the location stack, return it.
50 * The top of that stack is the current location.
51 * Needs a matching loc_pop().
53 Location
*loc_push_restore(Location
*loc
)
62 * Initialize *LOC to "nowhere", push it onto the location stack.
63 * The top of that stack is the current location.
64 * Needs a matching loc_pop().
67 Location
*loc_push_none(Location
*loc
)
71 return loc_push_restore(loc
);
75 * Pop the location stack.
76 * LOC must be the current location, i.e. the top of the stack.
78 Location
*loc_pop(Location
*loc
)
80 assert(cur_loc
== loc
&& loc
->prev
);
87 * Save the current location in LOC, return LOC.
89 Location
*loc_save(Location
*loc
)
97 * Change the current location to the one saved in LOC.
99 void loc_restore(Location
*loc
)
101 Location
*prev
= cur_loc
->prev
;
104 cur_loc
->prev
= prev
;
108 * Change the current location to "nowhere in particular".
110 void loc_set_none(void)
112 cur_loc
->kind
= LOC_NONE
;
116 * Change the current location to argument ARGV[IDX..IDX+CNT-1].
118 void loc_set_cmdline(char **argv
, int idx
, int cnt
)
120 cur_loc
->kind
= LOC_CMDLINE
;
122 cur_loc
->ptr
= argv
+ idx
;
126 * Change the current location to file FNAME, line LNO.
128 void loc_set_file(const char *fname
, int lno
)
130 assert (fname
|| cur_loc
->kind
== LOC_FILE
);
131 cur_loc
->kind
= LOC_FILE
;
134 cur_loc
->ptr
= fname
;
139 * Print current location to current monitor if we have one, else to stderr.
141 static void print_loc(void)
143 const char *sep
= "";
145 const char *const *argp
;
147 if (!monitor_cur() && g_get_prgname()) {
148 error_printf("%s:", g_get_prgname());
151 switch (cur_loc
->kind
) {
154 for (i
= 0; i
< cur_loc
->num
; i
++) {
155 error_printf("%s%s", sep
, argp
[i
]);
161 error_printf("%s:", (const char *)cur_loc
->ptr
);
163 error_printf("%d:", cur_loc
->num
);
168 error_printf("%s", sep
);
173 real_time_iso8601(void)
175 #if GLIB_CHECK_VERSION(2,62,0)
176 g_autoptr(GDateTime
) dt
= g_date_time_new_now_utc();
177 /* ignore deprecation warning, since GLIB_VERSION_MAX_ALLOWED is 2.56 */
178 #pragma GCC diagnostic push
179 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
180 return g_date_time_format_iso8601(dt
);
181 #pragma GCC diagnostic pop
184 g_get_current_time(&tv
);
185 return g_time_val_to_iso8601(&tv
);
190 * Print a message to current monitor if we have one, else to stderr.
191 * @report_type is the type of message: error, warning or informational.
192 * Format arguments like vsprintf(). The resulting message should be
193 * a single phrase, with no newline or trailing punctuation.
194 * Prepend the current location and append a newline.
196 static void vreport(report_type type
, const char *fmt
, va_list ap
)
200 if (message_with_timestamp
&& !monitor_cur()) {
201 timestr
= real_time_iso8601();
202 error_printf("%s ", timestr
);
206 /* Only prepend guest name if -msg guest-name and -name guest=... are set */
207 if (error_with_guestname
&& error_guest_name
&& !monitor_cur()) {
208 error_printf("%s ", error_guest_name
);
214 case REPORT_TYPE_ERROR
:
216 case REPORT_TYPE_WARNING
:
217 error_printf("warning: ");
219 case REPORT_TYPE_INFO
:
220 error_printf("info: ");
224 error_vprintf(fmt
, ap
);
229 * Print an error message to current monitor if we have one, else to stderr.
230 * Format arguments like vsprintf(). The resulting message should be
231 * a single phrase, with no newline or trailing punctuation.
232 * Prepend the current location and append a newline.
233 * It's wrong to call this in a QMP monitor. Use error_setg() there.
235 void error_vreport(const char *fmt
, va_list ap
)
237 vreport(REPORT_TYPE_ERROR
, fmt
, ap
);
241 * Print a warning message to current monitor if we have one, else to stderr.
242 * Format arguments like vsprintf(). The resulting message should be
243 * a single phrase, with no newline or trailing punctuation.
244 * Prepend the current location and append a newline.
246 void warn_vreport(const char *fmt
, va_list ap
)
248 vreport(REPORT_TYPE_WARNING
, fmt
, ap
);
252 * Print an information message to current monitor if we have one, else to
254 * Format arguments like vsprintf(). The resulting message should be
255 * a single phrase, with no newline or trailing punctuation.
256 * Prepend the current location and append a newline.
258 void info_vreport(const char *fmt
, va_list ap
)
260 vreport(REPORT_TYPE_INFO
, fmt
, ap
);
264 * Print an error message to current monitor if we have one, else to stderr.
265 * Format arguments like sprintf(). The resulting message should be
266 * a single phrase, with no newline or trailing punctuation.
267 * Prepend the current location and append a newline.
268 * It's wrong to call this in a QMP monitor. Use error_setg() there.
270 void error_report(const char *fmt
, ...)
275 vreport(REPORT_TYPE_ERROR
, fmt
, ap
);
280 * Print a warning message to current monitor if we have one, else to stderr.
281 * Format arguments like sprintf(). The resulting message should be a
282 * single phrase, with no newline or trailing punctuation.
283 * Prepend the current location and append a newline.
285 void warn_report(const char *fmt
, ...)
290 vreport(REPORT_TYPE_WARNING
, fmt
, ap
);
295 * Print an information message to current monitor if we have one, else to
297 * Format arguments like sprintf(). The resulting message should be a
298 * single phrase, with no newline or trailing punctuation.
299 * Prepend the current location and append a newline.
301 void info_report(const char *fmt
, ...)
306 vreport(REPORT_TYPE_INFO
, fmt
, ap
);
311 * Like error_report(), except print just once.
312 * If *printed is false, print the message, and flip *printed to true.
313 * Return whether the message was printed.
315 bool error_report_once_cond(bool *printed
, const char *fmt
, ...)
325 vreport(REPORT_TYPE_ERROR
, fmt
, ap
);
331 * Like warn_report(), except print just once.
332 * If *printed is false, print the message, and flip *printed to true.
333 * Return whether the message was printed.
335 bool warn_report_once_cond(bool *printed
, const char *fmt
, ...)
345 vreport(REPORT_TYPE_WARNING
, fmt
, ap
);
350 static char *qemu_glog_domains
;
352 static void qemu_log_func(const gchar
*log_domain
,
353 GLogLevelFlags log_level
,
354 const gchar
*message
,
357 switch (log_level
& G_LOG_LEVEL_MASK
) {
358 case G_LOG_LEVEL_DEBUG
:
359 case G_LOG_LEVEL_INFO
:
361 * Use same G_MESSAGES_DEBUG logic as glib to enable/disable debug
364 if (qemu_glog_domains
== NULL
) {
367 if (strcmp(qemu_glog_domains
, "all") != 0 &&
368 (log_domain
== NULL
|| !strstr(qemu_glog_domains
, log_domain
))) {
372 case G_LOG_LEVEL_MESSAGE
:
373 info_report("%s%s%s",
374 log_domain
?: "", log_domain
? ": " : "", message
);
377 case G_LOG_LEVEL_WARNING
:
378 warn_report("%s%s%s",
379 log_domain
?: "", log_domain
? ": " : "", message
);
381 case G_LOG_LEVEL_CRITICAL
:
382 case G_LOG_LEVEL_ERROR
:
383 error_report("%s%s%s",
384 log_domain
?: "", log_domain
? ": " : "", message
);
389 void error_init(const char *argv0
)
391 const char *p
= strrchr(argv0
, '/');
393 /* Set the program name for error_print_loc(). */
394 g_set_prgname(p
? p
+ 1 : argv0
);
397 * This sets up glib logging so libraries using it also print their logs
398 * through error_report(), warn_report(), info_report().
400 g_log_set_default_handler(qemu_log_func
, NULL
);
401 g_warn_if_fail(qemu_glog_domains
== NULL
);
402 qemu_glog_domains
= g_strdup(g_getenv("G_MESSAGES_DEBUG"));