From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WMblS-0002wm-Mz for qemu-devel@nongnu.org; Sun, 09 Mar 2014 07:19:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WMblM-00009l-MG for qemu-devel@nongnu.org; Sun, 09 Mar 2014 07:19:30 -0400 Received: from mail-ea0-x236.google.com ([2a00:1450:4013:c01::236]:61545) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WMblM-00009e-FN for qemu-devel@nongnu.org; Sun, 09 Mar 2014 07:19:24 -0400 Received: by mail-ea0-f182.google.com with SMTP id b10so3193108eae.27 for ; Sun, 09 Mar 2014 04:19:23 -0700 (PDT) From: Hani Benhabiles Date: Sun, 9 Mar 2014 12:16:12 +0100 Message-Id: <1394363777-14132-3-git-send-email-kroosec@gmail.com> In-Reply-To: <1394363777-14132-1-git-send-email-kroosec@gmail.com> References: <1394363777-14132-1-git-send-email-kroosec@gmail.com> Subject: [Qemu-devel] [PATCH 2/7] monitor: Add chardev-remove id argument completion. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, imammedo@redhat.com, stefanha@redhat.com, lcapitulino@redhat.com Signed-off-by: Hani Benhabiles --- hmp-commands.hx | 1 + hmp.h | 2 ++ monitor.c | 23 +++++++++++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/hmp-commands.hx b/hmp-commands.hx index 4c4d261..4f0f053 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1630,6 +1630,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 558658f..162ccfa 100644 --- a/hmp.h +++ b/hmp.h @@ -96,5 +96,7 @@ void device_add_completion(Monitor *mon, int nb_args, const char *str); void device_del_completion(Monitor *mon, int nb_args, const char *str); void object_add_completion(Monitor *mon, int nb_args, const char *str); void object_del_completion(Monitor *mon, int nb_args, const char *str); +void chardev_remove_completion(Monitor *mon, int nb_args, const char *str); + #endif diff --git a/monitor.c b/monitor.c index 2c8528c..b79c0bd 100644 --- a/monitor.c +++ b/monitor.c @@ -4346,6 +4346,29 @@ static void device_del_bus_completion(ReadLineState *rs, BusState *bus, } } +void chardev_remove_completion(Monitor *mon, int nb_args, const char *str) +{ + size_t len; + ChardevInfoList *list, *start; + + if (nb_args != 2) { + return; + } + len = strlen(str); + readline_set_completion_index(mon->rs, len); + + start = list = qmp_query_chardev(NULL); + while (list) { + ChardevInfo *chr = list->value; + + if (!strncmp(chr->label, str, len)) { + readline_add_completion(mon->rs, chr->label); + } + list = list->next; + } + qapi_free_ChardevInfoList(start); +} + void device_del_completion(Monitor *mon, int nb_args, const char *str) { size_t len; -- 1.8.3.2