All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@gmail.com>
Cc: "Daniel P. Berrangé" <berrange@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	QEMU <qemu-devel@nongnu.org>,
	"Markus Armbruster" <armbru@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 10/10] display: add -display app launching external application
Date: Tue, 7 Aug 2018 16:30:55 +0200	[thread overview]
Message-ID: <20180807143055.pkx7l2ufb36lyq3b@sirius.home.kraxel.org> (raw)
In-Reply-To: <CAJ+F1C+=aucconH7EZ8D2g_Wir2wEeq4GMobK+jNPZ8b0LbZKA@mail.gmail.com>

  Hi,

> > spice arguments over time.  So if we want auto-launching of a remote app,
> > I think it is preferrable to do it via extra args to the existing
> > "-display spice" format. eg we could add a "client=yes|no" to control
> > launching the client
> >
> >    -display spice,client=yes
> 
> There is no -display spice, atm.
> 
> However there is a -display vnc.

That should not be there.  Now that we have a deprecation process
I should probably actually deprecate it in favor of -vnc.

> It's a bit unclear to me the relation between -display and
> -vnc/-spice/-curses etc. In the end, I tend to think of -display foo
> as a shortcut for a longer -foo configuration.

-display is for builtin UIs.  You can have exactly one of these.

-spice and -vnc is for remote protocols.  They can be used together with
builtin UIs (even though that isn't a typical use case).  Configuring
both spice and vnc works too.

-sdl and -curses are shortcuts for -display sdl and -display curses.

> So -display spice,client=yes is a reasonable proposal to me, making it
> clear that it will run spice. (client=yes is less clear to me but
> fine)

Hmm, this will both configure some standard stuff and start an external
application.  Doesn't really fit with "-spice ...".

Adding "-display remote-client" doesn't really fit either.  But still
looks better to me.  Or we just create a new -remote-client top level
switch.  Adding higher-level config options (protocol=spice/vnc,
monitor=on/off, serial=on/off, ...) is less confusing then (especially
vnc support :) ), compared to have a bunch of more -spice options which
only have an effect with client=yes.

Also:  remote-viewer accepts config files.  I'd suggest to write one, so
it is easy to restart remote-viewer.  Also I would not use a temp dir
for the files and sockets, but some fixed location.
/run/user/$uid/qemu/$vmname for example (where $vmname is whatever you
passed to qemu using -name).

cheers,
  Gerd

  reply	other threads:[~2018-08-07 14:31 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-03 17:36 [Qemu-devel] [PATCH 00/10] RFC: spice: add -display app to launch external UI Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 01/10] char/spice: trigger HUP event Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 02/10] char/spice: discard write() if backend is disconnected Marc-André Lureau
2018-08-07 15:25   ` Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 03/10] configure: bump spice-server required version to 0.12.6 Marc-André Lureau
2018-08-03 18:17   ` Eric Blake
2018-08-07 10:07   ` Daniel P. Berrangé
2018-08-03 17:36 ` [Qemu-devel] [PATCH 04/10] spice: avoid spice runtime assert Marc-André Lureau
2018-08-07 13:47   ` Gerd Hoffmann
2018-11-28 11:04     ` Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 05/10] spice: merge options lists Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 06/10] spice: do not stop spice if VM is paused Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 07/10] char: move SpiceChardev and open_spice_port() to spice.h header Marc-André Lureau
2018-08-03 18:20   ` Eric Blake
2018-08-03 17:36 ` [Qemu-devel] [PATCH 08/10] char: register spice ports after spice started Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 09/10] build-sys: add gio-2.0 check Marc-André Lureau
2018-08-03 17:36 ` [Qemu-devel] [PATCH 10/10] display: add -display app launching external application Marc-André Lureau
2018-08-03 18:22   ` Eric Blake
2018-08-07 10:15   ` Daniel P. Berrangé
2018-08-07 10:33     ` Marc-André Lureau
2018-08-07 14:30       ` Gerd Hoffmann [this message]
2018-08-07 14:43         ` Paolo Bonzini
2018-12-18 14:04         ` Marc-André Lureau
2018-12-19  7:13           ` Gerd Hoffmann
2018-12-19  7:44             ` Marc-André Lureau
2018-12-19  9:54               ` Gerd Hoffmann
2018-12-19 12:34                 ` Marc-André Lureau
2018-12-19 12:55                   ` 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=20180807143055.pkx7l2ufb36lyq3b@sirius.home.kraxel.org \
    --to=kraxel@redhat.com \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=marcandre.lureau@gmail.com \
    --cc=pbonzini@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.