X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;ds=sidebyside;f=src%2Fserialization.cpp;h=310604f54698a39569bfaf180518f7ee30d404a9;hb=ca5c2dbefab3676514e48b445b36de50993de9f1;hp=c0fbe10e23335fb9cc8f2031dd8637e0cec548a3;hpb=406ed5efac68af31c3cc7a0e7401ebf4dd419804;p=minetest.git diff --git a/src/serialization.cpp b/src/serialization.cpp index c0fbe10e2..310604f54 100644 --- a/src/serialization.cpp +++ b/src/serialization.cpp @@ -20,14 +20,12 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "serialization.h" #include "util/serialize.h" -#ifdef _WIN32 - #define ZLIB_WINAPI -#endif + #include "zlib.h" /* report a zlib or i/o error */ void zerr(int ret) -{ +{ dstream<<"zerr: "; switch (ret) { case Z_ERRNO: @@ -53,7 +51,7 @@ void zerr(int ret) } } -void compressZlib(SharedBuffer data, std::ostream &os, int level) +void compressZlib(const u8 *data, size_t data_size, std::ostream &os, int level) { z_stream z; const s32 bufsize = 16384; @@ -68,16 +66,16 @@ void compressZlib(SharedBuffer data, std::ostream &os, int level) ret = deflateInit(&z, level); if(ret != Z_OK) throw SerializationError("compressZlib: deflateInit failed"); - + // Point zlib to our input buffer z.next_in = (Bytef*)&data[0]; - z.avail_in = data.getSize(); + z.avail_in = data_size; // And get all output for(;;) { z.next_out = (Bytef*)output_buffer; z.avail_out = bufsize; - + status = deflate(&z, Z_FINISH); if(status == Z_NEED_DICT || status == Z_DATA_ERROR || status == Z_MEM_ERROR) @@ -98,11 +96,10 @@ void compressZlib(SharedBuffer data, std::ostream &os, int level) void compressZlib(const std::string &data, std::ostream &os, int level) { - SharedBuffer databuf((u8*)data.c_str(), data.size()); - compressZlib(databuf, os, level); + 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; @@ -111,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; @@ -120,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]; @@ -240,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(;;) @@ -249,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())