forked from averne/Turnips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fs.hpp
244 lines (192 loc) · 7.04 KB
/
fs.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// Copyright (C) 2020 averne
//
// This file is part of Turnips.
//
// Turnips 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 3 of the License, or
// (at your option) any later version.
//
// Turnips 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.
//
// You should have received a copy of the GNU General Public License
// along with Turnips. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <cstdint>
#include <string>
#include <vector>
#include <switch.h>
namespace fs {
struct Directory {
FsDir handle = {};
constexpr inline Directory() = default;
constexpr inline Directory(const FsDir &handle): handle(handle) { }
inline ~Directory() {
this->close();
}
inline Result open(FsFileSystem *fs, const std::string &path) {
auto tmp = path;
tmp.reserve(FS_MAX_PATH); // Fails otherwise
return fsFsOpenDirectory(fs, tmp.c_str(), FsDirOpenMode_ReadDirs | FsDirOpenMode_ReadFiles, &this->handle);
}
inline void close() {
fsDirClose(&this->handle);
}
inline bool is_open() const {
// TODO: Better heuristic?
return this->handle.s.session;
}
inline std::size_t count() {
std::int64_t count = 0;
fsDirGetEntryCount(&this->handle, &count);
return count;
}
std::vector<FsDirectoryEntry> list() {
std::int64_t total = 0;
auto c = this->count();
auto entries = std::vector<FsDirectoryEntry>(c);
fsDirRead(&this->handle, &total, c, entries.data());
return entries;
}
};
struct File {
FsFile handle = {};
constexpr inline File() = default;
constexpr inline File(const FsFile &handle): handle(handle) { }
inline ~File() {
this->close();
}
inline Result open(FsFileSystem *fs, const std::string &path, std::uint32_t mode = FsOpenMode_Read) {
auto tmp = path;
tmp.reserve(FS_MAX_PATH);
return fsFsOpenFile(fs, tmp.c_str(), mode, &this->handle);
}
inline void close() {
fsFileClose(&this->handle);
}
inline bool is_open() const {
return this->handle.s.session;
}
inline std::size_t size() {
std::int64_t tmp = 0;
fsFileGetSize(&this->handle, &tmp);
return tmp;
}
inline void size(std::size_t size) {
fsFileSetSize(&this->handle, static_cast<std::int64_t>(size));
}
inline std::size_t read(void *buf, std::size_t size, std::size_t offset = 0) {
std::uint64_t tmp = 0;
auto rc = fsFileRead(&this->handle, static_cast<std::int64_t>(offset), buf, static_cast<std::uint64_t>(size), FsReadOption_None, &tmp);
if (R_FAILED(rc))
printf("Read failed with %#x\n", rc);
return tmp;
}
inline void write(const void *buf, std::size_t size, std::size_t offset = 0) {
fsFileWrite(&this->handle, static_cast<std::int64_t>(offset), buf, size, FsWriteOption_None);
}
inline void flush() {
fsFileFlush(&this->handle);
}
};
struct Filesystem {
FsFileSystem handle = {};
constexpr inline Filesystem() = default;
constexpr inline Filesystem(const FsFileSystem &handle): handle(handle) { }
inline ~Filesystem() {
this->close();
}
inline Result open(FsBisPartitionId id) {
return fsOpenBisFileSystem(&this->handle, id, "");
}
inline Result open_sdmc() {
return fsOpenSdCardFileSystem(&this->handle);
}
inline void close() {
flush();
fsFsClose(&this->handle);
}
inline bool is_open() const {
return this->handle.s.session;
}
inline Result flush() {
return fsFsCommit(&this->handle);
}
inline std::size_t total_space() {
std::int64_t tmp = 0;
fsFsGetTotalSpace(&this->handle, "/", &tmp);
return tmp;
}
inline std::size_t free_space() {
std::int64_t tmp = 0;
fsFsGetFreeSpace(&this->handle, "/", &tmp);
return tmp;
}
inline Result open_directory(Directory &d, const std::string &path) {
return d.open(&this->handle, path);
}
inline Result open_file(File &f, const std::string &path, std::uint32_t mode = FsOpenMode_Read) {
return f.open(&this->handle, path, mode);
}
inline Result create_directory(const std::string &path) {
return fsFsCreateDirectory(&this->handle, path.c_str());
}
inline Result create_file(const std::string &path, std::size_t size = 0) {
return fsFsCreateFile(&this->handle, path.c_str(), static_cast<std::int64_t>(size), 0);
}
inline Result copy_file(const std::string &source, const std::string &destination) {
File source_f, dest_f;
if (auto rc = this->open_file(source_f, source) | this->open_file(dest_f, destination, FsOpenMode_Write); R_FAILED(rc))
return rc;
constexpr std::size_t buf_size = 0x100000; // 1 MiB
auto buf = std::vector<std::uint8_t>(buf_size);
std::size_t size = source_f.size(), offset = 0;
while (size) {
auto read = source_f.read(static_cast<void *>(buf.data()), buf_size, offset);
dest_f.write(buf.data(), read, offset);
offset += read;
size -= read;
}
source_f.close();
dest_f.close();
return 0;
}
inline FsDirEntryType get_path_type(const std::string &path) {
FsDirEntryType type;
fsFsGetEntryType(&this->handle, path.c_str(), &type);
return type;
}
inline bool is_directory(const std::string &path) {
return get_path_type(path) == FsDirEntryType_Dir;
}
inline bool is_file(const std::string &path) {
return get_path_type(path) == FsDirEntryType_File;
}
inline FsTimeStampRaw get_timestamp(const std::string &path) {
FsTimeStampRaw ts = {};
fsFsGetFileTimeStampRaw(&this->handle, path.c_str(), &ts);
return ts;
}
inline std::uint64_t get_timestamp_created(const std::string &path) {
return this->get_timestamp(path).created;
}
inline std::uint64_t get_timestamp_modified(const std::string &path) {
return this->get_timestamp(path).modified;
}
inline Result move_directory(const std::string &old_path, const std::string &new_path) {
return fsFsRenameDirectory(&this->handle, old_path.c_str(), new_path.c_str());
}
inline Result move_file(const std::string &old_path, const std::string &new_path) {
return fsFsRenameFile(&this->handle, old_path.c_str(), new_path.c_str());
}
inline Result delete_directory(const std::string &path) {
return fsFsDeleteDirectoryRecursively(&this->handle, path.c_str());
}
inline Result delete_file(const std::string &path) {
return fsFsDeleteFile(&this->handle, path.c_str());
}
};
} // namespace fs