mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
c64cbf57d8
Fix #1649
300 lines
9.9 KiB
C
300 lines
9.9 KiB
C
#include "FFPlatform_private.h"
|
|
#include "common/io/io.h"
|
|
#include "common/library.h"
|
|
#include "util/stringUtils.h"
|
|
#include "util/windows/unicode.h"
|
|
#include "util/windows/registry.h"
|
|
#include "util/windows/nt.h"
|
|
|
|
#include <Windows.h>
|
|
#include <shlobj.h>
|
|
|
|
static void getExePath(FFPlatform* platform)
|
|
{
|
|
wchar_t exePathW[MAX_PATH];
|
|
DWORD exePathWLen = GetModuleFileNameW(NULL, exePathW, MAX_PATH);
|
|
if (exePathWLen == 0 && exePathWLen >= MAX_PATH) return;
|
|
|
|
FF_AUTO_CLOSE_FD HANDLE hPath = CreateFileW(exePathW, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
|
|
if (hPath != INVALID_HANDLE_VALUE)
|
|
{
|
|
DWORD len = GetFinalPathNameByHandleW(hPath, exePathW, MAX_PATH, FILE_NAME_OPENED);
|
|
if (len > 0 && len < MAX_PATH)
|
|
exePathWLen = len;
|
|
}
|
|
|
|
ffStrbufSetNWS(&platform->exePath, exePathWLen, exePathW);
|
|
if (ffStrbufStartsWithS(&platform->exePath, "\\\\?\\"))
|
|
ffStrbufSubstrAfter(&platform->exePath, 3);
|
|
ffStrbufReplaceAllC(&platform->exePath, '\\', '/');
|
|
}
|
|
|
|
static void getHomeDir(FFPlatform* platform)
|
|
{
|
|
PWSTR pPath = NULL;
|
|
if(SUCCEEDED(SHGetKnownFolderPath(&FOLDERID_Profile, KF_FLAG_DEFAULT, NULL, &pPath)))
|
|
{
|
|
ffStrbufSetWS(&platform->homeDir, pPath);
|
|
ffStrbufReplaceAllC(&platform->homeDir, '\\', '/');
|
|
ffStrbufEnsureEndsWithC(&platform->homeDir, '/');
|
|
}
|
|
else
|
|
{
|
|
ffStrbufSetS(&platform->homeDir, getenv("USERPROFILE"));
|
|
ffStrbufReplaceAllC(&platform->homeDir, '\\', '/');
|
|
ffStrbufEnsureEndsWithC(&platform->homeDir, '/');
|
|
}
|
|
CoTaskMemFree(pPath);
|
|
}
|
|
|
|
static void getCacheDir(FFPlatform* platform)
|
|
{
|
|
PWSTR pPath = NULL;
|
|
if(SUCCEEDED(SHGetKnownFolderPath(&FOLDERID_LocalAppData, KF_FLAG_DEFAULT, NULL, &pPath)))
|
|
{
|
|
ffStrbufSetWS(&platform->cacheDir, pPath);
|
|
ffStrbufReplaceAllC(&platform->cacheDir, '\\', '/');
|
|
ffStrbufEnsureEndsWithC(&platform->cacheDir, '/');
|
|
}
|
|
else
|
|
{
|
|
ffStrbufAppend(&platform->cacheDir, &platform->homeDir);
|
|
ffStrbufAppendS(&platform->cacheDir, "AppData/Local/");
|
|
}
|
|
CoTaskMemFree(pPath);
|
|
}
|
|
|
|
static void platformPathAddKnownFolder(FFlist* dirs, REFKNOWNFOLDERID folderId)
|
|
{
|
|
PWSTR pPath = NULL;
|
|
if(SUCCEEDED(SHGetKnownFolderPath(folderId, 0, NULL, &pPath)))
|
|
{
|
|
FF_STRBUF_AUTO_DESTROY buffer = ffStrbufCreateWS(pPath);
|
|
ffStrbufReplaceAllC(&buffer, '\\', '/');
|
|
ffStrbufEnsureEndsWithC(&buffer, '/');
|
|
if (!ffListContains(dirs, &buffer, (void*) ffStrbufEqual))
|
|
ffStrbufInitMove((FFstrbuf*) ffListAdd(dirs), &buffer);
|
|
}
|
|
CoTaskMemFree(pPath);
|
|
}
|
|
|
|
static void platformPathAddEnvSuffix(FFlist* dirs, const char* env, const char* suffix)
|
|
{
|
|
const char* value = getenv(env);
|
|
if(!ffStrSet(value))
|
|
return;
|
|
|
|
FF_STRBUF_AUTO_DESTROY buffer = ffStrbufCreateA(64);
|
|
ffStrbufAppendS(&buffer, value);
|
|
ffStrbufReplaceAllC(&buffer, '\\', '/');
|
|
ffStrbufEnsureEndsWithC(&buffer, '/');
|
|
if (suffix)
|
|
{
|
|
ffStrbufAppendS(&buffer, suffix);
|
|
ffStrbufEnsureEndsWithC(&buffer, '/');
|
|
}
|
|
|
|
if (ffPathExists(buffer.chars, FF_PATHTYPE_DIRECTORY) && !ffListContains(dirs, &buffer, (void*) ffStrbufEqual))
|
|
ffStrbufInitMove((FFstrbuf*) ffListAdd(dirs), &buffer);
|
|
}
|
|
|
|
static void getConfigDirs(FFPlatform* platform)
|
|
{
|
|
if(getenv("MSYSTEM"))
|
|
{
|
|
// We are in MSYS2 / Git Bash
|
|
platformPathAddEnvSuffix(&platform->configDirs, "HOME", ".config/");
|
|
platformPathAddEnvSuffix(&platform->configDirs, "HOME", NULL);
|
|
platformPathAddEnvSuffix(&platform->configDirs, "MINGW_PREFIX", "etc");
|
|
}
|
|
|
|
ffPlatformPathAddHome(&platform->configDirs, platform, ".config/");
|
|
platformPathAddKnownFolder(&platform->configDirs, &FOLDERID_ProgramData);
|
|
platformPathAddKnownFolder(&platform->configDirs, &FOLDERID_RoamingAppData);
|
|
platformPathAddKnownFolder(&platform->configDirs, &FOLDERID_LocalAppData);
|
|
ffPlatformPathAddHome(&platform->configDirs, platform, "");
|
|
}
|
|
|
|
static void getDataDirs(FFPlatform* platform)
|
|
{
|
|
if(getenv("MSYSTEM") && getenv("HOME"))
|
|
{
|
|
// We are in MSYS2 / Git Bash
|
|
platformPathAddEnvSuffix(&platform->dataDirs, "HOME", ".local/share/");
|
|
platformPathAddEnvSuffix(&platform->dataDirs, "HOME", NULL);
|
|
platformPathAddEnvSuffix(&platform->dataDirs, "MINGW_PREFIX", "share");
|
|
}
|
|
ffPlatformPathAddHome(&platform->dataDirs, platform, ".local/share/");
|
|
platformPathAddKnownFolder(&platform->dataDirs, &FOLDERID_ProgramData);
|
|
platformPathAddKnownFolder(&platform->dataDirs, &FOLDERID_RoamingAppData);
|
|
platformPathAddKnownFolder(&platform->dataDirs, &FOLDERID_LocalAppData);
|
|
ffPlatformPathAddHome(&platform->dataDirs, platform, "");
|
|
|
|
if (platform->exePath.length > 0)
|
|
{
|
|
// Add ${currentExePath}
|
|
FF_STRBUF_AUTO_DESTROY path = ffStrbufCreateCopy(&platform->exePath);
|
|
ffStrbufSubstrBeforeLastC(&path, '/');
|
|
ffPlatformPathAddAbsolute(&platform->dataDirs, path.chars);
|
|
}
|
|
}
|
|
|
|
static void getUserName(FFPlatform* platform)
|
|
{
|
|
const char* userName = getenv("USERNAME");
|
|
if (ffStrSet(userName))
|
|
ffStrbufSetS(&platform->userName, userName);
|
|
else
|
|
{
|
|
wchar_t buffer[128];
|
|
DWORD len = ARRAY_SIZE(buffer);
|
|
if(GetUserNameW(buffer, &len))
|
|
ffStrbufSetWS(&platform->userName, buffer);
|
|
}
|
|
}
|
|
|
|
static void getHostName(FFPlatform* platform)
|
|
{
|
|
wchar_t buffer[128];
|
|
DWORD len = ARRAY_SIZE(buffer);
|
|
if(GetComputerNameExW(ComputerNameDnsHostname, buffer, &len))
|
|
ffStrbufSetWS(&platform->hostName, buffer);
|
|
}
|
|
|
|
static void getUserShell(FFPlatform* platform)
|
|
{
|
|
// Works in MSYS2
|
|
ffStrbufAppendS(&platform->userShell, getenv("SHELL"));
|
|
ffStrbufReplaceAllC(&platform->userShell, '\\', '/');
|
|
}
|
|
|
|
static void detectWine(FFstrbuf* buf)
|
|
{
|
|
static const char *(__cdecl *pwine_get_version)(void);
|
|
HMODULE hntdll = GetModuleHandleW(L"ntdll.dll");
|
|
if (!hntdll) return;
|
|
pwine_get_version = (void *)GetProcAddress(hntdll, "wine_get_version");
|
|
if (!pwine_get_version) return;
|
|
ffStrbufAppendS(buf, buf->length ? " - wine " : "wine ");
|
|
ffStrbufAppendS(buf, pwine_get_version());
|
|
}
|
|
|
|
static void getSystemReleaseAndVersion(FFPlatformSysinfo* info)
|
|
{
|
|
RTL_OSVERSIONINFOW osVersion = { .dwOSVersionInfoSize = sizeof(osVersion) };
|
|
if (!NT_SUCCESS(RtlGetVersion(&osVersion)))
|
|
return;
|
|
|
|
FF_HKEY_AUTO_DESTROY hKey = NULL;
|
|
if(!ffRegOpenKeyForRead(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", &hKey, NULL))
|
|
return;
|
|
|
|
uint32_t ubr = 0;
|
|
ffRegReadUint(hKey, L"UBR", &ubr, NULL);
|
|
|
|
ffStrbufAppendF(&info->release,
|
|
"%u.%u.%u.%u",
|
|
(unsigned) osVersion.dwMajorVersion,
|
|
(unsigned) osVersion.dwMinorVersion,
|
|
(unsigned) osVersion.dwBuildNumber,
|
|
(unsigned) ubr);
|
|
|
|
ffStrbufInit(&info->displayVersion);
|
|
if(!ffRegReadStrbuf(hKey, L"DisplayVersion", &info->displayVersion, NULL))
|
|
{
|
|
if (osVersion.szCSDVersion[0])
|
|
ffStrbufSetWS(&info->displayVersion, osVersion.szCSDVersion);
|
|
else
|
|
ffRegReadStrbuf(hKey, L"ReleaseId", &info->displayVersion, NULL); // For old Windows 10
|
|
}
|
|
detectWine(&info->displayVersion);
|
|
|
|
ffRegReadStrbuf(hKey, L"BuildLabEx", &info->version, NULL);
|
|
|
|
switch (osVersion.dwPlatformId)
|
|
{
|
|
case VER_PLATFORM_WIN32s:
|
|
ffStrbufSetStatic(&info->name, "WIN32s");
|
|
break;
|
|
case VER_PLATFORM_WIN32_WINDOWS:
|
|
ffStrbufSetStatic(&info->name, "WIN32_WINDOWS");
|
|
break;
|
|
case VER_PLATFORM_WIN32_NT:
|
|
ffStrbufSetStatic(&info->name, "WIN32_NT");
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void getSystemArchitectureAndPageSize(FFPlatformSysinfo* info)
|
|
{
|
|
SYSTEM_INFO sysInfo;
|
|
GetNativeSystemInfo(&sysInfo);
|
|
|
|
switch(sysInfo.wProcessorArchitecture)
|
|
{
|
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
|
ffStrbufSetStatic(&info->architecture, "x86_64");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_IA64:
|
|
ffStrbufSetStatic(&info->architecture, "ia64");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_INTEL:
|
|
switch (sysInfo.wProcessorLevel)
|
|
{
|
|
case 4:
|
|
ffStrbufSetStatic(&info->architecture, "i486");
|
|
break;
|
|
case 5:
|
|
ffStrbufSetStatic(&info->architecture, "i586");
|
|
break;
|
|
case 6:
|
|
ffStrbufSetStatic(&info->architecture, "i686");
|
|
break;
|
|
default:
|
|
ffStrbufSetStatic(&info->architecture, "i386");
|
|
break;
|
|
}
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_ARM64:
|
|
ffStrbufSetStatic(&info->architecture, "aarch64");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_ARM:
|
|
ffStrbufSetStatic(&info->architecture, "arm");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_PPC:
|
|
ffStrbufSetStatic(&info->architecture, "ppc");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_MIPS:
|
|
ffStrbufSetStatic(&info->architecture, "mips");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_ALPHA:
|
|
ffStrbufSetStatic(&info->architecture, "alpha");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_ALPHA64:
|
|
ffStrbufSetStatic(&info->architecture, "alpha64");
|
|
break;
|
|
case PROCESSOR_ARCHITECTURE_UNKNOWN:
|
|
default:
|
|
ffStrbufSetStatic(&info->architecture, "unknown");
|
|
break;
|
|
}
|
|
|
|
info->pageSize = sysInfo.dwPageSize;
|
|
}
|
|
|
|
void ffPlatformInitImpl(FFPlatform* platform)
|
|
{
|
|
getExePath(platform);
|
|
getHomeDir(platform);
|
|
getCacheDir(platform);
|
|
getConfigDirs(platform);
|
|
getDataDirs(platform);
|
|
|
|
getUserName(platform);
|
|
getHostName(platform);
|
|
getUserShell(platform);
|
|
|
|
getSystemReleaseAndVersion(&platform->sysinfo);
|
|
getSystemArchitectureAndPageSize(&platform->sysinfo);
|
|
}
|