qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Daniel P. Berrange" <berrange@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>,
	qemu-devel@nongnu.org,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v1 09/16] io: pull Buffer code out of VNC module
Date: Tue, 22 Sep 2015 13:20:56 +0100	[thread overview]
Message-ID: <20150922122056.GM28888@redhat.com> (raw)
In-Reply-To: <560143D3.70503@redhat.com>

On Tue, Sep 22, 2015 at 02:04:35PM +0200, Paolo Bonzini wrote:
> 
> 
> On 18/09/2015 15:19, Daniel P. Berrange wrote:
> > The Buffer code in the VNC server is useful for the IO channel
> > code, so pull it out into a shared module, QIOBuffer.
> 
> Do all traces disappear from VNC once you're done?  If not, can you
> instead move it to util/?

It is still used in VNC code for decoding of various framebuffer
encodings. Only the websock usage gets eliminated. I'm happy to
move it to util/ directory.  Any preference on a name for the
APIs. I used QIOBuffer since i placed it under io/ directory.
Could keep that name when moved to util/, or give it a different
one.

> > Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
> > ---
> >  include/io/buffer.h | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> >  io/Makefile.objs    |   3 +-
> >  io/buffer.c         |  65 +++++++++++++++++++++++++++++
> >  ui/vnc-auth-sasl.c  |   4 +-
> >  ui/vnc-enc-tight.c  |  38 ++++++++---------
> >  ui/vnc-enc-zlib.c   |   6 +--
> >  ui/vnc-enc-zrle.c   |  18 ++++----
> >  ui/vnc-jobs.c       |  15 +++----
> >  ui/vnc-ws.c         |  36 ++++++++--------
> >  ui/vnc-ws.h         |   6 +--
> >  ui/vnc.c            |  67 ++++++-----------------------
> >  ui/vnc.h            |  50 ++++++++--------------
> >  12 files changed, 277 insertions(+), 149 deletions(-)
> >  create mode 100644 include/io/buffer.h
> >  create mode 100644 io/buffer.c

Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

  reply	other threads:[~2015-09-22 12:21 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-18 13:18 [Qemu-devel] [PATCH v1 00/16] Introduce I/O channels framework Daniel P. Berrange
2015-09-18 13:18 ` [Qemu-devel] [PATCH v1 01/16] sockets: add helpers for creating SocketAddress from a socket Daniel P. Berrange
2015-09-18 13:18 ` [Qemu-devel] [PATCH v1 02/16] sockets: move qapi_copy_SocketAddress into qemu-sockets.c Daniel P. Berrange
2015-09-18 13:18 ` [Qemu-devel] [PATCH v1 03/16] sockets: allow port to be NULL when listening on IP address Daniel P. Berrange
2015-09-18 13:18 ` [Qemu-devel] [PATCH v1 04/16] ui: convert VNC startup code to use SocketAddress Daniel P. Berrange
2015-09-18 13:18 ` [Qemu-devel] [PATCH v1 05/16] osdep: add qemu_fork() wrapper for safely handling signals Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 06/16] coroutine: move into libqemuutil.a library Daniel P. Berrange
2015-09-22 12:07   ` Paolo Bonzini
2015-09-24 14:46     ` Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 07/16] io: add abstract QIOChannel classes Daniel P. Berrange
2015-09-22 12:19   ` Paolo Bonzini
2015-09-22 12:24     ` Daniel P. Berrange
2015-09-22 12:28       ` Paolo Bonzini
2015-09-24 14:47         ` Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 08/16] io: add helper module for creating watches on FDs Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 09/16] io: pull Buffer code out of VNC module Daniel P. Berrange
2015-09-22 12:04   ` Paolo Bonzini
2015-09-22 12:20     ` Daniel P. Berrange [this message]
2015-09-22 12:21       ` Paolo Bonzini
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 10/16] io: add QIOTask class for async operations Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 11/16] io: add QIOChannelSocket class Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 12/16] io: add QIOChannelFile class Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 13/16] io: add QIOChannelTLS class Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 14/16] io: add QIOChannelWebsock class Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 15/16] io: add QIOChannelCommand class Daniel P. Berrange
2015-09-18 13:19 ` [Qemu-devel] [PATCH v1 16/16] io: add QIOChannelBuffer class Daniel P. Berrange
2015-09-25 10:15   ` Paolo Bonzini
2015-09-25 10:21     ` Daniel P. Berrange
2015-09-22 12:23 ` [Qemu-devel] [PATCH v1 00/16] Introduce I/O channels framework Paolo Bonzini
2015-09-24 14:51   ` Daniel P. Berrange
2015-09-25 10:18     ` Paolo Bonzini
2015-09-25 10:20       ` Daniel P. Berrange

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=20150922122056.GM28888@redhat.com \
    --to=berrange@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=kraxel@redhat.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 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).