file_access_compressed.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. /**************************************************************************/
  2. /* file_access_compressed.cpp */
  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. #include "file_access_compressed.h"
  31. void FileAccessCompressed::configure(const String &p_magic, Compression::Mode p_mode, uint32_t p_block_size) {
  32. magic = p_magic.ascii().get_data();
  33. magic = (magic + " ").substr(0, 4);
  34. cmode = p_mode;
  35. block_size = p_block_size;
  36. }
  37. Error FileAccessCompressed::open_after_magic(Ref<FileAccess> p_base) {
  38. f = p_base;
  39. cmode = (Compression::Mode)f->get_32();
  40. block_size = f->get_32();
  41. if (block_size == 0) {
  42. f.unref();
  43. ERR_FAIL_V_MSG(ERR_FILE_CORRUPT, vformat("Can't open compressed file '%s' with block size 0, it is corrupted.", p_base->get_path()));
  44. }
  45. read_total = f->get_32();
  46. uint32_t bc = (read_total / block_size) + 1;
  47. uint64_t acc_ofs = f->get_position() + bc * 4;
  48. uint32_t max_bs = 0;
  49. for (uint32_t i = 0; i < bc; i++) {
  50. ReadBlock rb;
  51. rb.offset = acc_ofs;
  52. rb.csize = f->get_32();
  53. acc_ofs += rb.csize;
  54. max_bs = MAX(max_bs, rb.csize);
  55. read_blocks.push_back(rb);
  56. }
  57. comp_buffer.resize(max_bs);
  58. buffer.resize(block_size);
  59. read_ptr = buffer.ptrw();
  60. f->get_buffer(comp_buffer.ptrw(), read_blocks[0].csize);
  61. at_end = false;
  62. read_eof = false;
  63. read_block_count = bc;
  64. read_block_size = read_blocks.size() == 1 ? read_total : block_size;
  65. const int64_t ret = Compression::decompress(buffer.ptrw(), read_block_size, comp_buffer.ptr(), read_blocks[0].csize, cmode);
  66. read_block = 0;
  67. read_pos = 0;
  68. return ret == -1 ? ERR_FILE_CORRUPT : OK;
  69. }
  70. Error FileAccessCompressed::open_internal(const String &p_path, int p_mode_flags) {
  71. ERR_FAIL_COND_V(p_mode_flags == READ_WRITE, ERR_UNAVAILABLE);
  72. _close();
  73. Error err;
  74. f = FileAccess::open(p_path, p_mode_flags, &err);
  75. if (err != OK) {
  76. //not openable
  77. f.unref();
  78. return err;
  79. }
  80. if (p_mode_flags & WRITE) {
  81. buffer.clear();
  82. writing = true;
  83. write_pos = 0;
  84. write_buffer_size = 256;
  85. buffer.resize(256);
  86. write_max = 0;
  87. write_ptr = buffer.ptrw();
  88. //don't store anything else unless it's done saving!
  89. } else {
  90. char rmagic[5];
  91. f->get_buffer((uint8_t *)rmagic, 4);
  92. rmagic[4] = 0;
  93. err = ERR_FILE_UNRECOGNIZED;
  94. if (magic != rmagic || (err = open_after_magic(f)) != OK) {
  95. f.unref();
  96. return err;
  97. }
  98. }
  99. return OK;
  100. }
  101. void FileAccessCompressed::_close() {
  102. if (f.is_null()) {
  103. return;
  104. }
  105. if (writing) {
  106. //save block table and all compressed blocks
  107. CharString mgc = magic.utf8();
  108. f->store_buffer((const uint8_t *)mgc.get_data(), mgc.length()); //write header 4
  109. f->store_32(cmode); //write compression mode 4
  110. f->store_32(block_size); //write block size 4
  111. f->store_32(uint32_t(write_max)); //max amount of data written 4
  112. uint32_t bc = (write_max / block_size) + 1;
  113. for (uint32_t i = 0; i < bc; i++) {
  114. f->store_32(0); //compressed sizes, will update later
  115. }
  116. Vector<int> block_sizes;
  117. for (uint32_t i = 0; i < bc; i++) {
  118. uint32_t bl = i == (bc - 1) ? write_max % block_size : block_size;
  119. uint8_t *bp = &write_ptr[i * block_size];
  120. Vector<uint8_t> cblock;
  121. cblock.resize(Compression::get_max_compressed_buffer_size(bl, cmode));
  122. const int64_t compressed_size = Compression::compress(cblock.ptrw(), bp, bl, cmode);
  123. ERR_FAIL_COND_MSG(compressed_size < 0, "FileAccessCompressed: Error compressing data.");
  124. f->store_buffer(cblock.ptr(), (uint64_t)compressed_size);
  125. block_sizes.push_back(compressed_size);
  126. }
  127. f->seek(16); //ok write block sizes
  128. for (uint32_t i = 0; i < bc; i++) {
  129. f->store_32(uint32_t(block_sizes[i]));
  130. }
  131. f->seek_end();
  132. f->store_buffer((const uint8_t *)mgc.get_data(), mgc.length()); //magic at the end too
  133. buffer.clear();
  134. } else {
  135. comp_buffer.clear();
  136. buffer.clear();
  137. read_blocks.clear();
  138. }
  139. f.unref();
  140. }
  141. bool FileAccessCompressed::is_open() const {
  142. return f.is_valid();
  143. }
  144. String FileAccessCompressed::get_path() const {
  145. if (f.is_valid()) {
  146. return f->get_path();
  147. } else {
  148. return "";
  149. }
  150. }
  151. String FileAccessCompressed::get_path_absolute() const {
  152. if (f.is_valid()) {
  153. return f->get_path_absolute();
  154. } else {
  155. return "";
  156. }
  157. }
  158. void FileAccessCompressed::seek(uint64_t p_position) {
  159. ERR_FAIL_COND_MSG(f.is_null(), "File must be opened before use.");
  160. if (writing) {
  161. ERR_FAIL_COND(p_position > write_max);
  162. write_pos = p_position;
  163. } else {
  164. ERR_FAIL_COND(p_position > read_total);
  165. if (p_position == read_total) {
  166. at_end = true;
  167. } else {
  168. at_end = false;
  169. read_eof = false;
  170. uint32_t block_idx = p_position / block_size;
  171. if (block_idx != read_block) {
  172. read_block = block_idx;
  173. f->seek(read_blocks[read_block].offset);
  174. f->get_buffer(comp_buffer.ptrw(), read_blocks[read_block].csize);
  175. const int64_t ret = Compression::decompress(buffer.ptrw(), read_blocks.size() == 1 ? read_total : block_size, comp_buffer.ptr(), read_blocks[read_block].csize, cmode);
  176. ERR_FAIL_COND_MSG(ret == -1, "Compressed file is corrupt.");
  177. read_block_size = read_block == read_block_count - 1 ? read_total % block_size : block_size;
  178. }
  179. read_pos = p_position % block_size;
  180. }
  181. }
  182. }
  183. void FileAccessCompressed::seek_end(int64_t p_position) {
  184. ERR_FAIL_COND_MSG(f.is_null(), "File must be opened before use.");
  185. if (writing) {
  186. seek(write_max + p_position);
  187. } else {
  188. seek(read_total + p_position);
  189. }
  190. }
  191. uint64_t FileAccessCompressed::get_position() const {
  192. ERR_FAIL_COND_V_MSG(f.is_null(), 0, "File must be opened before use.");
  193. if (writing) {
  194. return write_pos;
  195. } else {
  196. return (uint64_t)read_block * block_size + read_pos;
  197. }
  198. }
  199. uint64_t FileAccessCompressed::get_length() const {
  200. ERR_FAIL_COND_V_MSG(f.is_null(), 0, "File must be opened before use.");
  201. if (writing) {
  202. return write_max;
  203. } else {
  204. return read_total;
  205. }
  206. }
  207. bool FileAccessCompressed::eof_reached() const {
  208. ERR_FAIL_COND_V_MSG(f.is_null(), false, "File must be opened before use.");
  209. if (writing) {
  210. return false;
  211. } else {
  212. return read_eof;
  213. }
  214. }
  215. uint64_t FileAccessCompressed::get_buffer(uint8_t *p_dst, uint64_t p_length) const {
  216. if (p_length == 0) {
  217. return 0;
  218. }
  219. ERR_FAIL_NULL_V(p_dst, -1);
  220. ERR_FAIL_COND_V_MSG(f.is_null(), -1, "File must be opened before use.");
  221. ERR_FAIL_COND_V_MSG(writing, -1, "File has not been opened in read mode.");
  222. if (at_end) {
  223. read_eof = true;
  224. return 0;
  225. }
  226. uint64_t dst_idx = 0;
  227. while (true) {
  228. // Copy over as much of our current block as possible.
  229. const uint32_t copied_bytes_count = MIN(p_length - dst_idx, read_block_size - read_pos);
  230. memcpy(p_dst + dst_idx, read_ptr + read_pos, copied_bytes_count);
  231. dst_idx += copied_bytes_count;
  232. read_pos += copied_bytes_count;
  233. if (dst_idx == p_length) {
  234. // We're done! We read back all that was requested.
  235. return p_length;
  236. }
  237. // We're not done yet; try reading the next block.
  238. read_block++;
  239. if (read_block >= read_block_count) {
  240. // We're done! We read back the whole file.
  241. read_block--;
  242. at_end = true;
  243. if (dst_idx + 1 < p_length) {
  244. read_eof = true;
  245. }
  246. return dst_idx;
  247. }
  248. // Read the next block of compressed data.
  249. f->get_buffer(comp_buffer.ptrw(), read_blocks[read_block].csize);
  250. const int64_t ret = Compression::decompress(buffer.ptrw(), read_blocks.size() == 1 ? read_total : block_size, comp_buffer.ptr(), read_blocks[read_block].csize, cmode);
  251. ERR_FAIL_COND_V_MSG(ret == -1, -1, "Compressed file is corrupt.");
  252. read_block_size = read_block == read_block_count - 1 ? read_total % block_size : block_size;
  253. read_pos = 0;
  254. }
  255. return p_length;
  256. }
  257. Error FileAccessCompressed::get_error() const {
  258. return read_eof ? ERR_FILE_EOF : OK;
  259. }
  260. void FileAccessCompressed::flush() {
  261. ERR_FAIL_COND_MSG(f.is_null(), "File must be opened before use.");
  262. ERR_FAIL_COND_MSG(!writing, "File has not been opened in write mode.");
  263. // compressed files keep data in memory till close()
  264. }
  265. bool FileAccessCompressed::store_buffer(const uint8_t *p_src, uint64_t p_length) {
  266. ERR_FAIL_COND_V_MSG(f.is_null(), false, "File must be opened before use.");
  267. ERR_FAIL_COND_V_MSG(!writing, false, "File has not been opened in write mode.");
  268. if (write_pos + (p_length) > write_max) {
  269. write_max = write_pos + (p_length);
  270. }
  271. if (write_max > write_buffer_size) {
  272. write_buffer_size = next_power_of_2(write_max);
  273. ERR_FAIL_COND_V(buffer.resize(write_buffer_size) != OK, false);
  274. write_ptr = buffer.ptrw();
  275. }
  276. if (p_length) {
  277. memcpy(write_ptr + write_pos, p_src, p_length);
  278. }
  279. write_pos += p_length;
  280. return true;
  281. }
  282. bool FileAccessCompressed::file_exists(const String &p_name) {
  283. Ref<FileAccess> fa = FileAccess::open(p_name, FileAccess::READ);
  284. if (fa.is_null()) {
  285. return false;
  286. }
  287. return true;
  288. }
  289. uint64_t FileAccessCompressed::_get_modified_time(const String &p_file) {
  290. if (f.is_valid()) {
  291. return f->get_modified_time(p_file);
  292. } else {
  293. return 0;
  294. }
  295. }
  296. uint64_t FileAccessCompressed::_get_access_time(const String &p_file) {
  297. if (f.is_valid()) {
  298. return f->get_access_time(p_file);
  299. } else {
  300. return 0;
  301. }
  302. }
  303. int64_t FileAccessCompressed::_get_size(const String &p_file) {
  304. if (f.is_valid()) {
  305. return f->get_size(p_file);
  306. } else {
  307. return -1;
  308. }
  309. }
  310. BitField<FileAccess::UnixPermissionFlags> FileAccessCompressed::_get_unix_permissions(const String &p_file) {
  311. if (f.is_valid()) {
  312. return f->_get_unix_permissions(p_file);
  313. }
  314. return 0;
  315. }
  316. Error FileAccessCompressed::_set_unix_permissions(const String &p_file, BitField<FileAccess::UnixPermissionFlags> p_permissions) {
  317. if (f.is_valid()) {
  318. return f->_set_unix_permissions(p_file, p_permissions);
  319. }
  320. return FAILED;
  321. }
  322. bool FileAccessCompressed::_get_hidden_attribute(const String &p_file) {
  323. if (f.is_valid()) {
  324. return f->_get_hidden_attribute(p_file);
  325. }
  326. return false;
  327. }
  328. Error FileAccessCompressed::_set_hidden_attribute(const String &p_file, bool p_hidden) {
  329. if (f.is_valid()) {
  330. return f->_set_hidden_attribute(p_file, p_hidden);
  331. }
  332. return FAILED;
  333. }
  334. bool FileAccessCompressed::_get_read_only_attribute(const String &p_file) {
  335. if (f.is_valid()) {
  336. return f->_get_read_only_attribute(p_file);
  337. }
  338. return false;
  339. }
  340. Error FileAccessCompressed::_set_read_only_attribute(const String &p_file, bool p_ro) {
  341. if (f.is_valid()) {
  342. return f->_set_read_only_attribute(p_file, p_ro);
  343. }
  344. return FAILED;
  345. }
  346. void FileAccessCompressed::close() {
  347. _close();
  348. }
  349. FileAccessCompressed::~FileAccessCompressed() {
  350. _close();
  351. }