From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38059) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RNSxk-0002WE-4M for qemu-devel@nongnu.org; Mon, 07 Nov 2011 12:26:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RNSxi-0002kt-AT for qemu-devel@nongnu.org; Mon, 07 Nov 2011 12:26:24 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35791) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RNSxh-0002kl-T7 for qemu-devel@nongnu.org; Mon, 07 Nov 2011 12:26:22 -0500 Date: Mon, 7 Nov 2011 19:26:15 +0200 From: Alon Levy Message-ID: <20111107172615.GM13121@garlic.tlv.redhat.com> References: <1320678675-21379-1-git-send-email-aliguori@us.ibm.com> <20111107140801.7f1c6cdd@doriath> <4EB802D3.4080108@codemonkey.ws> <20111107143020.74c678ec@doriath> <4EB808E7.3000507@codemonkey.ws> <20111107143929.2335a059@doriath> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20111107143929.2335a059@doriath> Subject: Re: [Qemu-devel] [PATCH] qmp: add test tool for QMP List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: Anthony Liguori , qemu-devel@nongnu.org On Mon, Nov 07, 2011 at 02:39:29PM -0200, Luiz Capitulino wrote: > On Mon, 07 Nov 2011 10:35:51 -0600 > Anthony Liguori wrote: > > > On 11/07/2011 10:30 AM, Luiz Capitulino wrote: > > > On Mon, 07 Nov 2011 10:09:55 -0600 > > > Anthony Liguori wrote: > > > > > >> On 11/07/2011 10:08 AM, Luiz Capitulino wrote: > > >>> On Mon, 7 Nov 2011 09:11:15 -0600 > > >>> Anthony Liguori wrote: > > >>> > > >>>> I wrote this quickly to aid in testing. It's similar to qmp-shell with a few > > >>>> important differences: > > >>>> > > >>>> 1) It is not interactive. That makes it useful for scripting. > > >>>> > > >>>> 2) qmp-shell: > > >>>> > > >>>> (QEMU) set_password protocol=vnc password=foo > > >>>> > > >>>> 3) qmp: > > >>>> > > >>>> $ qmp set_password --protocol=vnc --password=foo > > >>>> > > >>>> 4) Extensible, git-style interface. If an invalid command name is passed, it > > >>>> will try to exec qmp-$1. > > >>>> > > >>>> 5) It attempts to pretty print the JSON responses in a shell friendly format > > >>>> such that tools can work with the output. > > >>>> > > >>>> Hope others will also find it useful. > > >>>> > > >>>> Signed-off-by: Anthony Liguori > > >>> > > >>> Acked-by: Luiz Capitulino > > >> > > >> BTW, one thing I'd like to try at some point soon is to generate man pages from > > >> qapi-schema.json. If you notice in the script, it does online help by invoking man. > > > > > > Yes, I did notice it. I didn't comment on it because I imagined you had plans > > > about it. > > > > > > PS: I don't think this needs to go through my tree. > > > > What do you want to do with qmp.py? Do you feel comfortable installing it in > > $PYTHONPATH and treating it as a supported API? > > I probably don't. I coded it as demo in the very beginning of QMP, maybe > we should first define what we expect from a QMP Python class then we > can see whether it fits or not... I feel it needs to be revamped. > It should not blocking, i.e. for event notification. I have a patch that fixes that but breaks tab-completion.