PackageInstallerServiceFactory.cs 27.5 KB
Newer Older
1
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.
2 3 4 5 6 7 8 9 10 11

using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Composition;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
12
using Microsoft.CodeAnalysis.ErrorReporting;
13
using Microsoft.CodeAnalysis.Host.Mef;
14
using Microsoft.CodeAnalysis.Notification;
15 16
using Microsoft.CodeAnalysis.Packaging;
using Microsoft.CodeAnalysis.Shared.Utilities;
17
using Microsoft.CodeAnalysis.SymbolSearch;
18 19 20
using Microsoft.VisualStudio.ComponentModelHost;
using Microsoft.VisualStudio.Editor;
using Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem;
21
using Microsoft.VisualStudio.LanguageServices.SymbolSearch;
22
using Microsoft.VisualStudio.LanguageServices.Utilities;
23 24 25
using Microsoft.VisualStudio.Shell.Interop;
using NuGet.VisualStudio;
using Roslyn.Utilities;
26
using SVsServiceProvider = Microsoft.VisualStudio.Shell.SVsServiceProvider;
27 28 29 30 31 32

namespace Microsoft.VisualStudio.LanguageServices.Packaging
{
    /// <summary>
    /// Free threaded wrapper around the NuGet.VisualStudio STA package installer interfaces.
    /// We want to be able to make queries about packages from any thread.  For example, the
33
    /// add-NuGet-reference feature wants to know what packages a project already has 
34 35 36 37 38 39
    /// references to.  NuGet.VisualStudio provides this information, but only in a COM STA 
    /// manner.  As we don't want our background work to bounce and block on the UI thread 
    /// we have this helper class which queries the information on the UI thread and caches
    /// the data so it can be read from the background.
    /// </summary>
    [ExportWorkspaceService(typeof(IPackageInstallerService)), Shared]
40
    internal partial class PackageInstallerService : AbstractDelayStartedService, IPackageInstallerService, IVsSearchProviderCallback
41 42
    {
        private readonly object _gate = new object();
43
        private readonly VisualStudioWorkspaceImpl _workspace;
44
        private readonly SVsServiceProvider _serviceProvider;
45 46
        private readonly IVsEditorAdaptersFactoryService _editorAdaptersFactoryService;

C
CyrusNajmabadi 已提交
47 48 49
        // We refer to the package services through proxy types so that we can
        // delay loading their DLLs until we actually need them.
        private IPackageServicesProxy _packageServices;
50 51 52 53 54 55 56 57 58

        private CancellationTokenSource _tokenSource = new CancellationTokenSource();

        // We keep track of what types of changes we've seen so we can then determine what to
        // refresh on the UI thread.  If we hear about project changes, we only refresh that
        // project.  If we hear about a solution level change, we'll refresh all projects.
        private bool _solutionChanged;
        private HashSet<ProjectId> _changedProjects = new HashSet<ProjectId>();

59 60
        private readonly ConcurrentDictionary<ProjectId, ProjectState> _projectToInstalledPackageAndVersion =
            new ConcurrentDictionary<ProjectId, ProjectState>();
61 62 63

        [ImportingConstructor]
        public PackageInstallerService(
64
            VisualStudioWorkspaceImpl workspace,
65
            SVsServiceProvider serviceProvider,
66
            IVsEditorAdaptersFactoryService editorAdaptersFactoryService)
67 68 69
            : base(workspace, SymbolSearchOptions.Enabled,
                              SymbolSearchOptions.SuggestForTypesInReferenceAssemblies,
                              SymbolSearchOptions.SuggestForTypesInNuGetPackages)
70
        {
71
            _workspace = workspace;
72
            _serviceProvider = serviceProvider;
73 74 75
            _editorAdaptersFactoryService = editorAdaptersFactoryService;
        }

76
        public ImmutableArray<PackageSource> PackageSources { get; private set; } = ImmutableArray<PackageSource>.Empty;
77

78 79
        public event EventHandler PackageSourcesChanged;

C
CyrusNajmabadi 已提交
80
        private bool IsEnabled => _packageServices != null;
81

C
CyrusNajmabadi 已提交
82
        bool IPackageInstallerService.IsEnabled(ProjectId projectId)
83
        {
C
CyrusNajmabadi 已提交
84
            if (_packageServices == null)
85 86 87 88 89 90 91 92 93 94 95 96 97
            {
                return false;
            }

            if (_projectToInstalledPackageAndVersion.TryGetValue(projectId, out var state))
            {
                return state.IsEnabled;
            }

            // If we haven't scanned the project yet, assume that we're available for it.
            return true;
        }

98
        protected override void EnableService()
99
        {
100
            // Our service has been enabled.  Now load the VS package dlls.
101
            var componentModel = (IComponentModel)_serviceProvider.GetService(typeof(SComponentModel));
102 103

            var packageInstallerServices = componentModel.GetExtensions<IVsPackageInstallerServices>().FirstOrDefault();
104
            var packageInstaller = componentModel.GetExtensions<IVsPackageInstaller2>().FirstOrDefault();
105 106
            var packageUninstaller = componentModel.GetExtensions<IVsPackageUninstaller>().FirstOrDefault();
            var packageSourceProvider = componentModel.GetExtensions<IVsPackageSourceProvider>().FirstOrDefault();
107

108 109 110 111
            if (packageInstallerServices == null ||
                packageInstaller == null ||
                packageUninstaller == null ||
                packageSourceProvider == null)
112 113 114 115
            {
                return;
            }

C
CyrusNajmabadi 已提交
116 117
            _packageServices = new PackageServicesProxy(
                packageInstallerServices, packageInstaller, packageUninstaller, packageSourceProvider);
118 119 120

            // Start listening to additional events workspace changes.
            _workspace.WorkspaceChanged += OnWorkspaceChanged;
C
CyrusNajmabadi 已提交
121
            _packageServices.SourcesChanged += OnSourceProviderSourcesChanged;
C
CyrusNajmabadi 已提交
122 123
        }

124
        protected override void StartWorking()
125 126 127
        {
            this.AssertIsForeground();

128 129 130 131 132
            if (!this.IsEnabled)
            {
                return;
            }

133
            OnSourceProviderSourcesChanged(this, EventArgs.Empty);
134 135
            OnWorkspaceChanged(null, new WorkspaceChangeEventArgs(
                WorkspaceChangeKind.SolutionAdded, null, null));
136 137 138 139 140 141 142 143 144 145 146 147
        }

        private void OnSourceProviderSourcesChanged(object sender, EventArgs e)
        {
            if (!this.IsForeground())
            {
                this.InvokeBelowInputPriority(() => OnSourceProviderSourcesChanged(sender, e));
                return;
            }

            this.AssertIsForeground();

C
CyrusNajmabadi 已提交
148
            PackageSources = _packageServices.GetSources(includeUnOfficial: true, includeDisabled: false)
149
                .Select(r => new PackageSource(r.Key, r.Value))
150
                .ToImmutableArrayOrEmpty();
151 152

            PackageSourcesChanged?.Invoke(this, EventArgs.Empty);
153 154 155
        }

        public bool TryInstallPackage(
156 157 158 159 160
            Workspace workspace,
            DocumentId documentId,
            string source,
            string packageName,
            string versionOpt,
161
            bool includePrerelease,
162
            CancellationToken cancellationToken)
163 164 165 166 167 168
        {
            this.AssertIsForeground();

            // The 'workspace == _workspace' line is probably not necessary. However, we include 
            // it just to make sure that someone isn't trying to install a package into a workspace
            // other than the VisualStudioWorkspace.
C
CyrusNajmabadi 已提交
169
            if (workspace == _workspace && _workspace != null && _packageServices != null)
170 171
            {
                var projectId = documentId.ProjectId;
172
                var dte = (EnvDTE.DTE)_serviceProvider.GetService(typeof(SDTE));
173 174 175 176 177
                var dteProject = _workspace.TryGetDTEProject(projectId);
                if (dteProject != null)
                {
                    var description = string.Format(ServicesVSResources.Install_0, packageName);

178 179
                    var undoManager = _editorAdaptersFactoryService.TryGetUndoManager(
                        workspace, documentId, cancellationToken);
180

181 182
                    return TryInstallAndAddUndoAction(
                        source, packageName, versionOpt, includePrerelease, dte, dteProject, undoManager);
183 184 185 186 187 188 189
                }
            }

            return false;
        }

        private bool TryInstallPackage(
190 191 192
            string source,
            string packageName,
            string versionOpt,
193
            bool includePrerelease,
194 195
            EnvDTE.DTE dte,
            EnvDTE.Project dteProject)
196 197 198
        {
            try
            {
C
CyrusNajmabadi 已提交
199
                if (!_packageServices.IsPackageInstalled(dteProject, packageName))
200 201
                {
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Installing_0, packageName);
202 203 204 205 206 207 208 209 210 211 212

                    if (versionOpt == null)
                    {
                        _packageServices.InstallLatestPackage(
                            source, dteProject, packageName, includePrerelease, ignoreDependencies: false);
                    }
                    else
                    {
                        _packageServices.InstallPackage(
                            source, dteProject, packageName, versionOpt, ignoreDependencies: false);
                    }
213 214 215 216 217 218 219 220 221 222

                    var installedVersion = GetInstalledVersion(packageName, dteProject);
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Installing_0_completed,
                        GetStatusBarText(packageName, installedVersion));

                    return true;
                }

                // fall through.
            }
223
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
224
            {
225
                dte.StatusBar.Text = string.Format(ServicesVSResources.Package_install_failed_colon_0, e.Message);
226 227 228

                var notificationService = _workspace.Services.GetService<INotificationService>();
                notificationService?.SendNotification(
229
                    string.Format(ServicesVSResources.Installing_0_failed_Additional_information_colon_1, packageName, e.Message),
230 231
                    severity: NotificationSeverity.Error);

232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
                // fall through.
            }

