show: Allow formatters to return errors

Formatter errors are propagated to the exit status of notmuch show.

This isn't used by the JSON or text formatters, but it will be useful
for the raw format, which is pickier.
This commit is contained in:
Austin Clements 2012-03-06 18:48:39 +00:00 committed by David Bremner
parent 046ab77b10
commit 6a4df1b796
2 changed files with 48 additions and 27 deletions

View file

@ -67,9 +67,9 @@ struct notmuch_show_params;
typedef struct notmuch_show_format { typedef struct notmuch_show_format {
const char *message_set_start; const char *message_set_start;
void (*part) (const void *ctx, notmuch_status_t (*part) (const void *ctx,
struct mime_node *node, int indent, struct mime_node *node, int indent,
const struct notmuch_show_params *params); const struct notmuch_show_params *params);
const char *message_start; const char *message_start;
void (*message) (const void *ctx, void (*message) (const void *ctx,
notmuch_message_t *message, notmuch_message_t *message,

View file

@ -23,7 +23,7 @@
static void static void
format_headers_message_part_text (GMimeMessage *message); format_headers_message_part_text (GMimeMessage *message);
static void static notmuch_status_t
format_part_text (const void *ctx, mime_node_t *node, format_part_text (const void *ctx, mime_node_t *node,
int indent, const notmuch_show_params_t *params); int indent, const notmuch_show_params_t *params);
@ -34,7 +34,7 @@ static const notmuch_show_format_t format_text = {
.message_set_end = "" .message_set_end = ""
}; };
static void static notmuch_status_t
format_part_json_entry (const void *ctx, mime_node_t *node, format_part_json_entry (const void *ctx, mime_node_t *node,
int indent, const notmuch_show_params_t *params); int indent, const notmuch_show_params_t *params);
@ -563,7 +563,7 @@ format_part_content_raw (GMimeObject *part)
g_object_unref(stream_stdout); g_object_unref(stream_stdout);
} }
static void static notmuch_status_t
format_part_text (const void *ctx, mime_node_t *node, format_part_text (const void *ctx, mime_node_t *node,
int indent, const notmuch_show_params_t *params) int indent, const notmuch_show_params_t *params)
{ {
@ -652,6 +652,8 @@ format_part_text (const void *ctx, mime_node_t *node,
printf ("\fbody}\n"); printf ("\fbody}\n");
printf ("\f%s}\n", part_type); printf ("\f%s}\n", part_type);
return NOTMUCH_STATUS_SUCCESS;
} }
static void static void
@ -753,14 +755,16 @@ format_part_json (const void *ctx, mime_node_t *node, notmuch_bool_t first)
printf ("%s}", terminator); printf ("%s}", terminator);
} }
static void static notmuch_status_t
format_part_json_entry (const void *ctx, mime_node_t *node, unused (int indent), format_part_json_entry (const void *ctx, mime_node_t *node, unused (int indent),
unused (const notmuch_show_params_t *params)) unused (const notmuch_show_params_t *params))
{ {
format_part_json (ctx, node, TRUE); format_part_json (ctx, node, TRUE);
return NOTMUCH_STATUS_SUCCESS;
} }
static void static notmuch_status_t
show_message (void *ctx, show_message (void *ctx,
const notmuch_show_format_t *format, const notmuch_show_format_t *format,
notmuch_message_t *message, notmuch_message_t *message,
@ -770,14 +774,18 @@ show_message (void *ctx,
if (format->part) { if (format->part) {
void *local = talloc_new (ctx); void *local = talloc_new (ctx);
mime_node_t *root, *part; mime_node_t *root, *part;
notmuch_status_t status;
if (mime_node_open (local, message, params->cryptoctx, params->decrypt, status = mime_node_open (local, message, params->cryptoctx,
&root) == NOTMUCH_STATUS_SUCCESS && params->decrypt, &root);
(part = mime_node_seek_dfs (root, (params->part < 0 ? if (status)
0 : params->part)))) goto DONE;
format->part (local, part, indent, params); part = mime_node_seek_dfs (root, (params->part < 0 ? 0 : params->part));
if (part)
status = format->part (local, part, indent, params);
DONE:
talloc_free (local); talloc_free (local);
return; return status;
} }
if (params->part <= 0) { if (params->part <= 0) {
@ -801,9 +809,11 @@ show_message (void *ctx,
fputs (format->message_end, stdout); fputs (format->message_end, stdout);
} }
return NOTMUCH_STATUS_SUCCESS;
} }
static void static notmuch_status_t
show_messages (void *ctx, show_messages (void *ctx,
const notmuch_show_format_t *format, const notmuch_show_format_t *format,
notmuch_messages_t *messages, notmuch_messages_t *messages,
@ -814,6 +824,7 @@ show_messages (void *ctx,
notmuch_bool_t match; notmuch_bool_t match;
int first_set = 1; int first_set = 1;
int next_indent; int next_indent;
notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS;
fputs (format->message_set_start, stdout); fputs (format->message_set_start, stdout);
@ -834,17 +845,22 @@ show_messages (void *ctx,
next_indent = indent; next_indent = indent;
if (match || params->entire_thread) { if (match || params->entire_thread) {
show_message (ctx, format, message, indent, params); status = show_message (ctx, format, message, indent, params);
if (status && !res)
res = status;
next_indent = indent + 1; next_indent = indent + 1;
fputs (format->message_set_sep, stdout); if (!status)
fputs (format->message_set_sep, stdout);
} }
show_messages (ctx, status = show_messages (ctx,
format, format,
notmuch_message_get_replies (message), notmuch_message_get_replies (message),
next_indent, next_indent,
params); params);
if (status && !res)
res = status;
notmuch_message_destroy (message); notmuch_message_destroy (message);
@ -852,6 +868,8 @@ show_messages (void *ctx,
} }
fputs (format->message_set_end, stdout); fputs (format->message_set_end, stdout);
return res;
} }
/* Formatted output of single message */ /* Formatted output of single message */
@ -916,13 +934,13 @@ do_show_single (void *ctx,
fclose (file); fclose (file);
return 0;
} else { } else {
show_message (ctx, format, message, 0, params); return show_message (ctx, format, message, 0, params) != NOTMUCH_STATUS_SUCCESS;
} }
return 0;
} }
/* Formatted output of threads */ /* Formatted output of threads */
@ -936,6 +954,7 @@ do_show (void *ctx,
notmuch_thread_t *thread; notmuch_thread_t *thread;
notmuch_messages_t *messages; notmuch_messages_t *messages;
int first_toplevel = 1; int first_toplevel = 1;
notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS;
fputs (format->message_set_start, stdout); fputs (format->message_set_start, stdout);
@ -955,7 +974,9 @@ do_show (void *ctx,
fputs (format->message_set_sep, stdout); fputs (format->message_set_sep, stdout);
first_toplevel = 0; first_toplevel = 0;
show_messages (ctx, format, messages, 0, params); status = show_messages (ctx, format, messages, 0, params);
if (status && !res)
res = status;
notmuch_thread_destroy (thread); notmuch_thread_destroy (thread);
@ -963,7 +984,7 @@ do_show (void *ctx,
fputs (format->message_set_end, stdout); fputs (format->message_set_end, stdout);
return 0; return res != NOTMUCH_STATUS_SUCCESS;
} }
enum { enum {