X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fserialization.cpp;h=310604f54698a39569bfaf180518f7ee30d404a9;hb=5fb86768e8f40d0ba034a7fe8d0a8c24d091b976;hp=ff7ca15f2571e08f938afddb4caf28c08e9af74e;hpb=033ae0dcaecc37fee487e44896a0c0fb4c844e4e;p=oweals%2Fminetest.git diff --git a/src/serialization.cpp b/src/serialization.cpp index ff7ca15f2..310604f54 100644 --- a/src/serialization.cpp +++ b/src/serialization.cpp @@ -1,64 +1,61 @@ /* -Minetest-c55 -Copyright (C) 2010 celeron55, Perttu Ahola +Minetest +Copyright (C) 2013 celeron55, Perttu Ahola 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 +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU Lesser General Public License for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "serialization.h" -#include "utility.h" -#ifdef _WIN32 - #define ZLIB_WINAPI -#endif + +#include "util/serialize.h" + #include "zlib.h" /* report a zlib or i/o error */ void zerr(int ret) -{ - fputs("zerr: ", stderr); +{ + dstream<<"zerr: "; switch (ret) { case Z_ERRNO: if (ferror(stdin)) - fputs("error reading stdin\n", stderr); + dstream<<"error reading stdin"< data, std::ostream &os) int count = bufsize - z.avail_out; if(count) os.write(output_buffer, count); + // This determines zlib has given all output + if(status == Z_STREAM_END) + break; } deflateEnd(&z); - } -void compressZlib(const std::string &data, std::ostream &os) +void compressZlib(const std::string &data, std::ostream &os, int level) { - SharedBuffer databuf((u8*)data.c_str(), data.size()); - compressZlib(databuf, os); + compressZlib((u8*)data.c_str(), data.size(), os, level); } -void decompressZlib(std::istream &is, std::ostream &os) +void decompressZlib(std::istream &is, std::ostream &os, size_t limit) { z_stream z; const s32 bufsize = 16384; @@ -120,6 +108,7 @@ void decompressZlib(std::istream &is, std::ostream &os) int status = 0; int ret; int bytes_read = 0; + int bytes_written = 0; int input_buffer_len = 0; z.zalloc = Z_NULL; @@ -129,20 +118,33 @@ void decompressZlib(std::istream &is, std::ostream &os) ret = inflateInit(&z); if(ret != Z_OK) throw SerializationError("dcompressZlib: inflateInit failed"); - + z.avail_in = 0; - + //dstream<<"initial fail="< data, std::ostream &os, u8 version) +void compress(const SharedBuffer &data, std::ostream &os, u8 version) { if(version >= 11) { - compressZlib(data, os); + compressZlib(*data ,data.getSize(), os); return; } if(data.getSize() == 0) return; - + // Write length (u32) u8 tmp[4]; writeU32(tmp, data.getSize()); os.write((char*)tmp, 4); - + // We will be writing 8-bit pairs of more_count and byte u8 more_count = 0; u8 current_byte = data[0]; @@ -249,7 +253,7 @@ void decompress(std::istream &is, std::ostream &os, u8 version) u8 tmp[4]; is.read((char*)tmp, 4); u32 len = readU32(tmp); - + // We will be reading 8-bit pairs of more_count and byte u32 count = 0; for(;;) @@ -258,7 +262,7 @@ void decompress(std::istream &is, std::ostream &os, u8 version) u8 byte=0; is.read((char*)&more_count, 1); - + is.read((char*)&byte, 1); if(is.eof())