Re: [PATCH v2 2/3] cli: refactor "notmuch tag" query tagging into a separate function
authorTomi Ollila <tomi.ollila@iki.fi>
Sun, 25 Mar 2012 20:45:39 +0000 (23:45 +0300)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:45:44 +0000 (09:45 -0800)
13/20e1ff2c0a543910791c42b7b5bf98dd03551a [new file with mode: 0644]

diff --git a/13/20e1ff2c0a543910791c42b7b5bf98dd03551a b/13/20e1ff2c0a543910791c42b7b5bf98dd03551a
new file mode 100644 (file)
index 0000000..b639451
--- /dev/null
@@ -0,0 +1,234 @@
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 3CA5F431FAF\r
+       for <notmuch@notmuchmail.org>; Sun, 25 Mar 2012 13:45:42 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id e-2IhMkHqoPm for <notmuch@notmuchmail.org>;\r
+       Sun, 25 Mar 2012 13:45:41 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru-group.fi [87.108.86.66])\r
+       by olra.theworths.org (Postfix) with ESMTP id 317EB431FAE\r
+       for <notmuch@notmuchmail.org>; Sun, 25 Mar 2012 13:45:41 -0700 (PDT)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+       id CD4E668055; Sun, 25 Mar 2012 23:45:39 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Jani Nikula <jani@nikula.org>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH v2 2/3] cli: refactor "notmuch tag" query tagging into a\r
+       separate function\r
+In-Reply-To:\r
+ <584067da00dd9f04a7f3982b76fd4b4918e4fe61.1332702915.git.jani@nikula.org>\r
+References: <cover.1332702915.git.jani@nikula.org>\r
+       <584067da00dd9f04a7f3982b76fd4b4918e4fe61.1332702915.git.jani@nikula.org>User-Agent:    Notmuch/0.12+71~gdacf76b (http://notmuchmail.org) Emacs/23.3.1\r
+       (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+       $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+       !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Sun, 25 Mar 2012 23:45:39 +0300\r
+Message-ID: <m262dse7f0.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain; charset=us-ascii\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 25 Mar 2012 20:45:42 -0000\r
+\r
+Jani Nikula <jani@nikula.org> writes:\r
+\r
+> Refactor to make tagging code easier to reuse in the future. No\r
+> functional changes.\r
+>\r
+> Signed-off-by: Jani Nikula <jani@nikula.org>\r
+> ---\r
+\r
+tag_query() is pretty generic name for a function which (also) does\r
+tagging operations (adds and removes tags based on tag_ops).\r
+\r
+If, however, tag_opts != NULL (as is needs to be) but tag_opts[0] == NULL\r
+(now tag_query() would not do any tagging operations, but\r
+optimize_tag_query would mangle query string ( '*' to '()' and \r
+'any_other' to '( any_other ) and ()' )\r
+\r
+I.e. IMO the function name should be more spesific & the fact that this\r
+function needs tag changing data in tag_ops array should be documented.\r
+\r
+---\r
+\r
+Minor thing in patch #1:\r
+\r
+ +         tag_ops[tag_ops_count].remove = argv[i][0] == '-';\r
+\r
+would be more clearer as:\r
+\r
+ +         tag_ops[tag_ops_count].remove = (argv[i][0] == '-');\r
+\r
+\r
+\r
+Everything else LGTM.\r
+\r
+Tomi\r
+\r
+\r
+>  notmuch-tag.c |  101 ++++++++++++++++++++++++++++++++-------------------------\r
+>  1 files changed, 57 insertions(+), 44 deletions(-)\r
+>\r
+> diff --git a/notmuch-tag.c b/notmuch-tag.c\r
+> index c39b235..edbfdec 100644\r
+> --- a/notmuch-tag.c\r
+> +++ b/notmuch-tag.c\r
+> @@ -106,6 +106,60 @@ _optimize_tag_query (void *ctx, const char *orig_query_string,\r
+>      return query_string;\r
+>  }\r
+>  \r
+> +static int\r
+> +tag_query (void *ctx, notmuch_database_t *notmuch, const char *query_string,\r
+> +       tag_operation_t *tag_ops, notmuch_bool_t synchronize_flags)\r
+> +{\r
+> +    notmuch_query_t *query;\r
+> +    notmuch_messages_t *messages;\r
+> +    notmuch_message_t *message;\r
+> +    int i;\r
+> +\r
+> +    /* Optimize the query so it excludes messages that already have\r
+> +     * the specified set of tags. */\r
+> +    query_string = _optimize_tag_query (ctx, query_string, tag_ops);\r
+> +    if (query_string == NULL) {\r
+> +    fprintf (stderr, "Out of memory.\n");\r
+> +    return 1;\r
+> +    }\r
+> +\r
+> +    query = notmuch_query_create (notmuch, query_string);\r
+> +    if (query == NULL) {\r
+> +    fprintf (stderr, "Out of memory.\n");\r
+> +    return 1;\r
+> +    }\r
+> +\r
+> +    /* tagging is not interested in any special sort order */\r
+> +    notmuch_query_set_sort (query, NOTMUCH_SORT_UNSORTED);\r
+> +\r
+> +    for (messages = notmuch_query_search_messages (query);\r
+> +     notmuch_messages_valid (messages) && !interrupted;\r
+> +     notmuch_messages_move_to_next (messages))\r
+> +    {\r
+> +    message = notmuch_messages_get (messages);\r
+> +\r
+> +    notmuch_message_freeze (message);\r
+> +\r
+> +    for (i = 0; tag_ops[i].tag; i++) {\r
+> +        if (tag_ops[i].remove)\r
+> +            notmuch_message_remove_tag (message, tag_ops[i].tag);\r
+> +        else\r
+> +            notmuch_message_add_tag (message, tag_ops[i].tag);\r
+> +    }\r
+> +\r
+> +    notmuch_message_thaw (message);\r
+> +\r
+> +    if (synchronize_flags)\r
+> +        notmuch_message_tags_to_maildir_flags (message);\r
+> +\r
+> +    notmuch_message_destroy (message);\r
+> +    }\r
+> +\r
+> +    notmuch_query_destroy (query);\r
+> +\r
+> +    return interrupted;\r
+> +}\r
+> +\r
+>  int\r
+>  notmuch_tag_command (void *ctx, int argc, char *argv[])\r
+>  {\r
+> @@ -114,12 +168,10 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])\r
+>      char *query_string;\r
+>      notmuch_config_t *config;\r
+>      notmuch_database_t *notmuch;\r
+> -    notmuch_query_t *query;\r
+> -    notmuch_messages_t *messages;\r
+> -    notmuch_message_t *message;\r
+>      struct sigaction action;\r
+>      notmuch_bool_t synchronize_flags;\r
+>      int i;\r
+> +    int ret;\r
+>  \r
+>      /* Setup our handler for SIGINT */\r
+>      memset (&action, 0, sizeof (struct sigaction));\r
+> @@ -166,14 +218,6 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])\r
+>      return 1;\r
+>      }\r
+>  \r
+> -    /* Optimize the query so it excludes messages that already have\r
+> -     * the specified set of tags. */\r
+> -    query_string = _optimize_tag_query (ctx, query_string, tag_ops);\r
+> -    if (query_string == NULL) {\r
+> -    fprintf (stderr, "Out of memory.\n");\r
+> -    return 1;\r
+> -    }\r
+> -\r
+>      config = notmuch_config_open (ctx, NULL, NULL);\r
+>      if (config == NULL)\r
+>      return 1;\r
+> @@ -185,40 +229,9 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])\r
+>  \r
+>      synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);\r
+>  \r
+> -    query = notmuch_query_create (notmuch, query_string);\r
+> -    if (query == NULL) {\r
+> -    fprintf (stderr, "Out of memory.\n");\r
+> -    return 1;\r
+> -    }\r
+> -\r
+> -    /* tagging is not interested in any special sort order */\r
+> -    notmuch_query_set_sort (query, NOTMUCH_SORT_UNSORTED);\r
+> +    ret = tag_query (ctx, notmuch, query_string, tag_ops, synchronize_flags);\r
+>  \r
+> -    for (messages = notmuch_query_search_messages (query);\r
+> -     notmuch_messages_valid (messages) && !interrupted;\r
+> -     notmuch_messages_move_to_next (messages))\r
+> -    {\r
+> -    message = notmuch_messages_get (messages);\r
+> -\r
+> -    notmuch_message_freeze (message);\r
+> -\r
+> -    for (i = 0; tag_ops[i].tag; i++) {\r
+> -        if (tag_ops[i].remove)\r
+> -            notmuch_message_remove_tag (message, tag_ops[i].tag);\r
+> -        else\r
+> -            notmuch_message_add_tag (message, tag_ops[i].tag);\r
+> -    }\r
+> -\r
+> -    notmuch_message_thaw (message);\r
+> -\r
+> -    if (synchronize_flags)\r
+> -        notmuch_message_tags_to_maildir_flags (message);\r
+> -\r
+> -    notmuch_message_destroy (message);\r
+> -    }\r
+> -\r
+> -    notmuch_query_destroy (query);\r
+>      notmuch_database_close (notmuch);\r
+>  \r
+> -    return interrupted;\r
+> +    return ret;\r
+>  }\r
+> -- \r
+> 1.7.5.4\r
+>\r
+> _______________________________________________\r
+> notmuch mailing list\r
+> notmuch@notmuchmail.org\r
+> http://notmuchmail.org/mailman/listinfo/notmuch\r