From nobody Tue Feb 10 16:22:40 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@gnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@gnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1506959621873632.9728719332579; Mon, 2 Oct 2017 08:53:41 -0700 (PDT) Received: from localhost ([::1]:52951 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dz32I-0007Qn-4t for importer@patchew.org; Mon, 02 Oct 2017 11:53:38 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dz2bh-00082O-9f for qemu-devel@nongnu.org; Mon, 02 Oct 2017 11:26:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dz2bb-0007xl-Sz for qemu-devel@nongnu.org; Mon, 02 Oct 2017 11:26:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58342) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dz2bb-0007wM-HE for qemu-devel@nongnu.org; Mon, 02 Oct 2017 11:26:03 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 714E2C04AC70; Mon, 2 Oct 2017 15:26:02 +0000 (UTC) Received: from blackfin.pond.sub.org (ovpn-116-91.ams2.redhat.com [10.36.116.91]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 272C099DDB; Mon, 2 Oct 2017 15:26:02 +0000 (UTC) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id CC8C011562EC; Mon, 2 Oct 2017 17:25:52 +0200 (CEST) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 714E2C04AC70 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=armbru@redhat.com From: Markus Armbruster To: qemu-devel@nongnu.org Date: Mon, 2 Oct 2017 17:25:45 +0200 Message-Id: <20171002152552.27999-26-armbru@redhat.com> In-Reply-To: <20171002152552.27999-1-armbru@redhat.com> References: <20171002152552.27999-1-armbru@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Mon, 02 Oct 2017 15:26:02 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [RFC PATCH 25/32] qapi-introspect: Include command line options information X-BeenThere: qemu-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: marcandre.lureau@redhat.com, mdroth@linux.vnet.ibm.com Errors-To: qemu-devel-bounces+importer=patchew.org@gnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Make query-qmp-schema describe command line options in addition to QMP commands and events. Simple, but it pushes query-qmp-schema beyond QMP. Perhaps options introspection should be separate. Perhaps not for the same reason QMP and command line are defined in the same schema: they share many types. Signed-off-by: Markus Armbruster --- qapi/introspect.json | 22 ++++++++++++++++++++-- scripts/qapi-introspect.py | 10 +++++++++- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/qapi/introspect.json b/qapi/introspect.json index 5b3e6e9d78..0b6be5b19c 100644 --- a/qapi/introspect.json +++ b/qapi/introspect.json @@ -70,11 +70,13 @@ # # @event: a QMP event # +# @option: a command line option (since 2.11) +# # Since: 2.5 ## { 'enum': 'SchemaMetaType', 'data': [ 'builtin', 'enum', 'array', 'object', 'alternate', - 'command', 'event' ] } + 'command', 'event', 'option' ] } =20 ## # @SchemaInfo: @@ -103,7 +105,8 @@ 'object': 'SchemaInfoObject', 'alternate': 'SchemaInfoAlternate', 'command': 'SchemaInfoCommand', - 'event': 'SchemaInfoEvent' } } + 'event': 'SchemaInfoEvent', + 'option': 'SchemaInfoOption' } } =20 ## # @SchemaInfoBuiltin: @@ -278,3 +281,18 @@ ## { 'struct': 'SchemaInfoEvent', 'data': { 'arg-type': 'str' } } + +## +# @SchemaInfoOption: +# +# Additional SchemaInfo members for meta-type 'option'. +# +# @arg-type: the name of the object type that provides the option's +# parameters. +# +# @short: the option character, if any. +# +# Since: 2.11 +## +{ 'struct': 'SchemaInfoOption', + 'data': { 'arg-type': 'str', '*short': 'str' } } diff --git a/scripts/qapi-introspect.py b/scripts/qapi-introspect.py index 52404b07ab..650e5597b0 100644 --- a/scripts/qapi-introspect.py +++ b/scripts/qapi-introspect.py @@ -108,7 +108,7 @@ const char %(c_name)s[] =3D %(c_string)s; return self._name(typ.name) =20 def _gen_json(self, name, mtype, obj): - if mtype not in ('command', 'event', 'builtin', 'array'): + if mtype not in ('command', 'event', 'option', 'builtin', 'array'): name =3D self._name(name) obj['name'] =3D name obj['meta-type'] =3D mtype @@ -161,6 +161,14 @@ const char %(c_name)s[] =3D %(c_string)s; arg_type =3D arg_type or self._schema.the_empty_object_type self._gen_json(name, 'event', {'arg-type': self._use_type(arg_type= )}) =20 + def visit_option(self, name, info, arg_type, short, implied_key, + boxed, help_): + arg_type =3D arg_type or self._schema.the_empty_object_type + obj =3D {'arg-type': self._use_type(arg_type)} + if short: + obj['short'] =3D short + self._gen_json(name, 'option', obj) + parser =3D common_argument_parser() # Debugging aid: unmask QAPI schema's type names # We normally mask them, because they're not QMP wire ABI --=20 2.13.6