aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/morphos
diff options
context:
space:
mode:
authorDavid Corrales2007-05-03 02:39:33 +0000
committerDavid Corrales2007-05-03 02:39:33 +0000
commitc459f054b46b8791ce206c2ee13d455a9c10fe4d (patch)
treeb36dc6034bfb9659e57e28de8a509a7b1de4554d /backends/fs/morphos
parent8f5abc1924d5d7bdbc9684b870394f93ad80d2ff (diff)
downloadscummvm-rg350-c459f054b46b8791ce206c2ee13d455a9c10fe4d.tar.gz
scummvm-rg350-c459f054b46b8791ce206c2ee13d455a9c10fe4d.tar.bz2
scummvm-rg350-c459f054b46b8791ce206c2ee13d455a9c10fe4d.zip
Use abstract factories to initialize FilesystemNode objects.
svn-id: r26739
Diffstat (limited to 'backends/fs/morphos')
-rw-r--r--backends/fs/morphos/ABoxFilesystemFactory.cpp23
-rw-r--r--backends/fs/morphos/ABoxFilesystemFactory.h38
-rw-r--r--backends/fs/morphos/abox-fs.cpp263
3 files changed, 197 insertions, 127 deletions
diff --git a/backends/fs/morphos/ABoxFilesystemFactory.cpp b/backends/fs/morphos/ABoxFilesystemFactory.cpp
new file mode 100644
index 0000000000..02d954ee74
--- /dev/null
+++ b/backends/fs/morphos/ABoxFilesystemFactory.cpp
@@ -0,0 +1,23 @@
+#include "backends/fs/morphos/ABoxFilesystemFactory.h"
+#include "backends/fs/morphos/abox-fs.cpp"
+
+ABoxFilesystemFactory *ABoxFilesystemFactory::_instance = 0;
+
+ABoxFilesystemFactory *ABoxFilesystemFactory::instance(){
+ if(_instance == 0){
+ _instance = new ABoxFilesystemFactory();
+ }
+ return _instance;
+}
+
+AbstractFilesystemNode *ABoxFilesystemFactory::makeRootFileNode() const {
+ return new ABoxFilesystemNode();
+}
+
+AbstractFilesystemNode *ABoxFilesystemFactory::makeCurrentDirectoryFileNode() const {
+ return new ABoxFilesystemNode();
+}
+
+AbstractFilesystemNode *ABoxFilesystemFactory::makeFileNodePath(const String &path) const {
+ return new ABoxFilesystemNode(path);
+}
diff --git a/backends/fs/morphos/ABoxFilesystemFactory.h b/backends/fs/morphos/ABoxFilesystemFactory.h
new file mode 100644
index 0000000000..c8fc0b3c19
--- /dev/null
+++ b/backends/fs/morphos/ABoxFilesystemFactory.h
@@ -0,0 +1,38 @@
+#ifndef ABOXFILESYSTEMFACTORY_H_
+#define ABOXFILESYSTEMFACTORY_H_
+
+#include "backends/fs/AbstractFilesystemFactory.h"
+
+/**
+ * Creates ABoxFilesystemNode objects.
+ *
+ * Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
+ */
+class ABoxFilesystemFactory : public AbstractFilesystemFactory {
+public:
+ typedef Common::String String;
+
+ /**
+ * Creates an instance of ABoxFilesystemFactory using the Singleton pattern.
+ *
+ * @return A unique instance of ABoxFilesytemFactory.
+ */
+ static ABoxFilesystemFactory *instance();
+
+ /**
+ * Destructor.
+ */
+ virtual ~ABoxFilesystemFactory() {};
+
+ virtual AbstractFilesystemNode *makeRootFileNode() const;
+ virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
+ virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
+
+protected:
+ ABoxFilesystemFactory() {};
+
+private:
+ static ABoxFilesystemFactory *_instance;
+};
+
+#endif /*ABOXFILESYSTEMFACTORY_H_*/
diff --git a/backends/fs/morphos/abox-fs.cpp b/backends/fs/morphos/abox-fs.cpp
index e88eb19c00..d4cc303219 100644
--- a/backends/fs/morphos/abox-fs.cpp
+++ b/backends/fs/morphos/abox-fs.cpp
@@ -32,52 +32,63 @@
#include "base/engine.h"
#include "backends/fs/abstract-fs.h"
-/*
+/**
* Implementation of the ScummVM file system API based on the MorphOS A-Box API.
+ *
+ * Parts of this class are documented in the base interface class, AbstractFilesystemNode.
*/
-
class ABoxFilesystemNode : public AbstractFilesystemNode {
- protected:
- BPTR _lock;
- String _displayName;
- bool _isDirectory;
- bool _isValid;
- String _path;
-
- public:
- ABoxFilesystemNode();
- ABoxFilesystemNode(BPTR lock, CONST_STRPTR display_name = NULL);
- ABoxFilesystemNode(const String &p);
- ABoxFilesystemNode(const ABoxFilesystemNode &node);
-
- ~ABoxFilesystemNode();
-
- virtual String displayName() const { return _displayName; }
- virtual String name() const { return _displayName; };
- virtual bool isValid() const { return _isValid; }
- virtual bool isDirectory() const { return _isDirectory; }
- virtual String path() const { return _path; }
-
- virtual bool listDir(AbstractFSList &list, ListMode mode) const;
- static AbstractFSList listRoot();
- virtual AbstractFilesystemNode *parent() const;
- virtual AbstractFilesystemNode *child(const String &name) const;
+protected:
+ BPTR _lock;
+ String _displayName;
+ String _path;
+ bool _isDirectory;
+ bool _isValid;
+
+public:
+ /**
+ * Creates a ABoxFilesystemNode with the root node as path.
+ */
+ ABoxFilesystemNode();
+
+ /**
+ * Creates a ABoxFilesystemNode for a given path.
+ *
+ * @param path String with the path the new node should point to.
+ */
+ ABoxFilesystemNode(const String &p);
+
+ /**
+ * FIXME: document this constructor.
+ */
+ ABoxFilesystemNode(BPTR lock, CONST_STRPTR display_name = NULL);
+
+ /**
+ * Copy constructor.
+ */
+ ABoxFilesystemNode(const ABoxFilesystemNode &node);
+
+ /**
+ * Destructor.
+ */
+ ~ABoxFilesystemNode();
+
+ virtual String getDisplayName() const { return _displayName; }
+ virtual String getName() const { return _displayName; };
+ virtual String getPath() const { return _path; }
+ virtual bool isDirectory() const { return _isDirectory; }
+ virtual bool isValid() const { return _isValid; }
+
+ virtual AbstractFilesystemNode *getChild(const String &name) const;
+ virtual bool getChildren(AbstractFSList &list, ListMode mode) const;
+ virtual AbstractFilesystemNode *getParent() const;
+
+ /**
+ * Return the list of child nodes for the root node.
+ */
+ static AbstractFSList getRootChildren();
};
-
-AbstractFilesystemNode *AbstractFilesystemNode::getCurrentDirectory() {
- return AbstractFilesystemNode::getRoot();
-}
-
-AbstractFilesystemNode *AbstractFilesystemNode::getNodeForPath(const String &path) {
- return new ABoxFilesystemNode(path);
-}
-
-AbstractFilesystemNode *AbstractFilesystemNode::getRoot()
-{
- return new ABoxFilesystemNode();
-}
-
ABoxFilesystemNode::ABoxFilesystemNode()
{
_displayName = "Mounted Volumes";
@@ -87,57 +98,6 @@ ABoxFilesystemNode::ABoxFilesystemNode()
_lock = NULL;
}
-ABoxFilesystemNode::ABoxFilesystemNode(BPTR lock, CONST_STRPTR display_name)
-{
- int bufsize = 256;
-
- _lock = NULL;
- for (;;)
- {
- char name[bufsize];
- if (NameFromLock(lock, name, bufsize) != DOSFALSE)
- {
- _path = name;
- _displayName = display_name ? display_name : FilePart(name);
- break;
- }
- if (IoErr() != ERROR_LINE_TOO_LONG)
- {
- _isValid = false;
- debug(6, "Error while retrieving path name: %ld", IoErr());
- return;
- }
- bufsize *= 2;
- }
-
- _isDirectory = false;
- _isValid = false;
-
- FileInfoBlock *fib = (FileInfoBlock*) AllocDosObject(DOS_FIB, NULL);
- if (fib == NULL)
- {
- debug(6, "Failed to allocate memory for FileInfoBlock");
- return;
- }
-
- if (Examine(lock, fib) != DOSFALSE)
- {
- _isDirectory = fib->fib_EntryType > 0;
- if (_isDirectory)
- {
- if (fib->fib_EntryType != ST_ROOT)
- _path += "/";
- _lock = DupLock(lock);
- _isValid = (_lock != NULL);
- }
- else
- {
- _isValid = true;
- }
- }
- FreeDosObject(DOS_FIB, fib);
-}
-
ABoxFilesystemNode::ABoxFilesystemNode(const String &p) {
int len = 0, offset = p.size();
@@ -165,7 +125,6 @@ ABoxFilesystemNode::ABoxFilesystemNode(const String &p) {
}
// Check whether the node exists and if it is a directory
-
BPTR pLock = Lock((STRPTR)_path.c_str(), SHARED_LOCK);
if (pLock)
{
@@ -195,6 +154,58 @@ ABoxFilesystemNode::ABoxFilesystemNode(const String &p) {
FreeDosObject(DOS_FIB, fib);
}
+ABoxFilesystemNode::ABoxFilesystemNode(BPTR lock, CONST_STRPTR display_name)
+{
+ int bufsize = 256;
+
+ _lock = NULL;
+ for (;;)
+ {
+ char name[bufsize];
+ if (NameFromLock(lock, name, bufsize) != DOSFALSE)
+ {
+ _path = name;
+ _displayName = display_name ? display_name : FilePart(name);
+ break;
+ }
+ if (IoErr() != ERROR_LINE_TOO_LONG)
+ {
+ _isValid = false;
+ debug(6, "Error while retrieving path name: %ld", IoErr());
+ return;
+ }
+ bufsize *= 2;
+ }
+
+ _isDirectory = false;
+ _isValid = false;
+
+ FileInfoBlock *fib = (FileInfoBlock*) AllocDosObject(DOS_FIB, NULL);
+ if (fib == NULL)
+ {
+ debug(6, "Failed to allocate memory for FileInfoBlock");
+ return;
+ }
+
+ if (Examine(lock, fib) != DOSFALSE)
+ {
+ _isDirectory = fib->fib_EntryType > 0;
+ if (_isDirectory)
+ {
+ if (fib->fib_EntryType != ST_ROOT)
+ _path += "/";
+ _lock = DupLock(lock);
+ _isValid = (_lock != NULL);
+ }
+ else
+ {
+ _isValid = true;
+ }
+ }
+
+ FreeDosObject(DOS_FIB, fib);
+}
+
ABoxFilesystemNode::ABoxFilesystemNode(const ABoxFilesystemNode& node)
{
_displayName = node._displayName;
@@ -213,7 +224,27 @@ ABoxFilesystemNode::~ABoxFilesystemNode()
}
}
-bool ABoxFilesystemNode::listDir(AbstractFSList &myList, ListMode mode) const
+AbstractFilesystemNode *ABoxFilesystemNode::getChild(const String &name) const {
+ assert(_isDirectory);
+ String newPath(_path);
+
+ if (_path.lastChar() != '/')
+ newPath += '/';
+ newPath += name;
+
+ BPTR lock = Lock(newPath.c_str(), SHARED_LOCK);
+
+ if (!lock)
+ {
+ return 0;
+ }
+
+ UnLock(lock);
+
+ return new ABoxFilesystemNode(newPath);
+}
+
+bool ABoxFilesystemNode::getChildren(AbstractFSList &list, ListMode mode) const
{
if (!_isValid)
{
@@ -229,7 +260,7 @@ bool ABoxFilesystemNode::listDir(AbstractFSList &myList, ListMode mode) const
if (_lock == NULL)
{
/* This is the root node */
- myList = listRoot();
+ list = getRootChildren();
return true;
}
@@ -263,7 +294,7 @@ bool ABoxFilesystemNode::listDir(AbstractFSList &myList, ListMode mode) const
if (entry)
{
if (entry->isValid())
- myList.push_back(entry);
+ list.push_back(entry);
else
delete entry;
}
@@ -281,7 +312,7 @@ bool ABoxFilesystemNode::listDir(AbstractFSList &myList, ListMode mode) const
return true;
}
-AbstractFilesystemNode *ABoxFilesystemNode::parent() const
+AbstractFilesystemNode *ABoxFilesystemNode::getParent() const
{
AbstractFilesystemNode *node = NULL;
@@ -306,29 +337,9 @@ AbstractFilesystemNode *ABoxFilesystemNode::parent() const
return node;
}
-AbstractFilesystemNode *ABoxFilesystemNode::child(const String &name) const {
- assert(_isDirectory);
- String newPath(_path);
-
- if (_path.lastChar() != '/')
- newPath += '/';
- newPath += name;
-
- BPTR lock = Lock(newPath.c_str(), SHARED_LOCK);
-
- if (!lock)
- {
- return 0;
- }
-
- UnLock(lock);
-
- return new ABoxFilesystemNode(newPath);
-}
-
-AbstractFSList ABoxFilesystemNode::listRoot()
+AbstractFSList ABoxFilesystemNode::getRootChildren()
{
- AbstractFSList myList;
+ AbstractFSList list;
DosList *dosList;
CONST ULONG lockDosListFlags = LDF_READ | LDF_VOLUMES;
char name[256];
@@ -336,15 +347,15 @@ AbstractFSList ABoxFilesystemNode::listRoot()
dosList = LockDosList(lockDosListFlags);
if (dosList == NULL)
{
- return myList;
+ return list;
}
dosList = NextDosEntry(dosList, LDF_VOLUMES);
while (dosList)
{
- if (dosList->dol_Type == DLT_VOLUME && // Should always be true, but ...
- dosList->dol_Name && // Same here
- dosList->dol_Task // Will be NULL if volume is removed from drive but still in use by some program
+ if (dosList->dol_Type == DLT_VOLUME && // Should always be true, but ...
+ dosList->dol_Name && // Same here
+ dosList->dol_Task // Will be NULL if volume is removed from drive but still in use by some program
)
{
ABoxFilesystemNode *entry;
@@ -362,7 +373,7 @@ AbstractFSList ABoxFilesystemNode::listRoot()
if (entry)
{
if (entry->isValid())
- myList.push_back(entry);
+ list.push_back(entry);
else
delete entry;
}
@@ -374,9 +385,7 @@ AbstractFSList ABoxFilesystemNode::listRoot()
UnLockDosList(lockDosListFlags);
- return myList;
+ return list;
}
#endif // defined(__MORPHOS__)
-
-