3 # QEMU Object Model test tools
5 # Copyright IBM, Corp. 2011
6 # Copyright (c) 2013 SUSE LINUX Products GmbH
12 # This work is licensed under the terms of the GNU GPL, version 2 or later. See
13 # the COPYING file in the top-level directory.
16 from __future__ import print_function
19 from qmp import QEMUMonitorProtocol
21 cmd, args = sys.argv[0], sys.argv[1:]
27 return '''environment variables:
28 QMP_SOCKET=<path | addr:port>
30 %s [-h] [-s <QMP socket path | addr:port>] [<path>]
33 def usage_error(error_msg = "unspecified error"):
34 sys.stderr.write('%s\nERROR: %s\n' % (usage(), error_msg))
45 usage_error("missing argument: QMP socket path or address");
49 if 'QMP_SOCKET' in os.environ:
50 socket_path = os.environ['QMP_SOCKET']
52 usage_error("no QMP socket path or address given");
54 srv = QEMUMonitorProtocol(socket_path)
59 items = srv.command('qom-list', path=path)
61 if not item['type'].startswith('child<'):
63 print(' %s: %s (%s)' % (item['name'], srv.command('qom-get', path=path, property=item['name']), item['type']))
65 print(' %s: <EXCEPTION> (%s)' % (item['name'], item['type']))
68 if item['type'].startswith('child<'):
69 list_node((path if (path != '/') else '') + '/' + item['name'])