From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59895) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiAXA-0005H4-8S for qemu-devel@nongnu.org; Wed, 07 May 2014 18:41:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WiAX2-000338-A4 for qemu-devel@nongnu.org; Wed, 07 May 2014 18:41:52 -0400 Received: from mail-wi0-x230.google.com ([2a00:1450:400c:c05::230]:38649) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiAX2-00032s-3M for qemu-devel@nongnu.org; Wed, 07 May 2014 18:41:44 -0400 Received: by mail-wi0-f176.google.com with SMTP id n15so7168570wiw.15 for ; Wed, 07 May 2014 15:41:43 -0700 (PDT) From: Hani Benhabiles Date: Wed, 7 May 2014 23:41:28 +0100 Message-Id: <1399502492-6188-3-git-send-email-kroosec@gmail.com> In-Reply-To: <1399502492-6188-1-git-send-email-kroosec@gmail.com> References: <1399502492-6188-1-git-send-email-kroosec@gmail.com> Subject: [Qemu-devel] [PATCH 2/6] monitor: Add chardev-remove command completion. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kraxel@redhat.com, lcapitulino@redhat.com Signed-off-by: Hani Benhabiles --- hmp-commands.hx | 1 + hmp.h | 1 + monitor.c | 23 +++++++++++++++++++++++ 3 files changed, 25 insertions(+) diff --git a/hmp-commands.hx b/hmp-commands.hx index b4b23c8..ba88e2a 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1639,6 +1639,7 @@ ETEXI .params = "id", .help = "remove chardev", .mhandler.cmd = hmp_chardev_remove, + .command_completion = chardev_remove_completion, }, STEXI diff --git a/hmp.h b/hmp.h index 12e21e7..affc2b6 100644 --- a/hmp.h +++ b/hmp.h @@ -98,5 +98,6 @@ 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_del_completion(ReadLineState *rs, int nb_args, const char *str); void sendkey_completion(ReadLineState *rs, int nb_args, const char *str); +void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str); #endif diff --git a/monitor.c b/monitor.c index 7ef251c..6316a29 100644 --- a/monitor.c +++ b/monitor.c @@ -4322,6 +4322,29 @@ static void device_del_bus_completion(ReadLineState *rs, BusState *bus, } } +void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str) +{ + size_t len; + ChardevInfoList *list, *start; + + if (nb_args != 2) { + return; + } + len = strlen(str); + readline_set_completion_index(rs, len); + + start = list = qmp_query_chardev(NULL); + while (list) { + ChardevInfo *chr = list->value; + + if (!strncmp(chr->label, str, len)) { + readline_add_completion(rs, chr->label); + } + list = list->next; + } + qapi_free_ChardevInfoList(start); +} + void device_del_completion(ReadLineState *rs, int nb_args, const char *str) { size_t len; -- 1.8.3.2