            return false;
        }

        private static string GetStatusBarText(string packageName, string installedVersion)
        {
            return installedVersion == null ? packageName : $"{packageName} - {installedVersion}";
        }

        private bool TryUninstallPackage(
            string packageName, EnvDTE.DTE dte, EnvDTE.Project dteProject)
        {
            this.AssertIsForeground();

            try
            {
C
CyrusNajmabadi 已提交
250
                if (_packageServices.IsPackageInstalled(dteProject, packageName))
251 252 253
                {
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Uninstalling_0, packageName);
                    var installedVersion = GetInstalledVersion(packageName, dteProject);
C
CyrusNajmabadi 已提交
254
                    _packageServices.UninstallPackage(dteProject, packageName, removeDependencies: true);
255

C
CyrusNajmabadi 已提交
256
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Uninstalling_0_completed,
257 258 259 260 261 262 263
                        GetStatusBarText(packageName, installedVersion));

                    return true;
                }

                // fall through.
            }
264
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
265
            {
266
                dte.StatusBar.Text = string.Format(ServicesVSResources.Package_uninstall_failed_colon_0, e.Message);
267 268 269

                var notificationService = _workspace.Services.GetService<INotificationService>();
                notificationService?.SendNotification(
270
                    string.Format(ServicesVSResources.Uninstalling_0_failed_Additional_information_colon_1, packageName, e.Message),
271 272
                    severity: NotificationSeverity.Error);

273 274 275 276 277 278 279 280 281 282 283 284
                // fall through.
            }

            return false;
        }

        private string GetInstalledVersion(string packageName, EnvDTE.Project dteProject)
        {
            this.AssertIsForeground();

            try
            {
C
CyrusNajmabadi 已提交
285
                var installedPackages = _packageServices.GetInstalledPackages(dteProject);
286 287 288
                var metadata = installedPackages.FirstOrDefault(m => m.Id == packageName);
                return metadata?.VersionString;
            }
289 290 291 292 293
            catch (ArgumentException e) when (IsKnownNugetIssue(e))
            {
                // Nuget may throw an ArgumentException when there is something about the project 
                // they do not like/support.
            }
294
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
295 296
            {
            }
297 298 299 300 301 302 303 304 305 306 307

            return null;
        }

        private bool IsKnownNugetIssue(ArgumentException exception)
        {
            // See https://github.com/NuGet/Home/issues/4706
            // Nuget throws on legal projects.  We do not want to report this exception
            // as it is known (and NFWs are expensive), but we do want to report if we 
            // run into anything else.
            return exception.Message.Contains("is not a valid version string");
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
        }

        private void OnWorkspaceChanged(object sender, WorkspaceChangeEventArgs e)
        {
            ThisCanBeCalledOnAnyThread();

            bool localSolutionChanged = false;
            ProjectId localChangedProject = null;
            switch (e.Kind)
            {
                default:
                    // Nothing to do for any other events.
                    return;

                case WorkspaceChangeKind.ProjectAdded:
                case WorkspaceChangeKind.ProjectChanged:
                case WorkspaceChangeKind.ProjectReloaded:
                case WorkspaceChangeKind.ProjectRemoved:
                    localChangedProject = e.ProjectId;
                    break;

                case WorkspaceChangeKind.SolutionAdded:
                case WorkspaceChangeKind.SolutionChanged:
                case WorkspaceChangeKind.SolutionCleared:
                case WorkspaceChangeKind.SolutionReloaded:
                case WorkspaceChangeKind.SolutionRemoved:
                    localSolutionChanged = true;
                    break;
            }

            lock (_gate)
            {
                // Augment the data that the foreground thread will process.
                _solutionChanged |= localSolutionChanged;
                if (localChangedProject != null)
                {
                    _changedProjects.Add(localChangedProject);
                }

                // Now cancel any inflight work that is processing the data.
                _tokenSource.Cancel();
                _tokenSource = new CancellationTokenSource();

                // And enqueue a new job to process things.  Wait one second before starting.
                // That way if we get a flurry of events we'll end up processing them after
                // they've all come in.
                var cancellationToken = _tokenSource.Token;
                Task.Delay(TimeSpan.FromSeconds(1), cancellationToken)
356
                    .ContinueWith(_ => ProcessBatchedChangesOnForeground(cancellationToken), cancellationToken, TaskContinuationOptions.OnlyOnRanToCompletion, ForegroundTaskScheduler);
357 358 359 360 361 362 363 364 365 366 367 368 369 370
            }
        }

        private void ProcessBatchedChangesOnForeground(CancellationToken cancellationToken)
        {
            this.AssertIsForeground();

            // If we've been asked to stop, then there's no point proceeding.
            if (cancellationToken.IsCancellationRequested)
            {
                return;
            }

            // If we've been disconnected, then there's no point proceeding.
C
CyrusNajmabadi 已提交
371
            if (_workspace == null || _packageServices == null)
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
            {
                return;
            }

            // Get a project to process.
            var solution = _workspace.CurrentSolution;
            var projectId = DequeueNextProject(solution);
            if (projectId == null)
            {
                // No project to process, nothing to do.
                return;
            }

            // Process this single project.
            ProcessProjectChange(solution, projectId);

            // After processing this single project, yield so the foreground thread
            // can do more work.  Then go and loop again so we can process the 
            // rest of the projects.
            Task.Factory.SafeStartNew(
                () => ProcessBatchedChangesOnForeground(cancellationToken), cancellationToken, ForegroundTaskScheduler);
        }

        private ProjectId DequeueNextProject(Solution solution)
        {
            this.AssertIsForeground();

            lock (_gate)
            {
                // If we detected a solution change, then we need to process all projects.
                // This includes all the projects that we already know about, as well as
                // all the projects in the current workspace solution.
                if (_solutionChanged)
                {
                    _changedProjects.AddRange(solution.ProjectIds);
                    _changedProjects.AddRange(_projectToInstalledPackageAndVersion.Keys);
                }

                _solutionChanged = false;

                // Remove and return the first project in the list.
                var projectId = _changedProjects.FirstOrDefault();
                _changedProjects.Remove(projectId);
                return projectId;
            }
        }

        private void ProcessProjectChange(Solution solution, ProjectId projectId)
        {
            this.AssertIsForeground();
422

423
            // Remove anything we have associated with this project.
424
            _projectToInstalledPackageAndVersion.TryRemove(projectId, out var projectState);
425

426 427
            var project = solution.GetProject(projectId);
            if (project == null)
428 429 430 431 432
            {
                // Project was removed.  Nothing needs to be done.
                return;
            }

433 434 435 436 437 438 439 440 441 442
            // We really only need to know the NuGet status for managed language projects.
            // Also, the NuGet APIs may throw on some projects that don't implement the 
            // full set of DTE APIs they expect.  So we filter down to just C# and VB here
            // as we know these languages are safe to build up this index for.
            if (project.Language != LanguageNames.CSharp &&
                project.Language != LanguageNames.VisualBasic)
            {
                return;
            }

443 444 445 446
            // Project was changed in some way.  Let's go find the set of installed packages for it.
            var dteProject = _workspace.TryGetDTEProject(projectId);
            if (dteProject == null)
            {
447
                // Don't have a DTE project for this project ID.  not something we can query NuGet for.
448 449 450
                return;
            }

451
            var installedPackages = new MultiDictionary<string, string>();
452
            var isEnabled = false;
453

454
            // Calling into NuGet.  Assume they may fail for any reason.
455 456
            try
            {
C
CyrusNajmabadi 已提交
457
                var installedPackageMetadata = _packageServices.GetInstalledPackages(dteProject);
458 459
                foreach (var metadata in installedPackageMetadata)
                {
C
CyrusNajmabadi 已提交
460 461 462 463
                    if (metadata.VersionString != null)
                    {
                        installedPackages.Add(metadata.Id, metadata.VersionString);
                    }
464
                }
C
CyrusNajmabadi 已提交
465

466 467
                isEnabled = true;
            }
468
            catch (ArgumentException e) when (IsKnownNugetIssue(e))
469 470 471
            {
                // Nuget may throw an ArgumentException when there is something about the project 
                // they do not like/support.
472
            }
473
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
474 475 476
            {
            }

477 478 479
            var state = new ProjectState(isEnabled, installedPackages);
            _projectToInstalledPackageAndVersion.AddOrUpdate(
                projectId, state, (_1, _2) => state);
480 481 482 483 484
        }

        public bool IsInstalled(Workspace workspace, ProjectId projectId, string packageName)
        {
            ThisCanBeCalledOnAnyThread();
C
CyrusNajmabadi 已提交
485
            return _projectToInstalledPackageAndVersion.TryGetValue(projectId, out var installedPackages) &&
486
                installedPackages.InstalledPackageToVersion.ContainsKey(packageName);
487 488
        }

