[PATCH v5 0/3] notmuch-reply: Structured Formatters
authorPeter Feigl <craven@gmx.net>
Fri, 13 Jul 2012 08:11:34 +0000 (10:11 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:48:15 +0000 (09:48 -0800)
20/7aa45c534282656b6d5fbdf3a35312d96f6437 [new file with mode: 0644]

diff --git a/20/7aa45c534282656b6d5fbdf3a35312d96f6437 b/20/7aa45c534282656b6d5fbdf3a35312d96f6437
new file mode 100644 (file)
index 0000000..76a350b
--- /dev/null
@@ -0,0 +1,72 @@
+Return-Path: <craven@gmx.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 9733B431FAE\r
+       for <notmuch@notmuchmail.org>; Fri, 13 Jul 2012 01:13:42 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\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, RCVD_IN_DNSWL_NONE=-0.0001]\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 z50e54vDTPqu for <notmuch@notmuchmail.org>;\r
+       Fri, 13 Jul 2012 01:13:40 -0700 (PDT)\r
+Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22])\r
+       by olra.theworths.org (Postfix) with SMTP id 3E3A4431FC3\r
+       for <notmuch@notmuchmail.org>; Fri, 13 Jul 2012 01:13:39 -0700 (PDT)\r
+Received: (qmail invoked by alias); 13 Jul 2012 08:13:36 -0000\r
+Received: from cm56-137-203.liwest.at (EHLO nexork.localdomain)\r
+ [86.56.137.203]       by mail.gmx.net (mp032) with SMTP; 13 Jul 2012 10:13:36 +0200\r
+X-Authenticated: #201305\r
+X-Provags-ID: V01U2FsdGVkX1/5F15BT5z551ssTzEHrq20STEwd2BcyXuKZgG0aZ\r
+       lXqfDORnr1Ek2X\r
+Received: by nexork.localdomain (Postfix, from userid 1000)\r
+       id 8AE294527800; Fri, 13 Jul 2012 10:11:42 +0200 (CEST)\r
+From: Peter Feigl <craven@gmx.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v5 0/3] notmuch-reply: Structured Formatters\r
+Date: Fri, 13 Jul 2012 10:11:34 +0200\r
+Message-Id: <1342167097-25012-1-git-send-email-craven@gmx.net>\r
+X-Mailer: git-send-email 1.7.11.1\r
+In-Reply-To: <20120710191331.GE7332@mit.edu>\r
+References: <20120710191331.GE7332@mit.edu>\r
+X-Y-GMX-Trusted: 0\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: Fri, 13 Jul 2012 08:13:43 -0000\r
+\r
+Currently there is no easy way to add support for different structured\r
+formatters (like JSON). For example, adding support for S-Expressions\r
+would result in code duplication.\r
+\r
+This patch series amends the situation by introducing structured\r
+formatters, which allow different implementations of structures like\r
+lists, maps, strings and numbers.\r
+\r
+The new code in sprinter.h and sprinter-json.c can be used instead of\r
+the current ad-hoc output in all parts of notmuch, a patch for\r
+notmuch-search.c is included.\r
+\r
+In a later patch, all other parts of notmuch should be adapted to the\r
+structured formatters, and the creation of formatters should be\r
+centralised (to make adding new formatters easier).\r
+\r
+A "structured" formatter is provided for notmuch-search that prints the\r
+current text format. This removes all special-casing from\r
+notmuch-search.c, only structured output is used (and the formatter\r
+discards unnecessary parts or introduces extra formatting).\r
+\r