Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 9EA86431FB6 for ; Sun, 16 Dec 2012 13:02:49 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OtkiJEnwh+zK for ; Sun, 16 Dec 2012 13:02:48 -0800 (PST) Received: from mail-lb0-f181.google.com (mail-lb0-f181.google.com [209.85.217.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 3D692431FAE for ; Sun, 16 Dec 2012 13:02:48 -0800 (PST) Received: by mail-lb0-f181.google.com with SMTP id ge1so4052228lbb.26 for ; Sun, 16 Dec 2012 13:02:46 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=t8NVASQowTpZUk4AXOnrU0N6sn43nvesBF5AAzvRf4g=; b=USGYPDSyLruTLz+yQ+6on3nEG6TybcJMKlPuUt1OxM29BTe/PBWSaO/UCyG/TFAcqD Y+QCDQMOBBIilMwrMEgLfxy9A5I/rIOs0OAQ6AzlO0tmx6lZE0ylxO+vdQbcf0DEyJfz nsngz3BdqfQq5l3ZPNW8QIEG9zpxeiqaNcnMBeqtvBP8I7VCndcjuzKVoTRcUhcqivKb +DTv1W+Qua7Xbt6yo5IaZJR2q5uhUwEpJfeo5yD5rqISA/gVVqwkHT2Wu3Vh5hSQmHvd EkqIalNkVbfxJZACyfMMAD+soxRSDUmCDMj6BRtnKJCZfs988/cEhzTkr9HuNrtO4h9N QYnw== Received: by 10.152.104.240 with SMTP id gh16mr9043006lab.56.1355691765479; Sun, 16 Dec 2012 13:02:45 -0800 (PST) Received: from localhost (dsl-hkibrasgw4-50df51-27.dhcp.inet.fi. [80.223.81.27]) by mx.google.com with ESMTPS id hu6sm4069419lab.13.2012.12.16.13.02.43 (version=SSLv3 cipher=OTHER); Sun, 16 Dec 2012 13:02:44 -0800 (PST) From: Jani Nikula To: notmuch@notmuchmail.org Subject: [PATCH v3 0/5] add --format=text0 to notmuch search Date: Sun, 16 Dec 2012 23:02:36 +0200 Message-Id: X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQkjXew7LwPZ1DoVStcoP14UZpWkOele8gMabIennqft6ywnqohbNUXxqyYwvH6qZJJGUQ48 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Dec 2012 21:02:49 -0000 Hi all, v3 of id:cover.1355064714.git.jani@nikula.org Changes since v2: * add new patch 1/5 to clarify sprinter documentation * fix the test patch 4/5 according to id:8738z6wguj.fsf@qmul.ac.uk and id:87y5gyvvv7.fsf@awakening.csail.mit.edu Diff to v2 at the end of the cover letter. BR, Jani. Jani Nikula (5): sprinter: clarify separator documentation sprinter: add text0 formatter for null character separated text cli: add --format=text0 to notmuch search test: notmuch search --format=text0 man: document notmuch search --format=text0 man/man1/notmuch-search.1 | 26 ++++++++++++++++---------- notmuch-search.c | 16 ++++++++++++++-- sprinter-text.c | 22 ++++++++++++++++++++++ sprinter.h | 15 +++++++++++---- test/text | 33 +++++++++++++++++++++++++++++++++ 5 files changed, 96 insertions(+), 16 deletions(-) -- 1.7.10.4 diff --git a/sprinter.h b/sprinter.h index f36b999..f859672 100644 --- a/sprinter.h +++ b/sprinter.h @@ -42,10 +42,11 @@ typedef struct sprinter { */ void (*map_key) (struct sprinter *, const char *); - /* Insert a separator (usually extra whitespace) for improved - * readability without affecting the abstract syntax of the - * structure being printed. - * For JSON, this could simply be a line break. + /* Insert a separator (usually extra whitespace). For the text + * printers, this is a syntactic separator. For the structured + * printers, this is for improved readability without affecting + * the abstract syntax of the structure being printed. For JSON, + * this could simply be a line break. */ void (*separator) (struct sprinter *); diff --git a/test/text b/test/text index e003a66..b5ccefc 100755 --- a/test/text +++ b/test/text @@ -55,30 +55,34 @@ test_expect_equal "$output" \ add_email_corpus test_begin_subtest "Search message tags: text0" -cat < EXPECTED.$test_count +cat < EXPECTED attachment inbox signed unread EOF -notmuch search --format=text0 --output=tags '*' | xargs -0 | notmuch_search_sanitize > OUTPUT.$test_count -test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count +notmuch search --format=text0 --output=tags '*' | xargs -0 | notmuch_search_sanitize > OUTPUT +test_expect_equal_file EXPECTED OUTPUT +# Use tr(1) to convert --output=text0 to --output=text for +# comparison. Also translate newlines to spaces to fail with more +# noise if they are present as delimiters instead of null +# characters. This assumes there are no newlines in the data. test_begin_subtest "Compare text vs. text0 for threads" -notmuch search --format=text --output=threads '*' | notmuch_search_sanitize > EXPECTED.$test_count -notmuch search --format=text0 --output=threads '*' | xargs -0 -L1 | notmuch_search_sanitize > OUTPUT.$test_count -test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count +notmuch search --format=text --output=threads '*' | notmuch_search_sanitize > EXPECTED +notmuch search --format=text0 --output=threads '*' | tr "\n\0" " \n" | notmuch_search_sanitize > OUTPUT +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Compare text vs. text0 for messages" -notmuch search --format=text --output=messages '*' | notmuch_search_sanitize > EXPECTED.$test_count -notmuch search --format=text0 --output=messages '*' | xargs -0 -L1 | notmuch_search_sanitize > OUTPUT.$test_count -test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count +notmuch search --format=text --output=messages '*' | notmuch_search_sanitize > EXPECTED +notmuch search --format=text0 --output=messages '*' | tr "\n\0" " \n" | notmuch_search_sanitize > OUTPUT +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Compare text vs. text0 for files" -notmuch search --format=text --output=files '*' | notmuch_search_sanitize > EXPECTED.$test_count -notmuch search --format=text0 --output=files '*' | xargs -0 -L1 | notmuch_search_sanitize > OUTPUT.$test_count -test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count +notmuch search --format=text --output=files '*' | notmuch_search_sanitize > EXPECTED +notmuch search --format=text0 --output=files '*' | tr "\n\0" " \n" | notmuch_search_sanitize > OUTPUT +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Compare text vs. text0 for tags" -notmuch search --format=text --output=tags '*' | notmuch_search_sanitize > EXPECTED.$test_count -notmuch search --format=text0 --output=tags '*' | xargs -0 -L1 | notmuch_search_sanitize > OUTPUT.$test_count -test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count +notmuch search --format=text --output=tags '*' | notmuch_search_sanitize > EXPECTED +notmuch search --format=text0 --output=tags '*' | tr "\n\0" " \n" | notmuch_search_sanitize > OUTPUT +test_expect_equal_file EXPECTED OUTPUT test_done