|  | OGRE 2.1
    Object-Oriented Graphics Rendering Engine | 
Archive-handling class. More...
#include <OgreArchive.h>
 Inheritance diagram for Ogre::Archive:
 Inheritance diagram for Ogre::Archive:| Public Member Functions | |
| Archive (const String &name, const String &archType) | |
| Constructor - don't call direct, used by ArchiveFactory. | |
| virtual | ~Archive () | 
| Default destructor. | |
| virtual DataStreamPtr | create (const String &filename) | 
| Create a new file (or overwrite one already there). | |
| virtual bool | exists (const String &filename)=0 | 
| Find out if the named file exists (note: fully qualified filename required) | |
| virtual StringVectorPtr | find (const String &pattern, bool recursive=true, bool dirs=false)=0 | 
| Find all file or directory names matching a given pattern in this archive. | |
| virtual FileInfoListPtr | findFileInfo (const String &pattern, bool recursive=true, bool dirs=false)=0 | 
| Find all files or directories matching a given pattern in this archive and get some detailed information about them. | |
| virtual time_t | getModifiedTime (const String &filename)=0 | 
| Retrieve the modification time of a given file. | |
| const String & | getName (void) const | 
| Get the name of this archive. | |
| const String & | getType (void) const | 
| Return the type code of this Archive. | |
| virtual bool | isCaseSensitive (void) const =0 | 
| Returns whether this archive is case sensitive in the way it matches files. | |
| virtual bool | isReadOnly () const | 
| Reports whether this Archive is read-only, or whether the contents can be updated. | |
| virtual StringVectorPtr | list (bool recursive=true, bool dirs=false)=0 | 
| List all file names in the archive. | |
| virtual FileInfoListPtr | listFileInfo (bool recursive=true, bool dirs=false)=0 | 
| List all files in the archive with accompanying information. | |
| virtual void | load ()=0 | 
| Loads the archive. | |
| virtual DataStreamPtr | open (const String &filename, bool readOnly=true)=0 | 
| Open a stream on a given file. | |
| void | operator delete (void *ptr) | 
| void | operator delete (void *ptr, const char *, int, const char *) | 
| void | operator delete (void *ptr, void *) | 
| void | operator delete[] (void *ptr) | 
| void | operator delete[] (void *ptr, const char *, int, const char *) | 
| void * | operator new (size_t sz) | 
| void * | operator new (size_t sz, const char *file, int line, const char *func) | 
| operator new, with debug line info | |
| void * | operator new (size_t sz, void *ptr) | 
| placement operator new | |
| void * | operator new[] (size_t sz) | 
| void * | operator new[] (size_t sz, const char *file, int line, const char *func) | 
| array operator new, with debug line info | |
| virtual void | remove (const String &filename) | 
| Delete a named file. | |
| virtual void | unload ()=0 | 
| Unloads the archive. | |
Archive-handling class.
Constructor - don't call direct, used by ArchiveFactory.
| 
 | inlinevirtual | 
Default destructor.
| 
 | virtual | 
Create a new file (or overwrite one already there).
| filename | The fully qualified name of the file | 
Reimplemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
Find out if the named file exists (note: fully qualified filename required)
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
| 
 | pure virtual | 
Find all file or directory names matching a given pattern in this archive.
| pattern | The pattern to search for; wildcards (*) are allowed | 
| recursive | Whether all paths of the archive are searched (if the archive has a concept of that) | 
| dirs | Set to true if you want the directories to be listed instead of files | 
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
| 
 | pure virtual | 
Find all files or directories matching a given pattern in this archive and get some detailed information about them.
| pattern | The pattern to search for; wildcards (*) are allowed | 
| recursive | Whether all paths of the archive are searched (if the archive has a concept of that) | 
| dirs | Set to true if you want the directories to be listed instead of files | 
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
Retrieve the modification time of a given file.
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
Returns whether this archive is case sensitive in the way it matches files.
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
Reports whether this Archive is read-only, or whether the contents can be updated.
| 
 | pure virtual | 
List all file names in the archive.
| recursive | Whether all paths of the archive are searched (if the archive has a concept of that) | 
| dirs | Set to true if you want the directories to be listed instead of files | 
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
| 
 | pure virtual | 
List all files in the archive with accompanying information.
| recursive | Whether all paths of the archive are searched (if the archive has a concept of that) | 
| dirs | Set to true if you want the directories to be listed instead of files | 
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
Loads the archive.
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
| 
 | pure virtual | 
Open a stream on a given file.
| filename | The fully qualified name of the file | 
| readOnly | Whether to open the file in read-only mode or not (note, if the archive is read-only then this cannot be set to false) | 
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
| 
 | inlineinherited | 
| 
 | inlineinherited | 
| 
 | inlineinherited | 
| 
 | inlineinherited | 
| 
 | inlineinherited | 
| 
 | inlineinherited | 
operator new, with debug line info
placement operator new
| 
 | inlineinherited | 
| 
 | inlineinherited | 
array operator new, with debug line info
Delete a named file.
| filename | The fully qualified name of the file | 
Reimplemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.
Unloads the archive.
Implemented in Ogre::APKFileSystemArchive, Ogre::FileSystemArchive, and Ogre::ZipArchive.