ScummVM API documentation
cloud-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 CLOUD_FILESYSTEM_H
23 #define CLOUD_FILESYSTEM_H
24 
25 #include "backends/fs/abstract-fs.h"
26 
27 #ifdef USE_CLOUD
28 #include "backends/cloud/cloudmanager.h"
29 #include "backends/cloud/storage.h"
30 #include "backends/cloud/storagefile.h"
31 #include "backends/networking/http/connectionmanager.h"
32 #include "backends/networking/http/httpjsonrequest.h"
33 #include "backends/networking/http/request.h"
34 #endif
35 
36 #include "backends/fs/posix/posix-fs.h"
37 
44 #define CLOUD_FS_PATH "/cloud"
45 protected:
47  Common::String _displayName;
48  Common::String _path;
49  Common::String _storageFileId;
50  bool _isDirectory;
51  bool _isValid;
52 
56  CloudFilesystemNode() : _isDirectory(false), _isValid(false), _storageFileId(nullptr) {}
57 
58  virtual AbstractFSNode *makeNode(const Common::String &path) const {
59  return new CloudFilesystemNode(path);
60  }
61 
66  void directoryListedErrorCallback(const Networking::ErrorResponse &error);
67  void fileDownloadedCallback(const Cloud::Storage::BoolResponse &response);
68  void fileDownloadedErrorCallback(const Networking::ErrorResponse &error);
69 
70 public:
77 
78  bool exists() const override;
79  Common::U32String getDisplayName() const override { return _displayName; }
80  Common::String getName() const override { return _displayName; }
81  Common::String getPath() const override { return _path; }
82  bool isDirectory() const override { return _isDirectory; }
83  bool isReadable() const override;
84  bool isWritable() const override;
85 
86  AbstractFSNode *getChild(const Common::String &n) const override;
87  bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const override;
88  AbstractFSNode *getParent() const override;
89 
91  Common::SeekableWriteStream *createWriteStream(bool atomic) override;
92  bool createDirectory() override;
93 };
94 
95 #endif
Definition: str.h:59
Common::SeekableWriteStream * createWriteStream(bool atomic) override
bool isDirectory() const override
Definition: cloud-fs.h:82
Common::U32String getDisplayName() const override
Definition: cloud-fs.h:79
Definition: request.h:73
Definition: array.h:52
Common::SeekableReadStream * createReadStream() override
bool createDirectory() override
Definition: request.h:47
Definition: stream.h:745
Common::String getPath() const override
Definition: cloud-fs.h:81
CloudFilesystemNode()
Definition: cloud-fs.h:56
Definition: cloud-fs.h:43
AbstractFSNode * getParent() const override
void directoryListedCallback(const Cloud::Storage::ListDirectoryResponse &response)
AbstractFSNode * getChild(const Common::String &n) const override
bool isWritable() const override
bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const override
Definition: hashmap.h:85
Definition: ustr.h:57
ListMode
Definition: fs.h:86
Common::String getName() const override
Definition: cloud-fs.h:80
bool isReadable() const override
void NORETURN_PRE error(MSVC_PRINTF const char *s,...) GCC_PRINTF(1
Definition: stream.h:351
Definition: abstract-fs.h:41