aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/posix/POSIXFilesystemFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/posix/POSIXFilesystemFactory.h')
-rw-r--r--backends/fs/posix/POSIXFilesystemFactory.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/backends/fs/posix/POSIXFilesystemFactory.h b/backends/fs/posix/POSIXFilesystemFactory.h
new file mode 100644
index 0000000000..b471460445
--- /dev/null
+++ b/backends/fs/posix/POSIXFilesystemFactory.h
@@ -0,0 +1,38 @@
+#ifndef POSIXFILESYSTEMFACTORY_H_
+#define POSIXFILESYSTEMFACTORY_H_
+
+#include "backends/fs/AbstractFilesystemFactory.h"
+
+/**
+ * Creates POSIXFilesystemNode objects.
+ *
+ * Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
+ */
+class POSIXFilesystemFactory : public AbstractFilesystemFactory {
+public:
+ typedef Common::String String;
+
+ /**
+ * Creates an instance of POSIXFilesystemFactory using the Singleton pattern.
+ *
+ * @return A unique instance of POSIXFilesytemFactory.
+ */
+ static POSIXFilesystemFactory *instance();
+
+ /**
+ * Destructor.
+ */
+ virtual ~POSIXFilesystemFactory() {};
+
+ virtual AbstractFilesystemNode *makeRootFileNode() const;
+ virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
+ virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
+
+protected:
+ POSIXFilesystemFactory() {};
+
+private:
+ static POSIXFilesystemFactory *_instance;
+};
+
+#endif /*POSIXFILESYSTEMFACTORY_H_*/