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
638 lines (528 loc) · 22.9 KB
/
Copy pathExports.cpp
File metadata and controls
638 lines (528 loc) · 22.9 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
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
// 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>
#include <winget/ThreadGlobals.h>
#include <winget/InstallerMetadataCollectionContext.h>
#include <PackageDependenciesValidation.h>
#include <public/winget/PackageDependenciesValidationUtil.h>
#include <ArpVersionValidation.h>
using namespace AppInstaller::Utility;
using namespace AppInstaller::Manifest;
using namespace AppInstaller::Repository;
using namespace AppInstaller::Repository::Metadata;
using namespace AppInstaller::Repository::Microsoft;
namespace
{
std::filesystem::path GetPathOrEmpty(WINGET_STRING potentiallyNullPath)
{
return potentiallyNullPath ? std::filesystem::path{ potentiallyNullPath } : std::filesystem::path{};
}
SQLiteIndex::Property GetSQLiteIndexProperty(WinGetSQLiteIndexProperty property)
{
switch (property)
{
case WinGetSQLiteIndexProperty_PackageUpdateTrackingBaseTime: return SQLiteIndex::Property::PackageUpdateTrackingBaseTime;
case WinGetSQLiteIndexProperty_IntermediateFileOutputPath: return SQLiteIndex::Property::IntermediateFileOutputPath;
}
THROW_HR(E_INVALIDARG);
}
}
extern "C"
{
WINGET_UTIL_API WinGetLoggingInit(WINGET_STRING logPath) try
{
THROW_HR_IF(E_INVALIDARG, !logPath);
thread_local AppInstaller::ThreadLocalStorage::WingetThreadGlobals threadGlobals;
thread_local std::once_flag initLogging;
std::call_once(initLogging, []() {
std::unique_ptr<AppInstaller::ThreadLocalStorage::PreviousThreadGlobals> previous = threadGlobals.SetForCurrentThread();
// Intentionally release to leave the local ThreadGlobals.
previous.release();
// 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))
{
// Let FileLogger use default file prefix
AppInstaller::Logging::FileLogger::Add(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);
AppInstaller::SQLite::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 WinGetSQLiteIndexMigrate(
WINGET_SQLITE_INDEX_HANDLE index,
UINT32 majorVersion,
UINT32 minorVersion) try
{
THROW_HR_IF(E_INVALIDARG, !index);
return reinterpret_cast<SQLiteIndex*>(index)->MigrateTo({ majorVersion, minorVersion }) ? S_OK : HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED);
}
CATCH_RETURN()
WINGET_UTIL_API WinGetSQLiteIndexSetProperty(
WINGET_SQLITE_INDEX_HANDLE index,
WinGetSQLiteIndexProperty property,
WINGET_STRING value) try
{
THROW_HR_IF(E_INVALIDARG, !index);
THROW_HR_IF(E_INVALIDARG, !value);
std::string valueUtf8 = ConvertToUTF8(value);
reinterpret_cast<SQLiteIndex*>(index)->SetProperty(GetSQLiteIndexProperty(property), valueUtf8);
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);
auto sqliteIndex = reinterpret_cast<SQLiteIndex*>(index);
bool result = sqliteIndex->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
{
ManifestValidateOption validateOption;
validateOption.FullValidation = true;
validateOption.ThrowOnWarning = true;
(void)YamlParser::CreateFromPath(manifestPath, validateOption);
*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
{
ManifestValidateOption validateOption;
validateOption.FullValidation = true;
validateOption.ThrowOnWarning = true;
validateOption.SchemaValidationOnly = WI_IsFlagSet(option, WinGetValidateManifestOption::SchemaValidationOnly);
validateOption.ErrorOnVerifiedPublisherFields = WI_IsFlagSet(option, WinGetValidateManifestOption::ErrorOnVerifiedPublisherFields);
validateOption.InstallerValidation = WI_IsFlagSet(option, WinGetValidateManifestOption::InstallerValidations);
(void)YamlParser::CreateFromPath(inputPath, validateOption, mergedManifestPath ? mergedManifestPath : L"");
*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 WinGetCreateManifest(
WINGET_STRING inputPath,
BOOL* succeeded,
WINGET_MANIFEST_HANDLE* manifest,
WINGET_STRING_OUT* message,
WINGET_STRING mergedManifestPath,
WinGetCreateManifestOption option) try
{
THROW_HR_IF(E_INVALIDARG, !inputPath);
THROW_HR_IF(E_INVALIDARG, !succeeded);
THROW_HR_IF(E_INVALIDARG, !!*manifest);
// ErrorOnVerifiedPublisherFields can only be used with SchemaAndSemanticValidation
THROW_HR_IF(E_INVALIDARG, (WI_IsFlagSet(option, WinGetCreateManifestOption::ReturnErrorOnVerifiedPublisherFields) && WI_IsFlagClear(option, WinGetCreateManifestOption::SchemaAndSemanticValidation)));
*succeeded = false;
*manifest = nullptr;
try
{
ManifestValidateOption validateOption;
if (WI_IsFlagSet(option, WinGetCreateManifestOption::SchemaValidation) || WI_IsFlagSet(option, WinGetCreateManifestOption::SchemaAndSemanticValidation))
{
validateOption.FullValidation = true;
validateOption.ThrowOnWarning = true;
validateOption.SchemaValidationOnly = WI_IsFlagClear(option, WinGetCreateManifestOption::SchemaAndSemanticValidation);
validateOption.ErrorOnVerifiedPublisherFields = WI_IsFlagSet(option, WinGetCreateManifestOption::ReturnErrorOnVerifiedPublisherFields);
}
if (WI_IsFlagSet(option, WinGetCreateManifestOption::AllowShadowManifest))
{
validateOption.AllowShadowManifest = true;
}
std::unique_ptr<Manifest> result = std::make_unique<Manifest>(YamlParser::CreateFromPath(inputPath, validateOption, mergedManifestPath ? mergedManifestPath : L""));
*manifest = static_cast<WINGET_MANIFEST_HANDLE>(result.release());
*succeeded = true;
}
catch (const ManifestException& e)
{
*succeeded = e.IsWarningOnly();
if (*succeeded)
{
ManifestValidateOption validateOption;
if (WI_IsFlagSet(option, WinGetCreateManifestOption::AllowShadowManifest))
{
validateOption.AllowShadowManifest = true;
}
std::unique_ptr<Manifest> result = std::make_unique<Manifest>(YamlParser::CreateFromPath(inputPath, validateOption));
*manifest = static_cast<WINGET_MANIFEST_HANDLE>(result.release());
}
if (message)
{
*message = ::SysAllocString(ConvertToUTF16(e.GetManifestErrorMessage()).c_str());
}
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetCloseManifest(
WINGET_MANIFEST_HANDLE manifest) try
{
THROW_HR_IF(E_INVALIDARG, !manifest);
std::unique_ptr<Manifest> toClose{ reinterpret_cast<Manifest*>(manifest) };
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetValidateManifestV3(
WINGET_MANIFEST_HANDLE manifest,
WINGET_SQLITE_INDEX_HANDLE index,
WinGetValidateManifestResult* result,
WINGET_STRING_OUT* message,
WinGetValidateManifestOptionV2 option,
WinGetValidateManifestOperationType operationType) try
{
THROW_HR_IF(E_INVALIDARG, !manifest);
THROW_HR_IF(E_INVALIDARG, !result);
// Index should be provided if DependenciesValidation or ArpVersionValidation is to be performed
THROW_HR_IF(E_INVALIDARG, !index && (WI_IsFlagSet(option, WinGetValidateManifestOptionV2::DependenciesValidation) || WI_IsFlagSet(option, WinGetValidateManifestOptionV2::ArpVersionValidation)));
THROW_HR_IF(E_INVALIDARG, option == WinGetValidateManifestOptionV2::None);
*result = WinGetValidateManifestResult::InternalError;
std::string validationMessage;
auto validationResult = WinGetValidateManifestResult::Success;
Manifest* manifestPtr = reinterpret_cast<Manifest*>(manifest);
SQLiteIndex* sqliteIndex = reinterpret_cast<SQLiteIndex*>(index);
if (WI_IsFlagSet(option, WinGetValidateManifestOptionV2::DependenciesValidation))
{
try
{
if (operationType == WinGetValidateManifestOperationType::OperationTypeDelete)
{
PackageDependenciesValidation::VerifyDependenciesStructureForManifestDelete(sqliteIndex, *manifestPtr);
}
else
{
PackageDependenciesValidation::ValidateManifestDependencies(sqliteIndex, *manifestPtr);
}
}
catch (const ManifestException& e)
{
if (!e.IsWarningOnly())
{
validationResult |= WinGetValidateManifestResult::DependenciesValidationFailure;
}
validationResult |= static_cast<WinGetValidateManifestResult>( AppInstaller::Manifest::GetDependenciesValidationResultFromException(e) );
if (message)
{
validationMessage += e.GetManifestErrorMessage();
}
}
}
if (WI_IsFlagSet(option, WinGetValidateManifestOptionV2::ArpVersionValidation))
{
try
{
ValidateManifestArpVersion(sqliteIndex, *manifestPtr);
}
catch (const ManifestException& e)
{
WI_SetFlagIf(validationResult, WinGetValidateManifestResult::ArpVersionValidationFailure, !e.IsWarningOnly());
if (message)
{
validationMessage += e.GetManifestErrorMessage();
}
}
}
if (WI_IsFlagSet(option, WinGetValidateManifestOptionV2::InstallerValidation))
{
try
{
auto errors = ValidateManifestInstallers(*manifestPtr);
if (errors.size() > 0)
{
// Throw the errors as ManifestExceptions to get processed errors and message.
THROW_EXCEPTION(ManifestException({ std::move(errors) }));
}
}
catch (const ManifestException& e)
{
WI_SetFlagIf(validationResult, WinGetValidateManifestResult::InstallerValidationFailure, !e.IsWarningOnly());
if (message)
{
validationMessage += e.GetManifestErrorMessage();
}
}
}
*result = validationResult;
if (message)
{
*message = ::SysAllocString(ConvertToUTF16(validationMessage).c_str());
}
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetValidateManifestDependencies(
WINGET_STRING inputPath,
BOOL* succeeded,
WINGET_STRING_OUT* message,
WINGET_SQLITE_INDEX_HANDLE index,
WinGetValidateManifestDependenciesOption validationOption) try
{
THROW_HR_IF(E_INVALIDARG, !inputPath);
THROW_HR_IF(E_INVALIDARG, !succeeded);
try
{
Manifest manifest = YamlParser::CreateFromPath(inputPath);
SQLiteIndex* sqliteIndex(reinterpret_cast<SQLiteIndex*>(index));
switch (validationOption)
{
case WinGetValidateManifestDependenciesOption::DefaultValidation:
PackageDependenciesValidation::ValidateManifestDependencies(sqliteIndex, manifest);
break;
case WinGetValidateManifestDependenciesOption::ForDelete:
PackageDependenciesValidation::VerifyDependenciesStructureForManifestDelete(sqliteIndex, manifest);
break;
default:
THROW_HR(E_INVALIDARG);
}
*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, DownloadType::WinGetUtil, 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()
WINGET_UTIL_API WinGetBeginInstallerMetadataCollection(
WINGET_STRING inputJSON,
WINGET_STRING logFilePath,
WinGetBeginInstallerMetadataCollectionOptions options,
WINGET_INSTALLER_METADATA_COLLECTION_HANDLE* collectionHandle) try
{
THROW_HR_IF(E_INVALIDARG, !inputJSON);
THROW_HR_IF(E_INVALIDARG, !collectionHandle);
THROW_HR_IF(E_INVALIDARG, !!*collectionHandle);
// Flags specifying what inputJSON means are mutually exclusive
THROW_HR_IF(E_INVALIDARG, !WI_IsClearOrSingleFlagSetInMask(options,
WinGetBeginInstallerMetadataCollectionOption_InputIsFilePath | WinGetBeginInstallerMetadataCollectionOption_InputIsURI));
std::unique_ptr<InstallerMetadataCollectionContext> result;
if (WI_IsFlagSet(options, WinGetBeginInstallerMetadataCollectionOption_InputIsFilePath))
{
result = InstallerMetadataCollectionContext::FromFile(inputJSON, GetPathOrEmpty(logFilePath));
}
else if (WI_IsFlagSet(options, WinGetBeginInstallerMetadataCollectionOption_InputIsURI))
{
result = InstallerMetadataCollectionContext::FromURI(inputJSON, GetPathOrEmpty(logFilePath));
}
else
{
result = InstallerMetadataCollectionContext::FromJSON(inputJSON, GetPathOrEmpty(logFilePath));
}
*collectionHandle = static_cast<WINGET_INSTALLER_METADATA_COLLECTION_HANDLE>(result.release());
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetCompleteInstallerMetadataCollection(
WINGET_INSTALLER_METADATA_COLLECTION_HANDLE collectionHandle,
WINGET_STRING outputFilePath,
WinGetCompleteInstallerMetadataCollectionOptions options) try
{
THROW_HR_IF(E_INVALIDARG, !collectionHandle);
// Since we always free the handle from calling this function, we can just store it in a unique_ptr from the start
std::unique_ptr<InstallerMetadataCollectionContext> context{ reinterpret_cast<InstallerMetadataCollectionContext*>(collectionHandle) };
if (WI_IsFlagSet(options, WinGetCompleteInstallerMetadataCollectionOption_Abandon))
{
return S_OK;
}
THROW_HR_IF(E_INVALIDARG, !outputFilePath);
context->Complete(outputFilePath);
return S_OK;
}
CATCH_RETURN()
WINGET_UTIL_API WinGetMergeInstallerMetadata(
WINGET_STRING inputJSON,
WINGET_STRING_OUT* outputJSON,
UINT32 maximumOutputSizeInBytes,
WINGET_STRING logFilePath,
WinGetMergeInstallerMetadataOptions) try
{
THROW_HR_IF(E_INVALIDARG, !inputJSON);
THROW_HR_IF(E_INVALIDARG, !outputJSON);
std::wstring merged = InstallerMetadataCollectionContext::Merge(inputJSON, maximumOutputSizeInBytes, GetPathOrEmpty(logFilePath));
*outputJSON = ::SysAllocString(merged.c_str());
return S_OK;
}
CATCH_RETURN()
}