From: Austin Clements <amdragon@MIT.EDU>
To: notmuch@notmuchmail.org
Cc: tomi.ollila@iki.fi
Subject: [PATCH v2 00/13] Convert notmuch show to use structure printers
Date: Sat, 28 Jul 2012 00:29:01 -0400 [thread overview]
Message-ID: <1343449754-9010-1-git-send-email-amdragon@mit.edu> (raw)
This is version 2 of [0]. It adds some comments explaining handling
of NUL bytes in strings and moves a few variable assignments closer to
their uses.
[0] id:1343183693-17134-1-git-send-email-amdragon@mit.edu
The diff from version 1 follows. (Note that date was already assigned
where it was used in version 1, in addition to being assigned at the
beginning of format_message_json; hence the diff diff only shows it
being removed).
diff --git a/notmuch-show.c b/notmuch-show.c
index f5bc098..3556293 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -105,6 +105,8 @@ _get_one_line_summary (const void *ctx, notmuch_message_t *message)
from, relative_date, tags);
}
+/* Emit a sequence of key/value pairs for the metadata of message.
+ * The caller should begin a map before calling this. */
static void
format_message_json (sprinter_t *sp, notmuch_message_t *message)
{
@@ -113,9 +115,6 @@ format_message_json (sprinter_t *sp, notmuch_message_t *message)
time_t date;
const char *relative_date;
- date = notmuch_message_get_date (message);
- relative_date = notmuch_time_relative_date (local, date);
-
sp->map_key (sp, "id");
sp->string (sp, notmuch_message_get_message_id (message));
@@ -133,6 +132,7 @@ format_message_json (sprinter_t *sp, notmuch_message_t *message)
sp->integer (sp, date);
sp->map_key (sp, "date_relative");
+ relative_date = notmuch_time_relative_date (local, date);
sp->string (sp, relative_date);
sp->map_key (sp, "tags");
diff --git a/sprinter-json.c b/sprinter-json.c
index 2587ca6..c9b6835 100644
--- a/sprinter-json.c
+++ b/sprinter-json.c
@@ -88,6 +88,11 @@ json_end (struct sprinter *sp)
fputc ('\n', spj->stream);
}
+/* This implementation supports embedded NULs as allowed by the JSON
+ * specification and Unicode. Support for *parsing* embedded NULs
+ * varies, but is generally not a problem outside of C-based parsers
+ * (Python's json module and Emacs' json.el take embedded NULs in
+ * stride). */
static void
json_string_len (struct sprinter *sp, const char *val, size_t len)
{
diff --git a/sprinter.h b/sprinter.h
index 826a852..5f43175 100644
--- a/sprinter.h
+++ b/sprinter.h
@@ -23,9 +23,11 @@ typedef struct sprinter {
*/
void (*end) (struct sprinter *);
- /* Print one string/integer/boolean/null element (possibly inside a
- * list or map, followed or preceded by separators).
- * For string, the char * must be UTF-8 encoded.
+ /* Print one string/integer/boolean/null element (possibly inside
+ * a list or map, followed or preceded by separators). For string
+ * and string_len, the char * must be UTF-8 encoded. string_len
+ * allows non-terminated strings and strings with embedded NULs
+ * (though the handling of the latter is format-dependent).
*/
void (*string) (struct sprinter *, const char *);
void (*string_len) (struct sprinter *, const char *, size_t);
next reply other threads:[~2012-07-28 4:29 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-28 4:29 Austin Clements [this message]
2012-07-28 4:29 ` [PATCH v2 01/13] test: Uniformly canonicalize actual and expected JSON Austin Clements
2012-07-28 13:18 ` Mark Walters
2012-07-28 19:21 ` Austin Clements
2012-07-28 4:29 ` [PATCH v2 02/13] test: Remove unnecessary JSON canonicalization Austin Clements
2012-07-28 4:29 ` [PATCH v2 03/13] sprinter: Add a string_len method Austin Clements
2012-07-28 4:29 ` [PATCH v2 04/13] show: Associate an sprinter with each format Austin Clements
2012-07-28 4:29 ` [PATCH v2 05/13] reply: Create a JSON sprinter Austin Clements
2012-07-28 4:29 ` [PATCH v2 06/13] show: Feed the sprinter down to part formatters Austin Clements
2012-07-28 4:29 ` [PATCH v2 07/13] show: Convert format_headers_json to use sprinter Austin Clements
2012-07-28 4:29 ` [PATCH v2 08/13] show: Convert format_part_sigstatus_json " Austin Clements
2012-07-28 4:29 ` [PATCH v2 09/13] show: Convert non-envelope format_part_json " Austin Clements
2012-07-28 4:29 ` [PATCH v2 10/13] show: Convert envelope " Austin Clements
2012-07-28 4:29 ` [PATCH v2 11/13] show: Convert show_message " Austin Clements
2012-07-28 4:29 ` [PATCH v2 12/13] show: Convert do_show " Austin Clements
2012-07-28 4:29 ` [PATCH v2 13/13] show: Remove now unused fields from notmuch_show_format Austin Clements
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://notmuchmail.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1343449754-9010-1-git-send-email-amdragon@mit.edu \
--to=amdragon@mit.edu \
--cc=notmuch@notmuchmail.org \
--cc=tomi.ollila@iki.fi \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).