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 9D11A431FBD for ; Sun, 27 May 2012 01:22:33 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, 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 SXX8T2u0axaf for ; Sun, 27 May 2012 01:22:33 -0700 (PDT) Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 063E0431FBC for ; Sun, 27 May 2012 01:22:32 -0700 (PDT) Received: by mail-wi0-f179.google.com with SMTP id hr14so647090wib.2 for ; Sun, 27 May 2012 01:22:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=/kg2Vyq9tuKaceAyamAWHfWEPBsAK9+XZadak2q92+s=; b=YaItgOfnfyfGzgPwjQKRl3kqGL6b7PluapsXAdNhg/LnLGOX2cNeYn3c6/YQyvTu4G cjUbd/MaDGwyA/73Cjv1WGPXo526kPmIhl7VR13XtxsmkzRfWT7JKPQqjSi8wImA/9pR LQFgUV5TqM+hJKHvNVJiMaqI6BFqBkornREUv2JZTWKYX8wh4N2iS6C1zCR135PyzuV0 mewCg5tZD9nrhs6Y3S1SXEurWOlZ7pZupcYgSJHs2K7KtdonhJfxSV4KX0WzTMya486g ey8qa0w+FiCkesax1t1LnKfc8ptDQXlyiPOhwhv9G4t3Px07ln+hmk2TxlpvhB85MKHq MahQ== Received: by 10.180.99.195 with SMTP id es3mr7662973wib.12.1338106952698; Sun, 27 May 2012 01:22:32 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id gv4sm18143624wib.8.2012.05.27.01.22.31 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 27 May 2012 01:22:31 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v6 1/6] cli: command line parsing: allow default for keyword options Date: Sun, 27 May 2012 09:22:21 +0100 Message-Id: <1338106946-7611-2-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1338106946-7611-1-git-send-email-markwalters1009@gmail.com> References: <1338106946-7611-1-git-send-email-markwalters1009@gmail.com> 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: Sun, 27 May 2012 08:22:33 -0000 This changes the parsing for "keyword" options so that if the option is specified with no argument the argument is parsed as if it were passed an empty string. This make it easier to add options to existing boolean arguments (the existing --option can default to TRUE). --- command-line-arguments.c | 17 +++++++++++++---- 1 files changed, 13 insertions(+), 4 deletions(-) diff --git a/command-line-arguments.c b/command-line-arguments.c index 76b185f..2fb8a1b 100644 --- a/command-line-arguments.c +++ b/command-line-arguments.c @@ -11,10 +11,15 @@ */ static notmuch_bool_t -_process_keyword_arg (const notmuch_opt_desc_t *arg_desc, const char *arg_str) { +_process_keyword_arg (const notmuch_opt_desc_t *arg_desc, char next, const char *arg_str) { const notmuch_keyword_t *keywords = arg_desc->keywords; + if (next == 0) { + /* No keyword given */ + arg_str=""; + } + while (keywords->name) { if (strcmp (arg_str, keywords->name) == 0) { if (arg_desc->output_var) { @@ -24,7 +29,10 @@ _process_keyword_arg (const notmuch_opt_desc_t *arg_desc, const char *arg_str) { } keywords++; } - fprintf (stderr, "unknown keyword: %s\n", arg_str); + if (next!=0) + fprintf (stderr, "unknown keyword: %s\n", arg_str); + else + fprintf (stderr, "option %s needs a keyword\n", arg_desc->name); return FALSE; } @@ -99,7 +107,8 @@ parse_option (const char *arg, */ if (next != '=' && next != ':' && next != 0) return FALSE; if (next == 0) { - if (try->opt_type != NOTMUCH_OPT_BOOLEAN) + if (try->opt_type != NOTMUCH_OPT_BOOLEAN && + try->opt_type != NOTMUCH_OPT_KEYWORD) return FALSE; } else { if (value[0] == 0) return FALSE; @@ -110,7 +119,7 @@ parse_option (const char *arg, switch (try->opt_type) { case NOTMUCH_OPT_KEYWORD: - return _process_keyword_arg (try, value); + return _process_keyword_arg (try, next, value); break; case NOTMUCH_OPT_BOOLEAN: return _process_boolean_arg (try, next, value); -- 1.7.9.1