From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Markus Armbruster <armbru@redhat.com>,
Anthony Liguori <aliguori@us.ibm.com>,
Gerd Hoffmann <kraxel@redhat.com>,
Luiz Capitulino <lcapitulino@redhat.com>
Subject: [Qemu-devel] [PATCH] console: extend screendump monitor cmd
Date: Wed, 12 Jun 2013 13:51:17 +0200 [thread overview]
Message-ID: <1371037877-14821-1-git-send-email-kraxel@redhat.com> (raw)
Add an optional device parameter to the screendump command.
https://bugzilla.redhat.com/show_bug.cgi?id=903910
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hmp-commands.hx | 6 +++---
hmp.c | 3 ++-
qapi-schema.json | 4 +++-
qmp-commands.hx | 3 ++-
ui/console.c | 17 ++++++++++++++++-
5 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/hmp-commands.hx b/hmp-commands.hx
index 6991a97..5a44bda 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -237,9 +237,9 @@ ETEXI
{
.name = "screendump",
- .args_type = "filename:F",
- .params = "filename",
- .help = "save screen into PPM image 'filename'",
+ .args_type = "filename:F,device:B?",
+ .params = "filename [device]",
+ .help = "save screen from device into PPM image 'filename'",
.mhandler.cmd = hmp_screen_dump,
},
diff --git a/hmp.c b/hmp.c
index 55f195f..21fb37e 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1344,9 +1344,10 @@ err_out:
void hmp_screen_dump(Monitor *mon, const QDict *qdict)
{
const char *filename = qdict_get_str(qdict, "filename");
+ const char *device = qdict_get_try_str(qdict, "device");
Error *err = NULL;
- qmp_screendump(filename, &err);
+ qmp_screendump(filename, device != NULL, device, &err);
hmp_handle_error(mon, &err);
}
diff --git a/qapi-schema.json b/qapi-schema.json
index adcf801..6cfccf4 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3117,12 +3117,14 @@
# Write a PPM of the VGA screen to a file.
#
# @filename: the path of a new PPM file to store the image
+# @device: #optional device to take the screenshot from
#
# Returns: Nothing on success
#
# Since: 0.14.0
##
-{ 'command': 'screendump', 'data': {'filename': 'str'} }
+{ 'command': 'screendump', 'data': {'filename': 'str',
+ '*device' : 'str'} }
##
# @nbd-server-start:
diff --git a/qmp-commands.hx b/qmp-commands.hx
index 8e69fba..27b138d 100644
--- a/qmp-commands.hx
+++ b/qmp-commands.hx
@@ -145,7 +145,7 @@ EQMP
{
.name = "screendump",
- .args_type = "filename:F",
+ .args_type = "filename:F,device:B?",
.mhandler.cmd_new = qmp_marshal_input_screendump,
},
@@ -158,6 +158,7 @@ Save screen into PPM image.
Arguments:
- "filename": file path (json-string)
+- "device": video device (json-string, optional)
Example:
diff --git a/ui/console.c b/ui/console.c
index 07d4d63..a1401f2 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -313,10 +313,25 @@ write_err:
goto out;
}
-void qmp_screendump(const char *filename, Error **errp)
+void qmp_screendump(const char *filename,
+ bool has_device, const char *device, Error **errp)
{
QemuConsole *con = qemu_console_lookup_by_index(0);
DisplaySurface *surface;
+ DeviceState *dev;
+
+ if (has_device) {
+ dev = qdev_find_recursive(sysbus_get_default(), device);
+ if (NULL == dev) {
+ error_set(errp, QERR_DEVICE_NOT_FOUND, device);
+ return;
+ }
+ con = qemu_console_lookup_by_device(dev);
+ if (NULL == con) {
+ error_setg(errp, "There is no QemuConsole linked to %s", device);
+ return;
+ }
+ }
if (con == NULL) {
error_setg(errp, "There is no QemuConsole I can screendump from.");
--
1.7.9.7
next reply other threads:[~2013-06-12 11:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-12 11:51 Gerd Hoffmann [this message]
2013-06-12 12:18 ` [Qemu-devel] [PATCH] console: extend screendump monitor cmd Luiz Capitulino
2013-06-12 13:21 ` Gerd Hoffmann
2013-06-12 13:23 ` Luiz Capitulino
2013-06-13 10:09 ` Amos Kong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1371037877-14821-1-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=armbru@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).