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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
/*
Copyright (C) 2012 Sebastian Herbord. All rights reserved.
This file is part of Mod Organizer.
Mod Organizer is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Mod Organizer is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
#include "util.h"
#include "../env.h"
#include "../mainwindow.h"
#include "windows_error.h"
#include <uibase/log.h>
#include <usvfs/usvfs.h>
#include <usvfs/usvfs_version.h>
using namespace MOBase;
namespace MOShared
{
bool FileExists(const std::string& filename)
{
DWORD dwAttrib = ::GetFileAttributesA(filename.c_str());
return (dwAttrib != INVALID_FILE_ATTRIBUTES);
}
bool FileExists(const std::wstring& filename)
{
DWORD dwAttrib = ::GetFileAttributesW(filename.c_str());
return (dwAttrib != INVALID_FILE_ATTRIBUTES);
}
bool FileExists(const std::wstring& searchPath, const std::wstring& filename)
{
std::wstringstream stream;
stream << searchPath << "\\" << filename;
return FileExists(stream.str());
}
std::string ToString(const std::wstring& source, bool utf8)
{
std::string result;
if (source.length() > 0) {
UINT codepage = CP_UTF8;
if (!utf8) {
codepage = AreFileApisANSI() ? GetACP() : GetOEMCP();
}
int sizeRequired = ::WideCharToMultiByte(codepage, 0, &source[0], -1, nullptr, 0,
nullptr, nullptr);
if (sizeRequired == 0) {
throw windows_error("failed to convert string to multibyte");
}
// the size returned by WideCharToMultiByte contains zero termination IF -1 is
// specified for the length. we don't want that \0 in the string because then the
// length field would be wrong. Because madness
result.resize(sizeRequired - 1, '\0');
::WideCharToMultiByte(codepage, 0, &source[0], (int)source.size(), &result[0],
sizeRequired, nullptr, nullptr);
}
return result;
}
std::wstring ToWString(const std::string& source, bool utf8)
{
std::wstring result;
if (source.length() > 0) {
UINT codepage = CP_UTF8;
if (!utf8) {
codepage = AreFileApisANSI() ? GetACP() : GetOEMCP();
}
int sizeRequired = ::MultiByteToWideChar(
codepage, 0, source.c_str(), static_cast<int>(source.length()), nullptr, 0);
if (sizeRequired == 0) {
throw windows_error("failed to convert string to wide character");
}
result.resize(sizeRequired, L'\0');
::MultiByteToWideChar(codepage, 0, source.c_str(),
static_cast<int>(source.length()), &result[0], sizeRequired);
}
return result;
}
static std::locale loc("");
static auto locToLowerW = [](wchar_t in) -> wchar_t {
return std::tolower(in, loc);
};
static auto locToLower = [](char in) -> char {
return std::tolower(in, loc);
};
std::string& ToLowerInPlace(std::string& text)
{
CharLowerBuffA(const_cast<CHAR*>(text.c_str()), static_cast<DWORD>(text.size()));
return text;
}
std::string ToLowerCopy(const std::string& text)
{
std::string result(text);
CharLowerBuffA(const_cast<CHAR*>(result.c_str()), static_cast<DWORD>(result.size()));
return result;
}
std::wstring& ToLowerInPlace(std::wstring& text)
{
CharLowerBuffW(const_cast<WCHAR*>(text.c_str()), static_cast<DWORD>(text.size()));
return text;
}
std::wstring ToLowerCopy(const std::wstring& text)
{
std::wstring result(text);
CharLowerBuffW(const_cast<WCHAR*>(result.c_str()), static_cast<DWORD>(result.size()));
return result;
}
std::wstring ToLowerCopy(std::wstring_view text)
{
std::wstring result(text.begin(), text.end());
ToLowerInPlace(result);
return result;
}
bool CaseInsenstiveComparePred(wchar_t lhs, wchar_t rhs)
{
return std::tolower(lhs, loc) == std::tolower(rhs, loc);
}
bool CaseInsensitiveEqual(const std::wstring& lhs, const std::wstring& rhs)
{
return (lhs.length() == rhs.length()) &&
std::equal(lhs.begin(), lhs.end(), rhs.begin(),
[](wchar_t lhs, wchar_t rhs) -> bool {
return std::tolower(lhs, loc) == std::tolower(rhs, loc);
});
}
VS_FIXEDFILEINFO GetFileVersion(const std::wstring& fileName)
{
DWORD handle = 0UL;
DWORD size = ::GetFileVersionInfoSizeW(fileName.c_str(), &handle);
if (size == 0) {
throw windows_error("failed to determine file version info size");
}
boost::scoped_array<char> buffer(new char[size]);
try {
handle = 0UL;
if (!::GetFileVersionInfoW(fileName.c_str(), handle, size, buffer.get())) {
throw windows_error("failed to determine file version info");
}
void* versionInfoPtr = nullptr;
UINT versionInfoLength = 0;
if (!::VerQueryValue(buffer.get(), L"\\", &versionInfoPtr, &versionInfoLength)) {
throw windows_error("failed to determine file version");
}
VS_FIXEDFILEINFO result = *(VS_FIXEDFILEINFO*)versionInfoPtr;
return result;
} catch (...) {
throw;
}
}
std::wstring GetFileVersionString(const std::wstring& fileName)
{
DWORD handle = 0UL;
DWORD size = ::GetFileVersionInfoSizeW(fileName.c_str(), &handle);
if (size == 0) {
throw windows_error("failed to determine file version info size");
}
boost::scoped_array<char> buffer(new char[size]);
try {
handle = 0UL;
if (!::GetFileVersionInfoW(fileName.c_str(), handle, size, buffer.get())) {
throw windows_error("failed to determine file version info");
}
LPVOID strBuffer = nullptr;
UINT strLength = 0;
if (!::VerQueryValue(buffer.get(), L"\\StringFileInfo\\040904B0\\ProductVersion",
&strBuffer, &strLength)) {
throw windows_error("failed to determine file version");
}
return std::wstring((LPCTSTR)strBuffer);
} catch (...) {
throw;
}
}
Version createVersionInfo()
{
VS_FIXEDFILEINFO version = GetFileVersion(env::thisProcessPath().native());
std::optional<Version::ReleaseType> releaseType;
if (version.dwFileFlags & VS_FF_PRERELEASE) {
// Pre-release builds need annotating
QString versionString =
QString::fromStdWString(GetFileVersionString(env::thisProcessPath().native()));
// The pre-release flag can be set without the string specifying what type of
// pre-release
bool noLetters = true;
for (QChar character : versionString) {
if (character.isLetter()) {
noLetters = false;
break;
}
}
if (!noLetters) {
// trust the string to make sense
return Version::parse(versionString, Version::ParseMode::MO2);
}
if (noLetters) {
// default to development when release type is unspecified
releaseType = Version::Development;
} else {
}
}
const int major = version.dwFileVersionMS >> 16,
minor = version.dwFileVersionMS & 0xFFFF,
patch = version.dwFileVersionLS >> 16,
subpatch = version.dwFileVersionLS & 0xFFFF;
std::vector<std::variant<int, Version::ReleaseType>> prereleases;
if (releaseType) {
prereleases.push_back(*releaseType);
}
return Version(major, minor, patch, subpatch, std::move(prereleases));
}
QString getUsvfsDLLVersion()
{
QString s = usvfsVersionString();
if (s.isEmpty()) {
s = "?";
}
return s;
}
QString getUsvfsVersionString()
{
const QString dll = getUsvfsDLLVersion();
const QString header = USVFS_VERSION_STRING;
QString usvfsVersion;
if (dll == header) {
return dll;
} else {
return "dll is " + dll + ", compiled against " + header;
}
}
void SetThisThreadName(const QString& s)
{
using SetThreadDescriptionType = HRESULT(HANDLE hThread, PCWSTR lpThreadDescription);
static SetThreadDescriptionType* SetThreadDescription = [] {
SetThreadDescriptionType* p = nullptr;
env::LibraryPtr kernel32(LoadLibraryW(L"kernel32.dll"));
if (!kernel32) {
return p;
}
p = reinterpret_cast<SetThreadDescriptionType*>(
GetProcAddress(kernel32.get(), "SetThreadDescription"));
return p;
}();
if (SetThreadDescription) {
SetThreadDescription(GetCurrentThread(), s.toStdWString().c_str());
}
}
char shortcutChar(const QAction* a)
{
const auto text = a->text();
char shortcut = 0;
for (int i = 0; i < text.size(); ++i) {
const auto c = text[i];
if (c == '&') {
if (i >= (text.size() - 1)) {
log::error("ampersand at the end");
return 0;
}
return text[i + 1].toLatin1();
}
}
log::error("action {} has no shortcut", text);
return 0;
}
void checkDuplicateShortcuts(const QMenu& m)
{
const auto actions = m.actions();
for (int i = 0; i < actions.size(); ++i) {
const auto* action1 = actions[i];
if (action1->isSeparator()) {
continue;
}
const char shortcut1 = shortcutChar(action1);
if (shortcut1 == 0) {
continue;
}
for (int j = i + 1; j < actions.size(); ++j) {
const auto* action2 = actions[j];
if (action2->isSeparator()) {
continue;
}
const char shortcut2 = shortcutChar(action2);
if (shortcut1 == shortcut2) {
log::error("duplicate shortcut {} for {} and {}", shortcut1, action1->text(),
action2->text());
break;
}
}
}
}
} // namespace MOShared
static bool g_exiting = false;
static bool g_canClose = false;
MainWindow* findMainWindow()
{
for (auto* tl : qApp->topLevelWidgets()) {
if (auto* mw = dynamic_cast<MainWindow*>(tl)) {
return mw;
}
}
return nullptr;
}
bool ExitModOrganizer(ExitFlags e)
{
if (g_exiting) {
return true;
}
g_exiting = true;
Guard g([&] {
g_exiting = false;
});
if (!e.testFlag(Exit::Force)) {
if (auto* mw = findMainWindow()) {
if (!mw->canExit()) {
return false;
}
}
}
g_canClose = true;
const int code = (e.testFlag(Exit::Restart) ? RestartExitCode : 0);
qApp->exit(code);
return true;
}
bool ModOrganizerCanCloseNow()
{
return g_canClose;
}
bool ModOrganizerExiting()
{
return g_exiting;
}
void ResetExitFlag()
{
g_exiting = false;
}
bool isNxmLink(const QString& link)
{
return link.startsWith("nxm://", Qt::CaseInsensitive);
}
|