-
Notifications
You must be signed in to change notification settings - Fork 744
Expand file tree
/
Copy pathUpdatePackageCommand.cs
More file actions
530 lines (467 loc) · 19.3 KB
/
UpdatePackageCommand.cs
File metadata and controls
530 lines (467 loc) · 19.3 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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#nullable disable
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Management.Automation;
using System.Threading.Tasks;
using NuGet.Common;
using NuGet.PackageManagement.Telemetry;
using NuGet.Packaging.Core;
using NuGet.Packaging.Signing;
using NuGet.ProjectManagement;
using NuGet.ProjectManagement.Projects;
using NuGet.Protocol.Core.Types;
using NuGet.Resolver;
using NuGet.Versioning;
using NuGet.VisualStudio;
namespace NuGet.PackageManagement.PowerShellCmdlets
{
[Cmdlet(VerbsData.Update, "Package", DefaultParameterSetName = "All")]
public class UpdatePackageCommand : PackageActionBaseCommand
{
private UninstallationContext _uninstallcontext;
private string _id;
private string _projectName;
private bool _idSpecified;
private bool _projectSpecified;
private bool _versionSpecifiedPrerelease;
private bool _allowPrerelease;
private NuGetVersion _nugetVersion;
[Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, Position = 0, ParameterSetName = "Project")]
[Parameter(ValueFromPipelineByPropertyName = true, Position = 0, ParameterSetName = "All")]
[Parameter(ValueFromPipelineByPropertyName = true, Position = 0, ParameterSetName = "Reinstall")]
public override string Id
{
get { return _id; }
set
{
_id = value;
_idSpecified = true;
}
}
[Parameter(Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = "All")]
[Parameter(Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = "Project")]
[Parameter(Position = 1, ValueFromPipelineByPropertyName = true, ParameterSetName = "Reinstall")]
public override string ProjectName
{
get { return _projectName; }
set
{
_projectName = value;
_projectSpecified = true;
}
}
[Parameter(Position = 2, ParameterSetName = "Project")]
[ValidateNotNullOrEmpty]
public override string Version { get; set; }
[Parameter]
[Alias("ToHighestPatch")]
public SwitchParameter Safe { get; set; }
[Parameter]
public SwitchParameter ToHighestMinor { get; set; }
[Parameter(Mandatory = true, ParameterSetName = "Reinstall")]
[Parameter(ParameterSetName = "All")]
public SwitchParameter Reinstall { get; set; }
private List<NuGetProject> _projects;
public bool IsVersionEnum { get; set; }
protected override void Preprocess()
{
base.Preprocess();
ParseUserInputForVersion();
if (!_projectSpecified)
{
_projects = NuGetUIThreadHelper.JoinableTaskFactory.Run(async () => await VsSolutionManager.GetNuGetProjectsAsync()).ToList();
}
else
{
_projects = new List<NuGetProject> { Project };
}
if (Reinstall)
{
ActionType = NuGetActionType.Reinstall;
}
else
{
ActionType = NuGetActionType.Update;
}
}
protected override void ProcessRecordCore()
{
var startTime = DateTimeOffset.Now;
// start timer for telemetry event
TelemetryServiceUtility.StartOrResumeTimer();
// Run Preprocess outside of JTF
Preprocess();
NuGetUIThreadHelper.JoinableTaskFactory.Run(async () =>
{
await _lockService.ExecuteNuGetOperationAsync(() =>
{
SubscribeToProgressEvents();
WarnIfParametersAreNotSupported();
// Update-Package without ID specified
if (!_idSpecified)
{
Task.Run(UpdateOrReinstallAllPackagesAsync);
}
// Update-Package with Id specified
else
{
Task.Run(UpdateOrReinstallSinglePackageAsync);
}
WaitAndLogPackageActions();
UnsubscribeFromProgressEvents();
#pragma warning disable VSTHRD003 // Avoid awaiting foreign Tasks
return TaskResult.True;
#pragma warning restore VSTHRD003 // Avoid awaiting foreign Tasks
}, Token);
});
// stop timer for telemetry event and create action telemetry event instance
TelemetryServiceUtility.StopTimer();
var isPackageSourceMappingEnabled = PackageSourceMappingUtility.IsMappingEnabled(ConfigSettings);
var actionTelemetryEvent = VSTelemetryServiceUtility.GetActionTelemetryEvent(
OperationId.ToString(),
new[] { Project },
NuGetProjectActionType.Update,
OperationSource.PMC,
startTime,
_status,
_packageCount,
TelemetryServiceUtility.GetTimerElapsedTimeInSeconds(),
isPackageSourceMappingEnabled: isPackageSourceMappingEnabled);
// emit telemetry event along with granular level events
TelemetryActivity.EmitTelemetryEvent(actionTelemetryEvent);
}
protected override void WarnIfParametersAreNotSupported()
{
if (Source != null)
{
var projectNames = string.Join(",", _projects.Where(e => e is BuildIntegratedNuGetProject).Select(p => NuGetProject.GetUniqueNameOrName(p)));
if (!string.IsNullOrEmpty(projectNames))
{
var warning = string.Format(CultureInfo.CurrentCulture, Resources.Warning_SourceNotRespectedForProjectType, nameof(Source), projectNames);
Log(MessageLevel.Warning, warning);
}
}
}
private void WarnForReinstallOfBuildIntegratedProjects(IEnumerable<BuildIntegratedNuGetProject> projects)
{
if (projects.Any())
{
var projectNames = string.Join(",", projects.Select(p => NuGetProject.GetUniqueNameOrName(p)));
var warning = string.Format(CultureInfo.CurrentCulture, Resources.Warning_ReinstallNotRespectedForProjectType, projectNames);
Log(MessageLevel.Warning, warning);
}
}
/// <summary>
/// Update or reinstall all packages installed to a solution. For Update-Package or Update-Package -Reinstall.
/// </summary>
/// <returns></returns>
private async Task UpdateOrReinstallAllPackagesAsync()
{
try
{
using (var sourceCacheContext = new SourceCacheContext())
{
var resolutionContext = new ResolutionContext(
GetDependencyBehavior(),
_allowPrerelease,
ShouldAllowDelistedPackages(),
DetermineVersionConstraints(),
new GatherCache(),
sourceCacheContext);
// PackageReference projects don't support `Update-Package -Reinstall`.
List<NuGetProject> applicableProjects = GetApplicableProjectsAndWarnForRest(_projects);
// if the source is explicitly specified we will use exclusively that source otherwise use ALL enabled sources
var actions = await PackageManager.PreviewUpdatePackagesAsync(
applicableProjects,
resolutionContext,
this,
PrimarySourceRepositories,
PrimarySourceRepositories,
Token);
if (!actions.Any())
{
_status = NuGetOperationStatus.NoOp;
}
else
{
_packageCount = actions.Select(action => action.PackageIdentity.Id).Distinct(StringComparer.OrdinalIgnoreCase).Count();
}
await ExecuteActions(actions, sourceCacheContext);
}
}
catch (SignatureException ex)
{
// set nuget operation status to failed when an exception is thrown
_status = NuGetOperationStatus.Failed;
if (!string.IsNullOrEmpty(ex.Message))
{
Log(ex.AsLogMessage());
}
if (ex.Results != null)
{
var logMessages = ex.Results.SelectMany(p => p.Issues).ToList();
logMessages.ForEach(p => Log(ex.AsLogMessage()));
}
}
catch (Exception ex)
{
_status = NuGetOperationStatus.Failed;
Log(MessageLevel.Error, ExceptionUtilities.DisplayMessage(ex));
}
finally
{
BlockingCollection.Add(new ExecutionCompleteMessage());
}
}
private List<NuGetProject> GetApplicableProjectsAndWarnForRest(List<NuGetProject> applicableProjects)
{
if (Reinstall.IsPresent)
{
var buildIntegratedProjects = new List<NuGetProject>();
var nonBuildIntegratedProjects = new List<NuGetProject>();
foreach (var project in applicableProjects)
{
if (project is BuildIntegratedNuGetProject buildIntegratedNuGetProject)
{
buildIntegratedProjects.Add(buildIntegratedNuGetProject);
}
else
{
nonBuildIntegratedProjects.Add(project);
}
}
if (buildIntegratedProjects != null && buildIntegratedProjects.Any())
{
WarnForReinstallOfBuildIntegratedProjects(buildIntegratedProjects.AsEnumerable().Cast<BuildIntegratedNuGetProject>());
}
return nonBuildIntegratedProjects;
}
return applicableProjects;
}
/// <summary>
/// Update or reinstall a single package installed to a solution. For Update-Package -Id or Update-Package -Id
/// -Reinstall.
/// </summary>
/// <returns></returns>
private async Task UpdateOrReinstallSinglePackageAsync()
{
try
{
var isPackageInstalled = await IsPackageInstalledAsync(Id);
if (isPackageInstalled)
{
await PreviewAndExecuteUpdateActionsForSinglePackage();
}
else
{
// set nuget operation status to NoOp when package is not even installed
_status = NuGetOperationStatus.NoOp;
Log(MessageLevel.Error, Resources.Cmdlet_PackageNotInstalledInAnyProject, Id);
}
}
catch (SignatureException ex)
{
// set nuget operation status to failed when an exception is thrown
_status = NuGetOperationStatus.Failed;
if (!string.IsNullOrEmpty(ex.Message))
{
Log(ex.AsLogMessage());
}
if (ex.Results != null)
{
var logMessages = ex.Results.SelectMany(p => p.Issues).ToList();
logMessages.ForEach(p => Log(p));
}
}
catch (Exception ex)
{
_status = NuGetOperationStatus.Failed;
Log(MessageLevel.Error, ExceptionUtilities.DisplayMessage(ex));
}
finally
{
BlockingCollection.Add(new ExecutionCompleteMessage());
}
}
/// <summary>
/// Preview update actions for single package
/// </summary>
/// <returns></returns>
private async Task PreviewAndExecuteUpdateActionsForSinglePackage()
{
var actions = Enumerable.Empty<NuGetProjectAction>();
using (var sourceCacheContext = new SourceCacheContext())
{
var resolutionContext = new ResolutionContext(
GetDependencyBehavior(),
_allowPrerelease,
ShouldAllowDelistedPackages(),
DetermineVersionConstraints(),
new GatherCache(),
sourceCacheContext);
// PackageReference projects don't support `Update-Package -Reinstall`.
List<NuGetProject> applicableProjects = GetApplicableProjectsAndWarnForRest(_projects);
// If -Version switch is specified
if (!string.IsNullOrEmpty(Version))
{
actions = await PackageManager.PreviewUpdatePackagesAsync(
new PackageIdentity(Id, PowerShellCmdletsUtility.GetNuGetVersionFromString(Version)),
applicableProjects,
resolutionContext,
this,
PrimarySourceRepositories,
EnabledSourceRepositories,
Token);
}
else
{
actions = await PackageManager.PreviewUpdatePackagesAsync(
Id,
applicableProjects,
resolutionContext,
this,
PrimarySourceRepositories,
EnabledSourceRepositories,
Token);
}
if (!actions.Any())
{
_status = NuGetOperationStatus.NoOp;
}
else
{
_packageCount = actions.Select(
action => action.PackageIdentity.Id).Distinct(StringComparer.OrdinalIgnoreCase).Count();
}
await ExecuteActions(actions, sourceCacheContext);
}
}
/// <summary>
/// Method checks if the package to be updated is installed in any package or not.
/// </summary>
/// <param name="packageId">Id of the package to be updated/checked</param>
/// <returns><code>bool</code> indicating whether the package is already installed, on any project, or not</returns>
private async Task<bool> IsPackageInstalledAsync(string packageId)
{
foreach (var project in _projects)
{
var installedPackages = await project.GetInstalledPackagesAsync(Token);
if (installedPackages.Select(installedPackage => installedPackage.PackageIdentity.Id)
.Any(installedPackageId => installedPackageId.Equals(packageId, StringComparison.OrdinalIgnoreCase)))
{
return true;
}
}
return false;
}
/// <summary>
/// Execute the project actions
/// </summary>
/// <param name="actions"></param>
/// <returns></returns>
private async Task ExecuteActions(IEnumerable<NuGetProjectAction> actions, SourceCacheContext sourceCacheContext)
{
// stop telemetry event timer to avoid ui interaction
TelemetryServiceUtility.StopTimer();
if (!ShouldContinueDueToDotnetDeprecation(actions, WhatIf.IsPresent))
{
// resume telemetry event timer after ui interaction
TelemetryServiceUtility.StartOrResumeTimer();
return;
}
// resume telemetry event timer after ui interaction
TelemetryServiceUtility.StartOrResumeTimer();
if (WhatIf.IsPresent)
{
// For -WhatIf, only preview the actions
PreviewNuGetPackageActions(actions);
}
else
{
// Execute project actions by Package Manager
await PackageManager.ExecuteNuGetProjectActionsAsync(_projects, actions, this, sourceCacheContext, Token);
// Refresh Manager UI if needed
RefreshUI(actions);
}
}
/// <summary>
/// Parse user input for -Version switch
/// </summary>
private void ParseUserInputForVersion()
{
if (!string.IsNullOrEmpty(Version))
{
// If Version is prerelease, automatically allow prerelease (i.e. append -Prerelease switch).
_nugetVersion = PowerShellCmdletsUtility.GetNuGetVersionFromString(Version);
if (_nugetVersion.IsPrerelease)
{
_versionSpecifiedPrerelease = true;
}
}
_allowPrerelease = IncludePrerelease.IsPresent || _versionSpecifiedPrerelease;
}
/// <summary>
/// Uninstallation Context for Update-Package -Reinstall command
/// </summary>
public UninstallationContext UninstallContext
{
get
{
_uninstallcontext = new UninstallationContext(false, Reinstall.IsPresent);
return _uninstallcontext;
}
}
/// <summary>
/// Return dependency behavior for Update-Package command.
/// </summary>
/// <returns></returns>
protected override DependencyBehavior GetDependencyBehavior()
{
// Return DependencyBehavior.Highest for Update-Package
if (!_idSpecified
&& !Reinstall.IsPresent)
{
return DependencyBehavior.Highest;
}
return base.GetDependencyBehavior();
}
/// <summary>
/// Determine the UpdateConstraints based on the command line arguments
/// </summary>
private VersionConstraints DetermineVersionConstraints()
{
if (Reinstall.IsPresent)
{
return VersionConstraints.ExactMajor | VersionConstraints.ExactMinor | VersionConstraints.ExactPatch | VersionConstraints.ExactRelease;
}
else if (Safe.IsPresent)
{
return VersionConstraints.ExactMajor | VersionConstraints.ExactMinor;
}
else if (ToHighestMinor.IsPresent)
{
return VersionConstraints.ExactMajor;
}
else
{
return VersionConstraints.None;
}
}
/// <summary>
/// Determine if the update action should allow use of delisted packages
/// </summary>
private bool ShouldAllowDelistedPackages()
{
// If a delisted package is already installed, it should be reinstallable too.
if (Reinstall.IsPresent)
{
return true;
}
return false;
}
}
}