From patchwork Thu Nov 1 09:12:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Wang X-Patchwork-Id: 196100 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 193792C00C1 for ; Thu, 1 Nov 2012 20:25:21 +1100 (EST) Received: from localhost ([::1]:51844 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTqqj-00010Q-Ew for incoming@patchwork.ozlabs.org; Thu, 01 Nov 2012 05:14:05 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52297) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTqpn-0007el-Ij for qemu-devel@nongnu.org; Thu, 01 Nov 2012 05:13:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTqpl-0000ai-V9 for qemu-devel@nongnu.org; Thu, 01 Nov 2012 05:13:07 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:47759) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTqpl-0000XR-H3 for qemu-devel@nongnu.org; Thu, 01 Nov 2012 05:13:05 -0400 Received: by mail-pa0-f45.google.com with SMTP id fb10so1545097pad.4 for ; Thu, 01 Nov 2012 02:13:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=qtzknin1BasexcottB11y9xzMxEK1TJNxNCw7YbG380=; b=Z4X9TgpELKa8BuwDirEApx8llIw3gA3xGCoAJvMnZKSpRoW4Rm9aZpIisuOfpZNAga rqd9bud9edi6GKMuGO3tL6gV+sCJhezTCZsuqxvz0VuzxZbPVnFlen3znjeJ3iFTLokD XiS60Z2tF0WDaUph5x8fdraurkywYaU7YUmyRGWYeaxY6GpKc0pm+WlwWSSFCqWc03NO mo/7HqIPLWaXpHr3rSD68McVnG6olS3d93SO84MTVMnsQVxA8Um2feiZ6unQy6lvGWaT bzS+CcCS4pxNDqY39C6qXU5+KsjgSbgIQxqEXuKTw7Zeig1yRq300PMXLylku/yI2RDY LO+g== Received: by 10.68.200.227 with SMTP id jv3mr120047510pbc.162.1351761185266; Thu, 01 Nov 2012 02:13:05 -0700 (PDT) Received: from localhost.localdomain ([202.108.130.138]) by mx.google.com with ESMTPS id o11sm3751238pby.8.2012.11.01.02.13.02 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Nov 2012 02:13:04 -0700 (PDT) From: Dong Xu Wang To: qemu-devel@nongnu.org Date: Thu, 1 Nov 2012 17:12:28 +0800 Message-Id: <1351761150-20705-9-git-send-email-wdongxu@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1351761150-20705-1-git-send-email-wdongxu@linux.vnet.ibm.com> References: <1351761150-20705-1-git-send-email-wdongxu@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.220.45 Cc: kwolf@redhat.com, Dong Xu Wang Subject: [Qemu-devel] [PATCH V5 08/10] Create four opts list related functions X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This patch will create 4 functions, count_opts_list, append_opts_list, free_opts_list and print_opts_list, they will used in following commits. Signed-off-by: Dong Xu Wang --- qemu-option.c | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ qemu-option.h | 4 ++ 2 files changed, 94 insertions(+), 0 deletions(-) diff --git a/qemu-option.c b/qemu-option.c index e0628da..5dfbf35 100644 --- a/qemu-option.c +++ b/qemu-option.c @@ -1145,3 +1145,93 @@ int qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque, loc_pop(&loc); return rc; } + +static size_t count_opts_list(QemuOptsList *list) +{ + size_t i = 0; + + while (list && list->desc[i].name) { + i++; + } + + return i; +} + +/* Create a new QemuOptsList and make its desc to the merge of first and second. + * It will allocate space for one new QemuOptsList plus enouth space for + * QemuOptDesc in first and second QemuOptsList. First argument's QemuOptDesc + * members take precedence over second's. + */ +QemuOptsList *append_opts_list(QemuOptsList *first, + QemuOptsList *second) +{ + size_t num_first_options, num_second_options; + QemuOptsList *dest = NULL; + int i = 0; + int index = 0; + + num_first_options = count_opts_list(first); + num_second_options = count_opts_list(second); + if (num_first_options + num_second_options == 0) { + return NULL; + } + + dest = g_malloc0(sizeof(QemuOptsList) + + (num_first_options + num_second_options) * sizeof(QemuOptDesc)); + + dest->name = "append_opts_list"; + dest->implied_opt_name = NULL; + dest->merge_lists = false; + QTAILQ_INIT(&dest->head); + while (first && (first->desc[i].name)) { + if (!find_desc_by_name(dest->desc, first->desc[i].name)) { + dest->desc[index].name = g_strdup(first->desc[i].name); + dest->desc[index].help = g_strdup(first->desc[i].help); + dest->desc[index].type = first->desc[i].type; + dest->desc[index].def_print_str = + g_strdup(first->desc[i].def_print_str); + ++index; + } + i++; + } + i = 0; + while (second && (second->desc[i].name)) { + if (!find_desc_by_name(dest->desc, second->desc[i].name)) { + dest->desc[index].name = g_strdup(first->desc[i].name); + dest->desc[index].help = g_strdup(first->desc[i].help); + dest->desc[index].type = second->desc[i].type; + dest->desc[index].def_print_str = + g_strdup(second->desc[i].def_print_str); + ++index; + } + i++; + } + dest->desc[index].name = NULL; + return dest; +} + +void free_opts_list(QemuOptsList *list) +{ + int i = 0; + + while (list && list->desc[i].name) { + g_free((char *)list->desc[i].name); + g_free((char *)list->desc[i].help); + g_free((char *)list->desc[i].def_print_str); + i++; + } + + g_free(list); +} + +void print_opts_list(QemuOptsList *list) +{ + int i = 0; + printf("Supported options:\n"); + while (list && list->desc[i].name) { + printf("%-16s %s\n", list->desc[i].name, + list->desc[i].help ? + list->desc[i].help : "No description available"); + i++; + } +} diff --git a/qemu-option.h b/qemu-option.h index ab02023..091a2f2 100644 --- a/qemu-option.h +++ b/qemu-option.h @@ -156,4 +156,8 @@ int qemu_opts_print(QemuOpts *opts, void *dummy); int qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque, int abort_on_failure); +QemuOptsList *append_opts_list(QemuOptsList *dest, + QemuOptsList *list); +void free_opts_list(QemuOptsList *list); +void print_opts_list(QemuOptsList *list); #endif