From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W5FiE-0001zp-CS for qemu-devel@nongnu.org; Mon, 20 Jan 2014 09:20:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W5Fi5-0006T1-DR for qemu-devel@nongnu.org; Mon, 20 Jan 2014 09:20:26 -0500 Received: from victor.provo.novell.com ([137.65.250.26]:54381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W5Fi5-0006SP-53 for qemu-devel@nongnu.org; Mon, 20 Jan 2014 09:20:17 -0500 From: Chunyan Liu Date: Mon, 20 Jan 2014 22:19:45 +0800 Message-Id: <1390227608-7225-3-git-send-email-cyliu@suse.com> In-Reply-To: <1390227608-7225-1-git-send-email-cyliu@suse.com> References: <1390227608-7225-1-git-send-email-cyliu@suse.com> Subject: [Qemu-devel] [v19 02/25] qapi: output def_value_str when query command line options List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, stefanha@redhat.com, kwolf@redhat.com Cc: Dong Xu Wang , Chunyan Liu Change qapi interfaces to output the newly added def_value_str when query command line options. Signed-off-by: Dong Xu Wang Signed-off-by: Chunyan Liu --- qapi-schema.json | 8 ++++++-- qmp-commands.hx | 2 ++ util/qemu-config.c | 4 ++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index f27c48a..e0729ed 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3891,12 +3891,16 @@ # # @help: #optional human readable text string, not suitable for parsing. # -# Since 1.5 +# @default: #optional string representation of the default used +# if the option is omitted. +# +# Since 1.6 ## { 'type': 'CommandLineParameterInfo', 'data': { 'name': 'str', 'type': 'CommandLineParameterType', - '*help': 'str' } } + '*help': 'str', + '*default': 'str'} } ## # @CommandLineOptionInfo: diff --git a/qmp-commands.hx b/qmp-commands.hx index 02cc815..2f25256 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -2742,6 +2742,8 @@ Each array entry contains the following: or 'size') - "help": human readable description of the parameter (json-string, optional) + - "default": default value string for the parameter + (json-string, optional) Example: diff --git a/util/qemu-config.c b/util/qemu-config.c index 7973659..c92d015 100644 --- a/util/qemu-config.c +++ b/util/qemu-config.c @@ -68,6 +68,10 @@ static CommandLineParameterInfoList *query_option_descs(const QemuOptDesc *desc) info->has_help = true; info->help = g_strdup(desc[i].help); } + if (desc[i].def_value_str) { + info->has_q_default = true; + info->q_default = g_strdup(desc[i].def_value_str); + } entry = g_malloc0(sizeof(*entry)); entry->value = info; -- 1.6.0.2