/usr/include/OGRE/OgreZip.h is in libogre-dev 1.7.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2011 Torus Knot Software Ltd
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, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef __Zip_H__
#define __Zip_H__
#include "OgrePrerequisites.h"
#include "OgreArchive.h"
#include "OgreArchiveFactory.h"
// Forward declaration for zziplib to avoid header file dependency.
typedef struct zzip_dir ZZIP_DIR;
typedef struct zzip_file ZZIP_FILE;
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup Resources
* @{
*/
/** Specialisation of the Archive class to allow reading of files from a zip
format source archive.
@remarks
This archive format supports all archives compressed in the standard
zip format, including iD pk3 files.
*/
class _OgreExport ZipArchive : public Archive
{
protected:
/// Handle to root zip file
ZZIP_DIR* mZzipDir;
/// Handle any errors from zzip
void checkZzipError(int zzipError, const String& operation) const;
/// File list (since zziplib seems to only allow scanning of dir tree once)
FileInfoList mFileList;
OGRE_AUTO_MUTEX
public:
ZipArchive(const String& name, const String& archType );
~ZipArchive();
/// @copydoc Archive::isCaseSensitive
bool isCaseSensitive(void) const { return false; }
/// @copydoc Archive::load
void load();
/// @copydoc Archive::unload
void unload();
/// @copydoc Archive::open
DataStreamPtr open(const String& filename, bool readOnly = true) const;
/// @copydoc Archive::create
DataStreamPtr create(const String& filename) const;
/// @copydoc Archive::remove
void remove(const String& filename) const;
/// @copydoc Archive::list
StringVectorPtr list(bool recursive = true, bool dirs = false);
/// @copydoc Archive::listFileInfo
FileInfoListPtr listFileInfo(bool recursive = true, bool dirs = false);
/// @copydoc Archive::find
StringVectorPtr find(const String& pattern, bool recursive = true,
bool dirs = false);
/// @copydoc Archive::findFileInfo
FileInfoListPtr findFileInfo(const String& pattern, bool recursive = true,
bool dirs = false);
/// @copydoc Archive::exists
bool exists(const String& filename);
/// @copydoc Archive::getModifiedTime
time_t getModifiedTime(const String& filename);
};
/** Specialisation of ArchiveFactory for Zip files. */
class _OgrePrivate ZipArchiveFactory : public ArchiveFactory
{
public:
virtual ~ZipArchiveFactory() {}
/// @copydoc FactoryObj::getType
const String& getType(void) const;
/// @copydoc FactoryObj::createInstance
Archive *createInstance( const String& name )
{
return OGRE_NEW ZipArchive(name, "Zip");
}
/// @copydoc FactoryObj::destroyInstance
void destroyInstance( Archive* arch) { OGRE_DELETE arch; }
};
/** Template version of cache based on static array.
'cacheSize' defines size of cache in bytes. */
template <size_t cacheSize>
class StaticCache
{
protected:
/// Static buffer
char mBuffer[cacheSize];
/// Number of bytes valid in cache (written from the beginning of static buffer)
size_t mValidBytes;
/// Current read position
size_t mPos;
public:
/// Constructor
StaticCache()
{
mValidBytes = 0;
mPos = 0;
}
/** Cache data pointed by 'buf'. If 'count' is greater than cache size, we cache only last bytes.
Returns number of bytes written to cache. */
size_t cacheData(const void* buf, size_t count)
{
assert(avail() == 0 && "It is assumed that you cache data only after you have read everything.");
if (count < cacheSize)
{
// number of bytes written is less than total size of cache
if (count + mValidBytes <= cacheSize)
{
// just append
memcpy(mBuffer + mValidBytes, buf, count);
mValidBytes += count;
}
else
{
size_t begOff = count - (cacheSize - mValidBytes);
// override old cache content in the beginning
memmove(mBuffer, mBuffer + begOff, mValidBytes - begOff);
// append new data
memcpy(mBuffer + cacheSize - count, buf, count);
mValidBytes = cacheSize;
}
mPos = mValidBytes;
return count;
}
else
{
// discard all
memcpy(mBuffer, (const char*)buf + count - cacheSize, cacheSize);
mValidBytes = mPos = cacheSize;
return cacheSize;
}
}
/** Read data from cache to 'buf' (maximum 'count' bytes). Returns number of bytes read from cache. */
size_t read(void* buf, size_t count)
{
size_t rb = avail();
rb = (rb < count) ? rb : count;
memcpy(buf, mBuffer + mPos, rb);
mPos += rb;
return rb;
}
/** Step back in cached stream by 'count' bytes. Returns 'true' if cache contains resulting position. */
bool rewind(size_t count)
{
if (mPos < count)
{
clear();
return false;
}
else
{
mPos -= count;
return true;
}
}
/** Step forward in cached stream by 'count' bytes. Returns 'true' if cache contains resulting position. */
bool ff(size_t count)
{
if (avail() < count)
{
clear();
return false;
}
else
{
mPos += count;
return true;
}
}
/** Returns number of bytes available for reading in cache after rewinding. */
size_t avail() const
{
return mValidBytes - mPos;
}
/** Clear the cache */
void clear()
{
mValidBytes = 0;
mPos = 0;
}
};
/** Dummy version of cache to test no caching.
If you want to test, just uncomment it and add 'No' prefix
to type in line 'StaticCache<2 * OGRE_STREAM_TEMP_SIZE> mCache;' of class ZipDataStream */
/*template <size_t cacheSize>
class NoStaticCache
{
public:
NoStaticCache() { }
size_t cacheData(const void* buf, size_t count) { return 0; }
size_t read(void* buf, size_t count) { return 0; }
bool rewind(size_t count) { return false; }
bool ff(size_t count) { return false; }
size_t avail() const { return 0; }
void clear() { }
};*/
/** Specialisation of DataStream to handle streaming data from zip archives. */
class _OgrePrivate ZipDataStream : public DataStream
{
protected:
ZZIP_FILE* mZzipFile;
/// We need caching because sometimes serializers step back in data stream and zziplib behaves slow
StaticCache<2 * OGRE_STREAM_TEMP_SIZE> mCache;
public:
/// Unnamed constructor
ZipDataStream(ZZIP_FILE* zzipFile, size_t uncompressedSize);
/// Constructor for creating named streams
ZipDataStream(const String& name, ZZIP_FILE* zzipFile, size_t uncompressedSize);
~ZipDataStream();
/// @copydoc DataStream::read
size_t read(void* buf, size_t count);
/// @copydoc DataStream::write
size_t write(void* buf, size_t count);
/// @copydoc DataStream::skip
void skip(long count);
/// @copydoc DataStream::seek
void seek( size_t pos );
/// @copydoc DataStream::seek
size_t tell(void) const;
/// @copydoc DataStream::eof
bool eof(void) const;
/// @copydoc DataStream::close
void close(void);
};
/** @} */
/** @} */
}
#endif
|