mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
215 lines
7.0 KiB
C++
215 lines
7.0 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
|
*
|
|
* ScummVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
* file distributed with this source distribution.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef BACKENDS_ABSTRACT_FS_H
|
|
#define BACKENDS_ABSTRACT_FS_H
|
|
|
|
#include "common/array.h"
|
|
#include "common/str.h"
|
|
#include "common/fs.h"
|
|
|
|
class AbstractFSNode;
|
|
|
|
typedef Common::Array<AbstractFSNode *> AbstractFSList;
|
|
|
|
/**
|
|
* Abstract file system node. Private subclasses implement the actual
|
|
* functionality.
|
|
*
|
|
* Most of the methods correspond directly to methods in class FSNode,
|
|
* so if they are not documented here, look there for more information about
|
|
* the semantics.
|
|
*/
|
|
class AbstractFSNode {
|
|
protected:
|
|
friend class Common::FSNode;
|
|
typedef Common::FSNode::ListMode ListMode;
|
|
|
|
/**
|
|
* Returns the child node with the given name. When called on a non-directory
|
|
* node, it should handle this gracefully by returning 0.
|
|
* When called with a name not matching any of the files/dirs contained in this
|
|
* directory, a valid node should be returned, which returns 'false' upon calling
|
|
* the exists() method. The idea is that this node can then still can be used to
|
|
* create a new file via the createWriteStream() method.
|
|
*
|
|
* Example:
|
|
* Calling getChild() for a node with path "/foo/bar" using name="file.txt",
|
|
* would produce a new node with "/foo/bar/file.txt" as path.
|
|
*
|
|
* @note Handling calls on non-dir nodes gracefully makes it possible to
|
|
* switch to a lazy type detection scheme in the future.
|
|
*
|
|
* @param name String containing the name of the child to create a new node.
|
|
*/
|
|
virtual AbstractFSNode *getChild(const Common::String &name) const = 0;
|
|
|
|
/**
|
|
* The parent node of this directory.
|
|
* The parent of the root is the root itself.
|
|
*/
|
|
virtual AbstractFSNode *getParent() const = 0;
|
|
|
|
/**
|
|
* Returns the last component of a given path.
|
|
*
|
|
* Examples:
|
|
* /foo/bar.txt would return /bar.txt
|
|
* /foo/bar/ would return /bar/
|
|
*
|
|
* @param str String containing the path.
|
|
* @param sep character used to separate path components
|
|
* @return Pointer to the first char of the last component inside str.
|
|
*/
|
|
static const char *lastPathComponent(const Common::String &str, const char sep);
|
|
|
|
public:
|
|
/**
|
|
* Construct a FSNode object from an AbstractFSNode object.
|
|
*
|
|
* This is a helper to create Common::FSNode objects when the backend's
|
|
* FileSystemFactory cannot create the given AbstractFSNode object itself.
|
|
* All other code is supposed to use Common::FSNode's constructor itself.
|
|
*
|
|
* @param realNode Pointer to a heap allocated instance. FSNode will take
|
|
* ownership of the pointer.
|
|
*/
|
|
static Common::FSNode makeFSNode(AbstractFSNode *realNode) {
|
|
return Common::FSNode(realNode);
|
|
}
|
|
|
|
/**
|
|
* Destructor.
|
|
*/
|
|
virtual ~AbstractFSNode() {}
|
|
|
|
/*
|
|
* Indicates whether the object referred by this path exists in the filesystem or not.
|
|
*/
|
|
virtual bool exists() const = 0;
|
|
|
|
/**
|
|
* Return a list of child nodes of this directory node. If called on a node
|
|
* that does not represent a directory, false is returned.
|
|
*
|
|
* @param list List to put the contents of the directory in.
|
|
* @param mode Mode to use while listing the directory.
|
|
* @param hidden Whether to include hidden files or not in the results.
|
|
*
|
|
* @return true if successful, false otherwise (e.g. when the directory does not exist).
|
|
*/
|
|
virtual bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const = 0;
|
|
|
|
/**
|
|
* Returns a human readable path string.
|
|
*
|
|
* @note By default, this method returns the value of getName().
|
|
*/
|
|
virtual Common::U32String getDisplayName() const = 0;
|
|
|
|
/**
|
|
* Returns the last component of the path pointed by this FSNode.
|
|
*
|
|
* Examples (POSIX):
|
|
* /foo/bar.txt would return /bar.txt
|
|
* /foo/bar/ would return /bar/
|
|
*
|
|
* @note This method is very architecture dependent, please check the concrete implementation for more information.
|
|
*/
|
|
virtual Common::String getName() const = 0;
|
|
|
|
/**
|
|
* Returns the 'path' of the current node, usable in fopen().
|
|
*/
|
|
virtual Common::String getPath() const = 0;
|
|
|
|
/**
|
|
* Indicates whether this path refers to a directory or not.
|
|
*/
|
|
virtual bool isDirectory() const = 0;
|
|
|
|
/**
|
|
* Indicates whether the object referred by this path can be read from or not.
|
|
*
|
|
* If the path refers to a directory, readability implies being able to read
|
|
* and list the directory entries.
|
|
*
|
|
* If the path refers to a file, readability implies being able to read the
|
|
* contents of the file.
|
|
*
|
|
* @return bool true if the object can be read, false otherwise.
|
|
*/
|
|
virtual bool isReadable() const = 0;
|
|
|
|
/**
|
|
* Indicates whether the object referred by this path can be written to or not.
|
|
*
|
|
* If the path refers to a directory, writability implies being able to modify
|
|
* the directory entry (i.e. rename the directory, remove it or write files inside of it).
|
|
*
|
|
* If the path refers to a file, writability implies being able to write data
|
|
* to the file.
|
|
*
|
|
* @return bool true if the object can be written to, false otherwise.
|
|
*/
|
|
virtual bool isWritable() const = 0;
|
|
|
|
|
|
/**
|
|
* Creates a SeekableReadStream instance corresponding to the file
|
|
* referred by this node. This assumes that the node actually refers
|
|
* to a readable file. If this is not the case, 0 is returned.
|
|
*
|
|
* @return pointer to the stream object, 0 in case of a failure
|
|
*/
|
|
virtual Common::SeekableReadStream *createReadStream() = 0;
|
|
|
|
/**
|
|
* Creates a SeekableReadStream instance corresponding to an alternate
|
|
* stream of the file referred by this node. This assumes that the node
|
|
* actually refers to a readable file and the alt stream exists.
|
|
* If either is not the case, 0 is returned.
|
|
*
|
|
* @return pointer to the stream object, 0 in case of a failure
|
|
*/
|
|
virtual Common::SeekableReadStream *createReadStreamForAltStream(Common::AltStreamType altStreamType);
|
|
|
|
/**
|
|
* Creates a WriteStream instance corresponding to the file
|
|
* referred by this node. This assumes that the node actually refers
|
|
* to a readable file. If this is not the case, 0 is returned.
|
|
*
|
|
* @return pointer to the stream object, 0 in case of a failure
|
|
*/
|
|
virtual Common::SeekableWriteStream *createWriteStream() = 0;
|
|
|
|
/**
|
|
* Creates a directory referred by this node.
|
|
*
|
|
* @return true if the directory is created successfully
|
|
*/
|
|
virtual bool createDirectory() = 0;
|
|
};
|
|
|
|
|
|
|
|
#endif //BACKENDS_ABSTRACT_FS_H
|