1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/* inflatestream.cpp
* Copyright (C) 2003-2005 Tommi Maekitalo
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
* NON-INFRINGEMENT. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "tnt/inflatestream.h"
#include <cxxtools/log.h>
#include <cxxtools/dynbuffer.h>
#include <sstream>
log_define("tntnet.inflatestream")
namespace tnt
{
namespace
{
void checkError(int ret, z_stream& stream)
{
if (ret != Z_OK)
{
log_error("InflateError " << ret << ": \"" << (stream.msg ? stream.msg : "") << '"');
std::ostringstream msg;
msg << "inflate-error " << ret;
if (stream.msg)
msg << ": " << stream.msg;
throw InflateError(ret, msg.str());
}
}
}
InflateStreamBuf::InflateStreamBuf(std::streambuf* sink_, unsigned bufsize_)
: obuffer(new char_type[bufsize_]),
bufsize(bufsize_),
sink(sink_)
{
stream.zalloc = Z_NULL;
stream.zfree = Z_NULL;
stream.opaque = 0;
stream.total_out = 0;
stream.total_in = 0;
checkError(::inflateInit(&stream), stream);
setp(obuffer, obuffer + bufsize);
}
InflateStreamBuf::~InflateStreamBuf()
{
::inflateEnd(&stream);
delete obuffer;
}
InflateStreamBuf::int_type InflateStreamBuf::overflow(int_type c)
{
log_debug("InflateStreamBuf::overflow");
// initialize input-stream for
stream.next_in = (Bytef*)obuffer;
stream.avail_in = pptr() - pbase();
do
{
// initialize zbuffer
cxxtools::Dynbuffer<Bytef> zbuffer(bufsize);
stream.next_out = zbuffer.data();
stream.avail_out = bufsize;
log_debug("pre:avail_out=" << stream.avail_out << " avail_in=" << stream.avail_in);
checkError(::inflate(&stream, Z_SYNC_FLUSH), stream);
log_debug("post:avail_out=" << stream.avail_out << " avail_in=" << stream.avail_in);
// copy zbuffer to sink
std::streamsize count = bufsize - stream.avail_out;
std::streamsize n = sink->sputn(reinterpret_cast<char*>(zbuffer.data()), count);
if (n < count)
return traits_type::eof();
} while (stream.avail_in > 0);
// reset outbuffer
setp(obuffer, obuffer + bufsize);
if (c != traits_type::eof())
sputc(traits_type::to_char_type(c));
return 0;
}
InflateStreamBuf::int_type InflateStreamBuf::underflow()
{
return traits_type::eof();
}
int InflateStreamBuf::sync()
{
if (overflow(traits_type::eof()) == traits_type::eof())
return -1;
return 0;
}
}
|