2008-08-31 13:58:17 +00:00
|
|
|
/* 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2008-08-31 13:58:17 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2008-08-31 13:58:17 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-12-27 18:03:27 +00:00
|
|
|
#ifndef COMMON_ARCHIVE_H
|
|
|
|
#define COMMON_ARCHIVE_H
|
2008-08-31 13:58:17 +00:00
|
|
|
|
|
|
|
#include "common/str.h"
|
|
|
|
#include "common/list.h"
|
2021-08-01 23:33:22 +00:00
|
|
|
#include "common/path.h"
|
2008-08-31 13:58:17 +00:00
|
|
|
#include "common/ptr.h"
|
2008-09-11 13:24:01 +00:00
|
|
|
#include "common/singleton.h"
|
2008-08-31 13:58:17 +00:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
2020-07-08 21:30:36 +00:00
|
|
|
/**
|
|
|
|
* @defgroup common_arch Archive
|
|
|
|
* @ingroup common
|
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* @brief The Archive module allows for managing the members of arbitrary containers in a uniform
|
2021-05-04 08:45:03 +00:00
|
|
|
* fashion.
|
2020-09-15 23:39:09 +00:00
|
|
|
* It also supports looking up by names and file names, opening a file, and returning a usable input stream.
|
2020-07-08 21:30:36 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2008-12-27 18:03:27 +00:00
|
|
|
class FSNode;
|
|
|
|
class SeekableReadStream;
|
|
|
|
|
|
|
|
|
2008-10-12 06:06:04 +00:00
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* The ArchiveMember class is an abstract interface to represent elements inside
|
|
|
|
* implementations of an archive.
|
2008-10-12 06:06:04 +00:00
|
|
|
*
|
|
|
|
* Archive subclasses must provide their own implementation of ArchiveMember,
|
2020-09-15 23:39:09 +00:00
|
|
|
* and use it when serving calls to @ref Archive::listMembers and @ref Archive::listMatchingMembers.
|
|
|
|
* Alternatively, you can use the @ref GenericArchiveMember.
|
2008-10-12 06:06:04 +00:00
|
|
|
*/
|
2008-10-03 16:57:40 +00:00
|
|
|
class ArchiveMember {
|
|
|
|
public:
|
|
|
|
virtual ~ArchiveMember() { }
|
2020-09-30 21:17:38 +00:00
|
|
|
virtual SeekableReadStream *createReadStream() const = 0; /*!< Create a read stream. */
|
2020-10-16 23:21:42 +00:00
|
|
|
virtual String getName() const = 0; /*!< Get the name of the archive member. */
|
2021-07-01 09:11:51 +00:00
|
|
|
virtual U32String getDisplayName() const { return getName(); } /*!< Get the display name of the archive member. */
|
2008-10-03 16:57:40 +00:00
|
|
|
};
|
|
|
|
|
2020-10-16 23:21:42 +00:00
|
|
|
typedef SharedPtr<ArchiveMember> ArchiveMemberPtr; /*!< Shared pointer to an archive member. */
|
|
|
|
typedef List<ArchiveMemberPtr> ArchiveMemberList; /*!< List of archive members. */
|
2008-10-03 16:57:40 +00:00
|
|
|
|
2020-10-16 23:21:42 +00:00
|
|
|
/**
|
|
|
|
* Compare two archive member operators @p a and @p b and return which of them is higher.
|
|
|
|
*/
|
2017-09-06 21:18:14 +00:00
|
|
|
struct ArchiveMemberListComparator {
|
|
|
|
bool operator()(const ArchiveMemberPtr &a, const ArchiveMemberPtr &b) {
|
|
|
|
return a->getName() < b->getName();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-10-03 16:57:40 +00:00
|
|
|
class Archive;
|
|
|
|
|
|
|
|
/**
|
2008-10-12 06:06:04 +00:00
|
|
|
* Simple ArchiveMember implementation which allows
|
2008-10-03 16:57:40 +00:00
|
|
|
* creation of ArchiveMember compatible objects via
|
|
|
|
* a simple Archive and name pair.
|
|
|
|
*
|
|
|
|
* Note that GenericArchiveMember objects will not
|
|
|
|
* be working anymore after the 'parent' object
|
|
|
|
* is destroyed.
|
|
|
|
*/
|
|
|
|
class GenericArchiveMember : public ArchiveMember {
|
2011-12-13 16:20:25 +00:00
|
|
|
const Archive *_parent;
|
|
|
|
const String _name;
|
2008-10-03 16:57:40 +00:00
|
|
|
public:
|
2020-10-16 23:21:42 +00:00
|
|
|
GenericArchiveMember(const String &name, const Archive *parent); /*!< Create a generic archive member that belongs to the @p parent archive. */
|
2020-09-30 21:17:38 +00:00
|
|
|
String getName() const; /*!< Get the name of a generic archive member. */
|
2020-10-16 23:21:42 +00:00
|
|
|
SeekableReadStream *createReadStream() const; /*!< Create a read stream. */
|
2008-10-03 16:57:40 +00:00
|
|
|
};
|
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* The Archive class allows for managing the members of arbitrary containers in a uniform
|
|
|
|
* fashion, allowing lookup by (file) names.
|
|
|
|
* It also supports opening a file and returning a usable input stream.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
|
|
|
class Archive {
|
|
|
|
public:
|
|
|
|
virtual ~Archive() { }
|
|
|
|
|
|
|
|
/**
|
2020-10-16 23:21:42 +00:00
|
|
|
* Check if a member with the given @p name is present in the Archive.
|
2010-08-16 19:58:20 +00:00
|
|
|
* Patterns are not allowed, as this is meant to be a quick File::exists()
|
|
|
|
* replacement.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
2021-08-01 23:33:22 +00:00
|
|
|
virtual bool hasFile(const Path &path) const = 0;
|
2008-08-31 13:58:17 +00:00
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Add all members of the Archive matching the specified pattern to the list.
|
2010-08-16 19:58:20 +00:00
|
|
|
* Must only append to list, and not remove elements from it.
|
2008-08-31 13:58:17 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* @return The number of members added to list.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
2021-08-09 20:23:36 +00:00
|
|
|
virtual int listMatchingMembers(ArchiveMemberList &list, const Path &pattern) const;
|
2008-08-31 13:58:17 +00:00
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Add all members of the Archive to the list.
|
2010-08-16 19:58:20 +00:00
|
|
|
* Must only append to list, and not remove elements from it.
|
2008-08-31 13:58:17 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* @return The number of names added to list.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
2011-12-13 16:20:25 +00:00
|
|
|
virtual int listMembers(ArchiveMemberList &list) const = 0;
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2008-11-01 12:49:29 +00:00
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Return an ArchiveMember representation of the given file.
|
2008-11-01 12:49:29 +00:00
|
|
|
*/
|
2021-08-01 23:33:22 +00:00
|
|
|
virtual const ArchiveMemberPtr getMember(const Path &path) const = 0;
|
2008-11-01 12:49:29 +00:00
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
/**
|
2010-08-16 19:58:20 +00:00
|
|
|
* Create a stream bound to a member with the specified name in the
|
|
|
|
* archive. If no member with this name exists, 0 is returned.
|
2020-09-15 23:39:09 +00:00
|
|
|
*
|
|
|
|
* @return The newly created input stream.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
2021-08-01 23:33:22 +00:00
|
|
|
virtual SeekableReadStream *createReadStreamForMember(const Path &path) const = 0;
|
2008-08-31 13:58:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* The SearchSet class enables access to a group of Archives through the Archive interface.
|
|
|
|
*
|
2008-08-31 13:58:17 +00:00
|
|
|
* Its intended usage is a situation in which there are no name clashes among names in the
|
|
|
|
* contained Archives, hence the simplistic policy of always looking for the first
|
2020-09-15 23:39:09 +00:00
|
|
|
* match. SearchSet does guarantee that searches are performed in DESCENDING
|
2008-08-31 13:58:17 +00:00
|
|
|
* priority order. In case of conflicting priorities, insertion order prevails.
|
|
|
|
*/
|
2008-09-03 19:07:38 +00:00
|
|
|
class SearchSet : public Archive {
|
2008-08-31 13:58:17 +00:00
|
|
|
struct Node {
|
2008-10-22 17:44:12 +00:00
|
|
|
int _priority;
|
|
|
|
String _name;
|
|
|
|
Archive *_arc;
|
|
|
|
bool _autoFree;
|
|
|
|
Node(int priority, const String &name, Archive *arc, bool autoFree)
|
|
|
|
: _priority(priority), _name(name), _arc(arc), _autoFree(autoFree) {
|
2008-09-29 19:09:56 +00:00
|
|
|
}
|
2008-08-31 13:58:17 +00:00
|
|
|
};
|
2008-12-15 12:55:13 +00:00
|
|
|
typedef List<Node> ArchiveNodeList;
|
|
|
|
ArchiveNodeList _list;
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2009-03-09 22:26:02 +00:00
|
|
|
ArchiveNodeList::iterator find(const String &name);
|
|
|
|
ArchiveNodeList::const_iterator find(const String &name) const;
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2020-10-16 23:21:42 +00:00
|
|
|
void insert(const Node& node); //!< Add an archive while keeping the list sorted by descending priority.
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2019-10-20 15:37:18 +00:00
|
|
|
bool _ignoreClashes;
|
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
public:
|
2019-10-20 15:37:18 +00:00
|
|
|
SearchSet() : _ignoreClashes(false) { }
|
2008-10-22 17:44:12 +00:00
|
|
|
virtual ~SearchSet() { clear(); }
|
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
/**
|
2008-09-06 22:09:34 +00:00
|
|
|
* Add a new archive to the searchable set.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
2008-10-22 17:44:12 +00:00
|
|
|
void add(const String& name, Archive *arch, int priority = 0, bool autoFree = true);
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2008-12-27 17:16:48 +00:00
|
|
|
/**
|
2020-10-16 23:21:42 +00:00
|
|
|
* Create and add an FSDirectory by name.
|
2008-12-27 17:16:48 +00:00
|
|
|
*/
|
2009-06-01 00:01:32 +00:00
|
|
|
void addDirectory(const String &name, const String &directory, int priority = 0, int depth = 1, bool flat = false);
|
2008-12-27 17:16:48 +00:00
|
|
|
|
|
|
|
/**
|
2020-10-16 23:21:42 +00:00
|
|
|
* Create and add an FSDirectory by FSNode.
|
2008-12-27 17:16:48 +00:00
|
|
|
*/
|
2009-06-01 00:01:32 +00:00
|
|
|
void addDirectory(const String &name, const FSNode &directory, int priority = 0, int depth = 1, bool flat = false);
|
2008-12-27 17:16:48 +00:00
|
|
|
|
2009-09-23 00:15:00 +00:00
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Create and add a subdirectory by name (caseless).
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* It is also possible to add subdirectories of subdirectories (of any depth) with this function.
|
2021-10-31 14:10:19 +00:00
|
|
|
* The path separator for this case is SLASH for all systems.
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* Example:
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
|
|
|
* "game/itedata"
|
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* In this example, the code first tries to search for all directories matching
|
2009-09-23 00:15:00 +00:00
|
|
|
* "game" (case insensitive) in the path "directory" first and search through all
|
|
|
|
* of the matches for "itedata" (case insensitive too).
|
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* Note that it will add all matches found!
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* Even though this method is currently implemented via addSubDirectoriesMatching, it is not safe
|
2009-09-23 00:15:00 +00:00
|
|
|
* to assume that this method is using anything other than a simple case insensitive compare.
|
2020-09-15 23:39:09 +00:00
|
|
|
* Thus, do not use any tokens like '*' or '?' in the "caselessName" parameter of this function.
|
2009-09-23 00:15:00 +00:00
|
|
|
*/
|
2013-06-06 19:41:14 +00:00
|
|
|
void addSubDirectoryMatching(const FSNode &directory, const String &caselessName, int priority = 0, int depth = 1, bool flat = false) {
|
|
|
|
addSubDirectoriesMatching(directory, caselessName, true, priority, depth, flat);
|
2009-09-23 00:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Create and add subdirectories by pattern.
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* It is also possible to add subdirectories of subdirectories (of any depth) with this function.
|
2021-10-31 14:10:19 +00:00
|
|
|
* The path separator for this case is SLASH for all systems.
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* Example:
|
2009-09-23 00:15:00 +00:00
|
|
|
*
|
|
|
|
* "game/itedata"
|
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* In this example, the code first tries to search for all directories matching
|
2009-09-23 00:15:00 +00:00
|
|
|
* "game" in the path "directory" first and search through all of the matches for
|
2020-09-15 23:39:09 +00:00
|
|
|
* "itedata". If "ingoreCase" is set to true, the code does a case insensitive
|
2009-09-23 00:15:00 +00:00
|
|
|
* match, otherwise it is doing a case sensitive match.
|
|
|
|
*
|
2020-09-15 23:39:09 +00:00
|
|
|
* This method also works with tokens. For a list of available tokens,
|
|
|
|
* see @ref Common::matchString.
|
2009-09-23 00:15:00 +00:00
|
|
|
*/
|
2013-06-06 19:41:14 +00:00
|
|
|
void addSubDirectoriesMatching(const FSNode &directory, String origPattern, bool ignoreCase, int priority = 0, int depth = 1, bool flat = false);
|
2009-09-23 00:15:00 +00:00
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
/**
|
2008-09-06 22:09:34 +00:00
|
|
|
* Remove an archive from the searchable set.
|
2008-08-31 13:58:17 +00:00
|
|
|
*/
|
|
|
|
void remove(const String& name);
|
|
|
|
|
2008-09-06 22:09:34 +00:00
|
|
|
/**
|
|
|
|
* Check if a given archive name is already present.
|
|
|
|
*/
|
|
|
|
bool hasArchive(const String &name) const;
|
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Empty the searchable set.
|
2008-12-22 11:22:15 +00:00
|
|
|
*/
|
2008-09-27 18:32:01 +00:00
|
|
|
virtual void clear();
|
2008-08-31 13:58:17 +00:00
|
|
|
|
|
|
|
/**
|
2008-12-22 11:22:15 +00:00
|
|
|
* Change the order of searches.
|
|
|
|
*/
|
2008-09-27 18:32:01 +00:00
|
|
|
void setPriority(const String& name, int priority);
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2021-08-01 23:33:22 +00:00
|
|
|
virtual bool hasFile(const Path &path) const;
|
2021-08-09 20:23:36 +00:00
|
|
|
virtual int listMatchingMembers(ArchiveMemberList &list, const Path &pattern) const;
|
2011-12-13 16:20:25 +00:00
|
|
|
virtual int listMembers(ArchiveMemberList &list) const;
|
2008-08-31 13:58:17 +00:00
|
|
|
|
2021-08-01 23:33:22 +00:00
|
|
|
virtual const ArchiveMemberPtr getMember(const Path &path) const;
|
2008-11-01 12:49:29 +00:00
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Implement createReadStreamForMember from the Archive base class. The current policy is
|
2008-08-31 13:58:17 +00:00
|
|
|
* opening the first file encountered that matches the name.
|
|
|
|
*/
|
2021-08-01 23:33:22 +00:00
|
|
|
virtual SeekableReadStream *createReadStreamForMember(const Path &path) const;
|
2019-10-20 15:37:18 +00:00
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Ignore clashes when adding directories. For more details, see the corresponding parameter
|
2020-10-16 23:21:42 +00:00
|
|
|
* in @ref FSDirectory documentation.
|
2019-10-20 15:37:18 +00:00
|
|
|
*/
|
|
|
|
void setIgnoreClashes(bool ignoreClashes) { _ignoreClashes = ignoreClashes; }
|
2008-08-31 13:58:17 +00:00
|
|
|
};
|
|
|
|
|
2008-09-11 13:24:01 +00:00
|
|
|
|
2008-09-17 18:59:09 +00:00
|
|
|
class SearchManager : public Singleton<SearchManager>, public SearchSet {
|
2008-09-11 13:24:01 +00:00
|
|
|
public:
|
2008-09-27 18:32:01 +00:00
|
|
|
|
|
|
|
/**
|
2020-09-15 23:39:09 +00:00
|
|
|
* Reset the Search Manager to the default list of search paths (system
|
2008-10-22 17:08:17 +00:00
|
|
|
* specific dirs + current dir).
|
2008-09-27 18:32:01 +00:00
|
|
|
*/
|
|
|
|
virtual void clear();
|
2008-10-22 22:31:09 +00:00
|
|
|
|
|
|
|
private:
|
2011-08-06 07:47:19 +00:00
|
|
|
friend class Singleton<SingletonBaseType>;
|
2008-10-22 22:31:09 +00:00
|
|
|
SearchManager();
|
2008-09-11 13:24:01 +00:00
|
|
|
};
|
|
|
|
|
2020-09-15 23:39:09 +00:00
|
|
|
/** Shortcut for accessing the Search Manager. */
|
2008-09-11 13:24:01 +00:00
|
|
|
#define SearchMan Common::SearchManager::instance()
|
|
|
|
|
2020-07-08 21:30:36 +00:00
|
|
|
/** @} */
|
|
|
|
|
2008-08-31 13:58:17 +00:00
|
|
|
} // namespace Common
|
|
|
|
|
|
|
|
#endif
|