From: "Marco Costalba" <mcostalba@gmail.com>
To: "Junio C Hamano" <gitster@pobox.com>
Cc: "Git Mailing List" <git@vger.kernel.org>
Subject: [PATCH 3/6] Use new decompress_all() helper in git
Date: Fri, 11 Jan 2008 19:56:17 +0100 [thread overview]
Message-ID: <e5bfff550801111056v3b214442sf21e7eb6cc4da@mail.gmail.com> (raw)
Only in two places is possible to really simplify
deflate code with the all_in_one decompress_all()
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
---
builtin-apply.c | 23 +++++++++--------------
index-pack.c | 30 +++++++-----------------------
2 files changed, 16 insertions(+), 37 deletions(-)
diff --git a/builtin-apply.c b/builtin-apply.c
index d57bb6e..6dd2b8c 100644
--- a/builtin-apply.c
+++ b/builtin-apply.c
@@ -8,6 +8,7 @@
*/
#include "cache.h"
#include "cache-tree.h"
+#include "compress.h"
#include "quote.h"
#include "blob.h"
#include "delta.h"
@@ -1105,23 +1106,17 @@ static inline int metadata_changes(struct
static char *inflate_it(const void *data, unsigned long size,
unsigned long inflated_size)
{
- z_stream stream;
- void *out;
- int st;
+ unsigned char *out;
+ unsigned long out_size;
- memset(&stream, 0, sizeof(stream));
+ out = xmalloc(inflated_size);
+ out_size = decompress_all((unsigned char *)data, size, out, inflated_size);
- stream.next_in = (unsigned char *)data;
- stream.avail_in = size;
- stream.next_out = out = xmalloc(inflated_size);
- stream.avail_out = inflated_size;
- inflateInit(&stream);
- st = inflate(&stream, Z_FINISH);
- if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
+ if (out_size != inflated_size) {
free(out);
return NULL;
}
- return out;
+ return (char *)out;
}
static struct fragment *parse_binary_hunk(char **buf_p,
diff --git a/index-pack.c b/index-pack.c
index 880088e..30d7837 100644
--- a/index-pack.c
+++ b/index-pack.c
@@ -169,24 +169,18 @@ static void *unpack_entry_data(unsigned long offset,
z_stream stream;
void *buf = xmalloc(size);
- memset(&stream, 0, sizeof(stream));
- stream.next_out = buf;
- stream.avail_out = size;
- stream.next_in = fill(1);
- stream.avail_in = input_len;
- inflateInit(&stream);
+ decompress_alloc(&stream);
+ decompress_into(&stream, buf, size);
for (;;) {
- int ret = inflate(&stream, 0);
+ int ret = decompress_next_from(&stream, fill(1), input_len, Z_NO_FLUSH);
use(input_len - stream.avail_in);
if (stream.total_out == size && ret == Z_STREAM_END)
break;
if (ret != Z_OK)
- bad_object(offset, "inflate returned %d", ret);
- stream.next_in = fill(1);
- stream.avail_in = input_len;
+ bad_object(offset, "decompress returned %d", ret);
}
- inflateEnd(&stream);
+ decompress_free(&stream);
return buf;
}
@@ -261,8 +255,6 @@ static void *get_data_from_pack(struct object_entry
unsigned long len = obj[1].idx.offset - from;
unsigned long rdy = 0;
unsigned char *src, *data;
- z_stream stream;
- int st;
src = xmalloc(len);
data = src;
@@ -273,16 +265,8 @@ static void *get_data_from_pack(struct object_entry
rdy += n;
} while (rdy < len);
data = xmalloc(obj->size);
- memset(&stream, 0, sizeof(stream));
- stream.next_out = data;
- stream.avail_out = obj->size;
- stream.next_in = src;
- stream.avail_in = len;
- inflateInit(&stream);
- while ((st = inflate(&stream, Z_FINISH)) == Z_OK);
- inflateEnd(&stream);
- if (st != Z_STREAM_END || stream.total_out != obj->size)
- die("serious inflate inconsistency");
+ if (decompress_all(src, len, data, obj->size) != obj->size)
+ die("serious decompress inconsistency");
free(src);
return data;
}
--
1.5.4.rc2.90.gf158-dirty
reply other threads:[~2008-01-11 18:56 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=e5bfff550801111056v3b214442sf21e7eb6cc4da@mail.gmail.com \
--to=mcostalba@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/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).