forked from microsoft/winget-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExports.cpp
More file actions
277 lines (224 loc) · 8.66 KB
/
Copy pathExports.cpp
File metadata and controls
277 lines (224 loc) · 8.66 KB
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "pch.h"
#include "WinGetUtil.h"
#include <AppInstallerDownloader.h>
#include <AppInstallerFileLogger.h>
#include <AppInstallerLogging.h>
#include <AppInstallerStrings.h>
#include <AppInstallerTelemetry.h>
#include <Microsoft/SQLiteIndex.h>
#include <winget/ManifestYamlParser.h>
using namespace AppInstaller::Utility;
using namespace AppInstaller::Manifest;
using namespace AppInstaller::Repository::Microsoft;
extern "C"
{
WINGET_UTIL_API WinGetLoggingInit(WINGET_STRING logPath) try
{
THROW_HR_IF(E_INVALIDARG, !logPath);
static std::once_flag s_initLogging;
std::call_once(s_initLogging, []() {
// Enable all logs for now.
AppInstaller::Logging::Log().EnableChannel(AppInstaller::Logging::Channel::All);
AppInstaller::Logging::Log().SetLevel(AppInstaller::Logging::Level::Verbose);
AppInstaller::Logging::EnableWilFailureTelemetry();
});
std::filesystem::path pathAsPath = logPath;
std::string loggerName = AppInstaller::Logging::FileLogger::GetNameForPath(pathAsPath);
if (!AppInstaller::Logging::Log().ContainsLogger(loggerName))
{
AppInstaller::Logging::AddFileLogger(pathAsPath);
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetLoggingTerm(WINGET_STRING logPath) try
{
if (logPath)
{
std::string loggerName = AppInstaller::Logging::FileLogger::GetNameForPath(logPath);
(void)AppInstaller::Logging::Log().RemoveLogger(loggerName);
}
else
{
AppInstaller::Logging::Log().RemoveAllLoggers();
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexCreate(WINGET_STRING filePath, UINT32 majorVersion, UINT32 minorVersion, WINGET_SQLITE_INDEX_HANDLE* index) try
{
THROW_HR_IF(E_INVALIDARG, !filePath);
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !!*index);
std::string filePathUtf8 = ConvertToUTF8(filePath);
Schema::Version internalVersion{ majorVersion, minorVersion };
std::unique_ptr<SQLiteIndex> result = std::make_unique<SQLiteIndex>(SQLiteIndex::CreateNew(filePathUtf8, internalVersion));
*index = static_cast<WINGET_SQLITE_INDEX_HANDLE>(result.release());
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexOpen(WINGET_STRING filePath, WINGET_SQLITE_INDEX_HANDLE* index) try
{
THROW_HR_IF(E_INVALIDARG, !filePath);
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !!*index);
std::string filePathUtf8 = ConvertToUTF8(filePath);
std::unique_ptr<SQLiteIndex> result = std::make_unique<SQLiteIndex>(SQLiteIndex::Open(filePathUtf8, SQLiteIndex::OpenDisposition::ReadWrite));
*index = static_cast<WINGET_SQLITE_INDEX_HANDLE>(result.release());
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexClose(WINGET_SQLITE_INDEX_HANDLE index) try
{
std::unique_ptr<SQLiteIndex> toClose(reinterpret_cast<SQLiteIndex*>(index));
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexAddManifest(
WINGET_SQLITE_INDEX_HANDLE index,
WINGET_STRING manifestPath, WINGET_STRING relativePath) try
{
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !manifestPath);
THROW_HR_IF(E_INVALIDARG, !relativePath);
reinterpret_cast<SQLiteIndex*>(index)->AddManifest(manifestPath, relativePath);
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexUpdateManifest(
WINGET_SQLITE_INDEX_HANDLE index,
WINGET_STRING manifestPath,
WINGET_STRING relativePath,
BOOL* indexModified) try
{
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !manifestPath);
THROW_HR_IF(E_INVALIDARG, !relativePath);
bool result = reinterpret_cast<SQLiteIndex*>(index)->UpdateManifest(manifestPath, relativePath);
if (indexModified)
{
*indexModified = (result ? TRUE : FALSE);
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexRemoveManifest(
WINGET_SQLITE_INDEX_HANDLE index,
WINGET_STRING manifestPath, WINGET_STRING relativePath) try
{
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !manifestPath);
THROW_HR_IF(E_INVALIDARG, !relativePath);
reinterpret_cast<SQLiteIndex*>(index)->RemoveManifest(manifestPath, relativePath);
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexPrepareForPackaging(
WINGET_SQLITE_INDEX_HANDLE index) try
{
THROW_HR_IF(E_INVALIDARG, !index);
reinterpret_cast<SQLiteIndex*>(index)->PrepareForPackaging();
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexCheckConsistency(
WINGET_SQLITE_INDEX_HANDLE index,
BOOL* succeeded) try
{
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !succeeded);
bool result = reinterpret_cast<SQLiteIndex*>(index)->CheckConsistency(true);
*succeeded = (result ? TRUE : FALSE);
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetValidateManifest(
WINGET_STRING manifestPath,
BOOL* succeeded,
WINGET_STRING_OUT* message) try
{
THROW_HR_IF(E_INVALIDARG, !manifestPath);
THROW_HR_IF(E_INVALIDARG, !succeeded);
try
{
(void)YamlParser::CreateFromPath(manifestPath, true, true);
*succeeded = TRUE;
}
catch (const ManifestException& e)
{
*succeeded = e.IsWarningOnly();
if (message)
{
*message = ::SysAllocString(ConvertToUTF16(e.GetManifestErrorMessage()).c_str());
}
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetValidateManifestV2(
WINGET_STRING inputPath,
BOOL* succeeded,
WINGET_STRING_OUT* message,
WINGET_STRING mergedManifestPath,
WinGetValidateManifestOption option) try
{
THROW_HR_IF(E_INVALIDARG, !inputPath);
THROW_HR_IF(E_INVALIDARG, !succeeded);
try
{
(void)YamlParser::CreateFromPath(inputPath, true, true,
mergedManifestPath ? mergedManifestPath : L"",
option == WinGetValidateManifestOption::SchemaValidationOnly);
*succeeded = TRUE;
}
catch (const ManifestException& e)
{
*succeeded = e.IsWarningOnly();
if (message)
{
*message = ::SysAllocString(ConvertToUTF16(e.GetManifestErrorMessage()).c_str());
}
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetDownload(
WINGET_STRING url,
WINGET_STRING filePath,
BYTE* sha256Hash,
UINT32 sha256HashLength) try
{
THROW_HR_IF(E_INVALIDARG, !url);
THROW_HR_IF(E_INVALIDARG, !filePath);
bool computeHash = sha256Hash != nullptr && sha256HashLength != 0;
THROW_HR_IF(E_INVALIDARG, !computeHash && (sha256Hash != nullptr || sha256HashLength != 0));
THROW_HR_IF(E_INVALIDARG, computeHash && sha256HashLength != 32);
AppInstaller::ProgressCallback callback;
auto hashValue = Download(ConvertToUTF8(url), filePath, callback, computeHash);
// At this point, if computeHash is set we have verified that the buffer is valid and 32 bytes.
if (computeHash)
{
const auto& hash = hashValue.value();
// The SHA 256 hash length should always be 32 bytes.
THROW_HR_IF(E_UNEXPECTED, hash.size() != sha256HashLength);
std::copy(hash.begin(), hash.end(), sha256Hash);
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetCompareVersions(
WINGET_STRING versionA,
WINGET_STRING versionB,
INT* comparisonResult) try
{
THROW_HR_IF(E_INVALIDARG, !versionA);
THROW_HR_IF(E_INVALIDARG, !versionB);
Version vA{ ConvertToUTF8(versionA) };
Version vB{ ConvertToUTF8(versionB) };
*comparisonResult = vA < vB ? -1 : (vA == vB ? 0 : 1);
return S_OK;
}
CATCH_RETURN()
}