mirror of
https://github.com/qemu/qemu.git
synced 2025-01-18 11:33:27 +08:00
monitor: Convert sendkey to use command_completion.
Signed-off-by: Hani Benhabiles <hani@linux.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
87a560c455
commit
29136cd8a4
@ -556,6 +556,7 @@ ETEXI
|
|||||||
.params = "keys [hold_ms]",
|
.params = "keys [hold_ms]",
|
||||||
.help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
|
.help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
|
||||||
.mhandler.cmd = hmp_send_key,
|
.mhandler.cmd = hmp_send_key,
|
||||||
|
.command_completion = sendkey_completion,
|
||||||
},
|
},
|
||||||
|
|
||||||
STEXI
|
STEXI
|
||||||
|
1
hmp.h
1
hmp.h
@ -97,5 +97,6 @@ void object_add_completion(ReadLineState *rs, int nb_args, const char *str);
|
|||||||
void object_del_completion(ReadLineState *rs, int nb_args, const char *str);
|
void object_del_completion(ReadLineState *rs, int nb_args, const char *str);
|
||||||
void device_add_completion(ReadLineState *rs, int nb_args, const char *str);
|
void device_add_completion(ReadLineState *rs, int nb_args, const char *str);
|
||||||
void device_del_completion(ReadLineState *rs, int nb_args, const char *str);
|
void device_del_completion(ReadLineState *rs, int nb_args, const char *str);
|
||||||
|
void sendkey_completion(ReadLineState *rs, int nb_args, const char *str);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
32
monitor.c
32
monitor.c
@ -4376,6 +4376,28 @@ void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
|
|||||||
qapi_free_ObjectPropertyInfoList(start);
|
qapi_free_ObjectPropertyInfoList(start);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
char *sep;
|
||||||
|
size_t len;
|
||||||
|
|
||||||
|
if (nb_args != 2) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
sep = strrchr(str, '-');
|
||||||
|
if (sep) {
|
||||||
|
str = sep + 1;
|
||||||
|
}
|
||||||
|
len = strlen(str);
|
||||||
|
readline_set_completion_index(rs, len);
|
||||||
|
for (i = 0; i < Q_KEY_CODE_MAX; i++) {
|
||||||
|
if (!strncmp(str, QKeyCode_lookup[i], len)) {
|
||||||
|
readline_add_completion(rs, QKeyCode_lookup[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void monitor_find_completion_by_table(Monitor *mon,
|
static void monitor_find_completion_by_table(Monitor *mon,
|
||||||
const mon_cmd_t *cmd_table,
|
const mon_cmd_t *cmd_table,
|
||||||
char **args,
|
char **args,
|
||||||
@ -4444,15 +4466,7 @@ static void monitor_find_completion_by_table(Monitor *mon,
|
|||||||
break;
|
break;
|
||||||
case 's':
|
case 's':
|
||||||
case 'S':
|
case 'S':
|
||||||
if (!strcmp(cmd->name, "sendkey")) {
|
if (!strcmp(cmd->name, "help|?")) {
|
||||||
char *sep = strrchr(str, '-');
|
|
||||||
if (sep)
|
|
||||||
str = sep + 1;
|
|
||||||
readline_set_completion_index(mon->rs, strlen(str));
|
|
||||||
for (i = 0; i < Q_KEY_CODE_MAX; i++) {
|
|
||||||
cmd_completion(mon, str, QKeyCode_lookup[i]);
|
|
||||||
}
|
|
||||||
} else if (!strcmp(cmd->name, "help|?")) {
|
|
||||||
monitor_find_completion_by_table(mon, cmd_table,
|
monitor_find_completion_by_table(mon, cmd_table,
|
||||||
&args[1], nb_args - 1);
|
&args[1], nb_args - 1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user