file_access.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /*************************************************************************/
  2. /* file_access.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  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. #ifndef FILE_ACCESS_H
  31. #define FILE_ACCESS_H
  32. #include "core/math/math_defs.h"
  33. #include "core/os/memory.h"
  34. #include "core/typedefs.h"
  35. #include "core/ustring.h"
  36. /**
  37. * Multi-Platform abstraction for accessing to files.
  38. */
  39. class FileAccess {
  40. public:
  41. enum AccessType {
  42. ACCESS_RESOURCES,
  43. ACCESS_USERDATA,
  44. ACCESS_FILESYSTEM,
  45. ACCESS_MAX
  46. };
  47. typedef void (*FileCloseFailNotify)(const String &);
  48. typedef FileAccess *(*CreateFunc)();
  49. bool endian_swap;
  50. bool real_is_double;
  51. virtual uint32_t _get_unix_permissions(const String &p_file) = 0;
  52. virtual Error _set_unix_permissions(const String &p_file, uint32_t p_permissions) = 0;
  53. protected:
  54. String fix_path(const String &p_path) const;
  55. virtual Error _open(const String &p_path, int p_mode_flags) = 0; ///< open a file
  56. virtual uint64_t _get_modified_time(const String &p_file) = 0;
  57. static FileCloseFailNotify close_fail_notify;
  58. private:
  59. static bool backup_save;
  60. AccessType _access_type;
  61. static CreateFunc create_func[ACCESS_MAX]; /** default file access creation function for a platform */
  62. template <class T>
  63. static FileAccess *_create_builtin() {
  64. return memnew(T);
  65. }
  66. public:
  67. static void set_file_close_fail_notify_callback(FileCloseFailNotify p_cbk) { close_fail_notify = p_cbk; }
  68. virtual void _set_access_type(AccessType p_access);
  69. enum ModeFlags {
  70. READ = 1,
  71. WRITE = 2,
  72. READ_WRITE = 3,
  73. WRITE_READ = 7,
  74. };
  75. virtual void close() = 0; ///< close a file
  76. virtual bool is_open() const = 0; ///< true when file is open
  77. virtual String get_path() const { return ""; } /// returns the path for the current open file
  78. virtual String get_path_absolute() const { return ""; } /// returns the absolute path for the current open file
  79. virtual void seek(size_t p_position) = 0; ///< seek to a given position
  80. virtual void seek_end(int64_t p_position = 0) = 0; ///< seek from the end of file
  81. virtual size_t get_position() const = 0; ///< get position in the file
  82. virtual size_t get_len() const = 0; ///< get size of the file
  83. virtual bool eof_reached() const = 0; ///< reading passed EOF
  84. virtual uint8_t get_8() const = 0; ///< get a byte
  85. virtual uint16_t get_16() const; ///< get 16 bits uint
  86. virtual uint32_t get_32() const; ///< get 32 bits uint
  87. virtual uint64_t get_64() const; ///< get 64 bits uint
  88. virtual float get_float() const;
  89. virtual double get_double() const;
  90. virtual real_t get_real() const;
  91. virtual int get_buffer(uint8_t *p_dst, int p_length) const; ///< get an array of bytes
  92. virtual String get_line() const;
  93. virtual String get_token() const;
  94. virtual Vector<String> get_csv_line(const String &p_delim = ",") const;
  95. virtual String get_as_utf8_string() const;
  96. /**< use this for files WRITTEN in _big_ endian machines (ie, amiga/mac)
  97. * It's not about the current CPU type but file formats.
  98. * this flags get reset to false (little endian) on each open
  99. */
  100. virtual void set_endian_swap(bool p_swap) { endian_swap = p_swap; }
  101. inline bool get_endian_swap() const { return endian_swap; }
  102. virtual Error get_error() const = 0; ///< get last error
  103. virtual void flush() = 0;
  104. virtual void store_8(uint8_t p_dest) = 0; ///< store a byte
  105. virtual void store_16(uint16_t p_dest); ///< store 16 bits uint
  106. virtual void store_32(uint32_t p_dest); ///< store 32 bits uint
  107. virtual void store_64(uint64_t p_dest); ///< store 64 bits uint
  108. virtual void store_float(float p_dest);
  109. virtual void store_double(double p_dest);
  110. virtual void store_real(real_t p_real);
  111. virtual void store_string(const String &p_string);
  112. virtual void store_line(const String &p_line);
  113. virtual void store_csv_line(const Vector<String> &p_values, const String &p_delim = ",");
  114. virtual void store_pascal_string(const String &p_string);
  115. virtual String get_pascal_string();
  116. virtual void store_buffer(const uint8_t *p_src, int p_length); ///< store an array of bytes
  117. virtual bool file_exists(const String &p_name) = 0; ///< return true if a file exists
  118. virtual Error reopen(const String &p_path, int p_mode_flags); ///< does not change the AccessType
  119. static FileAccess *create(AccessType p_access); /// Create a file access (for the current platform) this is the only portable way of accessing files.
  120. static FileAccess *create_for_path(const String &p_path);
  121. static FileAccess *open(const String &p_path, int p_mode_flags, Error *r_error = NULL); /// Create a file access (for the current platform) this is the only portable way of accessing files.
  122. static CreateFunc get_create_func(AccessType p_access);
  123. static bool exists(const String &p_name); ///< return true if a file exists
  124. static uint64_t get_modified_time(const String &p_file);
  125. static uint32_t get_unix_permissions(const String &p_file);
  126. static Error set_unix_permissions(const String &p_file, uint32_t p_permissions);
  127. static void set_backup_save(bool p_enable) { backup_save = p_enable; };
  128. static bool is_backup_save_enabled() { return backup_save; };
  129. static String get_md5(const String &p_file);
  130. static String get_sha256(const String &p_file);
  131. static String get_multiple_md5(const Vector<String> &p_file);
  132. static Vector<uint8_t> get_file_as_array(const String &p_path, Error *r_error = NULL);
  133. static String get_file_as_string(const String &p_path, Error *r_error = NULL);
  134. template <class T>
  135. static void make_default(AccessType p_access) {
  136. create_func[p_access] = _create_builtin<T>;
  137. }
  138. FileAccess();
  139. virtual ~FileAccess() {}
  140. };
  141. struct FileAccessRef {
  142. _FORCE_INLINE_ FileAccess *operator->() {
  143. return f;
  144. }
  145. operator bool() const { return f != NULL; }
  146. FileAccess *f;
  147. operator FileAccess *() { return f; }
  148. FileAccessRef(FileAccess *fa) { f = fa; }
  149. ~FileAccessRef() {
  150. if (f) memdelete(f);
  151. }
  152. };
  153. #endif