|
FIFE
|
Provider for OS directories. More...
#include <directoryprovider.h>
Inheritance diagram for FIFE::DirectoryProvider:
Collaboration diagram for FIFE::DirectoryProvider:Public Member Functions | |
| DirectoryProvider () | |
| virtual bool | isReadable (const std::string &path) const |
| Check if a given directory is readable. More... | |
| virtual VFSSource * | createSource (const std::string &path) |
| Create a new instance of a VFSSource initialized with the given directory This will only pass if the path is readable and recognized as a directory as per the description of isReadable. More... | |
| virtual VFSSource * | getSource (const std::string &path) const |
| Get the source instance of the path. More... | |
| virtual bool | hasSource (const std::string &path) const |
| Check whether the provider already has created a source with that path. More... | |
Public Member Functions inherited from FIFE::VFSSourceProvider | |
| VFSSourceProvider (const std::string &name) | |
| virtual | ~VFSSourceProvider () |
| const std::string & | getName () const |
| Returns the name of this VFSSourceProvider. More... | |
| void | setVFS (VFS *vfs) |
| Get the VFS this provider is using. More... | |
| VFS * | getVFS () const |
Private Attributes | |
| std::string | m_name |
| std::map< std::string, VFSSource * > | m_sources |
Provider for OS directories.
Definition at line 43 of file directoryprovider.h.
|
inline |
Definition at line 45 of file directoryprovider.h.
|
virtual |
Create a new instance of a VFSSource initialized with the given directory This will only pass if the path is readable and recognized as a directory as per the description of isReadable.
| path | the directory to open |
Implements FIFE::VFSSourceProvider.
Definition at line 42 of file directoryprovider.cpp.
References FIFE::VFSSourceProvider::getVFS(), hasSource(), isReadable(), and m_sources.
|
virtual |
Get the source instance of the path.
| path | The source path |
Implements FIFE::VFSSourceProvider.
Definition at line 57 of file directoryprovider.cpp.
References hasSource(), and m_sources.
|
virtual |
Check whether the provider already has created a source with that path.
| path | The path to the source |
Implements FIFE::VFSSourceProvider.
Definition at line 65 of file directoryprovider.cpp.
References m_sources.
Referenced by createSource(), and getSource().
Here is the caller graph for this function:
|
virtual |
Check if a given directory is readable.
The path must either be an absolute path or relative to the current working directory where the client was launched
| path | the filename to check |
Implements FIFE::VFSSourceProvider.
Definition at line 38 of file directoryprovider.cpp.
Referenced by createSource().
Here is the caller graph for this function:
|
private |
Definition at line 79 of file directoryprovider.h.
|
private |
Definition at line 80 of file directoryprovider.h.
Referenced by createSource(), getSource(), and hasSource().