forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform_win.cpp
262 lines (223 loc) · 6.19 KB
/
platform_win.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#include "platform/platform.hpp"
#include "platform/socket.hpp"
#include "base/file_name_utils.hpp"
#include "base/scope_guard.hpp"
#include "base/logging.hpp"
#include "coding/file_writer.hpp"
#include "std/windows.hpp"
#include <functional>
#include <direct.h>
#include <shlobj.h>
#include <shlwapi.h>
#include <sys/stat.h>
#include <sys/types.h>
using namespace std;
static bool GetUserWritableDir(string & outDir)
{
char pathBuf[MAX_PATH] = {0};
if (SUCCEEDED(::SHGetFolderPathA(NULL, CSIDL_LOCAL_APPDATA | CSIDL_FLAG_CREATE, NULL, SHGFP_TYPE_CURRENT, pathBuf)))
{
outDir = pathBuf;
::CreateDirectoryA(outDir.c_str(), NULL);
outDir += "\\OrganicMaps\\";
::CreateDirectoryA(outDir.c_str(), NULL);
return true;
}
return false;
}
/// @return Full path to the executable file
static bool GetPathToBinary(string & outPath)
{
// get path to executable
char pathBuf[MAX_PATH] = {0};
if (0 < ::GetModuleFileNameA(NULL, pathBuf, MAX_PATH))
{
outPath = pathBuf;
return true;
}
return false;
}
namespace platform
{
std::unique_ptr<Socket> CreateSocket()
{
return std::unique_ptr<Socket>();
}
} // namespace platform
Platform::Platform()
{
string path;
CHECK(GetPathToBinary(path), ("Can't get path to binary"));
// resources path:
// 1. try to use data folder in the same path as executable
// 2. if not found, try to use ..\..\..\data (for development only)
path.erase(path.find_last_of('\\'));
if (IsFileExistsByFullPath(path + "\\data\\"))
m_resourcesDir = path + "\\data\\";
else
{
#ifndef RELEASE
path.erase(path.find_last_of('\\'));
path.erase(path.find_last_of('\\'));
if (IsFileExistsByFullPath(path + "\\data\\"))
m_resourcesDir = path + "\\data\\";
#else
CHECK(false, ("Can't find resources directory"));
#endif
}
// writable path:
// 1. the same as resources if we have write access to this folder
// 2. otherwise, use system-specific folder
string const tmpFilePath = base::JoinPath(m_resourcesDir, "mapswithmetmptestfile");
try
{
FileWriter tmpfile(tmpFilePath);
tmpfile.Write("Hi from Alex!", 13);
m_writableDir = m_resourcesDir;
}
catch (RootException const &)
{
CHECK(GetUserWritableDir(m_writableDir), ("Can't get writable directory"));
}
FileWriter::DeleteFileX(tmpFilePath);
m_settingsDir = m_writableDir;
char pathBuf[MAX_PATH] = {0};
GetTempPathA(MAX_PATH, pathBuf);
m_tmpDir = pathBuf;
m_guiThread = std::make_unique<platform::GuiThread>();
LOG(LINFO, ("Resources Directory:", m_resourcesDir));
LOG(LINFO, ("Writable Directory:", m_writableDir));
LOG(LINFO, ("Tmp Directory:", m_tmpDir));
LOG(LINFO, ("Settings Directory:", m_settingsDir));
}
bool Platform::IsFileExistsByFullPath(string const & filePath)
{
return ::GetFileAttributesA(filePath.c_str()) != INVALID_FILE_ATTRIBUTES;
}
//static
void Platform::DisableBackupForFile(string const & filePath) {}
// static
string Platform::GetCurrentWorkingDirectory() noexcept
{
char path[MAX_PATH];
char const * const dir = getcwd(path, MAX_PATH);
if (dir == nullptr)
return {};
return dir;
}
// static
Platform::EError Platform::RmDir(string const & dirName)
{
if (_rmdir(dirName.c_str()) != 0)
return ErrnoToError();
return ERR_OK;
}
// static
Platform::EError Platform::GetFileType(string const & path, EFileType & type)
{
struct _stat32 stats;
if (_stat32(path.c_str(), &stats) != 0)
return ErrnoToError();
if (stats.st_mode & _S_IFREG)
type = EFileType::Regular;
else if (stats.st_mode & _S_IFDIR)
type = EFileType::Directory;
else
type = EFileType::Unknown;
return ERR_OK;
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
Platform::EConnectionType Platform::ConnectionStatus()
{
// @TODO Add implementation
return EConnectionType::CONNECTION_NONE;
}
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;
if (0 == ::GetDiskFreeSpaceExA(m_writableDir.c_str(), &freeSpace, NULL, NULL))
{
LOG(LWARNING, ("GetDiskFreeSpaceEx failed with error", GetLastError()));
return STORAGE_DISCONNECTED;
}
if (freeSpace.u.LowPart + (static_cast<uint64_t>(freeSpace.u.HighPart) << 32) < neededSize)
return NOT_ENOUGH_SPACE;
return STORAGE_OK;
}
bool Platform::IsDirectoryEmpty(string const & directory)
{
return PathIsDirectoryEmptyA(directory.c_str());
}
bool Platform::GetFileSizeByFullPath(string const & filePath, uint64_t & size)
{
HANDLE hFile = CreateFileA(filePath.c_str(), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile != INVALID_HANDLE_VALUE)
{
SCOPE_GUARD(autoClose, bind(&CloseHandle, hFile));
LARGE_INTEGER fileSize;
if (0 != GetFileSizeEx(hFile, &fileSize))
{
size = fileSize.QuadPart;
return true;
}
}
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
{
}