-
Notifications
You must be signed in to change notification settings - Fork 420
/
ProjectManager.cs
857 lines (739 loc) · 39.7 KB
/
ProjectManager.cs
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
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Threading.Tasks.Dataflow;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json.Linq;
using OmniSharp.Eventing;
using OmniSharp.FileWatching;
using OmniSharp.Models.UpdateBuffer;
using OmniSharp.MSBuild.Logging;
using OmniSharp.MSBuild.Models.Events;
using OmniSharp.MSBuild.Notification;
using OmniSharp.MSBuild.ProjectFile;
using OmniSharp.Roslyn.CSharp.Services.Diagnostics;
using OmniSharp.Roslyn.CSharp.Services.Refactoring.V2;
using OmniSharp.Options;
using OmniSharp.Roslyn.Utilities;
using OmniSharp.Services;
using OmniSharp.Utilities;
using System.Reflection;
using Microsoft.CodeAnalysis.Diagnostics;
using OmniSharp.Roslyn.EditorConfig;
namespace OmniSharp.MSBuild
{
internal class ProjectManager : DisposableObject
{
private class ProjectToUpdate
{
public ProjectIdInfo ProjectIdInfo;
public string FilePath { get; }
public bool AllowAutoRestore { get; set; }
public string ChangeTriggerPath { get; }
public ProjectLoadedEventArgs LoadedEventArgs { get; set; }
public ProjectToUpdate(string filePath, bool allowAutoRestore, ProjectIdInfo projectIdInfo, string changeTriggerPath)
{
ProjectIdInfo = projectIdInfo ?? throw new ArgumentNullException(nameof(projectIdInfo));
FilePath = filePath ?? throw new ArgumentNullException(nameof(filePath));
ChangeTriggerPath = changeTriggerPath;
AllowAutoRestore = allowAutoRestore;
}
}
private readonly ILogger _logger;
private readonly MSBuildOptions _options;
private readonly IEventEmitter _eventEmitter;
private readonly IFileSystemWatcher _fileSystemWatcher;
private readonly MetadataFileReferenceCache _metadataFileReferenceCache;
private readonly PackageDependencyChecker _packageDependencyChecker;
private readonly ProjectFileInfoCollection _projectFiles;
private readonly HashSet<string> _failedToLoadProjectFiles;
private readonly ConcurrentDictionary<string, int/*unused*/> _projectsRequestedOnDemand;
private readonly ProjectLoader _projectLoader;
private readonly OmniSharpWorkspace _workspace;
private readonly ImmutableArray<IMSBuildEventSink> _eventSinks;
private const int LoopDelay = 100; // milliseconds
private readonly BufferBlock<ProjectToUpdate> _queue;
private readonly CancellationTokenSource _processLoopCancellation;
private readonly Task _processLoopTask;
private readonly IAnalyzerAssemblyLoader _analyzerAssemblyLoader;
private readonly DotNetInfo _dotNetInfo;
private bool _processingQueue;
private readonly Guid _sessionId = Guid.NewGuid();
private readonly FileSystemNotificationCallback _onDirectoryFileChanged;
public ProjectManager(
ILoggerFactory loggerFactory,
MSBuildOptions options,
IEventEmitter eventEmitter,
IFileSystemWatcher fileSystemWatcher,
MetadataFileReferenceCache metadataFileReferenceCache,
PackageDependencyChecker packageDependencyChecker,
ProjectLoader projectLoader,
OmniSharpWorkspace workspace,
IAnalyzerAssemblyLoader analyzerAssemblyLoader,
ImmutableArray<IMSBuildEventSink> eventSinks,
DotNetInfo dotNetInfo)
{
_logger = loggerFactory.CreateLogger<ProjectManager>();
_options = options ?? new MSBuildOptions();
_eventEmitter = eventEmitter;
_fileSystemWatcher = fileSystemWatcher;
_metadataFileReferenceCache = metadataFileReferenceCache;
_packageDependencyChecker = packageDependencyChecker;
_projectFiles = new ProjectFileInfoCollection();
_failedToLoadProjectFiles = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
_projectsRequestedOnDemand = new ConcurrentDictionary<string, int>(StringComparer.OrdinalIgnoreCase);
_projectLoader = projectLoader;
_workspace = workspace;
_eventSinks = eventSinks;
_dotNetInfo = dotNetInfo;
_queue = new BufferBlock<ProjectToUpdate>();
_processLoopCancellation = new CancellationTokenSource();
_processLoopTask = Task.Run(() => ProcessLoopAsync(_processLoopCancellation.Token));
_analyzerAssemblyLoader = analyzerAssemblyLoader;
_onDirectoryFileChanged = OnDirectoryFileChanged;
if (_options.LoadProjectsOnDemand)
{
_workspace.AddWaitForProjectModelReadyHandler(WaitForProjectModelReadyAsync);
}
}
private async Task WaitForProjectModelReadyAsync(string documentPath)
{
// Search and queue for loading C# projects that are likely to reference the requested file.
// C# source files are located pretty much always in the same folder with their project file or in a subfolder below.
// Search up the root folder to enable on-demand project load in additional scenarios like the following:
// - A subfolder in a big codebase was opened in VSCode and then a document was opened that is located outside of the subfoler.
// - A workspace was opened in VSCode that includes multiple subfolders from a big codebase.
// - Documents from different codebases are opened in the same VSCode workspace.
string projectDir = Path.GetDirectoryName(documentPath);
do
{
var csProjFiles = Directory.EnumerateFiles(projectDir, "*.csproj", SearchOption.TopDirectoryOnly).ToList();
if (csProjFiles.Count > 0)
{
foreach (string csProjFile in csProjFiles)
{
if (_projectsRequestedOnDemand.TryAdd(csProjFile, 0 /*unused*/))
{
var projectIdInfo = new ProjectIdInfo(ProjectId.CreateNewId(csProjFile), false);
QueueProjectUpdate(csProjFile, allowAutoRestore: true, projectId: projectIdInfo);
}
}
break;
}
projectDir = Path.GetDirectoryName(projectDir);
} while (projectDir != null);
// Wait for all queued projects to load to ensure that workspace is fully up to date before this method completes.
// If the project for the document was loaded before and there are no other projects to load at the moment, the call below will be no-op.
_logger.LogTrace($"Started waiting for projects queue to be empty when requested '{documentPath}'");
await WaitForQueueEmptyAsync();
_logger.LogTrace($"Stopped waiting for projects queue to be empty when requested '{documentPath}'");
}
protected override void DisposeCore(bool disposing)
{
if (IsDisposed)
{
return;
}
_processLoopCancellation.Cancel();
_processLoopCancellation.Dispose();
}
public IEnumerable<ProjectFileInfo> GetAllProjects() => _projectFiles.GetItems();
public bool TryGetProject(string projectFilePath, out ProjectFileInfo projectFileInfo) => _projectFiles.TryGetValue(projectFilePath, out projectFileInfo);
public void QueueProjectUpdate(string projectFilePath, bool allowAutoRestore, ProjectIdInfo projectId, string changeTriggerFilePath = null)
{
_logger.LogInformation($"Queue project update for '{projectFilePath}'");
_queue.Post(new ProjectToUpdate(projectFilePath, allowAutoRestore, projectId, changeTriggerFilePath));
}
public async Task WaitForQueueEmptyAsync()
{
while (_queue.Count > 0 || _processingQueue)
{
await Task.Delay(LoopDelay);
}
}
private async Task ProcessLoopAsync(CancellationToken cancellationToken)
{
while (true)
{
try
{
await Task.Delay(LoopDelay, cancellationToken);
ProcessQueue(cancellationToken);
}
catch (Exception ex)
{
_logger.LogError($"Error occurred while processing project updates: {ex}");
}
}
}
private void ProcessQueue(CancellationToken cancellationToken)
{
_processingQueue = true;
try
{
Dictionary<string, ProjectToUpdate> projectByFilePathMap = null;
List<ProjectToUpdate> projectList = null;
while (_queue.TryReceive(out var currentProject))
{
if (cancellationToken.IsCancellationRequested)
{
break;
}
if (projectByFilePathMap == null)
{
projectByFilePathMap = new Dictionary<string, ProjectToUpdate>(StringComparer.OrdinalIgnoreCase);
projectList = new List<ProjectToUpdate>();
}
// Ensure that we don't process the same project twice. However, if a project *does*
// appear more than once in the update queue, ensure that AllowAutoRestore is set to true
// if any of the updates requires it.
if (projectByFilePathMap.TryGetValue(currentProject.FilePath, out var trackedProject))
{
if (currentProject.AllowAutoRestore && !trackedProject.AllowAutoRestore)
{
trackedProject.AllowAutoRestore = true;
}
continue;
}
// TODO: Handle removing project
projectByFilePathMap.Add(currentProject.FilePath, currentProject);
projectList.Add(currentProject);
// update or add project
_failedToLoadProjectFiles.Remove(currentProject.FilePath);
ProjectLoadedEventArgs loadedEventArgs;
if (_projectFiles.TryGetValue(currentProject.FilePath, out ProjectFileInfo projectFileInfo))
{
(projectFileInfo, loadedEventArgs) = ReloadProject(projectFileInfo);
if (projectFileInfo == null)
{
_failedToLoadProjectFiles.Add(currentProject.FilePath);
continue;
}
currentProject.LoadedEventArgs = loadedEventArgs;
_projectFiles[currentProject.FilePath] = projectFileInfo;
}
else
{
(projectFileInfo, loadedEventArgs) = LoadProject(currentProject.FilePath, currentProject.ProjectIdInfo);
if (projectFileInfo == null)
{
_failedToLoadProjectFiles.Add(currentProject.FilePath);
continue;
}
currentProject.LoadedEventArgs = loadedEventArgs;
AddProject(projectFileInfo);
}
}
if (projectByFilePathMap != null)
{
foreach (var project in projectList)
{
UpdateProject(project.FilePath, project.ChangeTriggerPath);
// Fire loaded events
if (project.LoadedEventArgs != null)
{
foreach (var eventSink in _eventSinks)
{
try
{
eventSink.ProjectLoaded(project.LoadedEventArgs);
}
catch (Exception ex)
{
_logger.LogError(ex, "Exception thrown while calling event sinks");
}
}
}
}
foreach (var project in projectList)
{
if (_projectFiles.TryGetValue(project.FilePath, out var projectFileInfo))
{
_packageDependencyChecker.CheckForUnresolvedDependences(projectFileInfo, project.AllowAutoRestore);
}
}
}
}
finally
{
_processingQueue = false;
}
_fileSystemWatcher.Watch(".cs", _onDirectoryFileChanged);
}
private (ProjectFileInfo, ProjectLoadedEventArgs) LoadProject(string projectFilePath, ProjectIdInfo idInfo)
=> LoadOrReloadProject(projectFilePath, () => ProjectFileInfo.Load(projectFilePath, idInfo, _projectLoader, _sessionId, _dotNetInfo));
private (ProjectFileInfo, ProjectLoadedEventArgs) ReloadProject(ProjectFileInfo projectFileInfo)
=> LoadOrReloadProject(projectFileInfo.FilePath, () => projectFileInfo.Reload(_projectLoader));
private (ProjectFileInfo, ProjectLoadedEventArgs) LoadOrReloadProject(string projectFilePath, Func<(ProjectFileInfo, ImmutableArray<MSBuildDiagnostic>, ProjectLoadedEventArgs)> loader)
{
_logger.LogInformation($"Loading project: {projectFilePath}");
try
{
var (projectFileInfo, diagnostics, eventArgs) = loader();
if (projectFileInfo != null)
{
_logger.LogInformation($"Successfully loaded project file '{projectFilePath}'.");
}
else
{
_logger.LogWarning($"Failed to load project file '{projectFilePath}'.");
}
_eventEmitter.MSBuildProjectDiagnostics(projectFilePath, diagnostics);
return (projectFileInfo, eventArgs);
}
catch (Exception ex)
{
_logger.LogWarning($"Failed to load project file '{projectFilePath}'.", ex);
_eventEmitter.Error(ex, fileName: projectFilePath);
return (null, null);
}
}
private bool RemoveProject(string projectFilePath)
{
_failedToLoadProjectFiles.Remove(projectFilePath);
if (!_projectFiles.TryGetValue(projectFilePath, out var projectFileInfo))
{
return false;
}
_projectFiles.Remove(projectFilePath);
var newSolution = _workspace.CurrentSolution.RemoveProject(projectFileInfo.Id);
if (!_workspace.TryApplyChanges(newSolution))
{
_logger.LogError($"Failed to remove project from workspace: '{projectFileInfo.FilePath}'");
}
// TODO: Stop watching project files
return true;
}
private void AddProject(ProjectFileInfo projectFileInfo)
{
_logger.LogInformation($"Adding project '{projectFileInfo.FilePath}'");
_projectFiles.Add(projectFileInfo);
var projectInfo = projectFileInfo.CreateProjectInfo(_analyzerAssemblyLoader);
var newSolution = _workspace.CurrentSolution.AddProject(projectInfo);
_workspace.AddDocumentInclusionRuleForProject(projectInfo.Id, (filePath) => projectFileInfo.IsFileIncluded(filePath));
SubscribeToAnalyzerReferenceLoadFailures(projectInfo.AnalyzerReferences.Cast<AnalyzerFileReference>(), _logger);
if (!_workspace.TryApplyChanges(newSolution))
{
_logger.LogError($"Failed to add project to workspace: '{projectFileInfo.FilePath}'");
}
WatchProjectFiles(projectFileInfo);
}
private void WatchProjectFiles(ProjectFileInfo projectFileInfo)
{
// TODO: This needs some improvement. Currently, it tracks both deletions and changes
// as "updates". We should properly remove projects that are deleted.
_fileSystemWatcher.Watch(projectFileInfo.FilePath, (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: true, projectFileInfo.ProjectIdInfo, file);
});
if (_workspace.EditorConfigEnabled)
{
// Watch beneath the Project folder for changes to .editorconfig files.
_fileSystemWatcher.Watch(".editorconfig", (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
// Watch in folders above the Project folder for changes to .editorconfig files.
var parentPath = Path.GetDirectoryName(projectFileInfo.FilePath);
while (parentPath != Path.GetPathRoot(parentPath))
{
if (!EditorConfigFinder.TryGetDirectoryPath(parentPath, out parentPath))
{
break;
}
_fileSystemWatcher.Watch(Path.Combine(parentPath, ".editorconfig"), (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
}
}
if (projectFileInfo.RuleSet?.FilePath != null)
{
_fileSystemWatcher.Watch(projectFileInfo.RuleSet.FilePath, (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
}
if (!string.IsNullOrEmpty(projectFileInfo.ProjectAssetsFile))
{
_fileSystemWatcher.Watch(projectFileInfo.ProjectAssetsFile, (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
var restoreDirectory = Path.GetDirectoryName(projectFileInfo.ProjectAssetsFile);
var nugetFileBase = Path.Combine(restoreDirectory, Path.GetFileName(projectFileInfo.FilePath) + ".nuget");
var nugetCacheFile = nugetFileBase + ".cache";
var nugetPropsFile = nugetFileBase + ".g.props";
var nugetTargetsFile = nugetFileBase + ".g.targets";
_fileSystemWatcher.Watch(nugetCacheFile, (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
_fileSystemWatcher.Watch(nugetPropsFile, (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
_fileSystemWatcher.Watch(nugetTargetsFile, (file, changeType) =>
{
QueueProjectUpdate(projectFileInfo.FilePath, allowAutoRestore: false, projectFileInfo.ProjectIdInfo, file);
});
}
}
private void UpdateProject(string projectFilePath, string changeTriggerFilePath)
{
if (!_projectFiles.TryGetValue(projectFilePath, out var projectFileInfo))
{
_logger.LogError($"Attempted to update project that is not loaded: {projectFilePath}");
return;
}
var project = _workspace.CurrentSolution.GetProject(projectFileInfo.Id);
if (project == null)
{
_logger.LogError($"Could not locate project in workspace: {projectFileInfo.FilePath}");
return;
}
// if the update was triggered by a change to an editorconfig file, only reload that analyzer config file
// this will propagata a reanalysis of the project
if (changeTriggerFilePath != null && changeTriggerFilePath.ToLowerInvariant().EndsWith(".editorconfig"))
{
UpdateAnalyzerConfigFile(project, changeTriggerFilePath);
return;
}
// for other update triggers, perform a full check of all options
UpdateSourceFiles(project, projectFileInfo.SourceFiles);
UpdateParseOptions(project, projectFileInfo.LanguageVersion, projectFileInfo.PreprocessorSymbolNames, !string.IsNullOrWhiteSpace(projectFileInfo.DocumentationFile));
UpdateProjectReferences(project, projectFileInfo.ProjectReferences);
UpdateAnalyzerConfigFiles(project, projectFileInfo.AnalyzerConfigFiles);
UpdateReferences(project, projectFileInfo.ProjectReferences, projectFileInfo.References);
UpdateAnalyzerReferences(project, projectFileInfo);
UpdateAdditionalFiles(project, projectFileInfo.AdditionalFiles);
UpdateProjectProperties(project, projectFileInfo);
_workspace.AddDocumentInclusionRuleForProject(project.Id, (path) => projectFileInfo.IsFileIncluded(path));
_workspace.TryPromoteMiscellaneousDocumentsToProject(project);
UpdateCompilationOptions(project, projectFileInfo);
}
private void UpdateCompilationOptions(Project project, ProjectFileInfo projectFileInfo)
{
// if project already has compilation options, then we shall use that to compute new compilation options based on the project file
// and then only set those if it's really necessary
if (project.CompilationOptions != null && project.CompilationOptions is CSharpCompilationOptions existingCompilationOptions)
{
var newCompilationOptions = projectFileInfo.CreateCompilationOptions(existingCompilationOptions);
if (newCompilationOptions != existingCompilationOptions)
{
_workspace.UpdateCompilationOptionsForProject(project.Id, newCompilationOptions);
_logger.LogDebug($"Updated project compilation options on project {project.Name}.");
}
}
}
private void UpdateAnalyzerReferences(Project project, ProjectFileInfo projectFileInfo)
{
var analyzerFileReferences = projectFileInfo.ResolveAnalyzerReferencesForProject(_analyzerAssemblyLoader);
SubscribeToAnalyzerReferenceLoadFailures(analyzerFileReferences, _logger);
_workspace.SetAnalyzerReferences(project.Id, analyzerFileReferences);
}
private void SubscribeToAnalyzerReferenceLoadFailures(IEnumerable<AnalyzerFileReference> analyzerFileReferences, ILogger logger)
{
foreach (var analyzerFileReference in analyzerFileReferences)
{
analyzerFileReference.AnalyzerLoadFailed += (sender, e) =>
{
logger.LogError($"Failure while loading the analyzer reference '{analyzerFileReference.Display}': {e.Message}");
};
}
}
private void UpdateProjectProperties(Project project, ProjectFileInfo projectFileInfo)
{
if (projectFileInfo.DefaultNamespace != project.DefaultNamespace)
{
var newSolution = _workspace.CurrentSolution.WithProjectDefaultNamespace(project.Id, projectFileInfo.DefaultNamespace);
if (_workspace.TryApplyChanges(newSolution))
{
_logger.LogDebug($"Updated default namespace from {project.DefaultNamespace} to {projectFileInfo.DefaultNamespace} on {project.FilePath} project.");
}
else
{
_logger.LogWarning($"Couldn't update default namespace from {project.DefaultNamespace} to {projectFileInfo.DefaultNamespace} on {project.FilePath} project.");
}
}
}
private void UpdateAdditionalFiles(Project project, IList<string> additionalFiles)
{
var currentAdditionalDocuments = project.AdditionalDocuments;
foreach (var document in currentAdditionalDocuments)
{
_workspace.RemoveAdditionalDocument(document.Id);
}
foreach (var file in additionalFiles)
{
if (File.Exists(file))
{
_workspace.AddAdditionalDocument(project.Id, file);
}
}
}
private void UpdateAnalyzerConfigFile(Project project, string analyzerConfigFile)
{
if (!_workspace.EditorConfigEnabled)
{
_logger.LogDebug($".editorconfig files were configured by the project {project.Name} but will not be respected because the feature is switched off in OmniSharp. Enable .editorconfig support in OmniSharp to take advantage of them.");
return;
}
var currentAnalyzerConfigDocument = project.AnalyzerConfigDocuments.FirstOrDefault(x => x.FilePath.Equals(analyzerConfigFile));
if (currentAnalyzerConfigDocument == null)
{
_logger.LogDebug($"The change was reported in {analyzerConfigFile} but it doesn't belong to any project.");
return;
}
if (!File.Exists(analyzerConfigFile))
{
_logger.LogWarning($"The change was reported in {analyzerConfigFile} but it doesn't exist on disk.");
return;
}
_workspace.ReloadAnalyzerConfigDocument(currentAnalyzerConfigDocument.Id, analyzerConfigFile);
_logger.LogDebug($"Reloaded {currentAnalyzerConfigDocument.Id} from {analyzerConfigFile} in project {project.Name}.");
}
private void UpdateAnalyzerConfigFiles(Project project, IList<string> analyzerConfigFiles)
{
if (!_workspace.EditorConfigEnabled)
{
_logger.LogDebug($".editorconfig files were configured by the project {project.Name} but will not be respected because the feature is switched off in OmniSharp. Enable .editorconfig support in OmniSharp to take advantage of them.");
return;
}
var currentAnalyzerConfigDocuments = project.AnalyzerConfigDocuments;
foreach (var document in currentAnalyzerConfigDocuments)
{
_logger.LogDebug($".editorconfig file '{document.Name}' removed from project {project.Name}");
_workspace.RemoveAnalyzerConfigDocument(document.Id);
}
foreach (var file in analyzerConfigFiles)
{
if (File.Exists(file))
{
_workspace.AddAnalyzerConfigDocument(project.Id, file);
_logger.LogDebug($".editorconfig file '{file}' added for project {project.Name}");
}
else
{
_logger.LogWarning($".editorconfig file '{file}' for project {project.Name} was expected but not found on disk.");
}
}
}
private void UpdateSourceFiles(Project project, IList<string> sourceFiles)
{
// Remove transient documents from list of current documents, to assure proper new documents are added.
// Transient documents will be removed on workspace DocumentAdded event.
var currentDocuments = project.Documents
.Where(document => !_workspace.BufferManager.IsTransientDocument(document.Id))
.ToDictionary(d => d.FilePath, d => d.Id);
// Add source files to the project.
foreach (var sourceFile in sourceFiles)
{
// If a document for this source file already exists in the project, carry on.
if (currentDocuments.Remove(sourceFile))
{
continue;
}
// If the source file doesn't exist on disk, don't try to add it.
if (!File.Exists(sourceFile))
{
continue;
}
_workspace.AddDocument(project, sourceFile);
}
// Removing any remaining documents from the project.
foreach (var currentDocument in currentDocuments)
{
_workspace.RemoveDocument(currentDocument.Value);
}
}
private void OnDirectoryFileChanged(string path, FileChangeType changeType)
{
// Hosts may not have passed through a file change type
if (changeType == FileChangeType.Unspecified && !File.Exists(path) || changeType == FileChangeType.Delete)
{
foreach (var documentId in _workspace.CurrentSolution.GetDocumentIdsWithFilePath(path))
{
_workspace.RemoveDocument(documentId);
}
}
if (changeType == FileChangeType.Unspecified || changeType == FileChangeType.Create || changeType == FileChangeType.Change)
{
// Only add cs files. Also, make sure the path is a file, and not a directory name that happens to end in ".cs"
if (string.Equals(Path.GetExtension(path), ".cs", StringComparison.CurrentCultureIgnoreCase) && File.Exists(path))
{
// Use the buffer manager to add the new file to the appropriate projects
// Hosts that don't pass the FileChangeType may wind up updating the buffer twice
_workspace.BufferManager.UpdateBufferAsync(new UpdateBufferRequest() { FileName = path, FromDisk = true }, isCreate: changeType == FileChangeType.Create).Wait();
}
}
}
private void UpdateParseOptions(Project project, LanguageVersion languageVersion, IEnumerable<string> preprocessorSymbolNames, bool generateXmlDocumentation)
{
var existingParseOptions = (CSharpParseOptions)project.ParseOptions;
if (existingParseOptions.LanguageVersion == languageVersion &&
Enumerable.SequenceEqual(existingParseOptions.PreprocessorSymbolNames, preprocessorSymbolNames) &&
(existingParseOptions.DocumentationMode == DocumentationMode.Diagnose) == generateXmlDocumentation)
{
// No changes to make. Moving on.
return;
}
var parseOptions = new CSharpParseOptions(languageVersion);
if (preprocessorSymbolNames.Any())
{
parseOptions = parseOptions.WithPreprocessorSymbols(preprocessorSymbolNames);
}
if (generateXmlDocumentation)
{
parseOptions = parseOptions.WithDocumentationMode(DocumentationMode.Diagnose);
}
_workspace.SetParseOptions(project.Id, parseOptions);
}
private void UpdateProjectReferences(Project project, ImmutableArray<string> projectReferencePaths)
{
_logger.LogInformation($"Update project: {project.Name}");
var existingProjectReferences = new HashSet<ProjectReference>(project.ProjectReferences);
var addedProjectReferences = new HashSet<ProjectReference>();
foreach (var projectReferencePath in projectReferencePaths)
{
if (_failedToLoadProjectFiles.Contains(projectReferencePath))
{
_logger.LogWarning($"Ignoring previously failed to load project '{projectReferencePath}' referenced by '{project.Name}'.");
continue;
}
if (!_projectFiles.TryGetValue(projectReferencePath, out var referencedProject))
{
if (File.Exists(projectReferencePath) &&
projectReferencePath.EndsWith(".csproj", StringComparison.OrdinalIgnoreCase))
{
_logger.LogInformation($"Found referenced project outside root directory: {projectReferencePath}");
// We've found a project reference that we didn't know about already, but it exists on disk.
// This is likely a project that is outside of OmniSharp's TargetDirectory.
referencedProject = ProjectFileInfo.CreateNoBuild(projectReferencePath, _projectLoader, _dotNetInfo);
AddProject(referencedProject);
QueueProjectUpdate(projectReferencePath, allowAutoRestore: true, referencedProject.ProjectIdInfo);
}
}
if (referencedProject == null)
{
_logger.LogWarning($"Unable to resolve project reference '{projectReferencePath}' for '{project.Name}'.");
continue;
}
ImmutableArray<string> aliases = default;
if (_projectFiles.TryGetValue(project.FilePath, out var projectFileInfo))
{
if (projectFileInfo.ProjectReferenceAliases.TryGetValue(projectReferencePath, out var projectReferenceAliases))
{
if (!string.IsNullOrEmpty(projectReferenceAliases))
{
aliases = ImmutableArray.CreateRange(projectReferenceAliases.Split(new char[]{','},StringSplitOptions.RemoveEmptyEntries).Select(a => a.Trim()));
_logger.LogDebug($"Setting aliases: {projectReferencePath}, {projectReferenceAliases} ");
}
}
}
else
{
_logger.LogDebug($"failed to get project info:{project.FilePath}");
}
var projectReference = new ProjectReference(referencedProject.Id, aliases);
if (existingProjectReferences.Remove(projectReference))
{
// This reference already exists
continue;
}
if (!addedProjectReferences.Contains(projectReference))
{
_workspace.AddProjectReference(project.Id, projectReference);
addedProjectReferences.Add(projectReference);
}
}
foreach (var existingProjectReference in existingProjectReferences)
{
_workspace.RemoveProjectReference(project.Id, existingProjectReference);
}
}
private void UpdateReferences(Project project, ImmutableArray<string> projectReferencePaths, ImmutableArray<string> referencePaths)
{
var referencesToRemove = new HashSet<MetadataReference>(project.MetadataReferences, MetadataReferenceEqualityComparer.Instance);
var referencesToAdd = new HashSet<MetadataReference>(MetadataReferenceEqualityComparer.Instance);
foreach (var referencePath in referencePaths)
{
if (!File.Exists(referencePath))
{
_logger.LogWarning($"Unable to resolve assembly '{referencePath}'");
continue;
}
// There is no need to explicitly add assembly to workspace when the assembly is produced by a project reference.
// Doing so actually can cause /codecheck request to return errors like below for types in the referenced project if it is for example signed:
// The type 'TestClass' exists in both 'SignedLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' and 'ClassLibrary1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a5d85a5baa39a6a6'
if (TryFindLoadedProjectReferenceWithTargetPath(referencePath, projectReferencePaths, project.Name, out ProjectFileInfo projectReferenceWithTarget))
{
_logger.LogDebug($"Skipped reference {referencePath} of project {project.Name} because it is already represented as a target " +
$"of loaded project reference {projectReferenceWithTarget.Name}");
continue;
}
var reference = _metadataFileReferenceCache.GetMetadataReference(referencePath);
if (referencesToRemove.Remove(reference))
{
continue;
}
if (!referencesToAdd.Contains(reference))
{
if (_projectFiles.TryGetValue(project.FilePath, out var projectFileInfo))
{
if (projectFileInfo.ReferenceAliases.TryGetValue(referencePath, out var aliases))
{
if (!string.IsNullOrEmpty(aliases))
{
reference = reference.WithAliases(aliases.Split(new char[]{','},StringSplitOptions.RemoveEmptyEntries).Select(a => a.Trim()));
_logger.LogDebug($"setting aliases: {referencePath}, {aliases} ");
}
}
}
else
{
_logger.LogDebug($"failed to get project info:{project.FilePath}");
}
_logger.LogDebug($"Adding reference '{referencePath}' to '{project.Name}'.");
_workspace.AddMetadataReference(project.Id, reference);
referencesToAdd.Add(reference);
}
}
foreach (var reference in referencesToRemove)
{
_workspace.RemoveMetadataReference(project.Id, reference);
}
}
/// <summary> Attempts to locate a referenced project with particular target path i.e. the path of the assembly that the referenced project produces. /// </summary>
/// <param name="targetPath">Target path to look for.</param>
/// <param name="projectReferencePaths">List of projects referenced by <see cref="projectName"/></param>
/// <param name="projectName">Name of the project for which the search is initiated</param>
/// <param name="projectReferenceWithTarget">If found, contains project reference with the <see cref="targetPath"/>; null otherwise</param>
/// <returns></returns>
private bool TryFindLoadedProjectReferenceWithTargetPath(string targetPath, ImmutableArray<string> projectReferencePaths, string projectName, out ProjectFileInfo projectReferenceWithTarget)
{
projectReferenceWithTarget = null;
foreach (string projectReferencePath in projectReferencePaths)
{
if (!_projectFiles.TryGetValue(projectReferencePath, out ProjectFileInfo referencedProject))
{
_logger.LogWarning($"Expected project reference {projectReferencePath} to be already loaded for project {projectName}");
continue;
}
if (referencedProject.TargetPath != null && referencedProject.TargetPath.Equals(targetPath, StringComparison.OrdinalIgnoreCase))
{
projectReferenceWithTarget = referencedProject;
return true;
}
}
return false;
}
}
}