Files
fastfetch/src/common/impl/io_windows.c
T

398 lines
12 KiB
C
Raw Normal View History

2026-01-06 09:48:38 +08:00
#include "common/io.h"
#include "fastfetch.h"
2026-01-06 09:48:38 +08:00
#include "common/stringUtils.h"
2023-07-26 10:27:40 +08:00
#include <windows.h>
2026-01-06 09:48:38 +08:00
#include "common/windows/nt.h"
#include <ntstatus.h>
2023-07-26 10:27:40 +08:00
static void createSubfolders(const char* fileName)
{
FF_STRBUF_AUTO_DESTROY path = ffStrbufCreate();
2023-11-27 16:02:22 +09:00
char *token = NULL;
while((token = strchr(fileName, '/')) != NULL)
{
2023-11-27 16:02:22 +09:00
ffStrbufAppendNS(&path, (uint32_t)(token - fileName + 1), fileName);
CreateDirectoryA(path.chars, NULL);
fileName = token + 1;
}
}
bool ffWriteFileData(const char* fileName, size_t dataSize, const void* data)
{
2023-02-23 13:58:39 +08:00
HANDLE FF_AUTO_CLOSE_FD handle = CreateFileA(fileName, GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (handle == INVALID_HANDLE_VALUE)
{
if (GetLastError() == ERROR_PATH_NOT_FOUND)
{
createSubfolders(fileName);
handle = CreateFileA(fileName, GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (handle == INVALID_HANDLE_VALUE)
return false;
}
else
return false;
}
DWORD written;
2023-02-23 13:58:39 +08:00
return !!WriteFile(handle, data, (DWORD)dataSize, &written, NULL);
}
2023-12-22 16:04:56 +09:00
static inline void readWithLength(HANDLE handle, FFstrbuf* buffer, uint32_t length)
{
ffStrbufEnsureFree(buffer, length);
DWORD bytesRead = 0;
2023-12-22 16:04:56 +09:00
while(
length > 0 &&
ReadFile(handle, buffer->chars + buffer->length, length, &bytesRead, NULL) != FALSE &&
bytesRead > 0
) {
buffer->length += (uint32_t) bytesRead;
length -= (uint32_t) bytesRead;
}
2023-12-22 16:04:56 +09:00
}
2023-12-22 16:04:56 +09:00
static inline void readUntilEOF(HANDLE handle, FFstrbuf* buffer)
{
ffStrbufEnsureFree(buffer, 31);
uint32_t available = ffStrbufGetFree(buffer);
DWORD bytesRead = 0;
while(
2023-12-22 16:04:56 +09:00
ReadFile(handle, buffer->chars + buffer->length, available, &bytesRead, NULL) != FALSE &&
bytesRead > 0
) {
buffer->length += (uint32_t) bytesRead;
2023-12-22 16:04:56 +09:00
if((uint32_t) bytesRead == available)
2023-09-02 10:04:57 -04:00
ffStrbufEnsureFree(buffer, buffer->allocated - 1); // Doubles capacity every round. -1 for the null byte.
2023-12-22 16:04:56 +09:00
available = ffStrbufGetFree(buffer);
}
2023-12-22 16:04:56 +09:00
}
2023-12-22 16:04:56 +09:00
bool ffAppendFDBuffer(HANDLE handle, FFstrbuf* buffer)
{
LARGE_INTEGER fileSize;
if(!GetFileSizeEx(handle, &fileSize))
fileSize.QuadPart = 0;
if (fileSize.QuadPart > 0)
readWithLength(handle, buffer, (uint32_t)fileSize.QuadPart);
else
readUntilEOF(handle, buffer);
2023-12-22 16:04:56 +09:00
buffer->chars[buffer->length] = '\0';
2023-12-22 16:04:56 +09:00
return buffer->length > 0;
}
ssize_t ffReadFileData(const char* fileName, size_t dataSize, void* data)
{
2023-02-23 13:58:39 +08:00
HANDLE FF_AUTO_CLOSE_FD handle = CreateFileA(fileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if(handle == INVALID_HANDLE_VALUE)
return -1;
2023-02-23 13:58:39 +08:00
return ffReadFDData(handle, dataSize, data);
}
bool ffAppendFileBuffer(const char* fileName, FFstrbuf* buffer)
{
2023-02-23 13:58:39 +08:00
HANDLE FF_AUTO_CLOSE_FD handle = CreateFileA(fileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if(handle == INVALID_HANDLE_VALUE)
return false;
2023-02-23 13:58:39 +08:00
return ffAppendFDBuffer(handle, buffer);
}
2025-12-09 14:37:57 +08:00
HANDLE openatW(HANDLE dfd, const wchar_t* fileName, uint16_t fileNameLen, bool directory)
{
2025-12-09 14:37:57 +08:00
assert(fileNameLen <= 0x7FFF);
HANDLE hFile;
IO_STATUS_BLOCK iosb = {};
2025-12-09 14:37:57 +08:00
if(!NT_SUCCESS(NtOpenFile(&hFile,
(directory ? FILE_LIST_DIRECTORY | FILE_TRAVERSE : FILE_READ_DATA | FILE_READ_EA) | FILE_READ_ATTRIBUTES | SYNCHRONIZE, &(OBJECT_ATTRIBUTES) {
.Length = sizeof(OBJECT_ATTRIBUTES),
.RootDirectory = dfd,
.ObjectName = &(UNICODE_STRING) {
.Buffer = (PWSTR) fileName,
.Length = fileNameLen * (USHORT) sizeof(wchar_t),
.MaximumLength = (fileNameLen + 1) * (USHORT) sizeof(wchar_t),
},
.Attributes = OBJ_CASE_INSENSITIVE,
},
&iosb,
FILE_SHARE_READ | (directory ? FILE_SHARE_WRITE | FILE_SHARE_DELETE : 0),
FILE_SYNCHRONOUS_IO_NONALERT | (directory ? FILE_DIRECTORY_FILE : FILE_NON_DIRECTORY_FILE)
)))
2024-10-12 10:41:58 +08:00
return INVALID_HANDLE_VALUE;
return hFile;
}
2025-12-09 14:37:57 +08:00
HANDLE openat(HANDLE dfd, const char* fileName, bool directory)
{
wchar_t fileNameW[MAX_PATH];
ULONG len;
if (!NT_SUCCESS(RtlUTF8ToUnicodeN(fileNameW, (ULONG) sizeof(fileNameW), &len, fileName, (ULONG)strlen(fileName) + 1)))
return INVALID_HANDLE_VALUE;
// Implies `fileNameW[len] = L'\0';` and `len` includes the null terminator
len /= sizeof(wchar_t); // convert from bytes to characters
2025-12-09 14:37:57 +08:00
for (uint32_t i = 0; i < len - 1; ++i)
2025-12-09 14:37:57 +08:00
{
if (fileNameW[i] == L'/')
fileNameW[i] = L'\\';
}
return openatW(dfd, fileNameW, (uint16_t)(len - 1), directory);
}
2024-10-12 10:41:58 +08:00
bool ffAppendFileBufferRelative(HANDLE dfd, const char* fileName, FFstrbuf* buffer)
{
2024-10-12 19:44:30 +08:00
HANDLE FF_AUTO_CLOSE_FD fd = openat(dfd, fileName, false);
2024-10-12 10:41:58 +08:00
if(fd == INVALID_HANDLE_VALUE)
return false;
2024-10-12 10:41:58 +08:00
return ffAppendFDBuffer(fd, buffer);
}
2024-10-12 19:44:30 +08:00
ssize_t ffReadFileDataRelative(HANDLE dfd, const char* fileName, size_t dataSize, void* data)
2024-10-12 10:41:58 +08:00
{
2024-10-12 19:44:30 +08:00
HANDLE FF_AUTO_CLOSE_FD fd = openat(dfd, fileName, false);
2024-10-12 10:41:58 +08:00
if(fd == INVALID_HANDLE_VALUE)
return -1;
return ffReadFDData(fd, dataSize, data);
}
bool ffPathExpandEnv(const char* in, FFstrbuf* out)
{
2025-04-07 16:43:36 +08:00
if (in[0] == '~') {
if ((in[1] == '/' || in[1] == '\\' || in[1] == '\0') && !ffStrContainsC(in, '%')) {
ffStrbufSet(out, &instance.state.platform.homeDir);
ffStrbufAppendS(out, in + 1);
return true;
}
}
DWORD length = ExpandEnvironmentStringsA(in, NULL, 0);
if (length <= 1) return false;
ffStrbufClear(out);
ffStrbufEnsureFree(out, (uint32_t)length);
ExpandEnvironmentStringsA(in, out->chars, length);
out->length = (uint32_t)length - 1;
return true;
}
2023-02-11 12:34:57 +08:00
bool ffSuppressIO(bool suppress)
{
2025-03-23 21:56:32 +08:00
#ifndef NDEBUG
if (instance.config.display.debugMode)
return false;
#endif
2024-06-26 13:50:42 +08:00
static bool init = false;
static HANDLE hOrigOut = INVALID_HANDLE_VALUE;
static HANDLE hOrigErr = INVALID_HANDLE_VALUE;
HANDLE hNullFile = ffGetNullFD();
2024-06-26 13:50:42 +08:00
static int fOrigOut = -1;
static int fOrigErr = -1;
static int fNullFile = -1;
if (!init)
{
if(!suppress)
return true;
hOrigOut = GetStdHandle(STD_OUTPUT_HANDLE);
hOrigErr = GetStdHandle(STD_ERROR_HANDLE);
fOrigOut = _dup(STDOUT_FILENO);
fOrigErr = _dup(STDERR_FILENO);
fNullFile = _open_osfhandle((intptr_t) hNullFile, 0);
init = true;
}
if (hNullFile == INVALID_HANDLE_VALUE || fNullFile == -1)
return false;
fflush(stdout);
fflush(stderr);
SetStdHandle(STD_OUTPUT_HANDLE, suppress ? hNullFile : hOrigOut);
SetStdHandle(STD_ERROR_HANDLE, suppress ? hNullFile : hOrigErr);
_dup2(suppress ? fNullFile : fOrigOut, STDOUT_FILENO);
_dup2(suppress ? fNullFile : fOrigErr, STDERR_FILENO);
return true;
}
2023-01-28 17:19:45 +01:00
2023-11-13 16:41:10 +08:00
void listFilesRecursively(uint32_t baseLength, FFstrbuf* folder, uint8_t indentation, const char* folderName, bool pretty)
2023-01-28 17:19:45 +01:00
{
uint32_t folderLength = folder->length;
2023-11-13 16:41:10 +08:00
if(pretty && folderName != NULL)
{
for(uint8_t i = 0; i < indentation - 1; i++)
fputs(" | ", stdout);
2023-01-28 17:19:45 +01:00
printf("%s/\n", folderName);
2023-11-13 16:41:10 +08:00
}
2023-01-28 17:19:45 +01:00
ffStrbufAppendC(folder, '*');
WIN32_FIND_DATAA entry;
HANDLE hFind = FindFirstFileA(folder->chars, &entry);
2023-11-13 16:41:10 +08:00
ffStrbufTrimRight(folder, '*');
2023-01-28 17:19:45 +01:00
if(hFind == INVALID_HANDLE_VALUE)
return;
do
{
if (entry.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
if(ffStrEquals(entry.cFileName, ".") || ffStrEquals(entry.cFileName, ".."))
2023-01-28 17:19:45 +01:00
continue;
ffStrbufSubstrBefore(folder, folderLength);
ffStrbufAppendS(folder, entry.cFileName);
ffStrbufAppendC(folder, '/');
2023-11-13 16:41:10 +08:00
listFilesRecursively(baseLength, folder, (uint8_t) (indentation + 1), entry.cFileName, pretty);
2023-01-28 17:19:45 +01:00
ffStrbufSubstrBefore(folder, folderLength);
continue;
}
2023-11-13 16:41:10 +08:00
if (pretty)
{
for(uint8_t i = 0; i < indentation; i++)
fputs(" | ", stdout);
}
else
{
fputs(folder->chars + baseLength, stdout);
}
2023-01-28 17:19:45 +01:00
puts(entry.cFileName);
} while (FindNextFileA(hFind, &entry));
FindClose(hFind);
}
2023-11-13 16:41:10 +08:00
void ffListFilesRecursively(const char* path, bool pretty)
2023-01-28 17:19:45 +01:00
{
FF_STRBUF_AUTO_DESTROY folder = ffStrbufCreateS(path);
2023-01-28 17:19:45 +01:00
ffStrbufEnsureEndsWithC(&folder, '/');
2023-11-13 16:41:10 +08:00
listFilesRecursively(folder.length, &folder, 0, NULL, pretty);
2023-01-28 17:19:45 +01:00
}
2023-07-26 10:27:40 +08:00
const char* ffGetTerminalResponse(const char* request, int nParams, const char* format, ...)
2023-07-26 10:27:40 +08:00
{
HANDLE hInput = GetStdHandle(STD_INPUT_HANDLE);
FF_AUTO_CLOSE_FD HANDLE hConin = INVALID_HANDLE_VALUE;
DWORD inputMode;
if (!GetConsoleMode(hInput, &inputMode))
{
hConin = CreateFileW(L"CONIN$", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, 0, OPEN_EXISTING, 0, NULL);
hInput = hConin;
}
2023-07-26 10:27:40 +08:00
SetConsoleMode(hInput, 0);
FlushConsoleInputBuffer(hInput);
{
DWORD bytes = 0;
HANDLE hOutput = GetStdHandle(STD_OUTPUT_HANDLE);
FF_AUTO_CLOSE_FD HANDLE hConout = INVALID_HANDLE_VALUE;
DWORD outputMode;
if (!GetConsoleMode(hOutput, &outputMode))
{
hConout = CreateFileW(L"CONOUT$", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_WRITE, 0, OPEN_EXISTING, 0, NULL);
hOutput = hConout;
}
WriteFile(hOutput, request, (DWORD) strlen(request), &bytes, NULL);
}
2023-07-26 10:27:40 +08:00
while (true)
{
if (WaitForSingleObjectEx(hInput, FF_IO_TERM_RESP_WAIT_MS, TRUE) != WAIT_OBJECT_0)
2023-07-26 10:27:40 +08:00
{
SetConsoleMode(hInput, inputMode);
2023-07-26 10:27:40 +08:00
return "WaitForSingleObject() failed or timeout";
}
// Ignore all unexpected input events
INPUT_RECORD record;
DWORD len = 0;
if (!PeekConsoleInputW(hInput, &record, 1, &len))
break;
if (
record.EventType == KEY_EVENT &&
record.Event.KeyEvent.uChar.UnicodeChar != L'\r' &&
record.Event.KeyEvent.uChar.UnicodeChar != L'\n'
)
break;
else
ReadConsoleInputW(hInput, &record, 1, &len);
}
va_list args;
va_start(args, format);
2023-07-26 10:27:40 +08:00
char buffer[1024];
uint32_t bytesRead = 0;
2023-07-26 10:27:40 +08:00
while (true)
{
DWORD bytes = 0;
if (!ReadFile(hInput, buffer, sizeof(buffer) - 1, &bytes, NULL) || bytes == 0)
2024-10-04 16:57:12 +08:00
{
va_end(args);
return "ReadFile() failed";
2024-10-04 16:57:12 +08:00
}
2023-07-26 10:27:40 +08:00
bytesRead += bytes;
buffer[bytesRead] = '\0';
2024-10-06 09:29:54 +08:00
va_list cargs;
va_copy(cargs, args);
int ret = vsscanf(buffer, format, args);
2024-10-06 09:29:54 +08:00
va_end(cargs);
if (ret <= 0)
2024-10-04 16:57:12 +08:00
{
va_end(args);
return "vsscanf(buffer, format, args) failed";
2024-10-04 16:57:12 +08:00
}
if (ret >= nParams)
break;
}
SetConsoleMode(hInput, inputMode);
2023-07-26 10:27:40 +08:00
va_end(args);
return NULL;
}
FFNativeFD ffGetNullFD(void)
{
static FFNativeFD hNullFile = INVALID_HANDLE_VALUE;
if (hNullFile != INVALID_HANDLE_VALUE)
return hNullFile;
hNullFile = CreateFileW(
L"NUL",
GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_WRITE,
0,
OPEN_EXISTING,
0,
&(SECURITY_ATTRIBUTES){
.nLength = sizeof(SECURITY_ATTRIBUTES),
.lpSecurityDescriptor = NULL,
.bInheritHandle = TRUE,
});
return hNullFile;
}
bool ffRemoveFile(const char* fileName)
{
return DeleteFileA(fileName) != FALSE;
}