ScummVM API documentation
riscos-fs.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef RISCOS_FILESYSTEM_H
23 #define RISCOS_FILESYSTEM_H
24 
25 #include "backends/fs/abstract-fs.h"
26 
32 class RISCOSFilesystemNode final : public AbstractFSNode {
33 protected:
34  Common::String _displayName;
35  Common::String _nativePath;
36  Common::String _path;
37  bool _isDirectory;
38  bool _isValid;
39 
40  virtual AbstractFSNode *makeNode(const Common::String &path) const {
41  return new RISCOSFilesystemNode(path);
42  }
43 
47  RISCOSFilesystemNode() : _isDirectory(false), _isValid(false) {}
48 public:
55 
56  bool exists() const override;
57  Common::U32String getDisplayName() const override { return _displayName; }
58  Common::String getName() const override { return _displayName; }
59  Common::String getPath() const override { return _path; }
60  bool isDirectory() const override { return _isDirectory; }
61  bool isReadable() const override;
62  bool isWritable() const override;
63 
64  AbstractFSNode *getChild(const Common::String &n) const override;
65  bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const override;
66  AbstractFSNode *getParent() const override;
67 
69  Common::SeekableWriteStream *createWriteStream(bool atomic) override;
70  bool createDirectory() override;
71 private:
75  virtual void setFlags();
76 };
77 
78 namespace Riscos {
79 
88 bool assureDirectoryExists(const Common::String &dir, const char *prefix = nullptr);
89 
90 } // End of namespace RISCOS
91 
92 #endif
bool createDirectory() override
bool isReadable() const override
Definition: str.h:59
Common::String getPath() const override
Definition: riscos-fs.h:59
Definition: array.h:52
Definition: stream.h:745
Definition: riscos-fs.h:32
RISCOSFilesystemNode()
Definition: riscos-fs.h:47
bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const override
AbstractFSNode * getParent() const override
Definition: ustr.h:57
ListMode
Definition: fs.h:86
bool isDirectory() const override
Definition: riscos-fs.h:60
Common::String getName() const override
Definition: riscos-fs.h:58
Definition: stream.h:351
bool isWritable() const override
Common::SeekableWriteStream * createWriteStream(bool atomic) override
AbstractFSNode * getChild(const Common::String &n) const override
Common::SeekableReadStream * createReadStream() override
Definition: abstract-fs.h:41
Common::U32String getDisplayName() const override
Definition: riscos-fs.h:57
Definition: riscos-fs.h:78