godot/drivers/windows/dir_access_windows.cpp

402 lines
11 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* dir_access_windows.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-10 02:10:30 +01:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#if defined(WINDOWS_ENABLED)
2014-02-10 02:10:30 +01:00
#include "dir_access_windows.h"
#include "core/os/memory.h"
#include "core/string/print_string.h"
2014-02-10 02:10:30 +01:00
#include <stdio.h>
#include <wchar.h>
2021-09-23 08:56:12 +02:00
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
2014-02-10 02:10:30 +01:00
/*
[03:57] <reduz> yessopie, so i don't havemak to rely on unicows
2014-02-10 02:10:30 +01:00
[03:58] <yessopie> reduz- yeah, all of the functions fail, and then you can call GetLastError () which will return 120
[03:58] <drumstick> CategoryApl, hehe, what? :)
[03:59] <CategoryApl> didn't Verona lead to some trouble
[03:59] <yessopie> 120 = ERROR_CALL_NOT_IMPLEMENTED
[03:59] <yessopie> (you can use that constant if you include winerr.h)
[03:59] <CategoryApl> well answer with winning a compo
[04:02] <yessopie> if ( SetCurrentDirectoryW ( L"." ) == FALSE && GetLastError () == ERROR_CALL_NOT_IMPLEMENTED ) { use ANSI }
*/
struct DirAccessWindowsPrivate {
HANDLE h; //handle for findfirstfile
WIN32_FIND_DATA f;
WIN32_FIND_DATAW fu; //unicode version
};
// CreateFolderAsync
2014-02-10 02:10:30 +01:00
Error DirAccessWindows::list_dir_begin() {
_cisdir = false;
_cishidden = false;
list_dir_end();
p->h = FindFirstFileExW((LPCWSTR)(String(current_dir + "\\*").utf16().get_data()), FindExInfoStandard, &p->fu, FindExSearchNameMatch, nullptr, 0);
2014-02-10 02:10:30 +01:00
2020-07-06 08:17:16 +02:00
if (p->h == INVALID_HANDLE_VALUE) {
return ERR_CANT_OPEN;
}
return OK;
2014-02-10 02:10:30 +01:00
}
String DirAccessWindows::get_next() {
if (p->h == INVALID_HANDLE_VALUE) {
2014-02-10 02:10:30 +01:00
return "";
}
2014-02-10 02:10:30 +01:00
_cisdir = (p->fu.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
_cishidden = (p->fu.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN);
String name = String::utf16((const char16_t *)(p->fu.cFileName));
2014-02-10 02:10:30 +01:00
if (FindNextFileW(p->h, &p->fu) == 0) {
FindClose(p->h);
p->h = INVALID_HANDLE_VALUE;
}
2014-02-10 02:10:30 +01:00
return name;
2014-02-10 02:10:30 +01:00
}
bool DirAccessWindows::current_is_dir() const {
return _cisdir;
}
2015-03-21 18:33:32 +01:00
bool DirAccessWindows::current_is_hidden() const {
return _cishidden;
}
2014-02-10 02:10:30 +01:00
void DirAccessWindows::list_dir_end() {
if (p->h != INVALID_HANDLE_VALUE) {
2014-02-10 02:10:30 +01:00
FindClose(p->h);
p->h = INVALID_HANDLE_VALUE;
2014-02-10 02:10:30 +01:00
}
}
2014-02-10 02:10:30 +01:00
int DirAccessWindows::get_drive_count() {
return drive_count;
}
2014-02-10 02:10:30 +01:00
String DirAccessWindows::get_drive(int p_drive) {
if (p_drive < 0 || p_drive >= drive_count) {
2014-02-10 02:10:30 +01:00
return "";
}
2014-02-10 02:10:30 +01:00
return String::chr(drives[p_drive]) + ":";
2014-02-10 02:10:30 +01:00
}
Error DirAccessWindows::change_dir(String p_dir) {
GLOBAL_LOCK_FUNCTION
p_dir = fix_path(p_dir);
2014-02-10 02:10:30 +01:00
WCHAR real_current_dir_name[2048];
GetCurrentDirectoryW(2048, real_current_dir_name);
String prev_dir = String::utf16((const char16_t *)real_current_dir_name);
2014-02-10 02:10:30 +01:00
SetCurrentDirectoryW((LPCWSTR)(current_dir.utf16().get_data()));
bool worked = (SetCurrentDirectoryW((LPCWSTR)(p_dir.utf16().get_data())) != 0);
2014-02-10 02:10:30 +01:00
String base = _get_root_path();
if (base != "") {
GetCurrentDirectoryW(2048, real_current_dir_name);
String new_dir = String::utf16((const char16_t *)real_current_dir_name).replace("\\", "/");
if (!new_dir.begins_with(base)) {
worked = false;
2014-02-10 02:10:30 +01:00
}
}
2014-02-10 02:10:30 +01:00
if (worked) {
GetCurrentDirectoryW(2048, real_current_dir_name);
current_dir = String::utf16((const char16_t *)real_current_dir_name);
current_dir = current_dir.replace("\\", "/");
}
2014-02-10 02:10:30 +01:00
SetCurrentDirectoryW((LPCWSTR)(prev_dir.utf16().get_data()));
2014-02-10 02:10:30 +01:00
return worked ? OK : ERR_INVALID_PARAMETER;
2014-02-10 02:10:30 +01:00
}
Error DirAccessWindows::make_dir(String p_dir) {
GLOBAL_LOCK_FUNCTION
p_dir = fix_path(p_dir);
if (p_dir.is_relative_path()) {
p_dir = current_dir.plus_file(p_dir);
}
p_dir = p_dir.replace("/", "\\");
2014-02-10 02:10:30 +01:00
bool success;
int err;
p_dir = "\\\\?\\" + p_dir; //done according to
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa363855(v=vs.85).aspx
2014-02-10 02:10:30 +01:00
success = CreateDirectoryW((LPCWSTR)(p_dir.utf16().get_data()), nullptr);
err = GetLastError();
2014-02-10 02:10:30 +01:00
if (success) {
return OK;
}
2014-02-10 02:10:30 +01:00
if (err == ERROR_ALREADY_EXISTS || err == ERROR_ACCESS_DENIED) {
2014-02-10 02:10:30 +01:00
return ERR_ALREADY_EXISTS;
}
2014-02-10 02:10:30 +01:00
return ERR_CANT_CREATE;
}
String DirAccessWindows::get_current_dir(bool p_include_drive) {
2014-02-10 02:10:30 +01:00
String base = _get_root_path();
if (base != "") {
String bd = current_dir.replace("\\", "/").replace_first(base, "");
if (bd.begins_with("/")) {
return _get_root_string() + bd.substr(1, bd.length());
} else {
return _get_root_string() + bd;
}
2014-02-10 02:10:30 +01:00
}
if (p_include_drive) {
return current_dir;
} else {
2020-04-01 10:30:14 +02:00
if (_get_root_string() == "") {
int p = current_dir.find(":");
if (p != -1) {
2020-02-13 16:42:49 +01:00
return current_dir.substr(p + 1);
2020-04-01 10:30:14 +02:00
}
}
return current_dir;
}
2014-02-10 02:10:30 +01:00
}
bool DirAccessWindows::file_exists(String p_file) {
GLOBAL_LOCK_FUNCTION
if (!p_file.is_absolute_path()) {
p_file = get_current_dir().plus_file(p_file);
}
p_file = fix_path(p_file);
DWORD fileAttr;
2014-02-10 02:10:30 +01:00
fileAttr = GetFileAttributesW((LPCWSTR)(p_file.utf16().get_data()));
if (INVALID_FILE_ATTRIBUTES == fileAttr) {
return false;
}
2014-02-10 02:10:30 +01:00
return !(fileAttr & FILE_ATTRIBUTE_DIRECTORY);
2014-02-10 02:10:30 +01:00
}
2014-05-25 05:34:51 +02:00
bool DirAccessWindows::dir_exists(String p_dir) {
GLOBAL_LOCK_FUNCTION
if (p_dir.is_relative_path()) {
p_dir = get_current_dir().plus_file(p_dir);
}
p_dir = fix_path(p_dir);
2014-05-25 05:34:51 +02:00
DWORD fileAttr;
fileAttr = GetFileAttributesW((LPCWSTR)(p_dir.utf16().get_data()));
if (INVALID_FILE_ATTRIBUTES == fileAttr) {
return false;
}
return (fileAttr & FILE_ATTRIBUTE_DIRECTORY);
2014-05-25 05:34:51 +02:00
}
Error DirAccessWindows::rename(String p_path, String p_new_path) {
if (p_path.is_relative_path()) {
p_path = get_current_dir().plus_file(p_path);
}
p_path = fix_path(p_path);
if (p_new_path.is_relative_path()) {
p_new_path = get_current_dir().plus_file(p_new_path);
}
p_new_path = fix_path(p_new_path);
// If we're only changing file name case we need to do a little juggling
if (p_path.to_lower() == p_new_path.to_lower()) {
if (dir_exists(p_path)) {
// The path is a dir; just rename
return ::_wrename((LPCWSTR)(p_path.utf16().get_data()), (LPCWSTR)(p_new_path.utf16().get_data())) == 0 ? OK : FAILED;
}
// The path is a file; juggle
WCHAR tmpfile[MAX_PATH];
if (!GetTempFileNameW((LPCWSTR)(fix_path(get_current_dir()).utf16().get_data()), nullptr, 0, tmpfile)) {
2014-02-10 02:10:30 +01:00
return FAILED;
}
if (!::ReplaceFileW(tmpfile, (LPCWSTR)(p_path.utf16().get_data()), nullptr, 0, nullptr, nullptr)) {
DeleteFileW(tmpfile);
return FAILED;
}
2014-02-10 02:10:30 +01:00
return ::_wrename(tmpfile, (LPCWSTR)(p_new_path.utf16().get_data())) == 0 ? OK : FAILED;
} else {
if (file_exists(p_new_path)) {
if (remove(p_new_path) != OK) {
return FAILED;
}
}
return ::_wrename((LPCWSTR)(p_path.utf16().get_data()), (LPCWSTR)(p_new_path.utf16().get_data())) == 0 ? OK : FAILED;
}
2014-02-10 02:10:30 +01:00
}
Error DirAccessWindows::remove(String p_path) {
if (p_path.is_relative_path()) {
p_path = get_current_dir().plus_file(p_path);
}
p_path = fix_path(p_path);
DWORD fileAttr;
2014-02-10 02:10:30 +01:00
fileAttr = GetFileAttributesW((LPCWSTR)(p_path.utf16().get_data()));
if (INVALID_FILE_ATTRIBUTES == fileAttr) {
return FAILED;
}
if ((fileAttr & FILE_ATTRIBUTE_DIRECTORY)) {
return ::_wrmdir((LPCWSTR)(p_path.utf16().get_data())) == 0 ? OK : FAILED;
} else {
return ::_wunlink((LPCWSTR)(p_path.utf16().get_data())) == 0 ? OK : FAILED;
}
2014-02-10 02:10:30 +01:00
}
2014-02-10 02:10:30 +01:00
/*
FileType DirAccessWindows::get_file_type(const String& p_file) const {
WCHAR real_current_dir_name[2048];
GetCurrentDirectoryW(2048, real_current_dir_name);
String prev_dir = Strong::utf16((const char16_t *)real_current_dir_name);
2014-02-10 02:10:30 +01:00
bool worked = SetCurrentDirectoryW((LPCWSTR)(current_dir.utf16().get_data()));
2014-02-10 02:10:30 +01:00
DWORD attr;
if (worked) {
WIN32_FILE_ATTRIBUTE_DATA fileInfo;
attr = GetFileAttributesExW((LPCWSTR)(p_file.utf16().get_data()), GetFileExInfoStandard, &fileInfo);
2014-02-10 02:10:30 +01:00
}
SetCurrentDirectoryW((LPCWSTR)(prev_dir.utf16().get_data()));
2014-02-10 02:10:30 +01:00
if (!worked) {
2014-02-10 02:10:30 +01:00
return FILE_TYPE_NONE;
}
2014-02-10 02:10:30 +01:00
return (attr & FILE_ATTRIBUTE_DIRECTORY) ? FILE_TYPE_
2014-02-10 02:10:30 +01:00
}
2014-02-10 02:10:30 +01:00
*/
uint64_t DirAccessWindows::get_space_left() {
uint64_t bytes = 0;
if (!GetDiskFreeSpaceEx(nullptr, (PULARGE_INTEGER)&bytes, nullptr, nullptr)) {
return 0;
}
//this is either 0 or a value in bytes.
return bytes;
}
2014-02-10 02:10:30 +01:00
String DirAccessWindows::get_filesystem_type() const {
2019-01-26 22:35:31 +01:00
String path = fix_path(const_cast<DirAccessWindows *>(this)->get_current_dir());
2019-03-02 15:58:42 +01:00
int unit_end = path.find(":");
2019-01-26 22:35:31 +01:00
ERR_FAIL_COND_V(unit_end == -1, String());
String unit = path.substr(0, unit_end + 1) + "\\";
2019-03-02 15:58:42 +01:00
WCHAR szVolumeName[100];
WCHAR szFileSystemName[10];
2019-01-26 22:35:31 +01:00
DWORD dwSerialNumber = 0;
DWORD dwMaxFileNameLength = 0;
DWORD dwFileSystemFlags = 0;
if (::GetVolumeInformationW((LPCWSTR)(unit.utf16().get_data()),
2019-01-26 22:35:31 +01:00
szVolumeName,
sizeof(szVolumeName),
&dwSerialNumber,
&dwMaxFileNameLength,
&dwFileSystemFlags,
szFileSystemName,
sizeof(szFileSystemName)) == TRUE) {
return String::utf16((const char16_t *)szFileSystemName);
}
ERR_FAIL_V("");
}
2014-02-10 02:10:30 +01:00
DirAccessWindows::DirAccessWindows() {
p = memnew(DirAccessWindowsPrivate);
p->h = INVALID_HANDLE_VALUE;
current_dir = ".";
2014-02-10 02:10:30 +01:00
2016-11-02 21:57:35 +01:00
#ifdef UWP_ENABLED
Windows::Storage::StorageFolder ^ install_folder = Windows::ApplicationModel::Package::Current->InstalledLocation;
change_dir(install_folder->Path->Data());
#else
DWORD mask = GetLogicalDrives();
for (int i = 0; i < MAX_DRIVES; i++) {
if (mask & (1 << i)) { //DRIVE EXISTS
2014-02-10 02:10:30 +01:00
drives[drive_count] = 'A' + i;
2014-02-10 02:10:30 +01:00
drive_count++;
}
}
change_dir(".");
#endif
2014-02-10 02:10:30 +01:00
}
DirAccessWindows::~DirAccessWindows() {
memdelete(p);
2014-02-10 02:10:30 +01:00
}
#endif //windows DirAccess support