Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/io/file_access.h
21400 views
1
/**************************************************************************/
2
/* file_access.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/io/compression.h"
34
#include "core/math/math_defs.h"
35
#include "core/object/ref_counted.h"
36
#include "core/os/memory.h"
37
#include "core/string/ustring.h"
38
#include "core/typedefs.h"
39
40
/**
41
* Multi-Platform abstraction for accessing to files.
42
*/
43
44
class FileAccess : public RefCounted {
45
GDCLASS(FileAccess, RefCounted);
46
47
public:
48
enum AccessType : int32_t {
49
ACCESS_RESOURCES,
50
ACCESS_USERDATA,
51
ACCESS_FILESYSTEM,
52
ACCESS_PIPE,
53
ACCESS_MAX
54
};
55
56
enum ModeFlags : int32_t {
57
READ = 1,
58
WRITE = 2,
59
READ_WRITE = 3,
60
WRITE_READ = 7,
61
SKIP_PACK = 16,
62
};
63
64
enum UnixPermissionFlags : int32_t {
65
UNIX_EXECUTE_OTHER = 0x001,
66
UNIX_WRITE_OTHER = 0x002,
67
UNIX_READ_OTHER = 0x004,
68
UNIX_EXECUTE_GROUP = 0x008,
69
UNIX_WRITE_GROUP = 0x010,
70
UNIX_READ_GROUP = 0x020,
71
UNIX_EXECUTE_OWNER = 0x040,
72
UNIX_WRITE_OWNER = 0x080,
73
UNIX_READ_OWNER = 0x100,
74
UNIX_RESTRICTED_DELETE = 0x200,
75
UNIX_SET_GROUP_ID = 0x400,
76
UNIX_SET_USER_ID = 0x800,
77
};
78
79
enum CompressionMode : int32_t {
80
COMPRESSION_FASTLZ = Compression::MODE_FASTLZ,
81
COMPRESSION_DEFLATE = Compression::MODE_DEFLATE,
82
COMPRESSION_ZSTD = Compression::MODE_ZSTD,
83
COMPRESSION_GZIP = Compression::MODE_GZIP,
84
COMPRESSION_BROTLI = Compression::MODE_BROTLI,
85
};
86
87
typedef void (*FileCloseFailNotify)(const String &);
88
89
typedef Ref<FileAccess> (*CreateFunc)();
90
#ifdef BIG_ENDIAN_ENABLED
91
bool big_endian = true;
92
#else
93
bool big_endian = false;
94
#endif
95
bool real_is_double = false;
96
97
virtual BitField<UnixPermissionFlags> _get_unix_permissions(const String &p_file) = 0;
98
virtual Error _set_unix_permissions(const String &p_file, BitField<UnixPermissionFlags> p_permissions) = 0;
99
100
virtual bool _get_hidden_attribute(const String &p_file) = 0;
101
virtual Error _set_hidden_attribute(const String &p_file, bool p_hidden) = 0;
102
virtual bool _get_read_only_attribute(const String &p_file) = 0;
103
virtual Error _set_read_only_attribute(const String &p_file, bool p_ro) = 0;
104
105
virtual PackedByteArray _get_extended_attribute(const String &p_file, const String &p_attribute_name) { return PackedByteArray(); }
106
virtual Error _set_extended_attribute(const String &p_file, const String &p_attribute_name, const PackedByteArray &p_data) { return ERR_UNAVAILABLE; }
107
virtual Error _remove_extended_attribute(const String &p_file, const String &p_attribute_name) { return ERR_UNAVAILABLE; }
108
virtual PackedStringArray _get_extended_attributes_list(const String &p_file) { return PackedStringArray(); }
109
110
protected:
111
static void _bind_methods();
112
113
AccessType get_access_type() const;
114
virtual String fix_path(const String &p_path) const;
115
virtual Error open_internal(const String &p_path, int p_mode_flags) = 0; ///< open a file
116
virtual uint64_t _get_modified_time(const String &p_file) = 0;
117
virtual uint64_t _get_access_time(const String &p_file) = 0;
118
virtual int64_t _get_size(const String &p_file) = 0;
119
virtual void _set_access_type(AccessType p_access);
120
121
static inline FileCloseFailNotify close_fail_notify = nullptr;
122
123
#ifndef DISABLE_DEPRECATED
124
static Ref<FileAccess> _open_encrypted_bind_compat_98918(const String &p_path, ModeFlags p_mode_flags, const Vector<uint8_t> &p_key);
125
static Ref<FileAccess> _create_temp_compat_114053(int p_mode_flags, const String &p_prefix = "", const String &p_extension = "", bool p_keep = false);
126
127
void store_8_bind_compat_78289(uint8_t p_dest);
128
void store_16_bind_compat_78289(uint16_t p_dest);
129
void store_32_bind_compat_78289(uint32_t p_dest);
130
void store_64_bind_compat_78289(uint64_t p_dest);
131
void store_buffer_bind_compat_78289(const Vector<uint8_t> &p_buffer);
132
void store_var_bind_compat_78289(const Variant &p_var, bool p_full_objects = false);
133
void store_half_bind_compat_78289(float p_dest);
134
void store_float_bind_compat_78289(float p_dest);
135
void store_double_bind_compat_78289(double p_dest);
136
void store_real_bind_compat_78289(real_t p_real);
137
void store_string_bind_compat_78289(const String &p_string);
138
void store_line_bind_compat_78289(const String &p_line);
139
void store_csv_line_bind_compat_78289(const Vector<String> &p_values, const String &p_delim = ",");
140
void store_pascal_string_bind_compat_78289(const String &p_string);
141
String get_as_text_bind_compat_110867(bool p_skip_cr) const;
142
143
static void _bind_compatibility_methods();
144
#endif
145
146
private:
147
static inline bool backup_save = false;
148
static inline thread_local Error last_file_open_error = OK;
149
150
AccessType _access_type = ACCESS_FILESYSTEM;
151
static inline CreateFunc create_func[ACCESS_MAX]; /** default file access creation function for a platform */
152
template <typename T>
153
static Ref<FileAccess> _create_builtin() {
154
return memnew(T);
155
}
156
157
static Ref<FileAccess> _open(const String &p_path, ModeFlags p_mode_flags);
158
159
bool _is_temp_file = false;
160
bool _temp_keep_after_use = false;
161
String _temp_path;
162
void _delete_temp();
163
164
static Ref<FileAccess> _create_temp(ModeFlags p_mode_flags, const String &p_prefix = "", const String &p_extension = "", bool p_keep = false);
165
166
public:
167
static void set_file_close_fail_notify_callback(FileCloseFailNotify p_cbk) { close_fail_notify = p_cbk; }
168
169
virtual bool is_open() const = 0; ///< true when file is open
170
171
virtual String get_path() const { return ""; } /// returns the path for the current open file
172
virtual String get_path_absolute() const { return ""; } /// returns the absolute path for the current open file
173
174
virtual void seek(uint64_t p_position) = 0; ///< seek to a given position
175
virtual void seek_end(int64_t p_position = 0) = 0; ///< seek from the end of file with negative offset
176
virtual uint64_t get_position() const = 0; ///< get position in the file
177
virtual uint64_t get_length() const = 0; ///< get size of the file
178
179
virtual bool eof_reached() const = 0; ///< reading passed EOF
180
181
virtual uint8_t get_8() const; ///< get a byte
182
virtual uint16_t get_16() const; ///< get 16 bits uint
183
virtual uint32_t get_32() const; ///< get 32 bits uint
184
virtual uint64_t get_64() const; ///< get 64 bits uint
185
186
virtual float get_half() const;
187
virtual float get_float() const;
188
virtual double get_double() const;
189
virtual real_t get_real() const;
190
191
Variant get_var(bool p_allow_objects = false) const;
192
193
virtual uint64_t get_buffer(uint8_t *p_dst, uint64_t p_length) const = 0; ///< get an array of bytes, needs to be overwritten by children.
194
Vector<uint8_t> get_buffer(int64_t p_length) const;
195
virtual String get_line() const;
196
virtual String get_token() const;
197
virtual Vector<String> get_csv_line(const String &p_delim = ",") const;
198
String get_as_text() const;
199
virtual String get_as_utf8_string() const;
200
201
/**
202
203
* Use this for files WRITTEN in _big_ endian machines (ie, amiga/mac)
204
* It's not about the current CPU type but file formats.
205
* This flag gets reset to `false` (little endian) on each open.
206
*/
207
virtual void set_big_endian(bool p_big_endian) { big_endian = p_big_endian; }
208
inline bool is_big_endian() const { return big_endian; }
209
210
virtual Error get_error() const = 0; ///< get last error
211
212
virtual Error resize(int64_t p_length) = 0;
213
virtual void flush() = 0;
214
virtual bool store_8(uint8_t p_dest); ///< store a byte
215
virtual bool store_16(uint16_t p_dest); ///< store 16 bits uint
216
virtual bool store_32(uint32_t p_dest); ///< store 32 bits uint
217
virtual bool store_64(uint64_t p_dest); ///< store 64 bits uint
218
219
virtual bool store_half(float p_dest);
220
virtual bool store_float(float p_dest);
221
virtual bool store_double(double p_dest);
222
virtual bool store_real(real_t p_real);
223
224
virtual bool store_string(const String &p_string);
225
virtual bool store_line(const String &p_line);
226
virtual bool store_csv_line(const Vector<String> &p_values, const String &p_delim = ",");
227
228
virtual bool store_pascal_string(const String &p_string);
229
virtual String get_pascal_string();
230
231
virtual bool store_buffer(const uint8_t *p_src, uint64_t p_length) = 0; ///< store an array of bytes, needs to be overwritten by children.
232
bool store_buffer(const Vector<uint8_t> &p_buffer);
233
234
bool store_var(const Variant &p_var, bool p_full_objects = false);
235
236
virtual void close() = 0;
237
238
virtual bool file_exists(const String &p_name) = 0; ///< return true if a file exists
239
240
virtual Error reopen(const String &p_path, int p_mode_flags); ///< does not change the AccessType
241
242
static Ref<FileAccess> create(AccessType p_access); /// Create a file access (for the current platform) this is the only portable way of accessing files.
243
static Ref<FileAccess> create_for_path(const String &p_path);
244
static Ref<FileAccess> open(const String &p_path, int p_mode_flags, Error *r_error = nullptr); /// Create a file access (for the current platform) this is the only portable way of accessing files.
245
static Ref<FileAccess> create_temp(ModeFlags p_mode_flags, const String &p_prefix = "", const String &p_extension = "", bool p_keep = false, Error *r_error = nullptr);
246
247
static Ref<FileAccess> open_encrypted(const String &p_path, ModeFlags p_mode_flags, const Vector<uint8_t> &p_key, const Vector<uint8_t> &p_iv = Vector<uint8_t>());
248
static Ref<FileAccess> open_encrypted_pass(const String &p_path, ModeFlags p_mode_flags, const String &p_pass);
249
static Ref<FileAccess> open_compressed(const String &p_path, ModeFlags p_mode_flags, CompressionMode p_compress_mode = COMPRESSION_FASTLZ);
250
static Error get_open_error();
251
252
static CreateFunc get_create_func(AccessType p_access);
253
static bool exists(const String &p_name); ///< return true if a file exists
254
static uint64_t get_modified_time(const String &p_file);
255
static uint64_t get_access_time(const String &p_file);
256
static int64_t get_size(const String &p_file);
257
static BitField<FileAccess::UnixPermissionFlags> get_unix_permissions(const String &p_file);
258
static Error set_unix_permissions(const String &p_file, BitField<FileAccess::UnixPermissionFlags> p_permissions);
259
260
static bool get_hidden_attribute(const String &p_file);
261
static Error set_hidden_attribute(const String &p_file, bool p_hidden);
262
static bool get_read_only_attribute(const String &p_file);
263
static Error set_read_only_attribute(const String &p_file, bool p_ro);
264
265
static PackedByteArray get_extended_attribute(const String &p_file, const String &p_attribute_name);
266
static String get_extended_attribute_string(const String &p_file, const String &p_attribute_name);
267
static Error set_extended_attribute(const String &p_file, const String &p_attribute_name, const PackedByteArray &p_data);
268
static Error set_extended_attribute_string(const String &p_file, const String &p_attribute_name, const String &p_data);
269
static Error remove_extended_attribute(const String &p_file, const String &p_attribute_name);
270
static PackedStringArray get_extended_attributes_list(const String &p_file);
271
272
static void set_backup_save(bool p_enable) { backup_save = p_enable; }
273
static bool is_backup_save_enabled() { return backup_save; }
274
275
static String get_md5(const String &p_file);
276
static String get_sha256(const String &p_file);
277
static String get_multiple_md5(const Vector<String> &p_file);
278
279
static Vector<uint8_t> get_file_as_bytes(const String &p_path, Error *r_error = nullptr);
280
static String get_file_as_string(const String &p_path, Error *r_error = nullptr);
281
282
static PackedByteArray _get_file_as_bytes(const String &p_path) { return get_file_as_bytes(p_path, &last_file_open_error); }
283
static String _get_file_as_string(const String &p_path) { return get_file_as_string(p_path, &last_file_open_error); }
284
285
template <typename T>
286
static void make_default(AccessType p_access) {
287
create_func[p_access] = _create_builtin<T>;
288
}
289
290
public:
291
virtual ~FileAccess();
292
};
293
294
VARIANT_ENUM_CAST(FileAccess::CompressionMode);
295
VARIANT_ENUM_CAST(FileAccess::ModeFlags);
296
VARIANT_BITFIELD_CAST(FileAccess::UnixPermissionFlags);
297
298