From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 2/4] QemuOpts: dump config.
Date: Wed, 14 Oct 2009 10:39:26 +0200 [thread overview]
Message-ID: <1255509568-10635-3-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1255509568-10635-1-git-send-email-kraxel@redhat.com>
Add a function to write the QemuOpts configuration to a git-style
config file.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
qemu-config.c | 39 +++++++++++++++++++++++++++++++++++++++
qemu-config.h | 2 ++
2 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/qemu-config.c b/qemu-config.c
index f02dd42..fa236e9 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -238,3 +238,42 @@ int qemu_set_option(const char *str)
return 0;
}
+struct ConfigWriteData {
+ QemuOptsList *list;
+ FILE *fp;
+};
+
+static int config_write_opt(const char *name, const char *value, void *opaque)
+{
+ struct ConfigWriteData *data = opaque;
+
+ fprintf(data->fp, " %s = \"%s\"\n", name, value);
+ return 0;
+}
+
+static int config_write_opts(QemuOpts *opts, void *opaque)
+{
+ struct ConfigWriteData *data = opaque;
+ const char *id = qemu_opts_id(opts);
+
+ if (id) {
+ fprintf(data->fp, "[%s \"%s\"]\n", data->list->name, id);
+ } else {
+ fprintf(data->fp, "[%s]\n", data->list->name);
+ }
+ qemu_opt_foreach(opts, config_write_opt, data, 0);
+ fprintf(data->fp, "\n");
+ return 0;
+}
+
+void qemu_config_write(FILE *fp)
+{
+ struct ConfigWriteData data = { .fp = fp };
+ int i;
+
+ fprintf(fp, "# qemu config file\n\n");
+ for (i = 0; lists[i] != NULL; i++) {
+ data.list = lists[i];
+ qemu_opts_foreach(data.list, config_write_opts, &data, 0);
+ }
+}
diff --git a/qemu-config.h b/qemu-config.h
index cdad5ac..33fce7e 100644
--- a/qemu-config.h
+++ b/qemu-config.h
@@ -9,4 +9,6 @@ extern QemuOptsList qemu_rtc_opts;
int qemu_set_option(const char *str);
+void qemu_config_write(FILE *fp);
+
#endif /* QEMU_CONFIG_H */
--
1.6.2.5
next prev parent reply other threads:[~2009-10-14 8:39 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-14 8:39 [Qemu-devel] [PATCH 0/4] QemuOpts: config file support Gerd Hoffmann
2009-10-14 8:39 ` [Qemu-devel] [PATCH 1/4] QemuOpts: add find_list() Gerd Hoffmann
2009-10-14 8:39 ` Gerd Hoffmann [this message]
2009-10-14 18:56 ` [Qemu-devel] [PATCH 2/4] QemuOpts: dump config Anthony Liguori
2009-10-14 8:39 ` [Qemu-devel] [PATCH 3/4] QemuOpts: parse config from file Gerd Hoffmann
2009-10-14 18:55 ` Anthony Liguori
2009-10-14 8:39 ` [Qemu-devel] [PATCH 4/4] QemuOpts: command line switches for the config file Gerd Hoffmann
2009-10-16 18:39 ` Nathan Baum
2009-10-16 19:29 ` Gerd Hoffmann
2009-10-16 18:48 ` Nathan Baum
2009-10-16 19:33 ` Gerd Hoffmann
2009-10-14 18:53 ` [Qemu-devel] [PATCH 0/4] QemuOpts: config file support Anthony Liguori
2009-10-14 19:01 ` Anthony Liguori
2009-10-16 10:16 ` Gerd Hoffmann
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=1255509568-10635-3-git-send-email-kraxel@redhat.com \
--to=kraxel@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).