2002-11-13 17:16:18 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2002-2006 The ScummVM project
|
2002-11-13 17:16:18 +00:00
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-11-13 17:16:18 +00:00
|
|
|
*
|
2006-02-11 12:47:47 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2002-11-13 17:16:18 +00:00
|
|
|
*/
|
|
|
|
|
2006-05-03 10:14:05 +00:00
|
|
|
#ifndef BACKENDS_FS_H
|
|
|
|
#define BACKENDS_FS_H
|
2002-11-13 17:16:18 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The API described in this header is meant to allow for file system browsing in a
|
|
|
|
* portable fashions. To this ends, multiple or single roots have to be supported
|
|
|
|
* (compare Unix with a single root, Windows with multiple roots C:, D:, ...).
|
|
|
|
*
|
|
|
|
* To this end, we abstract away from paths; implementations can be based on
|
|
|
|
* paths (and it's left to them whether / or \ or : is the path separator :-);
|
|
|
|
* but it is also possible to use inodes or vrefs (MacOS 9) or anything else.
|
|
|
|
*
|
2004-12-10 00:11:52 +00:00
|
|
|
* NOTE: Backends still have to provide a way to extract a path from a FSIntern
|
2002-11-13 17:16:18 +00:00
|
|
|
*
|
|
|
|
* You may ask now: "isn't this cheating? Why do we go through all this when we use
|
|
|
|
* a path in the end anyway?!?".
|
|
|
|
* Well, for once as long as we don't provide our own file open/read/write API, we
|
|
|
|
* still have to use fopen(). Since all our targets already support fopen(), it should
|
|
|
|
* be possible to get a fopen() compatible string for any file system node.
|
|
|
|
*
|
|
|
|
* Secondly, with this abstraction layer, we still avoid a lot of complications based on
|
|
|
|
* differences in FS roots, different path separators, or even systems with no real
|
2004-05-06 09:20:21 +00:00
|
|
|
* paths (MacOS 9 doesn't even have the notion of a "current directory").
|
2002-11-13 17:16:18 +00:00
|
|
|
* And if we ever want to support devices with no FS in the classical sense (Palm...),
|
|
|
|
* we can build upon this.
|
|
|
|
*/
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
|
|
/*
|
2002-11-14 13:51:59 +00:00
|
|
|
* TODO - Instead of starting with getRoot(), we should rather add a getDefaultDir()
|
|
|
|
* call that on Unix might return the current dir or the users home dir...
|
|
|
|
* i.e. the root dir is usually not the best starting point for browsing.
|
|
|
|
*/
|
2002-11-13 17:16:18 +00:00
|
|
|
|
2004-04-09 15:10:23 +00:00
|
|
|
#include "common/array.h"
|
2002-11-13 17:16:18 +00:00
|
|
|
#include "common/str.h"
|
|
|
|
|
2004-11-20 21:35:49 +00:00
|
|
|
class FilesystemNode;
|
2006-05-03 10:14:05 +00:00
|
|
|
class AbstractFilesystemNode;
|
2004-11-20 21:35:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of multiple file system nodes. E.g. the contents of a given directory.
|
2006-04-04 23:55:47 +00:00
|
|
|
* This is subclass instead of just a typedef so that we can use forward
|
|
|
|
* declarations of it in other places.
|
2004-11-20 21:35:49 +00:00
|
|
|
*/
|
2006-04-04 23:55:47 +00:00
|
|
|
class FSList : public Common::Array<FilesystemNode> {};
|
2004-11-20 21:35:49 +00:00
|
|
|
|
2002-11-13 17:16:18 +00:00
|
|
|
|
2006-05-03 10:14:05 +00:00
|
|
|
class FilesystemNode {
|
2004-11-20 21:35:49 +00:00
|
|
|
typedef Common::String String;
|
|
|
|
private:
|
|
|
|
AbstractFilesystemNode *_realNode;
|
|
|
|
int *_refCount;
|
|
|
|
|
2006-04-03 21:54:26 +00:00
|
|
|
FilesystemNode(AbstractFilesystemNode *realNode);
|
|
|
|
|
2002-11-13 17:16:18 +00:00
|
|
|
public:
|
2006-05-03 10:14:05 +00:00
|
|
|
/**
|
|
|
|
* Flag to tell listDir() which kind of files to list.
|
|
|
|
*/
|
|
|
|
enum ListMode {
|
|
|
|
kListFilesOnly = 1,
|
|
|
|
kListDirectoriesOnly = 2,
|
|
|
|
kListAll = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-04-30 22:52:10 +00:00
|
|
|
/**
|
|
|
|
* Create a new FilesystemNode refering to the specified path. This is
|
|
|
|
* the counterpart to the path() method.
|
|
|
|
*/
|
|
|
|
FilesystemNode(const String &path);
|
|
|
|
|
|
|
|
|
2004-11-20 21:35:49 +00:00
|
|
|
FilesystemNode();
|
|
|
|
FilesystemNode(const FilesystemNode &node);
|
2006-05-03 10:14:05 +00:00
|
|
|
virtual ~FilesystemNode();
|
2002-11-13 17:16:18 +00:00
|
|
|
|
2004-11-20 21:35:49 +00:00
|
|
|
FilesystemNode &operator =(const FilesystemNode &node);
|
2004-05-06 10:34:41 +00:00
|
|
|
|
2006-04-30 22:52:10 +00:00
|
|
|
/**
|
|
|
|
* Get the parent node of this node. If this node has no parent node,
|
|
|
|
* then it returns a duplicate of this node.
|
|
|
|
*/
|
2004-11-20 21:35:49 +00:00
|
|
|
FilesystemNode getParent() const;
|
2004-05-06 10:34:41 +00:00
|
|
|
|
2006-04-30 22:52:10 +00:00
|
|
|
/**
|
|
|
|
* Fetch a child node of this node, with the given name. Only valid for
|
|
|
|
* directory nodes (an assertion is triggered otherwise). If no no child
|
|
|
|
* node with the given name exists, an invalid node is returned.
|
|
|
|
*/
|
|
|
|
FilesystemNode getChild(const String &name) const;
|
2004-05-06 10:34:41 +00:00
|
|
|
|
2006-04-30 22:52:10 +00:00
|
|
|
virtual FSList listDir(ListMode mode = kListDirectoriesOnly) const;
|
2006-04-03 21:54:26 +00:00
|
|
|
virtual String displayName() const;
|
|
|
|
virtual bool isValid() const;
|
|
|
|
virtual bool isDirectory() const;
|
|
|
|
virtual String path() const;
|
2003-10-17 12:04:44 +00:00
|
|
|
|
2006-05-03 10:14:05 +00:00
|
|
|
/**
|
|
|
|
* Compare the name of this node to the name of another. Directories
|
|
|
|
* go before normal files.
|
|
|
|
*/
|
|
|
|
bool operator< (const FilesystemNode& node) const;
|
|
|
|
|
2004-11-20 21:35:49 +00:00
|
|
|
protected:
|
|
|
|
void decRefCount();
|
2002-11-13 17:16:18 +00:00
|
|
|
};
|
|
|
|
|
2004-11-20 21:35:49 +00:00
|
|
|
|
2002-11-13 17:16:18 +00:00
|
|
|
#endif
|