2010-11-06 19:47:34 +08:00
|
|
|
/*
|
|
|
|
* zlib wrappers to make sure we don't silently miss errors
|
|
|
|
* at init time.
|
|
|
|
*/
|
|
|
|
#include "cache.h"
|
|
|
|
|
2011-06-11 01:31:34 +08:00
|
|
|
static const char *zerr_to_string(int status)
|
2010-11-06 19:47:34 +08:00
|
|
|
{
|
2011-06-11 01:31:34 +08:00
|
|
|
switch (status) {
|
2010-11-06 19:47:34 +08:00
|
|
|
case Z_MEM_ERROR:
|
2011-06-11 01:31:34 +08:00
|
|
|
return "out of memory";
|
2010-11-06 19:47:34 +08:00
|
|
|
case Z_VERSION_ERROR:
|
2011-06-11 01:31:34 +08:00
|
|
|
return "wrong version";
|
|
|
|
case Z_NEED_DICT:
|
|
|
|
return "needs dictionary";
|
|
|
|
case Z_DATA_ERROR:
|
|
|
|
return "data stream error";
|
|
|
|
case Z_STREAM_ERROR:
|
|
|
|
return "stream consistency error";
|
2010-11-06 19:47:34 +08:00
|
|
|
default:
|
2011-06-11 01:31:34 +08:00
|
|
|
return "unknown error";
|
2010-11-06 19:47:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-11 01:31:34 +08:00
|
|
|
void git_inflate_init(z_streamp strm)
|
2010-11-06 19:47:34 +08:00
|
|
|
{
|
2011-06-11 01:31:34 +08:00
|
|
|
int status = inflateInit(strm);
|
|
|
|
|
|
|
|
if (status == Z_OK)
|
|
|
|
return;
|
|
|
|
die("inflateInit: %s (%s)", zerr_to_string(status),
|
|
|
|
strm->msg ? strm->msg : "no message");
|
2010-11-06 19:47:34 +08:00
|
|
|
}
|
|
|
|
|
2011-06-11 01:31:34 +08:00
|
|
|
void git_inflate_end(z_streamp strm)
|
2010-11-06 19:47:34 +08:00
|
|
|
{
|
2011-06-11 01:31:34 +08:00
|
|
|
int status = inflateEnd(strm);
|
2010-11-06 19:47:34 +08:00
|
|
|
|
2011-06-11 01:31:34 +08:00
|
|
|
if (status == Z_OK)
|
|
|
|
return;
|
|
|
|
error("inflateEnd: %s (%s)", zerr_to_string(status),
|
|
|
|
strm->msg ? strm->msg : "no message");
|
|
|
|
}
|
2010-11-06 19:47:34 +08:00
|
|
|
|
2011-06-11 01:31:34 +08:00
|
|
|
int git_inflate(z_streamp strm, int flush)
|
|
|
|
{
|
|
|
|
int status = inflate(strm, flush);
|
2010-11-06 19:47:34 +08:00
|
|
|
|
2011-06-11 01:31:34 +08:00
|
|
|
switch (status) {
|
2010-11-06 19:47:34 +08:00
|
|
|
/* Z_BUF_ERROR: normal, needs more space in the output buffer */
|
|
|
|
case Z_BUF_ERROR:
|
|
|
|
case Z_OK:
|
|
|
|
case Z_STREAM_END:
|
2011-06-11 01:31:34 +08:00
|
|
|
return status;
|
|
|
|
|
|
|
|
case Z_MEM_ERROR:
|
|
|
|
die("inflate: out of memory");
|
|
|
|
default:
|
|
|
|
break;
|
2010-11-06 19:47:34 +08:00
|
|
|
}
|
2011-06-11 01:31:34 +08:00
|
|
|
error("inflate: %s (%s)", zerr_to_string(status),
|
|
|
|
strm->msg ? strm->msg : "no message");
|
|
|
|
return status;
|
2010-11-06 19:47:34 +08:00
|
|
|
}
|