mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
QAPI patches for 2017-05-04
-----BEGIN PGP SIGNATURE----- iQIcBAABAgAGBQJZEWy8AAoJEDhwtADrkYZTLAUP+wYCBQs3weLNpLWa37qpACTi 1+MJ5T6xwpcdrGhSVKUoPXe4EigZpsKPcxfD0PxqFMqNjGfwvN6iERKMaQOD16kE Lgs3rE9Ls7SumWd9MEB838BbMBcZjOixyJCqIXc4bAT7kDGJ9S7wrSZJhbRmCaAn dNR+VHOZd0YWWlPiGhhy3oOtP7aClwH4AORdFRdaxv7DyvLB4CklRBmIumvi3HBv +kzIjlDBIkW9STsF/O/7k5NHWHv9SfSJ4Wz4Z1ROZIVhEic8TQafksRh0+YvZ2Mh smAhixXflibLF61ExVT7WbMwmasZ4chLzljq5z1K4nQiorcspmZ7x9Zit84TVaXC kBFOHWYb7w5KnnN9VwuQqJ8GAUERhcZJgnA93nlRVMtt46pczqN9lgPNvhAi9/uo jOaYpNEkYZvZB3m4PvTyB9771gL/i3HzfqN5jAdCR/+9l8wHC7zNtsWQ9gWm6vl5 GBdvIjrX0v71scxJXiK93mj02gBROCRb977SU5DWC9SmrzK11a93XP2E8MXBSdJz eFLwY+rTPorbxjMco1PPkTWztoFXfj1tYzk8E6GVh8nOn6yijaNn+vaUdIOJYwox RbxWhvURy/nuoXnhPGFO5CkoxdSLMbOGWoq9OVz4mPITQH2jlOSDWpzuIoRCkNa5 kPKw8cXlZQeztYHFq3Wt =KJss -----END PGP SIGNATURE----- Merge remote-tracking branch 'armbru/tags/pull-qapi-2017-05-04-v3' into staging QAPI patches for 2017-05-04 # gpg: Signature made Tue 09 May 2017 03:16:12 AM EDT # gpg: using RSA key 0x3870B400EB918653 # gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" # gpg: aka "Markus Armbruster <armbru@pond.sub.org>" # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * armbru/tags/pull-qapi-2017-05-04-v3: (28 commits) qmp-shell: improve help qmp-shell: don't show version greeting if unavailable qmp-shell: Cope with query-commands error qmp-shell: add -N option to skip negotiate qmp-shell: add persistent command history qobject-input-visitor: Catch misuse of end_struct vs. end_list qapi: Document intended use of @name within alternate visits qobject-input-visitor: Document full_name_nth() qmp: Improve QMP dispatch error messages sockets: Delete unused helper socket_address_crumple() sockets: Limit SocketAddressLegacy to external interfaces sockets: Rename SocketAddressFlat to SocketAddress sockets: Rename SocketAddress to SocketAddressLegacy qapi: New QAPI_CLONE_MEMBERS() sockets: Prepare inet_parse() for flattened SocketAddress sockets: Prepare vsock_parse() for flattened SocketAddress test-qga: Actually test 0xff sync bytes fdc-test: Avoid deprecated 'change' command QemuOpts: Simplify qemu_opts_to_qdict() block: Simplify bdrv_append_temp_snapshot() logic ... Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
commit
76d20ea0f1
71 changed files with 805 additions and 668 deletions
35
scripts/coccinelle/qobject.cocci
Normal file
35
scripts/coccinelle/qobject.cocci
Normal file
|
@ -0,0 +1,35 @@
|
|||
// Use QDict macros where they make sense
|
||||
@@
|
||||
expression Obj, Key, E;
|
||||
@@
|
||||
(
|
||||
- qdict_put_obj(Obj, Key, QOBJECT(E));
|
||||
+ qdict_put(Obj, Key, E);
|
||||
|
|
||||
- qdict_put(Obj, Key, qint_from_int(E));
|
||||
+ qdict_put_int(Obj, Key, E);
|
||||
|
|
||||
- qdict_put(Obj, Key, qbool_from_bool(E));
|
||||
+ qdict_put_bool(Obj, Key, E);
|
||||
|
|
||||
- qdict_put(Obj, Key, qstring_from_str(E));
|
||||
+ qdict_put_str(Obj, Key, E);
|
||||
)
|
||||
|
||||
// Use QList macros where they make sense
|
||||
@@
|
||||
expression Obj, E;
|
||||
@@
|
||||
(
|
||||
- qlist_append_obj(Obj, QOBJECT(E));
|
||||
+ qlist_append(Obj, E);
|
||||
|
|
||||
- qlist_append(Obj, qint_from_int(E));
|
||||
+ qlist_append_int(Obj, E);
|
||||
|
|
||||
- qlist_append(Obj, qbool_from_bool(E));
|
||||
+ qlist_append_bool(Obj, E);
|
||||
|
|
||||
- qlist_append(Obj, qstring_from_str(E));
|
||||
+ qlist_append_str(Obj, E);
|
||||
)
|
|
@ -70,6 +70,9 @@ import json
|
|||
import ast
|
||||
import readline
|
||||
import sys
|
||||
import os
|
||||
import errno
|
||||
import atexit
|
||||
|
||||
class QMPCompleter(list):
|
||||
def complete(self, text, state):
|
||||
|
@ -109,6 +112,8 @@ class QMPShell(qmp.QEMUMonitorProtocol):
|
|||
self._pretty = pretty
|
||||
self._transmode = False
|
||||
self._actions = list()
|
||||
self._histfile = os.path.join(os.path.expanduser('~'),
|
||||
'.qmp-shell_history')
|
||||
|
||||
def __get_address(self, arg):
|
||||
"""
|
||||
|
@ -126,17 +131,36 @@ class QMPShell(qmp.QEMUMonitorProtocol):
|
|||
return arg
|
||||
|
||||
def _fill_completion(self):
|
||||
for cmd in self.cmd('query-commands')['return']:
|
||||
cmds = self.cmd('query-commands')
|
||||
if cmds.has_key('error'):
|
||||
return
|
||||
for cmd in cmds['return']:
|
||||
self._completer.append(cmd['name'])
|
||||
|
||||
def __completer_setup(self):
|
||||
self._completer = QMPCompleter()
|
||||
self._fill_completion()
|
||||
readline.set_history_length(1024)
|
||||
readline.set_completer(self._completer.complete)
|
||||
readline.parse_and_bind("tab: complete")
|
||||
# XXX: default delimiters conflict with some command names (eg. query-),
|
||||
# clearing everything as it doesn't seem to matter
|
||||
readline.set_completer_delims('')
|
||||
try:
|
||||
readline.read_history_file(self._histfile)
|
||||
except Exception as e:
|
||||
if isinstance(e, IOError) and e.errno == errno.ENOENT:
|
||||
# File not found. No problem.
|
||||
pass
|
||||
else:
|
||||
print "Failed to read history '%s'; %s" % (self._histfile, e)
|
||||
atexit.register(self.__save_history)
|
||||
|
||||
def __save_history(self):
|
||||
try:
|
||||
readline.write_history_file(self._histfile)
|
||||
except Exception as e:
|
||||
print "Failed to save history file '%s'; %s" % (self._histfile, e)
|
||||
|
||||
def __parse_value(self, val):
|
||||
try:
|
||||
|
@ -256,12 +280,15 @@ class QMPShell(qmp.QEMUMonitorProtocol):
|
|||
self._print(resp)
|
||||
return True
|
||||
|
||||
def connect(self):
|
||||
self._greeting = qmp.QEMUMonitorProtocol.connect(self)
|
||||
def connect(self, negotiate):
|
||||
self._greeting = qmp.QEMUMonitorProtocol.connect(self, negotiate)
|
||||
self.__completer_setup()
|
||||
|
||||
def show_banner(self, msg='Welcome to the QMP low-level shell!'):
|
||||
print msg
|
||||
if not self._greeting:
|
||||
print 'Connected'
|
||||
return
|
||||
version = self._greeting['QMP']['version']['qemu']
|
||||
print 'Connected to QEMU %d.%d.%d\n' % (version['major'],version['minor'],version['micro'])
|
||||
|
||||
|
@ -369,7 +396,11 @@ def die(msg):
|
|||
def fail_cmdline(option=None):
|
||||
if option:
|
||||
sys.stderr.write('ERROR: bad command-line option \'%s\'\n' % option)
|
||||
sys.stderr.write('qemu-shell [ -v ] [ -p ] [ -H ] < UNIX socket path> | < TCP address:port >\n')
|
||||
sys.stderr.write('qmp-shell [ -v ] [ -p ] [ -H ] [ -N ] < UNIX socket path> | < TCP address:port >\n')
|
||||
sys.stderr.write(' -v Verbose (echo command sent and received)\n')
|
||||
sys.stderr.write(' -p Pretty-print JSON\n')
|
||||
sys.stderr.write(' -H Use HMP interface\n')
|
||||
sys.stderr.write(' -N Skip negotiate (for qemu-ga)\n')
|
||||
sys.exit(1)
|
||||
|
||||
def main():
|
||||
|
@ -378,6 +409,7 @@ def main():
|
|||
hmp = False
|
||||
pretty = False
|
||||
verbose = False
|
||||
negotiate = True
|
||||
|
||||
try:
|
||||
for arg in sys.argv[1:]:
|
||||
|
@ -387,6 +419,8 @@ def main():
|
|||
hmp = True
|
||||
elif arg == "-p":
|
||||
pretty = True
|
||||
elif arg == "-N":
|
||||
negotiate = False
|
||||
elif arg == "-v":
|
||||
verbose = True
|
||||
else:
|
||||
|
@ -404,7 +438,7 @@ def main():
|
|||
die('bad port number in command-line')
|
||||
|
||||
try:
|
||||
qemu.connect()
|
||||
qemu.connect(negotiate)
|
||||
except qmp.QMPConnectError:
|
||||
die('Didn\'t get QMP greeting message')
|
||||
except qmp.QMPCapabilitiesError:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue