2010-02-18 17:14:17 +01: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.
|
|
|
|
*/
|
|
|
|
|
2016-06-29 10:12:57 +02:00
|
|
|
#ifndef QEMU_ERROR_REPORT_H
|
|
|
|
#define QEMU_ERROR_REPORT_H
|
2012-12-06 11:22:34 +01:00
|
|
|
|
2010-02-18 19:46:49 +01:00
|
|
|
typedef struct Location {
|
|
|
|
/* all members are private to qemu-error.c */
|
2010-02-18 20:13:51 +01:00
|
|
|
enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind;
|
2010-02-18 19:46:49 +01:00
|
|
|
int num;
|
|
|
|
const void *ptr;
|
|
|
|
struct Location *prev;
|
|
|
|
} Location;
|
|
|
|
|
|
|
|
Location *loc_push_restore(Location *loc);
|
|
|
|
Location *loc_push_none(Location *loc);
|
|
|
|
Location *loc_pop(Location *loc);
|
|
|
|
Location *loc_save(Location *loc);
|
|
|
|
void loc_restore(Location *loc);
|
|
|
|
void loc_set_none(void);
|
2010-02-18 20:13:51 +01:00
|
|
|
void loc_set_cmdline(char **argv, int idx, int cnt);
|
2010-02-18 19:48:33 +01:00
|
|
|
void loc_set_file(const char *fname, int lno);
|
2010-02-18 19:46:49 +01:00
|
|
|
|
2022-02-20 17:39:25 +01:00
|
|
|
int error_vprintf(const char *fmt, va_list ap) G_GNUC_PRINTF(1, 0);
|
|
|
|
int error_printf(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
|
2017-07-12 15:57:36 +02:00
|
|
|
|
2022-02-20 17:39:25 +01:00
|
|
|
void error_vreport(const char *fmt, va_list ap) G_GNUC_PRINTF(1, 0);
|
|
|
|
void warn_vreport(const char *fmt, va_list ap) G_GNUC_PRINTF(1, 0);
|
|
|
|
void info_vreport(const char *fmt, va_list ap) G_GNUC_PRINTF(1, 0);
|
2017-07-12 15:57:36 +02:00
|
|
|
|
2022-02-20 17:39:25 +01:00
|
|
|
void error_report(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
|
|
|
|
void warn_report(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
|
|
|
|
void info_report(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
|
2017-07-12 15:57:36 +02:00
|
|
|
|
2018-08-30 16:59:01 +02:00
|
|
|
bool error_report_once_cond(bool *printed, const char *fmt, ...)
|
2022-02-20 17:39:25 +01:00
|
|
|
G_GNUC_PRINTF(2, 3);
|
2018-08-30 16:59:01 +02:00
|
|
|
bool warn_report_once_cond(bool *printed, const char *fmt, ...)
|
2022-02-20 17:39:25 +01:00
|
|
|
G_GNUC_PRINTF(2, 3);
|
2018-08-30 16:59:01 +02:00
|
|
|
|
log: Make glib logging go through QEMU
This commit adds a error_init() helper which calls
g_log_set_default_handler() so that glib logs (g_log, g_warning, ...)
are handled similarly to other QEMU logs. This means they will get a
timestamp if timestamps are enabled, and they will go through the
HMP monitor if one is configured.
This commit also adds a call to error_init() to the binaries
installed by QEMU. Since error_init() also calls error_set_progname(),
this means that *-linux-user, *-bsd-user and qemu-pr-helper messages
output with error_report, info_report, ... will slightly change: they
will be prefixed by the binary name.
glib debug messages are enabled through G_MESSAGES_DEBUG similarly to
the glib default log handler.
At the moment, this change will mostly impact SPICE logging if your
spice version is >= 0.14.1. With older spice versions, this is not going
to work as expected, but will not have any ill effect, so this call is
not conditional on the SPICE version.
Signed-off-by: Christophe Fergeau <cfergeau@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20190131164614.19209-3-cfergeau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2019-01-31 17:46:14 +01:00
|
|
|
void error_init(const char *argv0);
|
|
|
|
|
2018-08-15 11:53:26 +02:00
|
|
|
/*
|
|
|
|
* Similar to error_report(), except it prints the message just once.
|
|
|
|
* Return true when it prints, false otherwise.
|
|
|
|
*/
|
2018-08-30 16:59:02 +02:00
|
|
|
#define error_report_once(fmt, ...) \
|
|
|
|
({ \
|
|
|
|
static bool print_once_; \
|
|
|
|
error_report_once_cond(&print_once_, \
|
|
|
|
fmt, ##__VA_ARGS__); \
|
2018-08-15 11:53:26 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Similar to warn_report(), except it prints the message just once.
|
|
|
|
* Return true when it prints, false otherwise.
|
|
|
|
*/
|
2018-08-30 16:59:02 +02:00
|
|
|
#define warn_report_once(fmt, ...) \
|
|
|
|
({ \
|
|
|
|
static bool print_once_; \
|
|
|
|
warn_report_once_cond(&print_once_, \
|
|
|
|
fmt, ##__VA_ARGS__); \
|
2018-08-15 11:53:26 +02:00
|
|
|
})
|
|
|
|
|
2021-01-25 12:35:06 +01:00
|
|
|
extern bool message_with_timestamp;
|
2020-06-26 22:19:00 +02:00
|
|
|
extern bool error_with_guestname;
|
|
|
|
extern const char *error_guest_name;
|
2010-02-18 16:24:31 +01:00
|
|
|
|
|
|
|
#endif
|