dir_access_windows.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  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. if (unicode) {
  60. list_dir_end();
  61. p->h = FindFirstFileExW((current_dir+"\\*").c_str(), FindExInfoStandard, &p->fu, FindExSearchNameMatch, NULL, 0);
  62. return (p->h==INVALID_HANDLE_VALUE);
  63. } else {
  64. list_dir_end();
  65. p->h = FindFirstFileExA((current_dir+"\\*").ascii().get_data(), FindExInfoStandard, &p->fu, FindExSearchNameMatch, NULL, 0);
  66. return (p->h==INVALID_HANDLE_VALUE);
  67. }
  68. return false;
  69. }
  70. String DirAccessWindows::get_next() {
  71. if (p->h==INVALID_HANDLE_VALUE)
  72. return "";
  73. if (unicode) {
  74. _cisdir=(p->fu.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
  75. String name=p->fu.cFileName;
  76. if (FindNextFileW(p->h, &p->fu) == 0) {
  77. FindClose(p->h);
  78. p->h=INVALID_HANDLE_VALUE;
  79. }
  80. return name;
  81. } else {
  82. _cisdir=(p->fu.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
  83. String name=p->f.cFileName;
  84. if (FindNextFileA(p->h, &p->f) == 0) {
  85. FindClose(p->h);
  86. p->h=INVALID_HANDLE_VALUE;
  87. }
  88. return name;
  89. }
  90. }
  91. bool DirAccessWindows::current_is_dir() const {
  92. return _cisdir;
  93. }
  94. void DirAccessWindows::list_dir_end() {
  95. if (p->h!=INVALID_HANDLE_VALUE) {
  96. FindClose(p->h);
  97. p->h=INVALID_HANDLE_VALUE;
  98. }
  99. }
  100. int DirAccessWindows::get_drive_count() {
  101. return drive_count;
  102. }
  103. String DirAccessWindows::get_drive(int p_drive) {
  104. if (p_drive<0 || p_drive>=drive_count)
  105. return "";
  106. return String::chr(drives[p_drive])+":";
  107. }
  108. Error DirAccessWindows::change_dir(String p_dir) {
  109. GLOBAL_LOCK_FUNCTION
  110. #ifdef WINRT_ENABLED
  111. p_dir = fix_path(p_dir);
  112. current_dir = normalize_path(p_dir);
  113. return OK;
  114. #else
  115. p_dir=fix_path(p_dir);
  116. if (unicode) {
  117. wchar_t real_current_dir_name[2048];
  118. GetCurrentDirectoryW(2048,real_current_dir_name);
  119. String prev_dir=real_current_dir_name;
  120. SetCurrentDirectoryW(current_dir.c_str());
  121. bool worked=(SetCurrentDirectoryW(p_dir.c_str())!=0);
  122. String base = _get_root_path();
  123. if (base!="") {
  124. GetCurrentDirectoryW(2048,real_current_dir_name);
  125. String new_dir;
  126. new_dir = String(real_current_dir_name).replace("\\","/");
  127. if (!new_dir.begins_with(base)) {
  128. worked=false;
  129. }
  130. }
  131. if (worked) {
  132. GetCurrentDirectoryW(2048,real_current_dir_name);
  133. current_dir=real_current_dir_name; // TODO, utf8 parser
  134. current_dir=current_dir.replace("\\","/");
  135. } //else {
  136. SetCurrentDirectoryW(prev_dir.c_str());
  137. //}
  138. return worked?OK:ERR_INVALID_PARAMETER;
  139. } else {
  140. char real_current_dir_name[2048];
  141. GetCurrentDirectoryA(2048,real_current_dir_name);
  142. String prev_dir=real_current_dir_name;
  143. SetCurrentDirectoryA(current_dir.ascii().get_data());
  144. bool worked=(SetCurrentDirectory(p_dir.ascii().get_data())!=0);
  145. if (worked) {
  146. GetCurrentDirectoryA(2048,real_current_dir_name);
  147. current_dir=real_current_dir_name; // TODO, utf8 parser
  148. current_dir=current_dir.replace("\\","/");
  149. }// else {
  150. SetCurrentDirectoryA(prev_dir.ascii().get_data());
  151. //}
  152. return worked?OK:ERR_INVALID_PARAMETER;
  153. }
  154. return OK;
  155. #endif
  156. }
  157. Error DirAccessWindows::make_dir(String p_dir) {
  158. GLOBAL_LOCK_FUNCTION
  159. #ifdef WINRT_ENABLED
  160. return ERR_CANT_CREATE;
  161. #else
  162. p_dir=fix_path(p_dir);
  163. p_dir.replace("/","\\");
  164. bool success;
  165. int err;
  166. if (unicode) {
  167. wchar_t real_current_dir_name[2048];
  168. GetCurrentDirectoryW(2048,real_current_dir_name);
  169. SetCurrentDirectoryW(current_dir.c_str());
  170. success=CreateDirectoryW(p_dir.c_str(), NULL);
  171. err = GetLastError();
  172. SetCurrentDirectoryW(real_current_dir_name);
  173. } else {
  174. char real_current_dir_name[2048];
  175. GetCurrentDirectoryA(2048,real_current_dir_name);
  176. SetCurrentDirectoryA(current_dir.ascii().get_data());
  177. success=CreateDirectoryA(p_dir.ascii().get_data(), NULL);
  178. err = GetLastError();
  179. SetCurrentDirectoryA(real_current_dir_name);
  180. }
  181. if (success) {
  182. return OK;
  183. };
  184. if (err == ERROR_ALREADY_EXISTS) {
  185. return ERR_ALREADY_EXISTS;
  186. };
  187. return ERR_CANT_CREATE;
  188. #endif
  189. }
  190. String DirAccessWindows::get_current_dir() {
  191. String base = _get_root_path();
  192. if (base!="") {
  193. String bd = current_dir.replace("\\","/").replace_first(base,"");
  194. if (bd.begins_with("/"))
  195. return _get_root_string()+bd.substr(1,bd.length());
  196. else
  197. return _get_root_string()+bd;
  198. } else {
  199. }
  200. return current_dir;
  201. }
  202. bool DirAccessWindows::file_exists(String p_file) {
  203. GLOBAL_LOCK_FUNCTION
  204. if (!p_file.is_abs_path())
  205. p_file=get_current_dir()+"/"+p_file;
  206. p_file=fix_path(p_file);
  207. p_file.replace("/","\\");
  208. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  209. if (unicode) {
  210. DWORD fileAttr;
  211. fileAttr = GetFileAttributesExW(p_file.c_str(), GetFileExInfoStandard, &fileInfo);
  212. if (0 == fileAttr)
  213. return false;
  214. return !(fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  215. } else {
  216. DWORD fileAttr;
  217. fileAttr = GetFileAttributesExA(p_file.ascii().get_data(), GetFileExInfoStandard, &fileInfo);
  218. if (0 == fileAttr)
  219. return false;
  220. return !(fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  221. }
  222. return false;
  223. }
  224. bool DirAccessWindows::dir_exists(String p_dir) {
  225. GLOBAL_LOCK_FUNCTION
  226. if (!p_dir.is_abs_path())
  227. p_dir=get_current_dir()+"/"+p_dir;
  228. p_dir=fix_path(p_dir);
  229. p_dir.replace("/","\\");
  230. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  231. if (unicode) {
  232. DWORD fileAttr;
  233. fileAttr = GetFileAttributesExW(p_dir.c_str(), GetFileExInfoStandard, &fileInfo);
  234. if (0 == fileAttr)
  235. return false;
  236. return (fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  237. } else {
  238. DWORD fileAttr;
  239. fileAttr = GetFileAttributesExA(p_dir.ascii().get_data(), GetFileExInfoStandard, &fileInfo);
  240. if (0 == fileAttr)
  241. return false;
  242. return (fileAttr&FILE_ATTRIBUTE_DIRECTORY);
  243. }
  244. return false;
  245. }
  246. Error DirAccessWindows::rename(String p_path,String p_new_path) {
  247. p_path=fix_path(p_path);
  248. p_new_path=fix_path(p_new_path);
  249. if (file_exists(p_new_path)) {
  250. if (remove(p_new_path) != OK) {
  251. return FAILED;
  252. };
  253. };
  254. return ::_wrename(p_path.c_str(),p_new_path.c_str())==0?OK:FAILED;
  255. }
  256. Error DirAccessWindows::remove(String p_path) {
  257. p_path=fix_path(p_path);
  258. printf("erasing %s\n",p_path.utf8().get_data());
  259. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  260. DWORD fileAttr = GetFileAttributesExW(p_path.c_str(), GetFileExInfoStandard, &fileInfo);
  261. if (fileAttr == INVALID_FILE_ATTRIBUTES)
  262. return FAILED;
  263. if (fileAttr & FILE_ATTRIBUTE_DIRECTORY)
  264. return ::_wrmdir(p_path.c_str())==0?OK:FAILED;
  265. else
  266. return ::_wunlink(p_path.c_str())==0?OK:FAILED;
  267. }
  268. /*
  269. FileType DirAccessWindows::get_file_type(const String& p_file) const {
  270. wchar_t real_current_dir_name[2048];
  271. GetCurrentDirectoryW(2048,real_current_dir_name);
  272. String prev_dir=real_current_dir_name;
  273. bool worked SetCurrentDirectoryW(current_dir.c_str());
  274. DWORD attr;
  275. if (worked) {
  276. WIN32_FILE_ATTRIBUTE_DATA fileInfo;
  277. attr = GetFileAttributesExW(p_file.c_str(), GetFileExInfoStandard, &fileInfo);
  278. }
  279. SetCurrentDirectoryW(prev_dir.c_str());
  280. if (!worked)
  281. return FILE_TYPE_NONE;
  282. return (attr&FILE_ATTRIBUTE_DIRECTORY)?FILE_TYPE_
  283. }
  284. */
  285. size_t DirAccessWindows::get_space_left() {
  286. return -1;
  287. };
  288. DirAccessWindows::DirAccessWindows() {
  289. p = memnew( DirAccessWindowsPrivate );
  290. p->h=INVALID_HANDLE_VALUE;
  291. current_dir=".";
  292. drive_count=0;
  293. #ifdef WINRT_ENABLED
  294. Windows::Storage::StorageFolder ^install_folder = Windows::ApplicationModel::Package::Current->InstalledLocation;
  295. change_dir(install_folder->Path->Data());
  296. #else
  297. DWORD mask=GetLogicalDrives();
  298. for (int i=0;i<MAX_DRIVES;i++) {
  299. if (mask&(1<<i)) { //DRIVE EXISTS
  300. drives[drive_count]='a'+i;
  301. drive_count++;
  302. }
  303. }
  304. unicode=true;
  305. /* We are running Windows 95/98/ME, so no unicode allowed */
  306. if ( SetCurrentDirectoryW ( L"." ) == FALSE && GetLastError () == ERROR_CALL_NOT_IMPLEMENTED )
  307. unicode=false;
  308. change_dir(".");
  309. #endif
  310. }
  311. DirAccessWindows::~DirAccessWindows() {
  312. memdelete( p );
  313. }
  314. #endif //windows DirAccess support