489
        public ImmutableArray<string> GetInstalledVersions(string packageName)
490 491 492 493
        {
            ThisCanBeCalledOnAnyThread();

            var installedVersions = new HashSet<string>();
494
            foreach (var state in _projectToInstalledPackageAndVersion.Values)
495
            {
496
                installedVersions.AddRange(state.InstalledPackageToVersion[packageName]);
497 498 499 500 501 502 503 504 505 506 507 508 509
            }

            // Order the versions with a weak heuristic so that 'newer' versions come first.
            // Essentially, we try to break the version on dots, and then we use a LogicalComparer
            // to try to more naturally order the things we see between the dots.
            var versionsAndSplits = installedVersions.Select(v => new { Version = v, Split = v.Split('.') }).ToList();

            versionsAndSplits.Sort((v1, v2) =>
            {
                var diff = CompareSplit(v1.Split, v2.Split);
                return diff != 0 ? diff : -v1.Version.CompareTo(v2.Version);
            });

510
            return versionsAndSplits.Select(v => v.Version).ToImmutableArray();
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
        }

        private int CompareSplit(string[] split1, string[] split2)
        {
            ThisCanBeCalledOnAnyThread();

            for (int i = 0, n = Math.Min(split1.Length, split2.Length); i < n; i++)
            {
                // Prefer things that look larger.  i.e. 7 should come before 6. 
                // Use a logical string comparer so that 10 is understood to be
                // greater than 3.
                var diff = -LogicalStringComparer.Instance.Compare(split1[i], split2[i]);
                if (diff != 0)
                {
                    return diff;
                }
            }

            // Choose the one with more parts.
            return split2.Length - split1.Length;
        }

        public IEnumerable<Project> GetProjectsWithInstalledPackage(Solution solution, string packageName, string version)
        {
            ThisCanBeCalledOnAnyThread();

            var result = new List<Project>();

            foreach (var kvp in this._projectToInstalledPackageAndVersion)
            {
541
                var state = kvp.Value;
542 543
                var versionSet = state.InstalledPackageToVersion[packageName];
                if (versionSet.Contains(packageName))
544
                {
545 546
                    var project = solution.GetProject(kvp.Key);
                    if (project != null)
547
                    {
548
                        result.Add(project);
549 550 551 552 553 554 555 556 557 558 559
                    }
                }
            }

            return result;
        }

        public void ShowManagePackagesDialog(string packageName)
        {
            this.AssertIsForeground();

560
            var shell = (IVsShell)_serviceProvider.GetService(typeof(SVsShell));
561 562 563 564 565 566
            if (shell == null)
            {
                return;
            }

            var nugetGuid = new Guid("5fcc8577-4feb-4d04-ad72-d6c629b083cc");
C
CyrusNajmabadi 已提交
567
            shell.LoadPackage(ref nugetGuid, out var nugetPackage);
568 569 570 571 572 573
            if (nugetPackage == null)
            {
                return;
            }

            // We're able to launch the package manager (with an item in its search box) by
574
            // using the IVsSearchProvider API that the NuGet package exposes.
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
            //
            // We get that interface for it and then pass it a SearchQuery that effectively
            // wraps the package name we're looking for.  The NuGet package will then read
            // out that string and populate their search box with it.
            var extensionProvider = (IVsPackageExtensionProvider)nugetPackage;
            var extensionGuid = new Guid("042C2B4B-C7F7-49DB-B7A2-402EB8DC7892");
            var emptyGuid = Guid.Empty;
            var searchProvider = (IVsSearchProvider)extensionProvider.CreateExtensionInstance(ref emptyGuid, ref extensionGuid);
            var task = searchProvider.CreateSearch(dwCookie: 1, pSearchQuery: new SearchQuery(packageName), pSearchCallback: this);
            task.Start();
        }

        public void ReportProgress(IVsSearchTask pTask, uint dwProgress, uint dwMaxProgress)
        {
        }

        public void ReportComplete(IVsSearchTask pTask, uint dwResultsFound)
        {
        }

        public void ReportResult(IVsSearchTask pTask, IVsSearchItemResult pSearchItemResult)
        {
            pSearchItemResult.InvokeAction();
        }

        public void ReportResults(IVsSearchTask pTask, uint dwResults, IVsSearchItemResult[] pSearchItemResults)
        {
        }

        private class SearchQuery : IVsSearchQuery
        {
            public SearchQuery(string packageName)
            {
                this.SearchString = packageName;
            }

            public string SearchString { get; }

            public uint ParseError => 0;

            public uint GetTokens(uint dwMaxTokens, IVsSearchToken[] rgpSearchTokens)
            {
                return 0;
            }
        }
