1. 18 9月, 2013 1 次提交
  2. 12 9月, 2013 1 次提交
  3. 24 10月, 2012 2 次提交
  4. 26 9月, 2012 2 次提交
  5. 23 2月, 2012 1 次提交
  6. 01 6月, 2011 2 次提交
  7. 17 11月, 2010 1 次提交
    • L
      QMP: Revamp the Python class example · 1d00a07d
      Luiz Capitulino 提交于
      This commit simplifies and fixes a number of problems in the Python
      QEMUMonitorProtocol example class.
      
      It's almost a rewrite and it DOES BREAK the qmp-shell script (which
      is going to be fixed in the next commit).
      
      However, I'm not going to split this in different commits because it
      could get up to 10 commits, it's really not worth it for a simple
      demo class.
      
      Highlights:
      
       o TCP sockets support
       o QMP events support
       o Add documentation
       o Fix a number of unhandled errors
       o Simplify methods that send commands to the Monitor
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      1d00a07d
  8. 02 7月, 2010 1 次提交
  9. 03 12月, 2009 1 次提交
    • L
      QMP: Introduce qmp-shell · cedebdac
      Luiz Capitulino 提交于
      This is a very simple shell written in Python for demonstration
      purposes.
      
      Unfortunately it's a bit awkward right now, as the user has
      to specify the arguments names and the printed data can be
      a raw dictionary or list, like the following example:
      
      (QEMU) pci_add pci_addr=auto type=nic
      {u'slot': 5, u'bus': 0, u'domain': 0, u'function': 0}
      (QEMU)
      
      It's worth to note that the shell is broken into two files.
      One is the shell itself, the other is the QMP class which
      handles the communication with QEMU.
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      cedebdac