diff --git a/platform/platform_win.cpp b/platform/platform_win.cpp index 7aaf339020..574ba3b1e8 100644 --- a/platform/platform_win.cpp +++ b/platform/platform_win.cpp @@ -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 CreateSocket() +{ + return std::unique_ptr(); +} +} // 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(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 +{ +}