From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50448) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Utf9A-000691-Jl for qemu-devel@nongnu.org; Mon, 01 Jul 2013 10:32:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Utf99-0002KK-9X for qemu-devel@nongnu.org; Mon, 01 Jul 2013 10:32:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60549) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Utf99-0002KC-1y for qemu-devel@nongnu.org; Mon, 01 Jul 2013 10:32:03 -0400 From: Kevin Wolf Date: Mon, 1 Jul 2013 16:31:50 +0200 Message-Id: <1372689112-8093-2-git-send-email-kwolf@redhat.com> In-Reply-To: <1372689112-8093-1-git-send-email-kwolf@redhat.com> References: <1372689112-8093-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH v3 1/3] qapi.py: Avoid code duplication List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, armbru@redhat.com, mdroth@linux.vnet.ibm.com, lcapitulino@redhat.com, stefanha@redhat.com The code that interprets the read JSON expression and appends types to the respective global variables was duplicated. We can avoid that by splitting off the part that reads from the file. Signed-off-by: Kevin Wolf --- scripts/qapi.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/qapi.py b/scripts/qapi.py index 02ad668..3139994 100644 --- a/scripts/qapi.py +++ b/scripts/qapi.py @@ -78,10 +78,8 @@ def parse(tokens): def evaluate(string): return parse(map(lambda x: x, tokenize(string)))[0] -def parse_schema(fp): - exprs = [] +def get_expr(fp): expr = '' - expr_eval = None for line in fp: if line.startswith('#') or line == '\n': @@ -90,18 +88,20 @@ def parse_schema(fp): if line.startswith(' '): expr += line elif expr: - expr_eval = evaluate(expr) - if expr_eval.has_key('enum'): - add_enum(expr_eval['enum']) - elif expr_eval.has_key('union'): - add_enum('%sKind' % expr_eval['union']) - exprs.append(expr_eval) + yield expr expr = line else: expr += line if expr: + yield expr + +def parse_schema(fp): + exprs = [] + + for expr in get_expr(fp): expr_eval = evaluate(expr) + if expr_eval.has_key('enum'): add_enum(expr_eval['enum']) elif expr_eval.has_key('union'): -- 1.8.1.4