1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*
* Print to stream or current monitor
*
* Copyright (C) 2019 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.
*/
#include "qemu/osdep.h"
#include "monitor/monitor.h"
#include "qemu/qemu-print.h"
/*
* Print like vprintf().
* Print to current monitor if we have one, else to stdout.
*/
int qemu_vprintf(const char *fmt, va_list ap)
{
Monitor *cur_mon = monitor_cur();
if (cur_mon) {
return monitor_vprintf(cur_mon, fmt, ap);
}
return vprintf(fmt, ap);
}
/*
* Print like printf().
* Print to current monitor if we have one, else to stdout.
*/
int qemu_printf(const char *fmt, ...)
{
va_list ap;
int ret;
va_start(ap, fmt);
ret = qemu_vprintf(fmt, ap);
va_end(ap);
return ret;
}
/*
* Print like vfprintf()
* Print to @stream if non-null, else to current monitor.
*/
int qemu_vfprintf(FILE *stream, const char *fmt, va_list ap)
{
if (!stream) {
return monitor_vprintf(monitor_cur(), fmt, ap);
}
return vfprintf(stream, fmt, ap);
}
/*
* Print like fprintf().
* Print to @stream if non-null, else to current monitor.
*/
int qemu_fprintf(FILE *stream, const char *fmt, ...)
{
va_list ap;
int ret;
va_start(ap, fmt);
ret = qemu_vfprintf(stream, fmt, ap);
va_end(ap);
return ret;
}
|