[Patch v2 07/17] notmuch-dump: add --format=(batch-tag|sup)
authordavid <david@tethera.net>
Sat, 24 Nov 2012 21:20:07 +0000 (17:20 +2000)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:50:51 +0000 (09:50 -0800)
dd/ed2695e54188aa9506d65842106bc9889d6535 [new file with mode: 0644]

diff --git a/dd/ed2695e54188aa9506d65842106bc9889d6535 b/dd/ed2695e54188aa9506d65842106bc9889d6535
new file mode 100644 (file)
index 0000000..01e2178
--- /dev/null
@@ -0,0 +1,178 @@
+Return-Path: <bremner@tethera.net>\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 6BFF0431FAF\r
+       for <notmuch@notmuchmail.org>; Sat, 24 Nov 2012 13:20:36 -0800 (PST)\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 DVO7AneI3bGN for <notmuch@notmuchmail.org>;\r
+       Sat, 24 Nov 2012 13:20:35 -0800 (PST)\r
+Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
+       (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id E48BE431FC0\r
+       for <notmuch@notmuchmail.org>; Sat, 24 Nov 2012 13:20:32 -0800 (PST)\r
+Received: from fctnnbsc30w-156034089108.dhcp-dynamic.fibreop.nb.bellaliant.net\r
+       ([156.34.89.108] helo=zancas.localnet)\r
+       by tesseract.cs.unb.ca with esmtpsa\r
+       (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72)\r
+       (envelope-from <bremner@tethera.net>)\r
+       id 1TcN9M-0006SN-1r; Sat, 24 Nov 2012 17:20:32 -0400\r
+Received: from bremner by zancas.localnet with local (Exim 4.80)\r
+       (envelope-from <bremner@tethera.net>)\r
+       id 1TcN9G-0008Ct-Im; Sat, 24 Nov 2012 17:20:26 -0400\r
+From: david@tethera.net\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v2 07/17] notmuch-dump: add --format=(batch-tag|sup)\r
+Date: Sat, 24 Nov 2012 17:20:07 -0400\r
+Message-Id: <1353792017-31459-8-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 1.7.10.4\r
+In-Reply-To: <1353792017-31459-1-git-send-email-david@tethera.net>\r
+References: <1353792017-31459-1-git-send-email-david@tethera.net>\r
+X-Spam_bar: -\r
+Cc: David Bremner <bremner@debian.org>\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: Sat, 24 Nov 2012 21:20:36 -0000\r
+\r
+From: David Bremner <bremner@debian.org>\r
+\r
+sup is the old format, and remains the default, at least until\r
+restore is converted to parse this format.\r
+\r
+Each line of the batch- format is valid for notmuch tag, (with the\r
+"notmuch tag" omitted from the front of the line). The dump format\r
+only uses query strings of a single message-id.\r
+\r
+Each space seperated tag/message-id is 'hex-encoded' to remove\r
+troubling characters.  In particular this format won't have the same\r
+problem with e.g. spaces in message-ids or tags; they will be\r
+round-trip-able.\r
+---\r
+ dump-restore-private.h |   13 +++++++++++++\r
+ notmuch-dump.c         |   42 ++++++++++++++++++++++++++++++++++++------\r
+ 2 files changed, 49 insertions(+), 6 deletions(-)\r
+ create mode 100644 dump-restore-private.h\r
+\r
+diff --git a/dump-restore-private.h b/dump-restore-private.h\r
+new file mode 100644\r
+index 0000000..896a004\r
+--- /dev/null\r
++++ b/dump-restore-private.h\r
+@@ -0,0 +1,13 @@\r
++#ifndef DUMP_RESTORE_PRIVATE_H\r
++#define DUMP_RESTORE_PRIVATE_H\r
++\r
++#include "hex-escape.h"\r
++#include "command-line-arguments.h"\r
++\r
++typedef enum dump_formats {\r
++    DUMP_FORMAT_AUTO,\r
++    DUMP_FORMAT_BATCH_TAG,\r
++    DUMP_FORMAT_SUP\r
++} dump_format_t;\r
++\r
++#endif\r
+diff --git a/notmuch-dump.c b/notmuch-dump.c\r
+index 88f598a..045ca9e 100644\r
+--- a/notmuch-dump.c\r
++++ b/notmuch-dump.c\r
+@@ -19,6 +19,7 @@\r
+  */\r
\r
+ #include "notmuch-client.h"\r
++#include "dump-restore-private.h"\r
\r
+ int\r
+ notmuch_dump_command (unused (void *ctx), int argc, char *argv[])\r
+@@ -43,7 +44,13 @@ notmuch_dump_command (unused (void *ctx), int argc, char *argv[])\r
+     char *output_file_name = NULL;\r
+     int opt_index;\r
\r
++    int output_format = DUMP_FORMAT_SUP;\r
++\r
+     notmuch_opt_desc_t options[] = {\r
++      { NOTMUCH_OPT_KEYWORD, &output_format, "format", 'f',\r
++        (notmuch_keyword_t []){ { "sup", DUMP_FORMAT_SUP },\r
++                                { "batch-tag", DUMP_FORMAT_BATCH_TAG },\r
++                                { 0, 0 } } },\r
+       { NOTMUCH_OPT_STRING, &output_file_name, "output", 'o', 0  },\r
+       { 0, 0, 0, 0, 0 }\r
+     };\r
+@@ -83,27 +90,50 @@ notmuch_dump_command (unused (void *ctx), int argc, char *argv[])\r
+      */\r
+     notmuch_query_set_sort (query, NOTMUCH_SORT_UNSORTED);\r
\r
++    char *buffer = NULL;\r
++    size_t buffer_size = 0;\r
++\r
+     for (messages = notmuch_query_search_messages (query);\r
+        notmuch_messages_valid (messages);\r
+        notmuch_messages_move_to_next (messages)) {\r
+       int first = 1;\r
++      const char *message_id;\r
++\r
+       message = notmuch_messages_get (messages);\r
++      message_id = notmuch_message_get_message_id (message);\r
\r
+-      fprintf (output,\r
+-               "%s (", notmuch_message_get_message_id (message));\r
++      if (output_format == DUMP_FORMAT_SUP) {\r
++          fprintf (output, "%s (", message_id);\r
++      }\r
\r
+       for (tags = notmuch_message_get_tags (message);\r
+            notmuch_tags_valid (tags);\r
+            notmuch_tags_move_to_next (tags)) {\r
+-          if (! first)\r
+-              fprintf (output, " ");\r
++          const char *tag_str = notmuch_tags_get (tags);\r
\r
+-          fprintf (output, "%s", notmuch_tags_get (tags));\r
++          if (! first)\r
++              fputs (" ", output);\r
\r
+           first = 0;\r
++\r
++          if (output_format == DUMP_FORMAT_SUP) {\r
++              fputs (tag_str, output);\r
++          } else {\r
++              if (hex_encode (notmuch, tag_str,\r
++                              &buffer, &buffer_size) != HEX_SUCCESS)\r
++                  return 1;\r
++              fprintf (output, "+%s", buffer);\r
++          }\r
+       }\r
\r
+-      fprintf (output, ")\n");\r
++      if (output_format == DUMP_FORMAT_SUP) {\r
++          fputs (")\n", output);\r
++      } else {\r
++          if (hex_encode (notmuch, message_id,\r
++                          &buffer, &buffer_size) != HEX_SUCCESS)\r
++              return 1;\r
++          fprintf (output, " -- id:%s\n", buffer);\r
++      }\r
\r
+       notmuch_message_destroy (message);\r
+     }\r
+-- \r
+1.7.10.4\r
+\r