-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibXPUInfo_Util.cpp
138 lines (117 loc) · 3.42 KB
/
LibXPUInfo_Util.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
// Copyright (C) 2024 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
// These contents may have been developed with support from one or more Intel-operated generative artificial intelligence solutions
#ifndef _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
#endif
#include "LibXPUInfo.h"
#include <locale>
#include <codecvt>
#include <cwctype>
namespace XI
{
XPUINFO_EXPORT std::string convert(const std::wstring& wstr)
{
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
return converter.to_bytes(wstr);
}
XPUINFO_EXPORT std::wstring convert(const std::string& str)
{
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
return converter.from_bytes(str);
}
std::string toLower(const std::string& s)
{
std::string data;
data.resize(s.size());
for (size_t i = 0; i < s.size(); ++i)
{
data[i] = static_cast<char>(std::tolower(s.data()[i]));
}
return data;
}
std::wstring toLower(const std::wstring& s)
{
std::wstring data;
data.resize(s.size());
for (size_t i = 0; i < s.size(); ++i)
{
data[i] = std::towlower(s.data()[i]);
}
return data;
}
#ifdef _WIN32
namespace Win
{
String GetLastErrorStr(DWORD dwErr)
{
String errStr;
// Retrieve the system error message for the last-error code
LPVOID lpMsgBuf;
FormatMessageA(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr,
dwErr,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPSTR)&lpMsgBuf,
0, nullptr);
errStr = (LPCSTR)lpMsgBuf; // Copy
LocalFree(lpMsgBuf);
return errStr;
}
#pragma comment(lib, "version.lib")
// Copilot: write function to get dll version, modified for std::optional
std::optional<RuntimeVersion> GetDllVersion(const std::string& filePath) {
RuntimeVersion versionInfo;
DWORD handle = 0;
DWORD size = GetFileVersionInfoSizeA(filePath.c_str(), &handle);
if (size == 0) {
return std::nullopt;
}
std::vector<char> buffer(size);
if (!GetFileVersionInfoA(filePath.c_str(), handle, size, buffer.data())) {
return std::nullopt;
}
void* verInfo = nullptr;
UINT verInfoSize = 0;
if (VerQueryValueA(buffer.data(), "\\", &verInfo, &verInfoSize) && verInfoSize >= sizeof(VS_FIXEDFILEINFO)) {
VS_FIXEDFILEINFO* fileInfo = static_cast<VS_FIXEDFILEINFO*>(verInfo);
versionInfo.major = HIWORD(fileInfo->dwProductVersionMS);
versionInfo.minor = LOWORD(fileInfo->dwProductVersionMS);
versionInfo.build = HIWORD(fileInfo->dwProductVersionLS);
}
if ((verInfoSize >= sizeof(VS_FIXEDFILEINFO)) &&
VerQueryValueA(buffer.data(), "\\StringFileInfo\\040904E4\\ProductVersion", &verInfo, &verInfoSize)) {
versionInfo.productVersion = std::string(static_cast<char*>(verInfo), verInfoSize - 1);
}
return versionInfo;
}
bool GetVersionFromFile(const String& filePath, RuntimeVersion& fileVer)
{
auto rval = GetDllVersion(filePath);
if (rval.has_value())
{
fileVer = std::move(rval.value());
return true;
}
return false;
}
XPUINFO_EXPORT std::string getDateString(const FILETIME& ft)
{
SYSTEMTIME stime;
FileTimeToSystemTime(&ft, &stime);
std::string dateStr;
const char fmt[] = "yyyy-MM-dd";
int rval = GetDateFormatA(LOCALE_INVARIANT, 0, &stime, fmt, nullptr, 0);
if (rval)
{
dateStr.resize(rval - 1); // Don't include null terminator
rval = GetDateFormatA(LOCALE_INVARIANT, 0, &stime, fmt, dateStr.data(), rval);
}
return dateStr;
}
} // Win
#endif // _WIN32
} // XI