1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-06-07 17:11:56 +00:00

Fix problems with loading a packaged mod twice. Thx to Daxar for reporting, was in fact a ttvfs bug.

This commit is contained in:
fgenesis 2014-04-23 05:26:03 +02:00
parent 00b5f46154
commit 18034bcc18
5 changed files with 33 additions and 23 deletions

View file

@ -21,7 +21,7 @@ File::~File()
} }
DiskFile::DiskFile(const char *name /* = NULL */) DiskFile::DiskFile(const char *name /* = NULL */)
: File(name), _fh(NULL), _buf(NULL) : File(name), _fh(NULL)
{ {
} }

View file

@ -78,7 +78,6 @@ public:
protected: protected:
void *_fh; // FILE* void *_fh; // FILE*
void *_buf;
}; };
class MemFile : public File class MemFile : public File

View file

@ -64,7 +64,7 @@ void ZipDir::load()
if(getFile(fs.m_filename)) if(getFile(fs.m_filename))
continue; continue;
ZipFile *vf = new ZipFile(fs.m_filename, _archiveHandle, (vfspos)fs.m_uncomp_size, fs.m_file_index); ZipFile *vf = new ZipFile(fs.m_filename, _archiveHandle, fs.m_file_index);
addRecursive(vf, len); addRecursive(vf, len);
} }

View file

@ -8,12 +8,12 @@
VFS_NAMESPACE_START VFS_NAMESPACE_START
ZipFile::ZipFile(const char *name, ZipArchiveRef *zref, vfspos uncompSize, unsigned int fileIdx) ZipFile::ZipFile(const char *name, ZipArchiveRef *zref, unsigned int fileIdx)
: File(joinPath(zref->fullname(), name).c_str()) : File(joinPath(zref->fullname(), name).c_str())
, _buf(NULL) , _buf(NULL)
, _pos(0) , _pos(0)
, _archiveHandle(zref) , _archiveHandle(zref)
, _uncompSize(uncompSize) , _bufSize(0)
, _fileIdx(fileIdx) , _fileIdx(fileIdx)
, _mode("rb") // binary mode by default , _mode("rb") // binary mode by default
{ {
@ -46,7 +46,7 @@ bool ZipFile::isopen() const
bool ZipFile::iseof() const bool ZipFile::iseof() const
{ {
return _pos >= _uncompSize; return _pos >= _bufSize;
} }
void ZipFile::close() void ZipFile::close()
@ -55,6 +55,7 @@ void ZipFile::close()
delete []_buf; delete []_buf;
_buf = NULL; _buf = NULL;
_bufSize = 0;
} }
bool ZipFile::seek(vfspos pos, int whence) bool ZipFile::seek(vfspos pos, int whence)
@ -75,9 +76,9 @@ bool ZipFile::seek(vfspos pos, int whence)
break; break;
case SEEK_END: case SEEK_END:
if(pos >= _uncompSize) if(pos >= _bufSize)
return false; return false;
_pos = _uncompSize - pos; _pos = _bufSize - pos;
break; break;
default: default:
@ -119,26 +120,32 @@ size_t ZipFile::write(const void *src, size_t bytes)
return 0; return 0;
} }
#define MZ ((mz_zip_archive*)_archiveHandle->mz)
vfspos ZipFile::size() vfspos ZipFile::size()
{ {
return (vfspos)_uncompSize; if(_buf && _bufSize)
} return _bufSize;
#define MZ ((mz_zip_archive*)_archiveHandle->mz) if(!_archiveHandle->openRead())
return npos;
// FIXME: this is not 100% safe. The file index may change if the zip file is changed externally while closed
mz_zip_archive_file_stat zstat;
if(!mz_zip_reader_file_stat(MZ, _fileIdx, &zstat))
return npos;
return (vfspos)zstat.m_uncomp_size;
}
bool ZipFile::unpack() bool ZipFile::unpack()
{ {
delete [] _buf; close(); // delete the buffer
if(!_archiveHandle->openRead()) const vfspos sz = size(); // will reopen the file
{ if(sz < 0)
//assert(0 && "ZipFile unpack: Failed to openRead"); return false;
return false; // can happen if the underlying zip file was deleted
}
// In case of text data, make sure the buffer is always terminated with '\0'.
// Won't hurt for binary data, so just do it in all cases.
size_t sz = (size_t)size();
_buf = new char[sz + 1]; _buf = new char[sz + 1];
if(!_buf) if(!_buf)
return false; return false;
@ -151,10 +158,14 @@ bool ZipFile::unpack()
return false; // this should not happen return false; // this should not happen
} }
_bufSize = sz;
// In case of text data, make sure the buffer is always terminated with '\0'.
// Won't hurt for binary data, so just do it in all cases.
_buf[sz] = 0; _buf[sz] = 0;
if(_mode.find("b") == std::string::npos) // text mode? if(_mode.find("b") == std::string::npos) // text mode?
{ {
_uncompSize = strnNLcpy(_buf, _buf); _bufSize = (vfspos)strnNLcpy(_buf, _buf);
} }
return true; return true;

View file

@ -9,7 +9,7 @@ VFS_NAMESPACE_START
class ZipFile : public File class ZipFile : public File
{ {
public: public:
ZipFile(const char *name, ZipArchiveRef *zref, vfspos uncompSize, unsigned int fileIdx); ZipFile(const char *name, ZipArchiveRef *zref, unsigned int fileIdx);
virtual ~ZipFile(); virtual ~ZipFile();
virtual bool open(const char *mode = NULL); virtual bool open(const char *mode = NULL);
virtual bool isopen() const; virtual bool isopen() const;
@ -29,7 +29,7 @@ protected:
char *_buf; char *_buf;
vfspos _pos; vfspos _pos;
CountedPtr<ZipArchiveRef> _archiveHandle; CountedPtr<ZipArchiveRef> _archiveHandle;
vfspos _uncompSize; vfspos _bufSize;
unsigned int _fileIdx; unsigned int _fileIdx;
std::string _mode; std::string _mode;
}; };