[PATCH v4 2/5] Rename the -json printer functions in notmuch-reply and notmuch-show...
authorPeter Feigl <craven@gmx.net>
Thu, 6 Dec 2012 11:44:56 +0000 (12:44 +0100)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:51:34 +0000 (09:51 -0800)
ad/d1cc05e88bec9a027d7ca389b23d0eb42036fd [new file with mode: 0644]

diff --git a/ad/d1cc05e88bec9a027d7ca389b23d0eb42036fd b/ad/d1cc05e88bec9a027d7ca389b23d0eb42036fd
new file mode 100644 (file)
index 0000000..91e0d9f
--- /dev/null
@@ -0,0 +1,327 @@
+Return-Path: <nex@nexoid.at>\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 A8C4F431FC0\r
+       for <notmuch@notmuchmail.org>; Thu,  6 Dec 2012 03:45:28 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References"\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.001\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.001 tagged_above=-999 required=5\r
+       tests=[FREEMAIL_FROM=0.001] 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 bHle1ysCkMOY for <notmuch@notmuchmail.org>;\r
+       Thu,  6 Dec 2012 03:45:25 -0800 (PST)\r
+Received: from mail.nexoid.at (www.nexoid.at [178.79.130.240])\r
+       (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id A6E8F431FB6\r
+       for <notmuch@notmuchmail.org>; Thu,  6 Dec 2012 03:45:21 -0800 (PST)\r
+Received: by mail.nexoid.at (Postfix, from userid 1000)\r
+       id 4770711C10E; Thu,  6 Dec 2012 12:45:14 +0100 (CET)\r
+From: Peter Feigl <craven@gmx.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v4 2/5] Rename the -json printer functions in notmuch-reply\r
+       and notmuch-show to generic -sprinter functions.\r
+Date: Thu,  6 Dec 2012 12:44:56 +0100\r
+Message-Id:\r
+ <785c9f89c35c861fbbe3ead3fe7289b65d31e216.1354794428.git.craven@gmx.net>\r
+X-Mailer: git-send-email 1.8.0\r
+In-Reply-To: <cover.1354794428.git.craven@gmx.net>\r
+References: <cover.1354794428.git.craven@gmx.net>\r
+In-Reply-To: <cover.1354794428.git.craven@gmx.net>\r
+References: <cover.1354794428.git.craven@gmx.net>\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: Thu, 06 Dec 2012 11:45:29 -0000\r
+\r
+All the structured output functions in notmuch-reply and notmuch-show\r
+are renamed to a generic name (as they do not contain any json-specific\r
+code anyway). This patch is a preparation to actually using the new\r
+S-Expression sprinter in notmuch-reply and notmuch-show.\r
+---\r
+ notmuch-client.h |  8 ++++----\r
+ notmuch-reply.c  | 43 ++++++++++++++++++++++++++-----------------\r
+ notmuch-show.c   | 30 +++++++++++++++---------------\r
+ 3 files changed, 45 insertions(+), 36 deletions(-)\r
+\r
+diff --git a/notmuch-client.h b/notmuch-client.h\r
+index ae9344b..1c336dc 100644\r
+--- a/notmuch-client.h\r
++++ b/notmuch-client.h\r
+@@ -175,12 +175,12 @@ notmuch_status_t\r
+ show_one_part (const char *filename, int part);\r
\r
+ void\r
+-format_part_json (const void *ctx, struct sprinter *sp, mime_node_t *node,\r
+-                notmuch_bool_t first, notmuch_bool_t output_body);\r
++format_part_sprinter (const void *ctx, struct sprinter *sp, mime_node_t *node,\r
++                    notmuch_bool_t first, notmuch_bool_t output_body);\r
\r
+ void\r
+-format_headers_json (struct sprinter *sp, GMimeMessage *message,\r
+-                   notmuch_bool_t reply);\r
++format_headers_sprinter (struct sprinter *sp, GMimeMessage *message,\r
++                       notmuch_bool_t reply);\r
\r
+ typedef enum {\r
+     NOTMUCH_SHOW_TEXT_PART_REPLY = 1 << 0,\r
+diff --git a/notmuch-reply.c b/notmuch-reply.c\r
+index e60a264..6103d6e 100644\r
+--- a/notmuch-reply.c\r
++++ b/notmuch-reply.c\r
+@@ -548,7 +548,8 @@ notmuch_reply_format_default(void *ctx,\r
+                            notmuch_config_t *config,\r
+                            notmuch_query_t *query,\r
+                            notmuch_show_params_t *params,\r
+-                           notmuch_bool_t reply_all)\r
++                           notmuch_bool_t reply_all,\r
++                           unused (sprinter_t *sp))\r
+ {\r
+     GMimeMessage *reply;\r
+     notmuch_messages_t *messages;\r
+@@ -587,17 +588,17 @@ notmuch_reply_format_default(void *ctx,\r
+ }\r
\r
+ static int\r
+-notmuch_reply_format_json(void *ctx,\r
+-                        notmuch_config_t *config,\r
+-                        notmuch_query_t *query,\r
+-                        notmuch_show_params_t *params,\r
+-                        notmuch_bool_t reply_all)\r
++notmuch_reply_format_sprinter(void *ctx,\r
++                            notmuch_config_t *config,\r
++                            notmuch_query_t *query,\r
++                            notmuch_show_params_t *params,\r
++                            notmuch_bool_t reply_all,\r
++                            sprinter_t *sp)\r
+ {\r
+     GMimeMessage *reply;\r
+     notmuch_messages_t *messages;\r
+     notmuch_message_t *message;\r
+     mime_node_t *node;\r
+-    sprinter_t *sp;\r
\r
+     if (notmuch_query_count_messages (query) != 1) {\r
+       fprintf (stderr, "Error: search term did not match precisely one message.\n");\r
+@@ -613,18 +614,17 @@ notmuch_reply_format_json(void *ctx,\r
+     if (!reply)\r
+       return 1;\r
\r
+-    sp = sprinter_json_create (ctx, stdout);\r
+     sp->begin_map (sp);\r
\r
+     /* The headers of the reply message we've created */\r
+     sp->map_key (sp, "reply-headers");\r
+-    format_headers_json (sp, reply, TRUE);\r
++    format_headers_sprinter (sp, reply, TRUE);\r
+     g_object_unref (G_OBJECT (reply));\r
+     reply = NULL;\r
\r
+     /* Start the original */\r
+     sp->map_key (sp, "original");\r
+-    format_part_json (ctx, sp, node, TRUE, TRUE);\r
++    format_part_sprinter (ctx, sp, node, TRUE, TRUE);\r
\r
+     /* End */\r
+     sp->end (sp);\r
+@@ -639,7 +639,8 @@ notmuch_reply_format_headers_only(void *ctx,\r
+                                 notmuch_config_t *config,\r
+                                 notmuch_query_t *query,\r
+                                 unused (notmuch_show_params_t *params),\r
+-                                notmuch_bool_t reply_all)\r
++                                notmuch_bool_t reply_all,\r
++                                unused (sprinter_t *sp))\r
+ {\r
+     GMimeMessage *reply;\r
+     notmuch_messages_t *messages;\r
+@@ -707,7 +708,12 @@ notmuch_reply_command (void *ctx, int argc, char *argv[])\r
+     notmuch_query_t *query;\r
+     char *query_string;\r
+     int opt_index, ret = 0;\r
+-    int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query, notmuch_show_params_t *params, notmuch_bool_t reply_all);\r
++    int (*reply_format_func)(void *ctx,\r
++                           notmuch_config_t *config,\r
++                           notmuch_query_t *query,\r
++                           notmuch_show_params_t *params,\r
++                           notmuch_bool_t reply_all,\r
++                           struct sprinter *sp);\r
+     notmuch_show_params_t params = {\r
+       .part = -1,\r
+       .crypto = {\r
+@@ -717,6 +723,7 @@ notmuch_reply_command (void *ctx, int argc, char *argv[])\r
+     };\r
+     int format = FORMAT_DEFAULT;\r
+     int reply_all = TRUE;\r
++    struct sprinter *sp = NULL;\r
\r
+     notmuch_opt_desc_t options[] = {\r
+       { NOTMUCH_OPT_KEYWORD, &format, "format", 'f',\r
+@@ -738,12 +745,14 @@ notmuch_reply_command (void *ctx, int argc, char *argv[])\r
+       return 1;\r
+     }\r
\r
+-    if (format == FORMAT_HEADERS_ONLY)\r
++    if (format == FORMAT_HEADERS_ONLY) {\r
+       reply_format_func = notmuch_reply_format_headers_only;\r
+-    else if (format == FORMAT_JSON)\r
+-      reply_format_func = notmuch_reply_format_json;\r
+-    else\r
++    } else if (format == FORMAT_JSON) {\r
++      reply_format_func = notmuch_reply_format_sprinter;\r
++      sp = sprinter_json_create (ctx, stdout);\r
++    } else {\r
+       reply_format_func = notmuch_reply_format_default;\r
++    }\r
\r
+     config = notmuch_config_open (ctx, NULL, NULL);\r
+     if (config == NULL)\r
+@@ -770,7 +779,7 @@ notmuch_reply_command (void *ctx, int argc, char *argv[])\r
+       return 1;\r
+     }\r
\r
+-    if (reply_format_func (ctx, config, query, &params, reply_all) != 0)\r
++    if (reply_format_func (ctx, config, query, &params, reply_all, sp) != 0)\r
+       return 1;\r
\r
+     notmuch_crypto_cleanup (&params.crypto);\r
+diff --git a/notmuch-show.c b/notmuch-show.c\r
+index 2fa2292..38c621f 100644\r
+--- a/notmuch-show.c\r
++++ b/notmuch-show.c\r
+@@ -32,12 +32,12 @@ static const notmuch_show_format_t format_text = {\r
+ };\r
\r
+ static notmuch_status_t\r
+-format_part_json_entry (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
++format_part_sprinter_entry (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
+                       int indent, const notmuch_show_params_t *params);\r
\r
+ static const notmuch_show_format_t format_json = {\r
+     .new_sprinter = sprinter_json_create,\r
+-    .part = format_part_json_entry,\r
++    .part = format_part_sprinter_entry,\r
+ };\r
\r
+ static notmuch_status_t\r
+@@ -108,7 +108,7 @@ _get_one_line_summary (const void *ctx, notmuch_message_t *message)\r
+ /* Emit a sequence of key/value pairs for the metadata of message.\r
+  * The caller should begin a map before calling this. */\r
+ static void\r
+-format_message_json (sprinter_t *sp, notmuch_message_t *message)\r
++format_message_sprinter (sprinter_t *sp, notmuch_message_t *message)\r
+ {\r
+     /* Any changes to the JSON format should be reflected in the file\r
+      * devel/schemata. */\r
+@@ -208,7 +208,7 @@ _is_from_line (const char *line)\r
+ }\r
\r
+ void\r
+-format_headers_json (sprinter_t *sp, GMimeMessage *message,\r
++format_headers_sprinter (sprinter_t *sp, GMimeMessage *message,\r
+                    notmuch_bool_t reply)\r
+ {\r
+     /* Any changes to the JSON format should be reflected in the file\r
+@@ -363,7 +363,7 @@ signer_status_to_string (GMimeSignerStatus x)\r
\r
+ #ifdef GMIME_ATLEAST_26\r
+ static void\r
+-format_part_sigstatus_json (sprinter_t *sp, mime_node_t *node)\r
++format_part_sigstatus_sprinter (sprinter_t *sp, mime_node_t *node)\r
+ {\r
+     /* Any changes to the JSON format should be reflected in the file\r
+      * devel/schemata. */\r
+@@ -438,7 +438,7 @@ format_part_sigstatus_json (sprinter_t *sp, mime_node_t *node)\r
+ }\r
+ #else\r
+ static void\r
+-format_part_sigstatus_json (sprinter_t *sp, mime_node_t *node)\r
++format_part_sigstatus_sprinter (sprinter_t *sp, mime_node_t *node)\r
+ {\r
+     const GMimeSignatureValidity* validity = node->sig_validity;\r
\r
+@@ -595,7 +595,7 @@ format_part_text (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
+ }\r
\r
+ void\r
+-format_part_json (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
++format_part_sprinter (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
+                 notmuch_bool_t first, notmuch_bool_t output_body)\r
+ {\r
+     /* Any changes to the JSON format should be reflected in the file\r
+@@ -603,15 +603,15 @@ format_part_json (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
\r
+     if (node->envelope_file) {\r
+       sp->begin_map (sp);\r
+-      format_message_json (sp, node->envelope_file);\r
++      format_message_sprinter (sp, node->envelope_file);\r
\r
+       sp->map_key (sp, "headers");\r
+-      format_headers_json (sp, GMIME_MESSAGE (node->part), FALSE);\r
++      format_headers_sprinter (sp, GMIME_MESSAGE (node->part), FALSE);\r
\r
+       if (output_body) {\r
+           sp->map_key (sp, "body");\r
+           sp->begin_list (sp);\r
+-          format_part_json (ctx, sp, mime_node_child (node, 0), first, TRUE);\r
++          format_part_sprinter (ctx, sp, mime_node_child (node, 0), first, TRUE);\r
+           sp->end (sp);\r
+       }\r
+       sp->end (sp);\r
+@@ -646,7 +646,7 @@ format_part_json (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
\r
+     if (node->verify_attempted) {\r
+       sp->map_key (sp, "sigstatus");\r
+-      format_part_sigstatus_json (sp, node);\r
++      format_part_sigstatus_sprinter (sp, node);\r
+     }\r
\r
+     sp->map_key (sp, "content-type");\r
+@@ -698,7 +698,7 @@ format_part_json (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
+       sp->begin_map (sp);\r
\r
+       sp->map_key (sp, "headers");\r
+-      format_headers_json (sp, GMIME_MESSAGE (node->part), FALSE);\r
++      format_headers_sprinter (sp, GMIME_MESSAGE (node->part), FALSE);\r
\r
+       sp->map_key (sp, "body");\r
+       sp->begin_list (sp);\r
+@@ -706,7 +706,7 @@ format_part_json (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
+     }\r
\r
+     for (i = 0; i < node->nchildren; i++)\r
+-      format_part_json (ctx, sp, mime_node_child (node, i), i == 0, TRUE);\r
++      format_part_sprinter (ctx, sp, mime_node_child (node, i), i == 0, TRUE);\r
\r
+     /* Close content structures */\r
+     for (i = 0; i < nclose; i++)\r
+@@ -716,11 +716,11 @@ format_part_json (const void *ctx, sprinter_t *sp, mime_node_t *node,\r
+ }\r
\r
+ static notmuch_status_t\r
+-format_part_json_entry (const void *ctx, sprinter_t *sp,\r
++format_part_sprinter_entry (const void *ctx, sprinter_t *sp,\r
+                       mime_node_t *node, unused (int indent),\r
+                       const notmuch_show_params_t *params)\r
+ {\r
+-    format_part_json (ctx, sp, node, TRUE, params->output_body);\r
++    format_part_sprinter (ctx, sp, node, TRUE, params->output_body);\r
\r
+     return NOTMUCH_STATUS_SUCCESS;\r
+ }\r
+-- \r
+1.8.0\r
+\r