From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NBAAI-0004pw-S4 for qemu-devel@nongnu.org; Thu, 19 Nov 2009 11:47:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NBAAD-0004g5-6K for qemu-devel@nongnu.org; Thu, 19 Nov 2009 11:47:26 -0500 Received: from [199.232.76.173] (port=52159 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NBAAC-0004fk-VK for qemu-devel@nongnu.org; Thu, 19 Nov 2009 11:47:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55393) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NBAAC-0002l9-Dj for qemu-devel@nongnu.org; Thu, 19 Nov 2009 11:47:20 -0500 Date: Thu, 19 Nov 2009 14:47:08 -0200 From: Luiz Capitulino Message-ID: <20091119144708.6e00306b@doriath> In-Reply-To: <4B05623E.5080903@redhat.com> References: <1258643623-8636-1-git-send-email-lcapitulino@redhat.com> <4B05623E.5080903@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [RFC v0 00/15] QEMU Monitor Protocol List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org On Thu, 19 Nov 2009 17:20:30 +0200 Avi Kivity wrote: > On 11/19/2009 05:13 PM, Luiz Capitulino wrote: > > Hi, > > > > This is not stable yet, it has a few bugs and a number of things to > > be done, but I'm sending it now so that it can get an initial review > > while I'm working on it. > > > > At the end of the series there are two simple Python scripts which are > > able to talk to QEMU by using QMP. > > > > Main issues are: > > > > o Not all errors are being detected/handled correctly > > o Not using the stream parser to read the input > > > > If you want to try this, you need at least the latest version of QError, > > and the conversions series to make this really useful. > > > > Can you post a capture of a few monitor commands through the new protocol? Here goes, it's a telnet session: """ {"QMP": {"capabilities": []}} { "execute": "info", "arguments": { "item": "balloon" } } {"return": 1024} { "execute": "balloon", "arguments": { "value": 512 } } {"return": "OK"} { "execute": "info", "arguments": { "item": "balloon" } } {"return": 512} { "execute": "info", "arguments": { "item": "network" } } {"return": [{"devices": [{"name": "user.0", "info": "net=10.0.2.0, restricted=n"}, {"name": "e1000.0", "info": "model=e1000,macaddr=52:54:00:12:34:56"}], "id": 0}]} { "execute": "pci_add", "arguments": { "pci_addr": "auto", "type": "nic" } } {"return": {"bus": 0, "slot": 5, "domain": 0, "function": 0}} { "execute": "info", "arguments": { "item": "network" } } {"return": [{"devices": [{"name": "user.0", "info": "net=10.0.2.0, restricted=n"}, {"name": "e1000.0", "info": "model=e1000,macaddr=52:54:00:12:34:56"}, {"name": "rtl8139.0", "info": "model=rtl8139,macaddr=52:54:00:12:34:57"}], "id": 0}]} { "execute": "migrate", "arguments": { "detach": "-d", "uri": "tcp:localhost:4445" } } {"error": {"class": "InvalidParameter", "data": {"parameter": "detach", "reason": "must be an integer"}}} """