Add missing members to platform_win.cpp

Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
Osyotr 2024-03-18 01:34:18 +03:00 committed by Alexander Borsuk
parent 492b82deff
commit 7658dacca0

View file

@ -1,4 +1,5 @@
#include "platform/platform.hpp"
#include "platform/socket.hpp"
#include "base/file_name_utils.hpp"
#include "base/scope_guard.hpp"
@ -45,6 +46,14 @@ static bool GetPathToBinary(string & outPath)
return false;
}
namespace platform
{
std::unique_ptr<Socket> CreateSocket()
{
return std::unique_ptr<Socket>();
}
} // namespace platform
Platform::Platform()
{
string path;
@ -159,6 +168,12 @@ Platform::ChargingStatus Platform::GetChargingStatus()
return Platform::ChargingStatus::Plugged;
}
uint8_t Platform::GetBatteryLevel()
{
// This value is always 100 for desktop.
return 100;
}
Platform::TStorageStatus Platform::GetWritableStorageStatus(uint64_t neededSize) const
{
ULARGE_INTEGER freeSpace;
@ -194,3 +209,54 @@ bool Platform::GetFileSizeByFullPath(string const & filePath, uint64_t & size)
}
return false;
}
namespace
{
enum class FileTimeType { Creation, Modification };
time_t GetFileTime(std::string const & path, FileTimeType fileTimeType)
{
HANDLE hFile = CreateFileA(path.c_str(), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
if (hFile == INVALID_HANDLE_VALUE)
return 0;
SCOPE_GUARD(autoClose, bind(&CloseHandle, hFile));
FILETIME ft;
FILETIME * ftCreate = nullptr;
FILETIME * ftLastWrite = nullptr;
switch (fileTimeType)
{
case FileTimeType::Creation:
ftCreate = &ft;
break;
case FileTimeType::Modification:
ftLastWrite = &ft;
break;
}
if (!GetFileTime(hFile, ftCreate, nullptr, ftLastWrite))
return 0;
ULARGE_INTEGER ull;
ull.LowPart = ft.dwLowDateTime;
ull.HighPart = ft.dwHighDateTime;
return static_cast<time_t>(ull.QuadPart / 10000000ULL - 11644473600ULL);
}
}
// static
time_t Platform::GetFileCreationTime(std::string const & path)
{
return GetFileTime(path, FileTimeType::Creation);
}
// static
time_t Platform::GetFileModificationTime(std::string const & path)
{
return GetFileTime(path, FileTimeType::Modification);
}
void Platform::GetSystemFontNames(FilesList & res) const
{
}