From: Junio C Hamano <gitster@pobox.com>
To: Jeff King <peff@peff.net>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 08/13] t/helper: add zlib test-tool
Date: Mon, 19 May 2025 08:03:11 -0700 [thread overview]
Message-ID: <xmqqo6voprrk.fsf@gitster.g> (raw)
In-Reply-To: <20250516044959.GH22242@coredump.intra.peff.net> (Jeff King's message of "Fri, 16 May 2025 00:49:59 -0400")
Jeff King <peff@peff.net> writes:
> So let's introduce a short test helper for just doing zlib operations.
Oooh. I remember that I did want to use something like this from
time to time. Nice.
> +static void do_zlib(struct git_zstream *stream,
> + int (*zlib_func)(git_zstream *, int),
> + int fd_in, int fd_out)
> +{
> + struct strbuf buf_in = STRBUF_INIT;
> + int status = Z_OK;
> +
> + if (strbuf_read(&buf_in, fd_in, 0) < 0)
> + die_errno("read error");
> +
> + stream->next_in = (unsigned char *)buf_in.buf;
> + stream->avail_in = buf_in.len;
> +
> + while (status == Z_OK ||
> + (status == Z_BUF_ERROR && !stream->avail_out)) {
> + unsigned char buf_out[4096];
> +
> + stream->next_out = buf_out;
> + stream->avail_out = sizeof(buf_out);
> +
> + status = zlib_func(stream, Z_FINISH);
> + if (write_in_full(fd_out, buf_out,
> + sizeof(buf_out) - stream->avail_out) < 0)
> + die_errno("write error");
> + }
Even though I may have written this as do {} while() loop, I do not
mind a while () loop that depends on status being initialized to
Z_OK.
> + if (status != Z_STREAM_END)
> + die("zlib error %d", status);
> +
> + strbuf_release(&buf_in);
> +}
Looking good.
> +int cmd__zlib(int argc, const char **argv)
> +{
> + git_zstream stream;
> +
> + if (argc != 2)
> + usage(zlib_usage);
> +
> + memset(&stream, 0, sizeof(stream));
> +
> + if (!strcmp(argv[1], "inflate")) {
> + git_inflate_init(&stream);
> + do_zlib(&stream, git_inflate, 0, 1);
> + git_inflate_end(&stream);
> + } else if (!strcmp(argv[1], "deflate")) {
> + git_deflate_init(&stream, Z_DEFAULT_COMPRESSION);
> + do_zlib(&stream, git_deflate, 0, 1);
> + git_deflate_end(&stream);
> + } else {
> + error("unknown mode: %s", argv[1]);
> + usage(zlib_usage);
> + }
> +
> + return 0;
> +}
next prev parent reply other threads:[~2025-05-19 15:03 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-16 4:49 [PATCH 0/13] dropping support for non-standard object types Jeff King
2025-05-16 4:49 ` [PATCH 01/13] object-file.h: fix typo in variable declaration Jeff King
2025-05-16 4:49 ` [PATCH 02/13] cat-file: make --allow-unknown-type a noop Jeff King
2025-05-16 9:52 ` Patrick Steinhardt
2025-05-19 6:16 ` Jeff King
2025-05-19 7:22 ` Patrick Steinhardt
2025-05-16 16:47 ` Junio C Hamano
2025-05-16 4:49 ` [PATCH 03/13] object-file: drop OBJECT_INFO_ALLOW_UNKNOWN_TYPE flag Jeff King
2025-05-16 4:49 ` [PATCH 04/13] cat-file: use type enum instead of buffer for -t option Jeff King
2025-05-16 16:56 ` Junio C Hamano
2025-05-16 4:49 ` [PATCH 05/13] oid_object_info_convert(): stop using string for object type Jeff King
2025-05-16 4:49 ` [PATCH 06/13] fsck: stop using object_info->type_name strbuf Jeff King
2025-05-16 9:52 ` Patrick Steinhardt
2025-05-19 14:26 ` Junio C Hamano
2025-05-19 17:00 ` Jeff King
2025-05-16 4:49 ` [PATCH 07/13] oid_object_info(): drop type_name strbuf Jeff King
2025-05-19 14:58 ` Junio C Hamano
2025-05-16 4:49 ` [PATCH 08/13] t/helper: add zlib test-tool Jeff King
2025-05-19 15:03 ` Junio C Hamano [this message]
2025-05-19 17:03 ` Jeff King
2025-05-21 13:44 ` Junio C Hamano
2025-05-16 4:50 ` [PATCH 09/13] t: add lib-loose.sh Jeff King
2025-05-16 9:52 ` Patrick Steinhardt
2025-05-19 6:17 ` Jeff King
2025-05-19 15:12 ` Junio C Hamano
2025-05-16 4:50 ` [PATCH 10/13] hash-object: stop allowing unknown types Jeff King
2025-05-19 15:15 ` Junio C Hamano
2025-05-16 4:50 ` [PATCH 11/13] hash-object: merge HASH_* and INDEX_* flags Jeff King
2025-05-16 9:52 ` Patrick Steinhardt
2025-05-16 4:50 ` [PATCH 12/13] hash-object: handle --literally with OPT_NEGBIT Jeff King
2025-05-19 15:30 ` Junio C Hamano
2025-05-16 4:50 ` [PATCH 13/13] object-file: drop support for writing objects with unknown types Jeff King
2025-05-16 9:52 ` Patrick Steinhardt
2025-05-19 15:32 ` Junio C Hamano
2025-05-16 16:36 ` [PATCH 0/13] dropping support for non-standard object types Junio C Hamano
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqqo6voprrk.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=peff@peff.net \
/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.
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 NNTP newsgroup(s).