* [PATCH 6/6] Convert sha1_file.c to use decompress helpers
@ 2008-01-11 19:01 Marco Costalba
0 siblings, 0 replies; only message in thread
From: Marco Costalba @ 2008-01-11 19:01 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Git Mailing List
This is "The King".
It is the most difficult file to convert and some
decompression functions have been created just for it.
Anyhow the lines of code removed (45) far surpass the
ones added (26).
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
---
This is the last patch all git has been converted to
compress/decompress helpers.
No more open coded zlib calls in git now.
sha1_file.c | 71 +++++++++++++++++++++------------------
1 files changed, 26 insertions(+), 45 deletions(-)
diff --git a/sha1_file.c b/sha1_file.c
index 6c94bd5..708727a 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1063,16 +1063,11 @@ static int unpack_sha1_header(z_stream *stream,
enum object_type type;
/* Get the data stream */
- memset(stream, 0, sizeof(*stream));
- stream->next_in = map;
- stream->avail_in = mapsize;
- stream->next_out = buffer;
- stream->avail_out = bufsiz;
+ decompress_alloc(stream);
+ decompress_into(stream, buffer, bufsiz);
- if (legacy_loose_object(map)) {
- inflateInit(stream);
- return inflate(stream, 0);
- }
+ if (legacy_loose_object(map))
+ return decompress_next_from(stream, map, mapsize, Z_NO_FLUSH);
/*
@@ -1089,9 +1084,7 @@ static int unpack_sha1_header(z_stream *stream,
mapsize -= used;
/* Set up the stream for the rest.. */
- stream->next_in = map;
- stream->avail_in = mapsize;
- inflateInit(stream);
+ decompress_from(stream, map, mapsize);
/* And generate the fake traditional header */
stream->total_out = 1 + snprintf(buffer, bufsiz, "%s %lu",
@@ -1125,14 +1118,13 @@ static void *unpack_sha1_rest(z_stream *stream,
* we also want to check that zlib tells us that all
* went well with status == Z_STREAM_END at the end.
*/
- stream->next_out = buf + bytes;
- stream->avail_out = size - bytes;
+ decompress_into(stream, buf + bytes, size - bytes);
while (status == Z_OK)
- status = inflate(stream, Z_FINISH);
+ status = decompress_next(stream, Z_FINISH);
}
buf[size] = 0;
if (status == Z_STREAM_END && !stream->avail_in) {
- inflateEnd(stream);
+ decompress_free(stream);
return buf;
}
@@ -1217,20 +1209,18 @@ unsigned long get_size_from_delta(struct
unsigned char delta_head[20], *in;
z_stream stream;
int st;
+ unsigned int in_size = 0;
- memset(&stream, 0, sizeof(stream));
- stream.next_out = delta_head;
- stream.avail_out = sizeof(delta_head);
+ decompress_alloc(&stream);
+ decompress_into(&stream, delta_head, sizeof(delta_head));
- inflateInit(&stream);
do {
- in = use_pack(p, w_curs, curpos, &stream.avail_in);
- stream.next_in = in;
- st = inflate(&stream, Z_FINISH);
+ in = use_pack(p, w_curs, curpos, &in_size);
+ st = decompress_next_from(&stream, in, in_size, Z_FINISH);
curpos += stream.next_in - in;
} while ((st == Z_OK || st == Z_BUF_ERROR) &&
stream.total_out < sizeof(delta_head));
- inflateEnd(&stream);
+ decompress_free(&stream);
if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head))
die("delta data unpack-initial failed");
@@ -1307,7 +1297,7 @@ static int packed_delta_info(struct packed_git *p,
/* We choose to only get the type of the base object and
* ignore potentially corrupt pack file that expects the delta
* based on a base with a wrong size. This saves tons of
- * inflate() calls.
+ * decompress() calls.
*/
if (sizep)
*sizep = get_size_from_delta(p, w_curs, curpos);
@@ -1428,21 +1418,18 @@ static void *unpack_compressed_entry(struct
int st;
z_stream stream;
unsigned char *buffer, *in;
+ unsigned int in_size = 0;
buffer = xmalloc(size + 1);
buffer[size] = 0;
- memset(&stream, 0, sizeof(stream));
- stream.next_out = buffer;
- stream.avail_out = size;
-
- inflateInit(&stream);
+ decompress_alloc(&stream);
+ decompress_into(&stream, buffer, size);
do {
- in = use_pack(p, w_curs, curpos, &stream.avail_in);
- stream.next_in = in;
- st = inflate(&stream, Z_FINISH);
+ in = use_pack(p, w_curs, curpos, &in_size);
+ st = decompress_next_from(&stream, in, in_size, Z_FINISH);
curpos += stream.next_in - in;
} while (st == Z_OK || st == Z_BUF_ERROR);
- inflateEnd(&stream);
+ decompress_free(&stream);
if ((st != Z_STREAM_END) || stream.total_out != size) {
free(buffer);
return NULL;
@@ -1788,7 +1775,7 @@ static int sha1_loose_object_info(const unsigned
status = error("unable to parse %s header", sha1_to_hex(sha1));
else if (sizep)
*sizep = size;
- inflateEnd(&stream);
+ decompress_free(&stream);
munmap(map, mapsize);
return status;
}
@@ -2196,21 +2183,15 @@ int write_sha1_from_fd(const unsigned char
*sha1, int fd,
return error("unable to create temporary sha1 filename %s: %s\n",
tmpfile, strerror(errno));
}
- memset(&stream, 0, sizeof(stream));
-
- inflateInit(&stream);
-
+ decompress_alloc(&stream);
SHA1_Init(&c);
do {
ssize_t size;
if (*bufposn) {
- stream.avail_in = *bufposn;
- stream.next_in = (unsigned char *) buffer;
+ decompress_from(&stream, (unsigned char *) buffer, *bufposn);
do {
- stream.next_out = discard;
- stream.avail_out = sizeof(discard);
- ret = inflate(&stream, Z_SYNC_FLUSH);
+ ret = decompress_next_into(&stream, discard, sizeof(discard),
Z_SYNC_FLUSH);
SHA1_Update(&c, discard, sizeof(discard) -
stream.avail_out);
} while (stream.avail_in && ret == Z_OK);
@@ -2233,7 +2214,7 @@ int write_sha1_from_fd(const unsigned char *sha1, int fd,
}
*bufposn += size;
} while (1);
- inflateEnd(&stream);
+ decompress_free(&stream);
fchmod(local, 0444);
if (close(local) != 0)
--
1.5.4.rc2.90.gf158-dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-11 19:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-11 19:01 [PATCH 6/6] Convert sha1_file.c to use decompress helpers Marco Costalba
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).