-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add installation progress #3901
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
services/DevHome.Services.WindowsPackageManager/Models/WinGetInstallPackageProgress.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
using Microsoft.Management.Deployment; | ||
|
||
namespace DevHome.Services.WindowsPackageManager.Models; | ||
|
||
/// <summary> | ||
/// Represents the progress of a Windows Package Manager installation | ||
/// operation. | ||
/// </summary> | ||
public sealed class WinGetInstallPackageProgress | ||
{ | ||
public WinGetInstallPackageProgress( | ||
WinGetInstallPackageProgressState state, | ||
double downloadProgress, | ||
double installationProgress) | ||
{ | ||
State = state; | ||
DownloadProgress = downloadProgress; | ||
InstallationProgress = installationProgress; | ||
} | ||
|
||
internal WinGetInstallPackageProgress(InstallProgress progress) | ||
{ | ||
State = (WinGetInstallPackageProgressState)progress.State; | ||
DownloadProgress = progress.DownloadProgress; | ||
InstallationProgress = progress.InstallationProgress; | ||
} | ||
|
||
/// <summary> | ||
/// Gets the current state of the installation operation. | ||
/// </summary> | ||
public WinGetInstallPackageProgressState State { get; } | ||
|
||
/// <summary> | ||
/// Gets the download percentage complete. | ||
/// </summary> | ||
public double DownloadProgress { get; } | ||
|
||
/// <summary> | ||
/// Gets the installation percentage complete. | ||
/// </summary> | ||
public double InstallationProgress { get; } | ||
} |
19 changes: 19 additions & 0 deletions
19
services/DevHome.Services.WindowsPackageManager/Models/WinGetInstallPackageProgressState.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
namespace DevHome.Services.WindowsPackageManager.Models; | ||
|
||
/// <summary> | ||
/// Represents the state of the installation progress. | ||
/// </summary> | ||
/// <remarks> | ||
/// Reference: https://github.com/microsoft/winget-cli/blob/master/src/Microsoft.Management.Deployment/PackageManager.idl | ||
/// </remarks> | ||
public enum WinGetInstallPackageProgressState | ||
{ | ||
Queued = unchecked((int)0), | ||
Downloading = unchecked((int)0x1), | ||
Installing = unchecked((int)0x2), | ||
PostInstall = unchecked((int)0x3), | ||
Finished = unchecked((int)0x4), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.Runtime.InteropServices.WindowsRuntime; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using DevHome.Services.Core.Extensions; | ||
|
@@ -13,6 +14,7 @@ | |
using DevHome.Telemetry; | ||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Management.Deployment; | ||
using Windows.Foundation; | ||
using Windows.Win32.Foundation; | ||
|
||
namespace DevHome.Services.WindowsPackageManager.Services; | ||
|
@@ -39,7 +41,7 @@ public WinGetPackageInstaller( | |
} | ||
|
||
/// <inheritdoc /> | ||
public async Task<IWinGetInstallPackageResult> InstallPackageAsync(WinGetCatalog catalog, string packageId, string version, Guid activityId) | ||
public IAsyncOperationWithProgress<IWinGetInstallPackageResult, WinGetInstallPackageProgress> InstallPackageAsync(WinGetCatalog catalog, string packageId, string version, Guid activityId) | ||
{ | ||
if (catalog == null) | ||
{ | ||
|
@@ -51,29 +53,34 @@ public async Task<IWinGetInstallPackageResult> InstallPackageAsync(WinGetCatalog | |
|
||
try | ||
{ | ||
// 1. Find package | ||
var package = await FindPackageOrThrowAsync(catalog, packageId); | ||
|
||
// 2. Install package | ||
_logger.LogInformation($"Starting package installation for {packageId} from catalog {catalog.GetDescriptiveName()}"); | ||
var installResult = await InstallPackageInternalAsync(package, version, activityId); | ||
var extendedErrorCode = installResult.ExtendedErrorCode?.HResult ?? HRESULT.S_OK; | ||
var installErrorCode = installResult.GetValueOrDefault(res => res.InstallerErrorCode, HRESULT.S_OK); // WPM API V4 | ||
|
||
// 3. Report install result | ||
_logger.LogInformation($"Install result: Status={installResult.Status}, InstallerErrorCode={installErrorCode}, ExtendedErrorCode={extendedErrorCode}, RebootRequired={installResult.RebootRequired}"); | ||
if (installResult.Status != InstallResultStatus.Ok) | ||
return AsyncInfo.Run<IWinGetInstallPackageResult, WinGetInstallPackageProgress>(async (_, progress) => | ||
{ | ||
throw new InstallPackageException(installResult.Status, extendedErrorCode, installErrorCode); | ||
} | ||
|
||
_logger.LogInformation($"Completed package installation for {packageId} from catalog {catalog.GetDescriptiveName()}"); | ||
TelemetryFactory.Get<ITelemetry>().Log("AppInstall_InstallSucceeded", Telemetry.LogLevel.Critical, new AppInstallResultEvent(package.Id, catalog.Catalog.Info.Id), activityId); | ||
return new WinGetInstallPackageResult() | ||
{ | ||
ExtendedErrorCode = extendedErrorCode, | ||
RebootRequired = installResult.RebootRequired, | ||
}; | ||
// 1. Find package | ||
var package = await FindPackageOrThrowAsync(catalog, packageId); | ||
|
||
// 2. Install package | ||
_logger.LogInformation($"Starting package installation for {packageId} from catalog {catalog.GetDescriptiveName()}"); | ||
var install = InstallPackageInternalAsync(package, version, activityId); | ||
install.Progress += (_, p) => progress.Report(new(p)); | ||
var installResult = await install; | ||
var extendedErrorCode = installResult.ExtendedErrorCode?.HResult ?? HRESULT.S_OK; | ||
var installErrorCode = installResult.GetValueOrDefault(res => res.InstallerErrorCode, HRESULT.S_OK); // WPM API V4 | ||
|
||
// 3. Report install result | ||
_logger.LogInformation($"Install result: Status={installResult.Status}, InstallerErrorCode={installErrorCode}, ExtendedErrorCode={extendedErrorCode}, RebootRequired={installResult.RebootRequired}"); | ||
if (installResult.Status != InstallResultStatus.Ok) | ||
{ | ||
throw new InstallPackageException(installResult.Status, extendedErrorCode, installErrorCode); | ||
} | ||
|
||
_logger.LogInformation($"Completed package installation for {packageId} from catalog {catalog.GetDescriptiveName()}"); | ||
TelemetryFactory.Get<ITelemetry>().Log("AppInstall_InstallSucceeded", Telemetry.LogLevel.Critical, new AppInstallResultEvent(package.Id, catalog.Catalog.Info.Id), activityId); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of having different event names for an install failure and install success, have one event name and use either
to differentiate success/failure. An example is to make the event name
|
||
return new WinGetInstallPackageResult() | ||
{ | ||
ExtendedErrorCode = extendedErrorCode, | ||
RebootRequired = installResult.RebootRequired, | ||
}; | ||
}); | ||
} | ||
catch | ||
{ | ||
|
@@ -88,7 +95,7 @@ public async Task<IWinGetInstallPackageResult> InstallPackageAsync(WinGetCatalog | |
/// </summary> | ||
/// <param name="package">Package to install</param> | ||
/// <returns>Install result</returns> | ||
private async Task<InstallResult> InstallPackageInternalAsync(CatalogPackage package, string version, Guid activityId) | ||
private IAsyncOperationWithProgress<InstallResult, InstallProgress> InstallPackageInternalAsync(CatalogPackage package, string version, Guid activityId) | ||
{ | ||
var installOptions = _wingetFactory.CreateInstallOptions(); | ||
installOptions.PackageInstallMode = PackageInstallMode.Silent; | ||
|
@@ -106,7 +113,7 @@ private async Task<InstallResult> InstallPackageInternalAsync(CatalogPackage pac | |
} | ||
|
||
var packageManager = _wingetFactory.CreatePackageManager(); | ||
return await packageManager.InstallPackageAsync(package, installOptions).AsTask(); | ||
return packageManager.InstallPackageAsync(package, installOptions); | ||
} | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
tools/SetupFlow/DevHome.SetupFlow.ElevatedComponent/Helpers/ElevatedInstallTaskProgress.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
using DevHome.Services.WindowsPackageManager.Models; | ||
|
||
namespace DevHome.SetupFlow.ElevatedComponent.Helpers; | ||
|
||
public sealed class ElevatedInstallTaskProgress | ||
{ | ||
public ElevatedInstallTaskProgress(int state, double downloadProgress, double installationProgress) | ||
{ | ||
State = state; | ||
DownloadProgress = downloadProgress; | ||
InstallationProgress = installationProgress; | ||
} | ||
|
||
internal ElevatedInstallTaskProgress(WinGetInstallPackageProgress progress) | ||
: this((int)progress.State, progress.DownloadProgress, progress.InstallationProgress) | ||
{ | ||
} | ||
|
||
public int State { get; } | ||
|
||
public double DownloadProgress { get; } | ||
|
||
public double InstallationProgress { get; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question, should all the methods that return a
AsyncInfo.Run
also contain a cancelation token that can be passed into theAsyncInfo.Run
call? This way theIAsyncOperation
can be canceled from the UI in the future without much work. Assuming the out of proc installation calls to the WinGet server also handle cancelations as well I guess.