123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /*
- * MinizipExtensions.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "MinizipExtensions.h"
- #include "CMemoryBuffer.h"
- ///CIOApi
- voidpf ZCALLBACK CIOApi::openFileProxy(voidpf opaque, const void * filename, int mode)
- {
- assert(opaque != nullptr);
-
- std::string filename_s;
-
- if(filename != nullptr)
- filename_s = (const char *)filename;
-
- return ((CIOApi *)opaque)->openFile(filename_s, mode);
- }
- uLong ZCALLBACK CIOApi::readFileProxy(voidpf opaque, voidpf stream, void * buf, uLong size)
- {
- assert(opaque != nullptr);
- assert(stream != nullptr);
-
- CInputOutputStream * actualStream = static_cast<CInputOutputStream *>(stream);
-
- return actualStream->read((ui8 *)buf, size);
- }
- uLong ZCALLBACK CIOApi::writeFileProxy(voidpf opaque, voidpf stream, const void * buf, uLong size)
- {
- assert(opaque != nullptr);
- assert(stream != nullptr);
- CInputOutputStream * actualStream = static_cast<CInputOutputStream *>(stream);
- return (uLong)actualStream->write((const ui8 *)buf, size);
- }
- ZPOS64_T ZCALLBACK CIOApi::tellFileProxy(voidpf opaque, voidpf stream)
- {
- assert(opaque != nullptr);
- assert(stream != nullptr);
-
- CInputOutputStream * actualStream = static_cast<CInputOutputStream *>(stream);
- return actualStream->tell();
- }
- long ZCALLBACK CIOApi::seekFileProxy(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
- {
- assert(opaque != nullptr);
- assert(stream != nullptr);
-
- CInputOutputStream * actualStream = static_cast<CInputOutputStream *>(stream);
- long ret = 0;
- switch (origin)
- {
- case ZLIB_FILEFUNC_SEEK_CUR :
- actualStream->skip(offset);//TODO: should we check actual skipped?
- break;
- case ZLIB_FILEFUNC_SEEK_END :
- actualStream->seek(actualStream->getSize() - offset);
- break;
- case ZLIB_FILEFUNC_SEEK_SET :
- actualStream->seek(offset);
- break;
- default: ret = -1;
- }
- return ret;
- }
- int ZCALLBACK CIOApi::closeFileProxy(voidpf opaque, voidpf stream)
- {
- assert(opaque != nullptr);
- assert(stream != nullptr);
-
- CInputOutputStream * actualStream = static_cast<CInputOutputStream *>(stream);
-
- ((CIOApi *)opaque)->closeFile(actualStream);
-
- return 0;
- }
- int ZCALLBACK CIOApi::errorFileProxy(voidpf opaque, voidpf stream)
- {
- return 0;
- }
- zlib_filefunc64_def CIOApi::getApiStructure() const
- {
- zlib_filefunc64_def api;
- api.opaque = (void *) this;
- api.zopen64_file = &openFileProxy;
- api.zread_file = &readFileProxy;
- api.zwrite_file = &writeFileProxy;
- api.ztell64_file = &tellFileProxy;
- api.zseek64_file = &seekFileProxy;
- api.zclose_file = &closeFileProxy;
- api.zerror_file = &errorFileProxy;
-
- return api;
- }
- void CIOApi::closeFile(CInputOutputStream * stream) const
- {
- delete stream;
- }
- ///CDefaultIOApi
- CDefaultIOApi::CDefaultIOApi()
- {
-
- }
- CDefaultIOApi::~CDefaultIOApi()
- {
-
- }
- zlib_filefunc64_def CDefaultIOApi::getApiStructure() const
- {
- zlib_filefunc64_def api;
-
- fill_fopen64_filefunc(&api);
-
- return api;
- }
- CInputOutputStream * CDefaultIOApi::openFile(const std::string& filename, int mode) const
- {
- throw new std::runtime_error("CDefaultIOApi::openFile call not expected.");
- }
- ///CProxyIOApi
- CProxyIOApi::CProxyIOApi(CInputOutputStream * buffer):
- data(buffer)
- {
-
- }
- CProxyIOApi::~CProxyIOApi()
- {
-
- }
- CInputOutputStream * CProxyIOApi::openFile(const std::string& filename, int mode) const
- {
- logGlobal->traceStream() << "CProxyIOApi: stream opened for " <<filename<<" with mode "<<mode;
-
- data->seek(0);
- return data;//todo: check that only one "copy" is opened
- }
- void CProxyIOApi::closeFile(CInputOutputStream * stream) const
- {
- logGlobal->traceStream() << "CProxyIOApi: stream closed";
- stream->seek(0);//stream is local singleton and even not owned, just seek
- }
|