From: David Bremner Date: Thu, 3 Apr 2014 19:41:21 +0000 (+2100) Subject: [Patch v6 4/6] restore: transparently support gzipped input X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=734ac8acc14d9d33a25114988dcc8d08ab4d9437;p=notmuch-archives.git [Patch v6 4/6] restore: transparently support gzipped input --- diff --git a/77/1f4f20731d4917e4e76081a1b8921f6cfb05e8 b/77/1f4f20731d4917e4e76081a1b8921f6cfb05e8 new file mode 100644 index 000000000..61bbcda09 --- /dev/null +++ b/77/1f4f20731d4917e4e76081a1b8921f6cfb05e8 @@ -0,0 +1,201 @@ +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 F3A9E431FCF + for ; Thu, 3 Apr 2014 19:43:32 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0 +X-Spam-Level: +X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] + 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 Cx2eCdI3zupG for ; + Thu, 3 Apr 2014 19:43:27 -0700 (PDT) +Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net + [87.98.215.224]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 87296431FCB + for ; Thu, 3 Apr 2014 19:43:27 -0700 (PDT) +Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim + 4.72) (envelope-from ) + id 1WVtWq-000174-1D; Fri, 04 Apr 2014 02:06:48 +0000 +Received: (nullmailer pid 4018 invoked by uid 1000); Thu, 03 Apr 2014 + 19:41:39 -0000 +From: David Bremner +To: notmuch@notmuchmail.org +Subject: [Patch v6 4/6] restore: transparently support gzipped input +Date: Thu, 3 Apr 2014 16:41:21 -0300 +Message-Id: <1396554083-3892-5-git-send-email-david@tethera.net> +X-Mailer: git-send-email 1.9.0 +In-Reply-To: <1396554083-3892-1-git-send-email-david@tethera.net> +References: <1396554083-3892-1-git-send-email-david@tethera.net> +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: Fri, 04 Apr 2014 02:43:33 -0000 + +We rely completely on zlib to do the right thing in detecting gzipped +input. Since our dump format is chosen to be 7 bit ascii, this should +be fine. +--- + doc/man1/notmuch-restore.rst | 8 ++++++++ + notmuch-restore.c | 41 ++++++++++++++++++++++++++--------------- + test/T240-dump-restore.sh | 14 ++++++++++++++ + 3 files changed, 48 insertions(+), 15 deletions(-) + +diff --git a/doc/man1/notmuch-restore.rst b/doc/man1/notmuch-restore.rst +index d6cf19a..936b138 100644 +--- a/doc/man1/notmuch-restore.rst ++++ b/doc/man1/notmuch-restore.rst +@@ -50,6 +50,14 @@ Supported options for **restore** include + format, this heuristic, based the fact that batch-tag format + contains no parentheses, should be accurate. + ++GZIPPED INPUT ++============= ++ ++\ **notmuch restore** will detect if the input is compressed in ++**gzip(1)** format and automatically decompress it while reading. This ++detection does not depend on file naming and in particular works for ++standard input. ++ + SEE ALSO + ======== + +diff --git a/notmuch-restore.c b/notmuch-restore.c +index c54d513..eb5b7b2 100644 +--- a/notmuch-restore.c ++++ b/notmuch-restore.c +@@ -22,6 +22,7 @@ + #include "hex-escape.h" + #include "tag-util.h" + #include "string-util.h" ++#include "zlib-extra.h" + + static regex_t regex; + +@@ -128,10 +129,9 @@ notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]) + tag_op_list_t *tag_ops; + + char *input_file_name = NULL; +- FILE *input = stdin; ++ gzFile input; + char *line = NULL; + void *line_ctx = NULL; +- size_t line_size; + ssize_t line_len; + + int ret = 0; +@@ -163,13 +163,23 @@ notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]) + if (! accumulate) + flags |= TAG_FLAG_REMOVE_ALL; + +- if (input_file_name) { +- input = fopen (input_file_name, "r"); +- if (input == NULL) { +- fprintf (stderr, "Error opening %s for reading: %s\n", +- input_file_name, strerror (errno)); ++ if (input_file_name) ++ input = gzopen (input_file_name, "r"); ++ else { ++ int infd = dup (STDIN_FILENO); ++ if (infd < 0) { ++ fprintf (stderr, "Error duping stdin\n"); + return EXIT_FAILURE; + } ++ input = gzdopen (infd, "r"); ++ if (! input) ++ close (infd); ++ } ++ ++ if (input == NULL) { ++ fprintf (stderr, "Error opening %s for (gzip) reading: %s\n", ++ input_file_name ? input_file_name : "stdin", strerror (errno)); ++ return EXIT_FAILURE; + } + + if (opt_index < argc) { +@@ -184,12 +194,17 @@ notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]) + } + + do { +- line_len = getline (&line, &line_size, input); ++ util_status_t status; ++ ++ status = gz_getline (line_ctx, &line, &line_len, input); + + /* empty input file not considered an error */ +- if (line_len < 0) ++ if (status == UTIL_EOF) + return EXIT_SUCCESS; + ++ if (status) ++ return EXIT_FAILURE; ++ + } while ((line_len == 0) || + (line[0] == '#') || + /* the cast is safe because we checked about for line_len < 0 */ +@@ -254,7 +269,7 @@ notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]) + if (ret) + break; + +- } while ((line_len = getline (&line, &line_size, input)) != -1); ++ } while (gz_getline (line_ctx, &line, &line_len, input) == UTIL_SUCCESS); + + if (line_ctx != NULL) + talloc_free (line_ctx); +@@ -262,13 +277,9 @@ notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]) + if (input_format == DUMP_FORMAT_SUP) + regfree (®ex); + +- if (line) +- free (line); +- + notmuch_database_destroy (notmuch); + +- if (input != stdin) +- fclose (input); ++ gzclose_r (input); + + return ret ? EXIT_FAILURE : EXIT_SUCCESS; + } +diff --git a/test/T240-dump-restore.sh b/test/T240-dump-restore.sh +index b6d8602..efe463e 100755 +--- a/test/T240-dump-restore.sh ++++ b/test/T240-dump-restore.sh +@@ -80,6 +80,20 @@ notmuch dump --gzip --output=dump-gzip-outfile.gz + gunzip dump-gzip-outfile.gz + test_expect_equal_file dump.expected dump-gzip-outfile + ++test_begin_subtest "restoring gzipped stdin" ++notmuch dump --gzip --output=backup.gz ++notmuch tag +new_tag '*' ++notmuch restore < backup.gz ++notmuch dump --output=dump.actual ++test_expect_equal_file dump.expected dump.actual ++ ++test_begin_subtest "restoring gzipped file" ++notmuch dump --gzip --output=backup.gz ++notmuch tag +new_tag '*' ++notmuch restore --input=backup.gz ++notmuch dump --output=dump.actual ++test_expect_equal_file dump.expected dump.actual ++ + # Note, we assume all messages from cworth have a message-id + # containing cworth.org + +-- +1.9.0 +