620

C
CyrusNajmabadi 已提交
621
        private class PackageServicesProxy : IPackageServicesProxy
622
        {
623
            private readonly IVsPackageInstaller2 _packageInstaller;
C
CyrusNajmabadi 已提交
624 625 626
            private readonly IVsPackageInstallerServices _packageInstallerServices;
            private readonly IVsPackageSourceProvider _packageSourceProvider;
            private readonly IVsPackageUninstaller _packageUninstaller;
627

628 629 630 631 632
            public PackageServicesProxy(
                IVsPackageInstallerServices packageInstallerServices,
                IVsPackageInstaller2 packageInstaller,
                IVsPackageUninstaller packageUninstaller,
                IVsPackageSourceProvider packageSourceProvider)
633
            {
C
CyrusNajmabadi 已提交
634 635 636 637
                _packageInstallerServices = packageInstallerServices;
                _packageInstaller = packageInstaller;
                _packageUninstaller = packageUninstaller;
                _packageSourceProvider = packageSourceProvider;
638 639 640 641 642 643
            }

            public event EventHandler SourcesChanged
            {
                add
                {
C
CyrusNajmabadi 已提交
644
                    _packageSourceProvider.SourcesChanged += value;
645 646 647 648
                }

                remove
                {
C
CyrusNajmabadi 已提交
649
                    _packageSourceProvider.SourcesChanged -= value;
650 651 652
                }
            }

653
            public IEnumerable<PackageMetadata> GetInstalledPackages(EnvDTE.Project project)
654
            {
655 656 657
                return _packageInstallerServices.GetInstalledPackages(project)
                                  .Select(m => new PackageMetadata(m.Id, m.VersionString))
                                  .ToList();
658 659
            }

660 661 662 663 664 665 666 667 668 669 670 671
            public bool IsPackageInstalled(EnvDTE.Project project, string id)
                => _packageInstallerServices.IsPackageInstalled(project, id);

            public void InstallPackage(string source, EnvDTE.Project project, string packageId, string version, bool ignoreDependencies)
                => _packageInstaller.InstallPackage(source, project, packageId, version, ignoreDependencies);

            public void InstallLatestPackage(string source, EnvDTE.Project project, string packageId, bool includePrerelease, bool ignoreDependencies)
                => _packageInstaller.InstallLatestPackage(source, project, packageId, includePrerelease, ignoreDependencies);

            public IEnumerable<KeyValuePair<string, string>> GetSources(bool includeUnOfficial, bool includeDisabled)
                => _packageSourceProvider.GetSources(includeUnOfficial, includeDisabled);

672
            public void UninstallPackage(EnvDTE.Project project, string packageId, bool removeDependencies)
673
                => _packageUninstaller.UninstallPackage(project, packageId, removeDependencies);
674
        }
675
    }
676
}