dir_access_windows.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. /*************************************************************************/
  2. /* dir_access_windows.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* http://www.godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  9. /* */
  10. /* Permission is hereby granted, free of charge, to any person obtaining */
  11. /* a copy of this software and associated documentation files (the */
  12. /* "Software"), to deal in the Software without restriction, including */
  13. /* without limitation the rights to use, copy, modify, merge, publish, */
  14. /* distribute, sublicense, and/or sell copies of the Software, and to */
  15. /* permit persons to whom the Software is furnished to do so, subject to */
  16. /* the following conditions: */
  17. /* */
  18. /* The above copyright notice and this permission notice shall be */
  19. /* included in all copies or substantial portions of the Software. */
  20. /* */
  21. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  22. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  23. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  24. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  25. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  26. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  27. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  28. /*************************************************************************/
  29. #if defined(WINDOWS_ENABLED)
  30. #include "dir_access_windows.h"
  31. #include "os/memory.h"
  32. #include <windows.h>
  33. #include <wchar.h>
  34. #include <stdio.h>
  35. #include "print_string.h"
  36. #ifdef WINRT_ENABLED
  37. #include <Synchapi.h>
  38. #include <collection.h>
  39. #include <ppltasks.h>
  40. #endif
  41. /*
  42. [03:57] <reduz> yessopie, so i dont havemak to rely on unicows
  43. [03:58] <yessopie> reduz- yeah, all of the functions fail, and then you can call GetLastError () which will return 120
  44. [03:58] <drumstick> CategoryApl, hehe, what? :)
  45. [03:59] <CategoryApl> didn't Verona lead to some trouble
  46. [03:59] <yessopie> 120 = ERROR_CALL_NOT_IMPLEMENTED
  47. [03:59] <yessopie> (you can use that constant if you include winerr.h)
  48. [03:59] <CategoryApl> well answer with winning a compo
  49. [04:02] <yessopie> if ( SetCurrentDirectoryW ( L"." ) == FALSE && GetLastError () == ERROR_CALL_NOT_IMPLEMENTED ) { use ANSI }
  50. */
  51. struct DirAccessWindowsPrivate {
  52. HANDLE h; //handle for findfirstfile
  53. WIN32_FIND_DATA f;
  54. WIN32_FIND_DATAW fu; //unicode version
  55. };
  56. // CreateFolderAsync
  57. bool DirAccessWindows::list_dir_begin() {
  58. _cisdir=false;
  59. _cishidden=false;
  60. if (unicode) {
  61. list_dir_end();
  62. p->h = FindFirstFileExW((current_dir+"\\*").c_str(), FindExInfoStandard, &p->fu, FindExSearchNameMatch, NULL, 0);
  63. return (p->h==INVALID_HANDLE_VALUE);
  64. } else {
  65. list_dir_end();
  66. p->h = FindFirstFileExA((current_dir+"\\*").ascii().get_data(), FindExInfoStandard, &p->fu, FindExSearchNameMatch, NULL, 0);
  67. return (p->h==INVALID_HANDLE_VALUE);
  68. }
  69. return false;
  70. }
  71. String DirAccessWindows::get_next() {
  72. if (p->h==INVALID_HANDLE_VALUE)
  73. return "";
  74. if (unicode) {
  75. _cisdir=(p->fu.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
  76. _cishidden=(p->fu.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN);
  77. String name=p->fu.cFileName;
  78. if (FindNextFileW(p->h, &p->fu) == 0) {
  79. FindClose(p->h);
  80. p->h=INVALID_HANDLE_VALUE;
  81. }
  82. return name;
  83. } else {
  84. #ifndef WINRT_ENABLED
  85. _cisdir=(p->fu.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
  86. _cishidden=(p->fu.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN);
  87. String name=p->f.cFileName;
  88. if (FindNextFileA(p->h, &p->f) == 0) {
  89. FindClose(p->h);
  90. p->h=INVALID_HANDLE_VALUE;
  91. }
  92. return name;
  93. #endif
  94. return "";
  95. }
  96. }
  97. bool DirAccessWindows::current_is_dir() const {
  98. return _cisdir;
  99. }
  100. bool DirAccessWindows::current_is_hidden() const {
  101. return _cishidden;
  102. }
  103. void DirAccessWindows::list_dir_end() {
  104. if (p->h!=INVALID_HANDLE_VALUE) {
  105. FindClose(p->h);
  106. p->h=INVALID_HANDLE_VALUE;
  107. }
  108. }
  109. int DirAccessWindows::get_drive_count() {
  110. return drive_count;
  111. }
  112. String DirAccessWindows::get_drive(int p_drive) {
  113. if (p_drive<0 || p_drive>=drive_count)
  114. return "";
  115. return String::chr(drives[p_drive])+":";
  116. }
  117. Error DirAccessWindows::change_dir(String p_dir) {
  118. GLOBAL_LOCK_FUNCTION
  119. #ifdef WINRT_ENABLED
  120. p_dir = fix_path(p_dir);
  121. current_dir = normalize_path(p_dir);
  122. return OK;
  123. #else
  124. p_dir=fix_path(p_dir);
  125. if (unicode) {
  126. wchar_t real_current_dir_name[2048];
  127. GetCurrentDirectoryW(2048,real_current_dir_name);
  128. String prev_dir=real_current_dir_name;
  129. SetCurrentDirectoryW(current_dir.c_str());
  130. bool worked=(SetCurrentDirectoryW(p_dir.c_str())!=0);
  131. String base = _get_root_path();
  132. if (base!="") {
  133. GetCurrentDirectoryW(2048,real_current_dir_name);
  134. String new_dir;
  135. new_dir = String(real_current_dir_name).replace("\\","/");
  136. if (!new_dir.begins_with(base)) {
  137. worked=false;
  138. }
  139. }
  140. if (worked) {
  141. GetCurrentDirectoryW(2048,real_current_dir_name);
  142. current_dir=real_current_dir_name; // TODO, utf8 parser
  143. current_dir=current_dir.replace("\\","/");
  144. } //else {
  145. SetCurrentDirectoryW(prev_dir.c_str());
  146. //}
  147. return worked?OK:ERR_INVALID_PARAMETER;
  148. } else {
  149. char real_current_dir_name[2048];
  150. GetCurrentDirectoryA(2048,real_current_dir_name);
  151. String prev_dir=real_current_dir_name;
  152. SetCurrentDirectoryA(current_dir.ascii().get_data());
  153. bool worked=(SetCurrentDirectory(p_dir.ascii().get_data())!=0);
  154. if (worked) {
  155. GetCurrentDirectoryA(2048,real_current_dir_name);
  156. current_dir=real_current_dir_name; // TODO, utf8 parser
  157. current_dir=current_dir.replace("\\","/");
  158. }// else {
  159. SetCurrentDirectoryA(prev_dir.ascii().get_data());
  160. //}
  161. return worked?OK:ERR_INVALID_PARAMETER;
  162. }
  163. return OK;
  164. #endif
  165. }
  166. Error DirAccessWindows::make_dir(String p_dir) {
  167. GLOBAL_LOCK_FUNCTION
  168. #ifdef WINRT_ENABLED
  169. return ERR_CANT_CREATE;
  170. #else
  171. p_dir=fix_path(p_dir);
  172. p_dir.replace("/","\\");
  173. bool success;
  174. int err;
  175. if (unicode) {
  176. wchar_t real_current_dir_name[2048];
  177. GetCurrentDirectoryW(2048,real_current_dir_name);
  178. SetCurrentDirectoryW(current_dir.c_str());
  179. success=CreateDirectoryW(p_dir.c_str(), NULL);
  180. err = GetLastError();
  181. SetCurrentDirectoryW(real_current_dir_name);
  182. } else {
  183. char real_current_dir_name[2048];
  184. GetCurrentDirectoryA(2048,real_current_dir_name);
  185. SetCurrentDirectoryA(current_dir.ascii().get_data());
  186. success=CreateDirectoryA(p_dir.ascii().get_data(), NULL);
  187. err = GetLastError();
  188. SetCurrentDirectoryA(real_current_dir_name);
  189. }
  190. if (success) {
  191. return OK;
  192. };
  193. if (err == ERROR_ALREADY_EXISTS) {
  194. return ERR_ALREADY_EXISTS;
  195. };
  196. return ERR_CANT_CREATE;
  197. #endif
  198. }
  199. String DirAccessWindows::get_current_dir() {
  200. String base = _get_root_path();
  201. if (base!="") {
  202. String bd = current_dir.replace("\\","/").replace_first(base,"");
  203. if (bd.begins_with("/"))
  204. return _get_root_string()+bd.substr(1,bd.length());
  205. else
  206. return _get_root_string()+bd;
  207. } else {
  208. }
  209. return current_dir;
  210. }
  211. bool DirAccessWindows::file_exists(String p_file) {
  212. GLOBAL_LOCK_FUNCTION
  213. if (!p_file.is_abs_path())
  214. p_file=get_current_dir()+"/"+p_file;
  215. p_file=fix_path(p_file);
  216. p_file.replace("/","\\");
  217. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  218. if (unicode) {
  219. DWORD fileAttr;
  220. fileAttr = GetFileAttributesExW(p_file.c_str(), GetFileExInfoStandard, &fileInfo);
  221. if (0 == fileAttr)
  222. return false;
  223. return !(fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  224. } else {
  225. DWORD fileAttr;
  226. fileAttr = GetFileAttributesExA(p_file.ascii().get_data(), GetFileExInfoStandard, &fileInfo);
  227. if (0 == fileAttr)
  228. return false;
  229. return !(fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  230. }
  231. return false;
  232. }
  233. bool DirAccessWindows::dir_exists(String p_dir) {
  234. GLOBAL_LOCK_FUNCTION
  235. if (!p_dir.is_abs_path())
  236. p_dir=get_current_dir()+"/"+p_dir;
  237. p_dir=fix_path(p_dir);
  238. p_dir.replace("/","\\");
  239. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  240. if (unicode) {
  241. DWORD fileAttr;
  242. fileAttr = GetFileAttributesExW(p_dir.c_str(), GetFileExInfoStandard, &fileInfo);
  243. if (0 == fileAttr)
  244. return false;
  245. return (fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  246. } else {
  247. #ifndef WINRT_ENABLED
  248. DWORD fileAttr;
  249. fileAttr = GetFileAttributesExA(p_dir.ascii().get_data(), GetFileExInfoStandard, &fileInfo);
  250. if (0 == fileAttr)
  251. return false;
  252. return (fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  253. #endif
  254. }
  255. return false;
  256. }
  257. Error DirAccessWindows::rename(String p_path,String p_new_path) {
  258. p_path=fix_path(p_path);
  259. p_new_path=fix_path(p_new_path);
  260. if (file_exists(p_new_path)) {
  261. if (remove(p_new_path) != OK) {
  262. return FAILED;
  263. };
  264. };
  265. return ::_wrename(p_path.c_str(),p_new_path.c_str())==0?OK:FAILED;
  266. }
  267. Error DirAccessWindows::remove(String p_path) {
  268. p_path=fix_path(p_path);
  269. printf("erasing %s\n",p_path.utf8().get_data());
  270. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  271. DWORD fileAttr = GetFileAttributesExW(p_path.c_str(), GetFileExInfoStandard, &fileInfo);
  272. if (fileAttr == INVALID_FILE_ATTRIBUTES)
  273. return FAILED;
  274. if (fileAttr & FILE_ATTRIBUTE_DIRECTORY)
  275. return ::_wrmdir(p_path.c_str())==0?OK:FAILED;
  276. else
  277. return ::_wunlink(p_path.c_str())==0?OK:FAILED;
  278. }
  279. /*
  280. FileType DirAccessWindows::get_file_type(const String& p_file) const {
  281. wchar_t real_current_dir_name[2048];
  282. GetCurrentDirectoryW(2048,real_current_dir_name);
  283. String prev_dir=real_current_dir_name;
  284. bool worked SetCurrentDirectoryW(current_dir.c_str());
  285. DWORD attr;
  286. if (worked) {
  287. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  288. attr = GetFileAttributesExW(p_file.c_str(), GetFileExInfoStandard, &fileInfo);
  289. }
  290. SetCurrentDirectoryW(prev_dir.c_str());
  291. if (!worked)
  292. return FILE_TYPE_NONE;
  293. return (attr&FILE_ATTRIBUTE_DIRECTORY)?FILE_TYPE_
  294. }
  295. */
  296. size_t DirAccessWindows::get_space_left() {
  297. return -1;
  298. };
  299. DirAccessWindows::DirAccessWindows() {
  300. p = memnew( DirAccessWindowsPrivate );
  301. p->h=INVALID_HANDLE_VALUE;
  302. current_dir=".";
  303. drive_count=0;
  304. #ifdef WINRT_ENABLED
  305. Windows::Storage::StorageFolder ^install_folder = Windows::ApplicationModel::Package::Current->InstalledLocation;
  306. change_dir(install_folder->Path->Data());
  307. #else
  308. DWORD mask=GetLogicalDrives();
  309. for (int i=0;i<MAX_DRIVES;i++) {
  310. if (mask&(1<<i)) { //DRIVE EXISTS
  311. drives[drive_count]='a'+i;
  312. drive_count++;
  313. }
  314. }
  315. unicode=true;
  316. /* We are running Windows 95/98/ME, so no unicode allowed */
  317. if ( SetCurrentDirectoryW ( L"." ) == FALSE && GetLastError () == ERROR_CALL_NOT_IMPLEMENTED )
  318. unicode=false;
  319. change_dir(".");
  320. #endif
  321. }
  322. DirAccessWindows::~DirAccessWindows() {
  323. memdelete( p );
  324. }
  325. #endif //windows DirAccess support