file_access_network.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. /*************************************************************************/
  2. /* file_access_network.cpp */
  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. #include "file_access_network.h"
  31. #include "core/io/ip.h"
  32. #include "core/io/marshalls.h"
  33. #include "core/os/os.h"
  34. #include "core/project_settings.h"
  35. //#define DEBUG_PRINT(m_p) print_line(m_p)
  36. //#define DEBUG_TIME(m_what) printf("MS: %s - %lli\n",m_what,OS::get_singleton()->get_ticks_usec());
  37. #define DEBUG_PRINT(m_p)
  38. #define DEBUG_TIME(m_what)
  39. void FileAccessNetworkClient::lock_mutex() {
  40. mutex.lock();
  41. lockcount++;
  42. }
  43. void FileAccessNetworkClient::unlock_mutex() {
  44. lockcount--;
  45. mutex.unlock();
  46. }
  47. void FileAccessNetworkClient::put_32(int p_32) {
  48. uint8_t buf[4];
  49. encode_uint32(p_32, buf);
  50. client->put_data(buf, 4);
  51. DEBUG_PRINT("put32: " + itos(p_32));
  52. }
  53. void FileAccessNetworkClient::put_64(int64_t p_64) {
  54. uint8_t buf[8];
  55. encode_uint64(p_64, buf);
  56. client->put_data(buf, 8);
  57. DEBUG_PRINT("put64: " + itos(p_64));
  58. }
  59. int FileAccessNetworkClient::get_32() {
  60. uint8_t buf[4];
  61. client->get_data(buf, 4);
  62. return decode_uint32(buf);
  63. }
  64. int64_t FileAccessNetworkClient::get_64() {
  65. uint8_t buf[8];
  66. client->get_data(buf, 8);
  67. return decode_uint64(buf);
  68. }
  69. void FileAccessNetworkClient::_thread_func() {
  70. client->set_no_delay(true);
  71. while (!quit) {
  72. DEBUG_PRINT("SEM WAIT - " + itos(sem->get()));
  73. sem.wait();
  74. DEBUG_TIME("sem_unlock");
  75. //DEBUG_PRINT("semwait returned "+itos(werr));
  76. DEBUG_PRINT("MUTEX LOCK " + itos(lockcount));
  77. lock_mutex();
  78. DEBUG_PRINT("MUTEX PASS");
  79. {
  80. MutexLock lock(blockrequest_mutex);
  81. while (block_requests.size()) {
  82. put_32(block_requests.front()->get().id);
  83. put_32(FileAccessNetwork::COMMAND_READ_BLOCK);
  84. put_64(block_requests.front()->get().offset);
  85. put_32(block_requests.front()->get().size);
  86. block_requests.pop_front();
  87. }
  88. }
  89. DEBUG_PRINT("THREAD ITER");
  90. DEBUG_TIME("sem_read");
  91. int id = get_32();
  92. int response = get_32();
  93. DEBUG_PRINT("GET RESPONSE: " + itos(response));
  94. FileAccessNetwork *fa = nullptr;
  95. if (response != FileAccessNetwork::RESPONSE_DATA) {
  96. if (!accesses.has(id)) {
  97. unlock_mutex();
  98. ERR_FAIL_COND(!accesses.has(id));
  99. }
  100. }
  101. if (accesses.has(id))
  102. fa = accesses[id];
  103. switch (response) {
  104. case FileAccessNetwork::RESPONSE_OPEN: {
  105. DEBUG_TIME("sem_open");
  106. int status = get_32();
  107. if (status != OK) {
  108. fa->_respond(0, Error(status));
  109. } else {
  110. uint64_t len = get_64();
  111. fa->_respond(len, Error(status));
  112. }
  113. fa->sem.post();
  114. } break;
  115. case FileAccessNetwork::RESPONSE_DATA: {
  116. int64_t offset = get_64();
  117. uint32_t len = get_32();
  118. Vector<uint8_t> block;
  119. block.resize(len);
  120. client->get_data(block.ptrw(), len);
  121. if (fa) //may have been queued
  122. fa->_set_block(offset, block);
  123. } break;
  124. case FileAccessNetwork::RESPONSE_FILE_EXISTS: {
  125. int status = get_32();
  126. fa->exists_modtime = status != 0;
  127. fa->sem.post();
  128. } break;
  129. case FileAccessNetwork::RESPONSE_GET_MODTIME: {
  130. uint64_t status = get_64();
  131. fa->exists_modtime = status;
  132. fa->sem.post();
  133. } break;
  134. }
  135. unlock_mutex();
  136. }
  137. }
  138. void FileAccessNetworkClient::_thread_func(void *s) {
  139. FileAccessNetworkClient *self = (FileAccessNetworkClient *)s;
  140. self->_thread_func();
  141. }
  142. Error FileAccessNetworkClient::connect(const String &p_host, int p_port, const String &p_password) {
  143. IP_Address ip;
  144. if (p_host.is_valid_ip_address()) {
  145. ip = p_host;
  146. } else {
  147. ip = IP::get_singleton()->resolve_hostname(p_host);
  148. }
  149. DEBUG_PRINT("IP: " + String(ip) + " port " + itos(p_port));
  150. Error err = client->connect_to_host(ip, p_port);
  151. ERR_FAIL_COND_V_MSG(err != OK, err, "Cannot connect to host with IP: " + String(ip) + " and port: " + itos(p_port));
  152. while (client->get_status() == StreamPeerTCP::STATUS_CONNECTING) {
  153. //DEBUG_PRINT("trying to connect....");
  154. OS::get_singleton()->delay_usec(1000);
  155. }
  156. if (client->get_status() != StreamPeerTCP::STATUS_CONNECTED) {
  157. return ERR_CANT_CONNECT;
  158. }
  159. CharString cs = p_password.utf8();
  160. put_32(cs.length());
  161. client->put_data((const uint8_t *)cs.ptr(), cs.length());
  162. int e = get_32();
  163. if (e != OK) {
  164. return ERR_INVALID_PARAMETER;
  165. }
  166. thread = Thread::create(_thread_func, this);
  167. return OK;
  168. }
  169. FileAccessNetworkClient *FileAccessNetworkClient::singleton = nullptr;
  170. FileAccessNetworkClient::FileAccessNetworkClient() {
  171. singleton = this;
  172. client.instance();
  173. }
  174. FileAccessNetworkClient::~FileAccessNetworkClient() {
  175. if (thread) {
  176. quit = true;
  177. sem.post();
  178. Thread::wait_to_finish(thread);
  179. memdelete(thread);
  180. }
  181. }
  182. void FileAccessNetwork::_set_block(int p_offset, const Vector<uint8_t> &p_block) {
  183. int page = p_offset / page_size;
  184. ERR_FAIL_INDEX(page, pages.size());
  185. if (page < pages.size() - 1) {
  186. ERR_FAIL_COND(p_block.size() != page_size);
  187. } else {
  188. ERR_FAIL_COND((p_block.size() != (int)(total_size % page_size)));
  189. }
  190. {
  191. MutexLock lock(buffer_mutex);
  192. pages.write[page].buffer = p_block;
  193. pages.write[page].queued = false;
  194. }
  195. if (waiting_on_page == page) {
  196. waiting_on_page = -1;
  197. page_sem.post();
  198. }
  199. }
  200. void FileAccessNetwork::_respond(size_t p_len, Error p_status) {
  201. DEBUG_PRINT("GOT RESPONSE - len: " + itos(p_len) + " status: " + itos(p_status));
  202. response = p_status;
  203. if (response != OK)
  204. return;
  205. opened = true;
  206. total_size = p_len;
  207. int pc = ((total_size - 1) / page_size) + 1;
  208. pages.resize(pc);
  209. }
  210. Error FileAccessNetwork::_open(const String &p_path, int p_mode_flags) {
  211. ERR_FAIL_COND_V(p_mode_flags != READ, ERR_UNAVAILABLE);
  212. if (opened)
  213. close();
  214. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  215. DEBUG_PRINT("open: " + p_path);
  216. DEBUG_TIME("open_begin");
  217. nc->lock_mutex();
  218. nc->put_32(id);
  219. nc->accesses[id] = this;
  220. nc->put_32(COMMAND_OPEN_FILE);
  221. CharString cs = p_path.utf8();
  222. nc->put_32(cs.length());
  223. nc->client->put_data((const uint8_t *)cs.ptr(), cs.length());
  224. pos = 0;
  225. eof_flag = false;
  226. last_page = -1;
  227. last_page_buff = nullptr;
  228. //buffers.clear();
  229. nc->unlock_mutex();
  230. DEBUG_PRINT("OPEN POST");
  231. DEBUG_TIME("open_post");
  232. nc->sem.post(); //awaiting answer
  233. DEBUG_PRINT("WAIT...");
  234. sem.wait();
  235. DEBUG_TIME("open_end");
  236. DEBUG_PRINT("WAIT ENDED...");
  237. return response;
  238. }
  239. void FileAccessNetwork::close() {
  240. if (!opened)
  241. return;
  242. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  243. DEBUG_PRINT("CLOSE");
  244. nc->lock_mutex();
  245. nc->put_32(id);
  246. nc->put_32(COMMAND_CLOSE);
  247. pages.clear();
  248. opened = false;
  249. nc->unlock_mutex();
  250. }
  251. bool FileAccessNetwork::is_open() const {
  252. return opened;
  253. }
  254. void FileAccessNetwork::seek(size_t p_position) {
  255. ERR_FAIL_COND_MSG(!opened, "File must be opened before use.");
  256. eof_flag = p_position > total_size;
  257. if (p_position >= total_size) {
  258. p_position = total_size;
  259. }
  260. pos = p_position;
  261. }
  262. void FileAccessNetwork::seek_end(int64_t p_position) {
  263. seek(total_size + p_position);
  264. }
  265. size_t FileAccessNetwork::get_position() const {
  266. ERR_FAIL_COND_V_MSG(!opened, 0, "File must be opened before use.");
  267. return pos;
  268. }
  269. size_t FileAccessNetwork::get_len() const {
  270. ERR_FAIL_COND_V_MSG(!opened, 0, "File must be opened before use.");
  271. return total_size;
  272. }
  273. bool FileAccessNetwork::eof_reached() const {
  274. ERR_FAIL_COND_V_MSG(!opened, false, "File must be opened before use.");
  275. return eof_flag;
  276. }
  277. uint8_t FileAccessNetwork::get_8() const {
  278. uint8_t v;
  279. get_buffer(&v, 1);
  280. return v;
  281. }
  282. void FileAccessNetwork::_queue_page(int p_page) const {
  283. if (p_page >= pages.size())
  284. return;
  285. if (pages[p_page].buffer.empty() && !pages[p_page].queued) {
  286. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  287. {
  288. MutexLock lock(nc->blockrequest_mutex);
  289. FileAccessNetworkClient::BlockRequest br;
  290. br.id = id;
  291. br.offset = size_t(p_page) * page_size;
  292. br.size = page_size;
  293. nc->block_requests.push_back(br);
  294. pages.write[p_page].queued = true;
  295. }
  296. DEBUG_PRINT("QUEUE PAGE POST");
  297. nc->sem.post();
  298. DEBUG_PRINT("queued " + itos(p_page));
  299. }
  300. }
  301. int FileAccessNetwork::get_buffer(uint8_t *p_dst, int p_length) const {
  302. //bool eof=false;
  303. if (pos + p_length > total_size) {
  304. eof_flag = true;
  305. }
  306. if (pos + p_length >= total_size) {
  307. p_length = total_size - pos;
  308. }
  309. //FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  310. uint8_t *buff = last_page_buff;
  311. for (int i = 0; i < p_length; i++) {
  312. int page = pos / page_size;
  313. if (page != last_page) {
  314. buffer_mutex.lock();
  315. if (pages[page].buffer.empty()) {
  316. waiting_on_page = page;
  317. for (int j = 0; j < read_ahead; j++) {
  318. _queue_page(page + j);
  319. }
  320. buffer_mutex.unlock();
  321. DEBUG_PRINT("wait");
  322. page_sem.wait();
  323. DEBUG_PRINT("done");
  324. } else {
  325. for (int j = 0; j < read_ahead; j++) {
  326. _queue_page(page + j);
  327. }
  328. //queue pages
  329. buffer_mutex.unlock();
  330. }
  331. buff = pages.write[page].buffer.ptrw();
  332. last_page_buff = buff;
  333. last_page = page;
  334. }
  335. p_dst[i] = buff[pos - uint64_t(page) * page_size];
  336. pos++;
  337. }
  338. return p_length;
  339. }
  340. Error FileAccessNetwork::get_error() const {
  341. return pos == total_size ? ERR_FILE_EOF : OK;
  342. }
  343. void FileAccessNetwork::flush() {
  344. ERR_FAIL();
  345. }
  346. void FileAccessNetwork::store_8(uint8_t p_dest) {
  347. ERR_FAIL();
  348. }
  349. bool FileAccessNetwork::file_exists(const String &p_path) {
  350. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  351. nc->lock_mutex();
  352. nc->put_32(id);
  353. nc->put_32(COMMAND_FILE_EXISTS);
  354. CharString cs = p_path.utf8();
  355. nc->put_32(cs.length());
  356. nc->client->put_data((const uint8_t *)cs.ptr(), cs.length());
  357. nc->unlock_mutex();
  358. DEBUG_PRINT("FILE EXISTS POST");
  359. nc->sem.post();
  360. sem.wait();
  361. return exists_modtime != 0;
  362. }
  363. uint64_t FileAccessNetwork::_get_modified_time(const String &p_file) {
  364. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  365. nc->lock_mutex();
  366. nc->put_32(id);
  367. nc->put_32(COMMAND_GET_MODTIME);
  368. CharString cs = p_file.utf8();
  369. nc->put_32(cs.length());
  370. nc->client->put_data((const uint8_t *)cs.ptr(), cs.length());
  371. nc->unlock_mutex();
  372. DEBUG_PRINT("MODTIME POST");
  373. nc->sem.post();
  374. sem.wait();
  375. return exists_modtime;
  376. }
  377. uint32_t FileAccessNetwork::_get_unix_permissions(const String &p_file) {
  378. ERR_PRINT("Getting UNIX permissions from network drives is not implemented yet");
  379. return 0;
  380. }
  381. Error FileAccessNetwork::_set_unix_permissions(const String &p_file, uint32_t p_permissions) {
  382. ERR_PRINT("Setting UNIX permissions on network drives is not implemented yet");
  383. return ERR_UNAVAILABLE;
  384. }
  385. void FileAccessNetwork::configure() {
  386. GLOBAL_DEF("network/remote_fs/page_size", 65536);
  387. ProjectSettings::get_singleton()->set_custom_property_info("network/remote_fs/page_size", PropertyInfo(Variant::INT, "network/remote_fs/page_size", PROPERTY_HINT_RANGE, "1,65536,1,or_greater")); //is used as denominator and can't be zero
  388. GLOBAL_DEF("network/remote_fs/page_read_ahead", 4);
  389. ProjectSettings::get_singleton()->set_custom_property_info("network/remote_fs/page_read_ahead", PropertyInfo(Variant::INT, "network/remote_fs/page_read_ahead", PROPERTY_HINT_RANGE, "0,8,1,or_greater"));
  390. }
  391. FileAccessNetwork::FileAccessNetwork() {
  392. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  393. nc->lock_mutex();
  394. id = nc->last_id++;
  395. nc->accesses[id] = this;
  396. nc->unlock_mutex();
  397. page_size = GLOBAL_GET("network/remote_fs/page_size");
  398. read_ahead = GLOBAL_GET("network/remote_fs/page_read_ahead");
  399. }
  400. FileAccessNetwork::~FileAccessNetwork() {
  401. close();
  402. FileAccessNetworkClient *nc = FileAccessNetworkClient::singleton;
  403. nc->lock_mutex();
  404. id = nc->last_id++;
  405. nc->accesses.erase(id);
  406. nc->unlock_mutex();
  407. }