Files
itgmania212121/stepmania/src/RageFileDriverZip.h
T

89 lines
2.8 KiB
C++
Raw Normal View History

2005-02-13 03:21:22 +00:00
/* RageFileDriverZip - A read-only file driver for ZIPs. */
2003-12-08 00:08:20 +00:00
#ifndef RAGE_FILE_DRIVER_ZIP_H
#define RAGE_FILE_DRIVER_ZIP_H
#include "RageFileDriver.h"
2005-02-24 06:07:49 +00:00
#include "RageThreads.h"
2003-12-08 00:08:20 +00:00
class RageFileDriverZip: public RageFileDriver
{
public:
2005-05-21 00:40:18 +00:00
RageFileDriverZip();
2005-12-28 03:59:52 +00:00
RageFileDriverZip( const RString &sPath );
bool Load( const RString &sPath );
2005-05-21 00:40:18 +00:00
bool Load( RageFileBasic *pFile );
2003-12-08 00:08:20 +00:00
virtual ~RageFileDriverZip();
RageFileBasic *Open( const RString &sPath, int iMode, int &iErr );
void FlushDirCache( const RString &sPath );
2003-12-08 00:08:20 +00:00
2005-03-24 09:40:56 +00:00
void DeleteFileWhenFinished() { m_bFileOwned = true; }
2005-05-22 22:45:15 +00:00
/* Lower-level access: */
enum ZipCompressionMethod { STORED = 0, DEFLATED = 8 };
struct FileInfo
{
RString m_sName;
2005-05-22 22:45:15 +00:00
int m_iOffset;
int m_iDataOffset;
ZipCompressionMethod m_iCompressionMethod;
int m_iCRC32;
int m_iCompressedSize, m_iUncompressedSize;
/* If 0, unknown. */
int m_iFilePermissions;
};
const FileInfo *GetFileInfo( const RString &sPath ) const;
2005-12-13 03:07:48 +00:00
RString GetGlobalComment() const { return m_sComment; }
2005-05-22 22:45:15 +00:00
2003-12-08 00:08:20 +00:00
private:
2005-03-24 09:40:56 +00:00
bool m_bFileOwned;
RageFileBasic *m_pZip;
vector<FileInfo *> m_pFiles;
2003-12-10 07:08:22 +00:00
RString m_sPath;
2005-12-13 03:07:48 +00:00
RString m_sComment;
2005-03-24 09:40:56 +00:00
2005-02-24 06:07:49 +00:00
/* Open() must be threadsafe. Mutex access to "zip", since we seek
* around in it when reading files. */
RageMutex m_Mutex;
2005-05-21 00:40:18 +00:00
bool ParseZipfile();
bool ReadEndCentralRecord( int &total_entries_central_dir, int &offset_start_central_directory );
2005-03-24 09:40:56 +00:00
int ProcessCdirFileHdr( FileInfo &info );
bool SeekToEndCentralRecord();
bool ReadLocalFileHeader( FileInfo &info );
2003-12-08 00:08:20 +00:00
};
#endif
2004-05-06 00:42:06 +00:00
/*
* Copyright (c) 2003-2005 Glenn Maynard. All rights reserved.
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
2004-05-06 00:42:06 +00:00
*/