Structured Formatters for JSON Output
authorcraven <craven@gmx.net>
Thu, 12 Jul 2012 07:43:21 +0000 (09:43 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:48:11 +0000 (09:48 -0800)
f0/a31d3766214b7497f95da6c619c9a3ca6ab021 [new file with mode: 0644]

diff --git a/f0/a31d3766214b7497f95da6c619c9a3ca6ab021 b/f0/a31d3766214b7497f95da6c619c9a3ca6ab021
new file mode 100644 (file)
index 0000000..d5837c4
--- /dev/null
@@ -0,0 +1,68 @@
+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 644FE431FC7\r
+       for <notmuch@notmuchmail.org>; Thu, 12 Jul 2012 00:42:10 -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 R2pb9xRe7Xq5 for <notmuch@notmuchmail.org>;\r
+       Thu, 12 Jul 2012 00:42:10 -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 9E3F8431FAE\r
+       for <notmuch@notmuchmail.org>; Thu, 12 Jul 2012 00:42:09 -0700 (PDT)\r
+Received: (qmail invoked by alias); 12 Jul 2012 07:42:02 -0000\r
+Received: from gw.arelion.cust.net.lagis.at (EHLO dodekanex.arelion.at)\r
+       [83.164.197.182]\r
+       by mail.gmx.net (mp033) with SMTP; 12 Jul 2012 09:42:02 +0200\r
+X-Authenticated: #201305\r
+X-Provags-ID: V01U2FsdGVkX19uyYcosdlugZbxWUIO4vqOl3GmgQ8WephdZfN7M7\r
+       4ENuSjvnTyIjUi\r
+Received: by dodekanex.arelion.at (Postfix, from userid 1000)\r
+       id F039C3011C0; Thu, 12 Jul 2012 09:43:30 +0200 (CEST)\r
+From: <craven@gmx.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: Structured Formatters for JSON Output\r
+Date: Thu, 12 Jul 2012 09:43:21 +0200\r
+Message-Id: <1342079004-5300-1-git-send-email-craven@gmx.net>\r
+X-Mailer: git-send-email 1.7.11.1\r
+In-Reply-To: <87d34hsdx8.fsf@awakening.csail.mit.edu>\r
+References: <87d34hsdx8.fsf@awakening.csail.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: Thu, 12 Jul 2012 07:42:10 -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 structured output\r
+for elements like lists, maps, strings and numbers.\r
+\r
+The new code in sprinter.h and sprinter.c can be used\r
+instead of the current ad-hoc output in all parts of notmuch, a patch\r
+for 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