2010-02-19 00:14:17 +08:00
|
|
|
/*
|
|
|
|
* Error reporting
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Markus Armbruster <armbru@redhat.com>,
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2010-02-17 17:55:46 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "monitor.h"
|
|
|
|
#include "sysemu.h"
|
|
|
|
|
2010-02-19 00:14:17 +08:00
|
|
|
/*
|
|
|
|
* Print to current monitor if we have one, else to stderr.
|
|
|
|
* TODO should return int, so callers can calculate width, but that
|
|
|
|
* requires surgery to monitor_vprintf(). Left for another day.
|
|
|
|
*/
|
|
|
|
void error_vprintf(const char *fmt, va_list ap)
|
2010-02-17 17:55:46 +08:00
|
|
|
{
|
error: Simplify error sink setup
qemu_error_sink can either point to a monitor or a file. In practice,
it always points to the current monitor if we have one, else to
stderr. Simply route errors to the current monitor or else to stderr,
and remove qemu_error_sink along with the functions to control it.
Actually, the old code switches the sink slightly later, in
handle_user_command() and handle_qmp_command(), than it gets switched
now, implicitly, by setting the current monitor in monitor_read() and
monitor_control_read(). Likewise, it switches back slightly earlier
(same places). Doesn't make a difference, because there are no calls
of qemu_error() in between.
2010-02-18 20:16:02 +08:00
|
|
|
if (cur_mon) {
|
2010-02-19 00:14:17 +08:00
|
|
|
monitor_vprintf(cur_mon, fmt, ap);
|
error: Simplify error sink setup
qemu_error_sink can either point to a monitor or a file. In practice,
it always points to the current monitor if we have one, else to
stderr. Simply route errors to the current monitor or else to stderr,
and remove qemu_error_sink along with the functions to control it.
Actually, the old code switches the sink slightly later, in
handle_user_command() and handle_qmp_command(), than it gets switched
now, implicitly, by setting the current monitor in monitor_read() and
monitor_control_read(). Likewise, it switches back slightly earlier
(same places). Doesn't make a difference, because there are no calls
of qemu_error() in between.
2010-02-18 20:16:02 +08:00
|
|
|
} else {
|
2010-02-19 00:14:17 +08:00
|
|
|
vfprintf(stderr, fmt, ap);
|
2010-02-17 17:55:46 +08:00
|
|
|
}
|
2010-02-19 00:14:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print to current monitor if we have one, else to stderr.
|
|
|
|
* TODO just like error_vprintf()
|
|
|
|
*/
|
|
|
|
void error_printf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
error_vprintf(fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2010-02-19 02:46:49 +08:00
|
|
|
static Location std_loc = {
|
|
|
|
.kind = LOC_NONE
|
|
|
|
};
|
|
|
|
static Location *cur_loc = &std_loc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Push location saved in LOC onto the location stack, return it.
|
|
|
|
* The top of that stack is the current location.
|
|
|
|
* Needs a matching loc_pop().
|
|
|
|
*/
|
|
|
|
Location *loc_push_restore(Location *loc)
|
|
|
|
{
|
|
|
|
assert(!loc->prev);
|
|
|
|
loc->prev = cur_loc;
|
|
|
|
cur_loc = loc;
|
|
|
|
return loc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize *LOC to "nowhere", push it onto the location stack.
|
|
|
|
* The top of that stack is the current location.
|
|
|
|
* Needs a matching loc_pop().
|
|
|
|
* Return LOC.
|
|
|
|
*/
|
|
|
|
Location *loc_push_none(Location *loc)
|
|
|
|
{
|
|
|
|
loc->kind = LOC_NONE;
|
|
|
|
loc->prev = NULL;
|
|
|
|
return loc_push_restore(loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pop the location stack.
|
|
|
|
* LOC must be the current location, i.e. the top of the stack.
|
|
|
|
*/
|
|
|
|
Location *loc_pop(Location *loc)
|
|
|
|
{
|
|
|
|
assert(cur_loc == loc && loc->prev);
|
|
|
|
cur_loc = loc->prev;
|
|
|
|
loc->prev = NULL;
|
|
|
|
return loc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save the current location in LOC, return LOC.
|
|
|
|
*/
|
|
|
|
Location *loc_save(Location *loc)
|
|
|
|
{
|
|
|
|
*loc = *cur_loc;
|
|
|
|
loc->prev = NULL;
|
|
|
|
return loc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change the current location to the one saved in LOC.
|
|
|
|
*/
|
|
|
|
void loc_restore(Location *loc)
|
|
|
|
{
|
|
|
|
Location *prev = cur_loc->prev;
|
|
|
|
assert(!loc->prev);
|
|
|
|
*cur_loc = *loc;
|
|
|
|
cur_loc->prev = prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change the current location to "nowhere in particular".
|
|
|
|
*/
|
|
|
|
void loc_set_none(void)
|
|
|
|
{
|
|
|
|
cur_loc->kind = LOC_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print current location to current monitor if we have one, else to stderr.
|
|
|
|
*/
|
|
|
|
void error_print_loc(void)
|
|
|
|
{
|
|
|
|
switch (cur_loc->kind) {
|
|
|
|
default: ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-19 00:25:24 +08:00
|
|
|
/*
|
|
|
|
* Print an error message to current monitor if we have one, else to stderr.
|
2010-02-19 02:46:49 +08:00
|
|
|
* Prepend the current location and append a newline.
|
2010-03-03 01:15:09 +08:00
|
|
|
* It's wrong to call this in a QMP monitor. Use qerror_report() there.
|
2010-02-19 00:25:24 +08:00
|
|
|
*/
|
|
|
|
void error_report(const char *fmt, ...)
|
2010-02-19 00:14:17 +08:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
2010-02-19 02:46:49 +08:00
|
|
|
error_print_loc();
|
2010-02-19 00:14:17 +08:00
|
|
|
va_start(ap, fmt);
|
|
|
|
error_vprintf(fmt, ap);
|
|
|
|
va_end(ap);
|
2010-02-19 00:25:24 +08:00
|
|
|
error_printf("\n");
|
2010-02-17 17:55:46 +08:00
|
|
|
}
|
|
|
|
|
2010-03-03 01:15:09 +08:00
|
|
|
void qerror_report_internal(const char *file, int linenr, const char *func,
|
|
|
|
const char *fmt, ...)
|
2010-02-17 17:55:46 +08:00
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
QError *qerror;
|
|
|
|
|
|
|
|
va_start(va, fmt);
|
|
|
|
qerror = qerror_from_info(file, linenr, func, fmt, &va);
|
|
|
|
va_end(va);
|
|
|
|
|
error: Simplify error sink setup
qemu_error_sink can either point to a monitor or a file. In practice,
it always points to the current monitor if we have one, else to
stderr. Simply route errors to the current monitor or else to stderr,
and remove qemu_error_sink along with the functions to control it.
Actually, the old code switches the sink slightly later, in
handle_user_command() and handle_qmp_command(), than it gets switched
now, implicitly, by setting the current monitor in monitor_read() and
monitor_control_read(). Likewise, it switches back slightly earlier
(same places). Doesn't make a difference, because there are no calls
of qemu_error() in between.
2010-02-18 20:16:02 +08:00
|
|
|
if (cur_mon) {
|
|
|
|
monitor_set_error(cur_mon, qerror);
|
|
|
|
} else {
|
2010-02-17 17:55:46 +08:00
|
|
|
qerror_print(qerror);
|
|
|
|
QDECREF(qerror);
|
|
|
|
}
|
|
|
|
}
|