From: Austin Clements <amdragon@MIT.EDU>
To: Mark Walters <markwalters1009@gmail.com>
Cc: notmuch@notmuchmail.org
Subject: Re: [PATCH 5/7] cli: Make notmuch-show respect excludes.
Date: Mon, 30 Jan 2012 23:56:24 -0500 [thread overview]
Message-ID: <20120131045624.GB17991@mit.edu> (raw)
In-Reply-To: <1327862394-14334-5-git-send-email-markwalters1009@gmail.com>
Quoth Mark Walters on Jan 29 at 6:39 pm:
> This adds the excludes to notmuch-show.c. We do not exclude when only
> a single message (or part) is requested. notmuch-show will output the
> exclude information when either text or json format is requested. As
> this changes the output from notmuch-show it breaks many tests (in a
> trivial and expected fashion).
> ---
> notmuch-show.c | 26 +++++++++++++++++++++-----
> 1 files changed, 21 insertions(+), 5 deletions(-)
>
> diff --git a/notmuch-show.c b/notmuch-show.c
> index dec799c..681827f 100644
> --- a/notmuch-show.c
> +++ b/notmuch-show.c
> @@ -193,10 +193,12 @@ _get_one_line_summary (const void *ctx, notmuch_message_t *message)
> static void
> format_message_text (unused (const void *ctx), notmuch_message_t *message, int indent)
> {
> - printf ("id:%s depth:%d match:%d filename:%s\n",
> + /* Could changing this could break users ? */
I don't think anybody seriously tries to parse the text format, so I
wouldn't worry about breaking anything.
> + printf ("id:%s depth:%d match:%d excluded:%d filename:%s\n",
> notmuch_message_get_message_id (message),
> indent,
> - notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH),
> + notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? 1 : 0,
> + notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED) ? 1 : 0,
> notmuch_message_get_filename (message));
> }
>
> @@ -212,9 +214,10 @@ format_message_json (const void *ctx, notmuch_message_t *message, unused (int in
> date = notmuch_message_get_date (message);
> relative_date = notmuch_time_relative_date (ctx, date);
>
> - printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"timestamp\": %ld, \"date_relative\": \"%s\", \"tags\": [",
> + printf ("\"id\": %s, \"match\": %s, \"excluded\": %s, \"filename\": %s, \"timestamp\": %ld, \"date_relative\": \"%s\", \"tags\": [",
I wonder if it would be better to switch to an array of flag names...
That obviously would break consumers, but it's worth thinking about in
the longer term.
> json_quote_str (ctx_quote, notmuch_message_get_message_id (message)),
> notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? "true" : "false",
> + notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED) ? "true" : "false",
> json_quote_str (ctx_quote, notmuch_message_get_filename (message)),
> date, relative_date);
>
> @@ -1059,9 +1062,13 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
> char *opt;
> const notmuch_show_format_t *format = &format_text;
> notmuch_show_params_t params;
> + const char **search_exclude_tags;
> + size_t search_exclude_tags_length;
> int mbox = 0;
> int format_specified = 0;
> int i;
> + notmuch_bool_t do_not_exclude = FALSE;
> + unsigned int j;
>
> params.entire_thread = 0;
> params.raw = 0;
> @@ -1098,6 +1105,8 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
> params.part = atoi(argv[i] + sizeof ("--part=") - 1);
> } else if (STRNCMP_LITERAL (argv[i], "--entire-thread") == 0) {
> params.entire_thread = 1;
> + } else if (STRNCMP_LITERAL (argv[i], "--do-not-exclude") == 0) {
> + do_not_exclude = TRUE;
"no-exclude" if you change the others.
> } else if ((STRNCMP_LITERAL (argv[i], "--verify") == 0) ||
> (STRNCMP_LITERAL (argv[i], "--decrypt") == 0)) {
> if (params.cryptoctx == NULL) {
> @@ -1105,7 +1114,7 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
> /* TODO: GMimePasswordRequestFunc */
> if (NULL == (params.cryptoctx = g_mime_gpg_context_new(NULL, "gpg")))
> #else
> - GMimeSession* session = g_object_new(g_mime_session_get_type(), NULL);
> + GMimeSession* session = g_object_new(g_mime_session_get_type(), NULL);
Accidental reindent?
> if (NULL == (params.cryptoctx = g_mime_gpg_context_new(session, "gpg")))
> #endif
> fprintf (stderr, "Failed to construct gpg context.\n");
> @@ -1167,10 +1176,17 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
> if (params.raw && params.part < 0)
> params.part = 0;
>
> + /* if a single message is requested we do not use search_excludes */
Capital and period.
> if (params.part >= 0)
> return do_show_single (ctx, query, format, ¶ms);
> else
> - return do_show (ctx, query, format, ¶ms);
> + if (!do_not_exclude) {
> + search_exclude_tags = notmuch_config_get_search_exclude_tags
> + (config, &search_exclude_tags_length);
> + for (j = 0; j < search_exclude_tags_length; j++)
> + notmuch_query_add_tag_exclude (query, search_exclude_tags[j]);
> + return do_show (ctx, query, format, ¶ms);
> + }
I don't think this is the control flow you meant. With
--do-not-exclude, there won't be any output.
>
> notmuch_query_destroy (query);
> notmuch_database_close (notmuch);
Cool. That was easy!
next prev parent reply other threads:[~2012-01-31 4:57 UTC|newest]
Thread overview: 176+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-07 22:28 another attempt to add delete functionality in emacs Jameson Graef Rollins
2012-01-07 22:28 ` [PATCH 1/4] emacs: new customization variable to exclude "deleted" messages from search Jameson Graef Rollins
2012-01-07 22:28 ` [PATCH 2/4] emacs: repurpose notmuch-show-archive-thread-internal function for general thread tagging Jameson Graef Rollins
2012-01-07 22:28 ` [PATCH 3/4] emacs: add ability to "delete" messages and threads Jameson Graef Rollins
2012-01-07 22:28 ` [PATCH 4/4] emacs: modify help message for notmuch-search-line-faces to reflect preferred "deleted" tag name Jameson Graef Rollins
2012-01-08 1:26 ` change to default archive/delete key bindings Jameson Graef Rollins
2012-01-08 1:26 ` [PATCH 1/4] emacs: add show-mode functions to archive/delete only current message Jameson Graef Rollins
2012-01-08 1:26 ` [PATCH 2/4] emacs: add option to notmuch-show-next-open-message to pop out to parent buffer if at end Jameson Graef Rollins
2012-01-08 1:26 ` [PATCH 3/4] emacs: modify the default show-mode key bindings for archiving/deleting Jameson Graef Rollins
2012-01-08 1:26 ` [PATCH 4/4] emacs: use pop-at-end functionality in archive/delete-message functions Jameson Graef Rollins
2012-01-08 18:56 ` [PATCH 4/4 v2] " Jameson Graef Rollins
2012-01-08 19:28 ` [PATCH 4/4 v3] " Jameson Graef Rollins
2012-01-09 1:12 ` [PATCH 2/4] emacs: add option to notmuch-show-next-open-message to pop out to parent buffer if at end Aaron Ecay
2012-01-08 19:09 ` [PATCH 1/4 v2] emacs: add show-mode functions to archive/delete only current message Jameson Graef Rollins
2012-01-10 7:43 ` David Edmondson
2012-01-10 7:48 ` change to default archive/delete key bindings David Edmondson
2012-01-09 1:08 ` [PATCH 2/4] emacs: repurpose notmuch-show-archive-thread-internal function for general thread tagging Aaron Ecay
2012-01-09 2:49 ` Jameson Graef Rollins
2012-01-09 5:02 ` Aaron Ecay
2012-01-11 2:56 ` Jameson Graef Rollins
2012-01-11 5:53 ` Aaron Ecay
2012-01-11 7:07 ` Jameson Graef Rollins
2012-01-09 1:14 ` [PATCH 1/4] emacs: new customization variable to exclude "deleted" messages from search Aaron Ecay
2012-01-09 1:49 ` Austin Clements
2012-01-09 2:34 ` Jameson Graef Rollins
2012-01-09 2:46 ` Austin Clements
2012-01-09 4:31 ` Austin Clements
2012-01-11 5:02 ` [PATCH 0/3] Automatic tag-based exclusion Austin Clements
2012-01-11 5:02 ` [PATCH 1/3] count: Convert to new-style argument parsing Austin Clements
2012-01-11 8:17 ` Jani Nikula
2012-01-11 18:26 ` Austin Clements
2012-01-11 18:27 ` Jani Nikula
2012-01-11 5:02 ` [PATCH 2/3] lib: Add support for automatically excluding tags from queries Austin Clements
2012-01-11 10:11 ` Jani Nikula
2012-01-11 18:48 ` Austin Clements
2012-01-11 5:02 ` [PATCH 3/3] search: Support automatic tag exclusions Austin Clements
2012-01-11 19:27 ` Jani Nikula
2012-01-11 7:05 ` [PATCH 0/3] Automatic tag-based exclusion Jameson Graef Rollins
2012-01-13 23:07 ` [PATCH v2 0/3] Austin Clements
2012-01-13 23:07 ` [PATCH v2 1/3] count: Convert to new-style argument parsing Austin Clements
2012-01-14 1:49 ` David Bremner
2012-01-13 23:07 ` [PATCH v2 2/3] lib: Add support for automatically excluding tags from queries Austin Clements
2012-01-14 23:38 ` Jameson Graef Rollins
2012-01-15 0:05 ` Austin Clements
2012-01-13 23:07 ` [PATCH v2 3/3] search: Support automatic tag exclusions Austin Clements
2012-01-14 23:40 ` Jameson Graef Rollins
2012-01-15 0:14 ` Austin Clements
2012-01-16 9:12 ` David Edmondson
2012-01-16 19:28 ` Austin Clements
2012-01-16 22:18 ` Jeremy Nickurak
2012-01-16 22:25 ` Jameson Graef Rollins
[not found] ` <CA+eQo_3xxuhgUUXWXWyVD1LFhvhkw2psbA3ZnFnZk=BjjHXy8w@mail.gmail.com>
2012-01-17 9:08 ` David Edmondson
2012-01-17 20:32 ` Austin Clements
2012-01-18 8:38 ` David Edmondson
2012-01-18 8:52 ` Jameson Graef Rollins
2012-01-18 9:52 ` David Edmondson
2012-01-18 18:51 ` Jameson Graef Rollins
2012-01-16 19:34 ` Jameson Graef Rollins
2012-01-14 23:38 ` [PATCH v2 0/3] Jameson Graef Rollins
2012-01-15 0:17 ` [PATCH v3 0/2] Automatic tag-based exclusion Austin Clements
2012-01-15 0:17 ` [PATCH v3 1/2] lib: Add support for automatically excluding tags from queries Austin Clements
2012-01-15 0:17 ` [PATCH v3 2/2] search: Support automatic tag exclusions Austin Clements
2012-01-19 19:19 ` Pieter Praet
2012-01-19 19:19 ` [PATCH 1/4] search: rename auto_exclude_tags to {search, }exclude_tags Pieter Praet
2012-01-19 19:41 ` [PATCH 1/4] search: rename auto_exclude_tags to {search,}exclude_tags Austin Clements
2012-01-19 21:14 ` [PATCH 1/4] search: rename auto_exclude_tags to {search, }exclude_tags Pieter Praet
2012-01-19 19:19 ` [PATCH 2/4] test: only exclude "deleted" messages from search if explicitly configured Pieter Praet
2012-01-19 19:19 ` [PATCH 3/4] config: only set search.exclude_tags to "deleted; spam; " during setup Pieter Praet
2012-01-22 22:14 ` Xavier Maillard
2012-01-22 22:53 ` Jameson Graef Rollins
2012-01-23 5:05 ` Pieter Praet
2012-01-23 5:34 ` Jameson Graef Rollins
2012-01-23 7:35 ` Pieter Praet
2012-01-23 7:22 ` Jani Nikula
2012-01-23 7:38 ` Jameson Graef Rollins
2012-01-23 8:24 ` Jani Nikula
2012-01-23 8:45 ` Jameson Graef Rollins
2012-01-25 0:43 ` Pieter Praet
2012-01-23 8:03 ` Pieter Praet
2012-01-23 8:31 ` Jani Nikula
2012-01-25 0:42 ` Pieter Praet
2012-01-23 4:16 ` Pieter Praet
2012-01-19 19:19 ` [PATCH 4/4] setup: prompt user for search.exclude_tags value Pieter Praet
2012-01-19 19:44 ` Austin Clements
2012-01-19 21:16 ` Pieter Praet
2012-01-20 4:19 ` Austin Clements
2012-01-22 6:55 ` Pieter Praet
2012-01-22 17:08 ` Austin Clements
2012-01-23 4:17 ` Pieter Praet
2012-01-23 4:22 ` [PATCH v2 1/6] search: rename auto_exclude_tags to {search, }exclude_tags Pieter Praet
2012-01-23 23:28 ` David Bremner
2012-01-23 4:22 ` [PATCH v2 2/6] test: only exclude "deleted" messages from search if explicitly configured Pieter Praet
2012-01-23 4:22 ` [PATCH v2 3/6] config: only exclude messages if 'search.exclude_tags' is explicitly set Pieter Praet
2012-01-23 4:22 ` [PATCH v2 4/6] setup: move tag printing and parsing into separate functions Pieter Praet
2012-01-23 5:07 ` Austin Clements
2012-01-23 5:50 ` [PATCH v3 4/6] setup: Create functions for tag list printing and parsing Pieter Praet
2012-01-23 4:22 ` [PATCH v2 5/6] setup: prompt user for search.exclude_tags value Pieter Praet
2012-01-23 4:34 ` Austin Clements
2012-01-23 5:40 ` [PATCH v3 " Pieter Praet
2012-01-23 4:22 ` [PATCH v2 6/6] NEWS: update "Tag exclusion" section Pieter Praet
2012-01-23 4:41 ` Austin Clements
2012-01-23 5:41 ` [PATCH v3 " Pieter Praet
2012-01-23 14:49 ` Austin Clements
2012-01-19 19:36 ` [PATCH v3 2/2] search: Support automatic tag exclusions Austin Clements
2012-01-19 20:06 ` markwalters1009
2012-01-19 20:16 ` Aaron Ecay
2012-01-19 20:23 ` Mark Walters
2012-01-19 20:28 ` Austin Clements
2012-01-19 22:01 ` Mark Walters
2012-01-19 22:03 ` [PATCH] Automatically exclude tags in notmuch-show Mark Walters
2012-01-19 22:59 ` Austin Clements
2012-01-19 23:54 ` Pieter Praet
2012-01-20 0:10 ` Mark Walters
2012-01-20 17:18 ` Austin Clements
2012-01-22 0:38 ` Mark Walters
2012-01-22 17:31 ` Austin Clements
2012-01-22 18:16 ` Austin Clements
2012-01-22 18:47 ` Mark Walters
2012-01-23 1:13 ` Mark Walters
2012-01-23 1:52 ` Austin Clements
2012-01-24 1:05 ` Mark Walters
2012-01-24 1:16 ` Austin Clements
2012-01-24 1:18 ` [RFC PATCH 1/4] Add NOTMUCH_MESSAGE_FLAG_EXCLUDED flag Mark Walters
2012-01-24 1:18 ` [RFC PATCH 2/4] " Mark Walters
2012-01-24 2:45 ` Austin Clements
2012-01-24 11:20 ` Mark Walters
2012-01-28 10:51 ` Mark Walters
2012-01-28 18:33 ` Austin Clements
2012-01-28 23:57 ` Mark Walters
2012-01-29 0:04 ` [PATCH 1/4] Add exclude flag Mark Walters
2012-01-29 0:04 ` [PATCH 2/4] " Mark Walters
2012-01-29 0:04 ` [PATCH 3/4] " Mark Walters
2012-01-29 0:04 ` [PATCH 4/4] " Mark Walters
2012-01-29 10:37 ` [RFC PATCH 2/4] Add NOTMUCH_MESSAGE_FLAG_EXCLUDED flag Mark Walters
2012-01-29 18:36 ` Mark Walters
2012-01-29 18:39 ` [PATCH 1/7] cli: add --do-not-exclude option to count and search Mark Walters
2012-01-31 4:17 ` Austin Clements
2012-01-31 11:40 ` Mark Walters
2012-01-31 16:18 ` Austin Clements
2012-01-31 16:31 ` Jameson Graef Rollins
2012-02-11 18:44 ` Jameson Graef Rollins
2012-02-11 18:50 ` Austin Clements
2012-02-11 19:00 ` Jameson Graef Rollins
2012-01-29 18:39 ` [PATCH 2/7] lib: Rearrange the exclude code in query.cc Mark Walters
2012-01-29 18:39 ` [PATCH 3/7] lib: Make notmuch_query_search_messages set the exclude flag Mark Walters
2012-01-31 4:43 ` Austin Clements
2012-01-31 11:45 ` Mark Walters
2012-01-31 16:25 ` Austin Clements
2012-02-01 18:00 ` Mark Walters
2012-01-29 18:39 ` [PATCH 4/7] lib: Add the exclude flag to notmuch_query_search_threads Mark Walters
2012-01-31 4:50 ` Austin Clements
2012-01-31 11:47 ` Mark Walters
2012-01-31 5:07 ` Austin Clements
2012-01-29 18:39 ` [PATCH 5/7] cli: Make notmuch-show respect excludes Mark Walters
2012-01-31 4:56 ` Austin Clements [this message]
2012-01-31 12:30 ` Mark Walters
2012-01-29 18:39 ` [PATCH 6/7] cli: omit excluded messages in results where appropriate Mark Walters
2012-01-29 18:39 ` [PATCH 7/7] emacs: show: recognize the exclude flag Mark Walters
2012-01-31 5:08 ` [RFC PATCH 2/4] Add NOTMUCH_MESSAGE_FLAG_EXCLUDED flag Austin Clements
2012-01-24 1:18 ` [RFC PATCH 3/4] " Mark Walters
2012-01-24 2:53 ` Austin Clements
2012-01-24 1:18 ` [PATCH 4/4] " Mark Walters
2012-01-19 22:44 ` [PATCH v3 2/2] search: Support automatic tag exclusions Pieter Praet
2012-01-19 21:21 ` Pieter Praet
2012-01-22 22:09 ` Xavier Maillard
2012-01-23 4:15 ` Pieter Praet
2012-01-16 19:35 ` [PATCH v3 0/2] Automatic tag-based exclusion Jameson Graef Rollins
2012-01-17 1:08 ` David Bremner
2012-01-18 20:58 ` [PATCH] News for tag exclusion Austin Clements
2012-01-10 7:47 ` another attempt to add delete functionality in emacs David Edmondson
2012-01-10 20:01 ` David Bremner
2012-01-11 3:12 ` Jameson Graef Rollins
2012-01-11 5:16 ` Jani Nikula
2012-01-11 5:38 ` Austin Clements
2012-01-11 8:26 ` David Edmondson
2012-01-11 2:56 ` Jameson Graef Rollins
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://notmuchmail.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120131045624.GB17991@mit.edu \
--to=amdragon@mit.edu \
--cc=markwalters1009@gmail.com \
--cc=notmuch@notmuchmail.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).