mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
qapi: output def_value_str when query command line options
Change qapi interfaces to output the newly added def_value_str when querying command line options. Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Leandro Dorileo <l@dorileo.org> Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com> Signed-off-by: Chunyan Liu <cyliu@suse.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
09722032e1
commit
e36af94f86
@ -2855,12 +2855,15 @@
|
|||||||
#
|
#
|
||||||
# @help: #optional human readable text string, not suitable for parsing.
|
# @help: #optional human readable text string, not suitable for parsing.
|
||||||
#
|
#
|
||||||
|
# @default: #optional default value string (since 2.1)
|
||||||
|
#
|
||||||
# Since 1.5
|
# Since 1.5
|
||||||
##
|
##
|
||||||
{ 'type': 'CommandLineParameterInfo',
|
{ 'type': 'CommandLineParameterInfo',
|
||||||
'data': { 'name': 'str',
|
'data': { 'name': 'str',
|
||||||
'type': 'CommandLineParameterType',
|
'type': 'CommandLineParameterType',
|
||||||
'*help': 'str' } }
|
'*help': 'str',
|
||||||
|
'*default': 'str' } }
|
||||||
|
|
||||||
##
|
##
|
||||||
# @CommandLineOptionInfo:
|
# @CommandLineOptionInfo:
|
||||||
|
@ -2898,6 +2898,8 @@ Each array entry contains the following:
|
|||||||
or 'size')
|
or 'size')
|
||||||
- "help": human readable description of the parameter
|
- "help": human readable description of the parameter
|
||||||
(json-string, optional)
|
(json-string, optional)
|
||||||
|
- "default": default value string for the parameter
|
||||||
|
(json-string, optional)
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
@ -82,6 +82,10 @@ static CommandLineParameterInfoList *query_option_descs(const QemuOptDesc *desc)
|
|||||||
info->has_help = true;
|
info->has_help = true;
|
||||||
info->help = g_strdup(desc[i].help);
|
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 = g_malloc0(sizeof(*entry));
|
||||||
entry->value = info;
|
entry->value = info;
|
||||||
|
Loading…
Reference in New Issue
Block a user