qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH v2 04/23] convert file+pipe chardevs to QemuOpts.
Date: Thu, 10 Sep 2009 10:58:36 +0200	[thread overview]
Message-ID: <1252573135-27688-5-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1252573135-27688-1-git-send-email-kraxel@redhat.com>

new cmd line syntax:
    -chardev file,id=name,path=/path/to/file
    -chardev pipe,id=name,path=/path/to/pipe

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 qemu-char.c   |   47 ++++++++++++++++++++++++++++++++---------------
 qemu-config.c |    7 +++++++
 2 files changed, 39 insertions(+), 15 deletions(-)

diff --git a/qemu-char.c b/qemu-char.c
index bd2eca8..0573033 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -626,20 +626,27 @@ static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
     return chr;
 }
 
-static CharDriverState *qemu_chr_open_file_out(const char *file_out)
+static CharDriverState *qemu_chr_open_file_out(QemuOpts *opts)
 {
     int fd_out;
 
-    TFR(fd_out = open(file_out, O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
+    TFR(fd_out = open(qemu_opt_get(opts, "path"),
+                      O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
     if (fd_out < 0)
         return NULL;
     return qemu_chr_open_fd(-1, fd_out);
 }
 
-static CharDriverState *qemu_chr_open_pipe(const char *filename)
+static CharDriverState *qemu_chr_open_pipe(QemuOpts *opts)
 {
     int fd_in, fd_out;
     char filename_in[256], filename_out[256];
+    const char *filename = qemu_opt_get(opts, "path");
+
+    if (filename == NULL) {
+        fprintf(stderr, "chardev: pipe: no filename given\n");
+        return NULL;
+    }
 
     snprintf(filename_in, 256, "%s.in", filename);
     snprintf(filename_out, 256, "%s.out", filename);
@@ -1658,8 +1665,9 @@ static int win_chr_pipe_init(CharDriverState *chr, const char *filename)
 }
 
 
-static CharDriverState *qemu_chr_open_win_pipe(const char *filename)
+static CharDriverState *qemu_chr_open_win_pipe(QemuOpts *opts)
 {
+    const char *filename = qemu_opt_get(opts, "path");
     CharDriverState *chr;
     WinCharState *s;
 
@@ -1697,8 +1705,9 @@ static CharDriverState *qemu_chr_open_win_con(const char *filename)
     return qemu_chr_open_win_file(GetStdHandle(STD_OUTPUT_HANDLE));
 }
 
-static CharDriverState *qemu_chr_open_win_file_out(const char *file_out)
+static CharDriverState *qemu_chr_open_win_file_out(QemuOpts *opts)
 {
+    const char *file_out = qemu_opt_get(opts, "path");
     HANDLE fd_out;
 
     fd_out = CreateFile(file_out, GENERIC_WRITE, FILE_SHARE_READ, NULL,
@@ -2218,6 +2227,7 @@ static CharDriverState *qemu_chr_open_tcp(const char *host_str,
 
 static QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
 {
+    const char *p;
     QemuOpts *opts;
 
     opts = qemu_opts_create(&qemu_chardev_opts, label, 1);
@@ -2228,6 +2238,16 @@ static QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
         qemu_opt_set(opts, "backend", "null");
         return opts;
     }
+    if (strstart(filename, "file:", &p)) {
+        qemu_opt_set(opts, "backend", "file");
+        qemu_opt_set(opts, "path", p);
+        return opts;
+    }
+    if (strstart(filename, "pipe:", &p)) {
+        qemu_opt_set(opts, "backend", "pipe");
+        qemu_opt_set(opts, "path", p);
+        return opts;
+    }
 
     qemu_opts_del(opts);
     return NULL;
@@ -2238,6 +2258,13 @@ static const struct {
     CharDriverState *(*open)(QemuOpts *opts);
 } backend_table[] = {
     { .name = "null",      .open = qemu_chr_open_null },
+#ifdef _WIN32
+    { .name = "file",      .open = qemu_chr_open_win_file_out },
+    { .name = "pipe",      .open = qemu_chr_open_win_pipe },
+#else
+    { .name = "file",      .open = qemu_chr_open_file_out },
+    { .name = "pipe",      .open = qemu_chr_open_pipe },
+#endif
 };
 
 CharDriverState *qemu_chr_open_opts(QemuOpts *opts,
@@ -2316,10 +2343,6 @@ CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*i
 #ifndef _WIN32
     if (strstart(filename, "unix:", &p)) {
 	chr = qemu_chr_open_tcp(p, 0, 1);
-    } else if (strstart(filename, "file:", &p)) {
-        chr = qemu_chr_open_file_out(p);
-    } else if (strstart(filename, "pipe:", &p)) {
-        chr = qemu_chr_open_pipe(p);
     } else if (!strcmp(filename, "pty")) {
         chr = qemu_chr_open_pty();
     } else if (!strcmp(filename, "stdio")) {
@@ -2344,15 +2367,9 @@ CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*i
     if (strstart(filename, "COM", NULL)) {
         chr = qemu_chr_open_win(filename);
     } else
-    if (strstart(filename, "pipe:", &p)) {
-        chr = qemu_chr_open_win_pipe(p);
-    } else
     if (strstart(filename, "con:", NULL)) {
         chr = qemu_chr_open_win_con(filename);
     } else
-    if (strstart(filename, "file:", &p)) {
-        chr = qemu_chr_open_win_file_out(p);
-    } else
 #endif
 #ifdef CONFIG_BRLAPI
     if (!strcmp(filename, "braille")) {
diff --git a/qemu-config.c b/qemu-config.c
index b156c24..49be6be 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -79,6 +79,13 @@ QemuOptsList qemu_chardev_opts = {
     .name = "chardev",
     .head = TAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
     .desc = {
+        {
+            .name = "backend",
+            .type = QEMU_OPT_STRING,
+        },{
+            .name = "path",
+            .type = QEMU_OPT_STRING,
+        },
         { /* end if list */ }
     },
 };
-- 
1.6.2.5

  parent reply	other threads:[~2009-09-10  8:59 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-10  8:58 [Qemu-devel] [PATCH v2 00/23] switch sockets+chardev to QemuOpts Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 01/23] QemuOpts: split option parser into two functions Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 02/23] qemu-option.h include protectors Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 03/23] switch chardev to QemuOpts: infrastructure, null device Gerd Hoffmann
2009-09-10  8:58 ` Gerd Hoffmann [this message]
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 05/23] sockets: add unix_connect_opts Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 06/23] sockets: add unix_listen_opts Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 07/23] sockets: add unix_*_opts for windows Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 08/23] sockets: add inet_connect_opts Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 09/23] sockets: add inet_listen_opts Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 10/23] convert unix+tcp chardevs to QemuOpts Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 11/23] convert pty chardev " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 12/23] convert stdio " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 13/23] convert msmouse " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 14/23] convert braille " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 15/23] convert windows console " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 16/23] convert tty + parport chardevs " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 17/23] convert vc chardev " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 18/23] convert mux " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 19/23] convert udp " Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 20/23] Allow -serial chardev:<name> Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 21/23] qdev: add parser for chardev properties Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 22/23] monitor: fix muxing Gerd Hoffmann
2009-09-10  8:58 ` [Qemu-devel] [PATCH v2 23/23] move mux focus field from CharDriverState to MuxDriver 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=1252573135-27688-5-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).