Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 58894431FD0 for ; Wed, 11 Jan 2012 00:17:14 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Tjj4mk9yjBqh for ; Wed, 11 Jan 2012 00:17:13 -0800 (PST) Received: from mail-qw0-f46.google.com (mail-qw0-f46.google.com [209.85.216.46]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 9702A431FB6 for ; Wed, 11 Jan 2012 00:17:13 -0800 (PST) Received: by qats34 with SMTP id s34so2564896qat.5 for ; Wed, 11 Jan 2012 00:17:12 -0800 (PST) Received: by 10.224.116.16 with SMTP id k16mr26394533qaq.28.1326269829950; Wed, 11 Jan 2012 00:17:09 -0800 (PST) Received: from localhost (nikula.org. [92.243.24.172]) by mx.google.com with ESMTPS id o8sm2215121qaj.0.2012.01.11.00.17.07 (version=SSLv3 cipher=OTHER); Wed, 11 Jan 2012 00:17:08 -0800 (PST) From: Jani Nikula To: Austin Clements , notmuch@notmuchmail.org Subject: Re: [PATCH 1/3] count: Convert to new-style argument parsing In-Reply-To: <1326258173-21163-2-git-send-email-amdragon@mit.edu> References: <20120109043101.GH20796@mit.edu> <1326258173-21163-1-git-send-email-amdragon@mit.edu> <1326258173-21163-2-git-send-email-amdragon@mit.edu> User-Agent: Notmuch/0.10.2+129~g8a76c81 (http://notmuchmail.org) Emacs/23.1.1 (i686-pc-linux-gnu) Date: Wed, 11 Jan 2012 08:17:05 +0000 Message-ID: <87zkdulkla.fsf@nikula.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jan 2012 08:17:14 -0000 On Wed, 11 Jan 2012 00:02:51 -0500, Austin Clements wrote: > --- > notmuch-count.c | 53 +++++++++++++++++++++++++---------------------------- > 1 files changed, 25 insertions(+), 28 deletions(-) > > diff --git a/notmuch-count.c b/notmuch-count.c > index 20ce334..fb7401b 100644 > --- a/notmuch-count.c > +++ b/notmuch-count.c > @@ -21,6 +21,11 @@ > > #include "notmuch-client.h" > > +typedef enum { > + OUTPUT_THREADS, > + OUTPUT_MESSAGES, > +} output_t; > + > int > notmuch_count_command (void *ctx, int argc, char *argv[]) > { > @@ -28,35 +33,23 @@ notmuch_count_command (void *ctx, int argc, char *argv[]) > notmuch_database_t *notmuch; > notmuch_query_t *query; > char *query_str; > - int i; > - notmuch_bool_t output_messages = TRUE; > + int opt_index; > + output_t output = OUTPUT_MESSAGES; > > - argc--; argv++; /* skip subcommand argument */ > + notmuch_opt_desc_t options[] = { > + { NOTMUCH_OPT_KEYWORD, &output, "output", 'o', > + (notmuch_keyword_t []){ { "threads", OUTPUT_THREADS }, > + { "messages", OUTPUT_MESSAGES }, > + { 0, 0 } } }, To be pedantic, parse_arguments() expects 'output_var' to be a pointer to int for NOTMUCH_OPT_KEYWORD. sizeof(enum) is implementation dependent. I would forget about output_t typedef, use plain enum, and int type for 'output'. In fact, this is exactly what I did in commits e6d89ad723f775952d89d4f81b6072617c5caf18 and be5619cca32452f1a398add85908d78d6e72f469. In the latter I could have used notmuch_bool_t because it's a typedeffed int, but then I would've depended on some external typedef not changing (it probably won't, but this is defensive programming). Otherwise, looks good. BR, Jani. > + { 0, 0, 0, 0, 0 } > + }; > > - for (i = 0; i < argc && argv[i][0] == '-'; i++) { > - if (strcmp (argv[i], "--") == 0) { > - i++; > - break; > - } > - if (STRNCMP_LITERAL (argv[i], "--output=") == 0) { > - const char *opt = argv[i] + sizeof ("--output=") - 1; > - if (strcmp (opt, "threads") == 0) { > - output_messages = FALSE; > - } else if (strcmp (opt, "messages") == 0) { > - output_messages = TRUE; > - } else { > - fprintf (stderr, "Invalid value for --output: %s\n", opt); > - return 1; > - } > - } else { > - fprintf (stderr, "Unrecognized option: %s\n", argv[i]); > - return 1; > - } > + opt_index = parse_arguments (argc, argv, options, 1); > + > + if (opt_index < 0) { > + return 1; > } > > - argc -= i; > - argv += i; > - > config = notmuch_config_open (ctx, NULL, NULL); > if (config == NULL) > return 1; > @@ -66,7 +59,7 @@ notmuch_count_command (void *ctx, int argc, char *argv[]) > if (notmuch == NULL) > return 1; > > - query_str = query_string_from_args (ctx, argc, argv); > + query_str = query_string_from_args (ctx, argc-opt_index, argv+opt_index); > if (query_str == NULL) { > fprintf (stderr, "Out of memory.\n"); > return 1; > @@ -82,10 +75,14 @@ notmuch_count_command (void *ctx, int argc, char *argv[]) > return 1; > } > > - if (output_messages) > + switch (output) { > + case OUTPUT_MESSAGES: > printf ("%u\n", notmuch_query_count_messages (query)); > - else > + break; > + case OUTPUT_THREADS: > printf ("%u\n", notmuch_query_count_threads (query)); > + break; > + } > > notmuch_query_destroy (query); > notmuch_database_close (notmuch); > -- > 1.7.7.3 > > _______________________________________________ > notmuch mailing list > notmuch@notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch