This repository was archived by the owner on Mar 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathGoToDefinitionController.cs
316 lines (262 loc) · 13.4 KB
/
GoToDefinitionController.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
using EnvDTE;
using FarTestProvider;
using Microsoft.VisualStudio;
using Microsoft.VisualStudio.OLE.Interop;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.FindAllReferences;
using Microsoft.VisualStudio.Shell.Interop;
using Microsoft.VisualStudio.Shell.TableManager;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.TextManager.Interop;
using ProjectFileTools.Completion;
using ProjectFileTools.Helpers;
using ProjectFileTools.MSBuild;
namespace ProjectFileTools
{
internal class GotoDefinitionController : IOleCommandTarget
{
private const long EditProjectFileCommandId = 1632;
private readonly Guid _vSStd2kCmdIDGuid;
private readonly Guid _vSStd97CmdIDGuid;
private readonly IWorkspaceManager _workspaceManager;
private readonly IReadOnlyDictionary<string, Func<XmlInfo, ITextDocument, ITextView, IWorkspaceManager, int?>> GoToDefinitionAttributeHandlers = new Dictionary<string, Func<XmlInfo, ITextDocument, ITextView, IWorkspaceManager, int?>>(StringComparer.Ordinal)
{
{ "ProjectReference", HandleGoToDefinitionOnProjectReference },
{ "PackageReference", HandleGoToDefinitionOnNuGetPackage },
{ "DotNetCliToolReference", HandleGoToDefinitionOnNuGetPackage }
};
private GotoDefinitionController(IWpfTextView textview, IWorkspaceManager workspaceManager)
{
TextView = textview;
_vSStd97CmdIDGuid = new Guid(VSConstants.CMDSETID.StandardCommandSet97_string);
_vSStd2kCmdIDGuid = new Guid(VSConstants.CMDSETID.StandardCommandSet2K_string);
_workspaceManager = workspaceManager;
}
public IOleCommandTarget Next { get; private set; }
public IWpfTextView TextView { get; }
public int Exec(ref Guid pguidCmdGroup, uint nCmdID, uint nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
{
ThreadHelper.ThrowIfNotOnUIThread();
if (pguidCmdGroup == _vSStd97CmdIDGuid && nCmdID == (uint)VSConstants.VSStd97CmdID.FindReferences)
{
int? result = HandleFindAllReferences();
if (result.HasValue)
{
return result.Value;
}
}
else if (pguidCmdGroup == _vSStd97CmdIDGuid && nCmdID == (uint)VSConstants.VSStd97CmdID.GotoDefn)
{
int? result = HandleGoToDefinition();
if (result.HasValue)
{
return result.Value;
}
}
return Next?.Exec(pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut) ?? (int)Microsoft.VisualStudio.OLE.Interop.Constants.OLECMDERR_E_NOTSUPPORTED;
}
public int QueryStatus(ref Guid pguidCmdGroup, uint cCmds, OLECMD[] prgCmds, IntPtr pCmdText)
{
ThreadHelper.ThrowIfNotOnUIThread();
if (pguidCmdGroup == _vSStd97CmdIDGuid && cCmds > 0 && prgCmds[0].cmdID == (uint)VSConstants.VSStd97CmdID.GotoDefn)
{
prgCmds[0].cmdf = (uint)(OLECMDF.OLECMDF_SUPPORTED | OLECMDF.OLECMDF_ENABLED);
return VSConstants.S_OK;
}
if (pguidCmdGroup == _vSStd97CmdIDGuid && cCmds > 0 && prgCmds[0].cmdID == (uint)VSConstants.VSStd97CmdID.FindReferences)
{
TextView.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out ITextDocument textDoc);
XmlInfo info = XmlTools.GetXmlInfo(TextView.TextSnapshot, TextView.Caret.Position.BufferPosition.Position);
if (info?.AttributeName != null)
{
prgCmds[0].cmdf = (uint)(OLECMDF.OLECMDF_SUPPORTED | OLECMDF.OLECMDF_ENABLED);
return VSConstants.S_OK;
}
}
return Next?.QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText) ?? (int)Microsoft.VisualStudio.OLE.Interop.Constants.OLECMDERR_E_NOTSUPPORTED;
}
internal static GotoDefinitionController CreateAndRegister(IWpfTextView textview, IWorkspaceManager workspaceManager, IVsTextView textViewAdapter)
{
GotoDefinitionController gotoDefinition = new GotoDefinitionController(textview, workspaceManager);
textViewAdapter.AddCommandFilter(gotoDefinition, out IOleCommandTarget gotoDefinitionNext);
gotoDefinition.Next = gotoDefinitionNext;
return gotoDefinition;
}
private static int? FallbackAttributeCompletionHandler(XmlInfo info, ITextDocument textDoc, ITextView textView, IWorkspaceManager workspaceManager)
{
ThreadHelper.ThrowIfNotOnUIThread();
if ((info.AttributeName == "Include" || info.AttributeName == "Update" || info.AttributeName == "Exclude" || info.AttributeName == "Remove"))
{
string relativePath = info.AttributeValue;
IWorkspace workspace = workspaceManager.GetWorkspace(textDoc.FilePath);
List<Definition> matchedItems = workspace.GetItemProvenance(relativePath);
if (matchedItems.Count == 1)
{
string absolutePath = Path.Combine(Path.GetDirectoryName(textDoc.FilePath), matchedItems[0].File);
FileInfo fileInfo = new FileInfo(absolutePath);
if (fileInfo.Exists)
{
ServiceUtil.DTE.ItemOperations.OpenFile(fileInfo.FullName);
return VSConstants.S_OK;
}
}
//Don't return the result of show in find all references, the caret may also be in a symbol,
// where we'd also want to go to that definition
ShowInFar("Item Provenance", matchedItems);
}
return null;
}
private static int? HandleGoToDefinitionOnNuGetPackage(XmlInfo info, ITextDocument textDoc, ITextView textView, IWorkspaceManager workspaceManager)
{
if (PackageCompletionSource.TryGetPackageInfoFromXml(info, out string packageName, out string packageVersion) && PackageExistsOnNuGet(packageName, packageVersion, out string url))
{
System.Diagnostics.Process.Start(url);
return VSConstants.S_OK;
}
return null;
}
private static int? HandleGoToDefinitionOnProjectReference(XmlInfo info, ITextDocument textDoc, ITextView textView, IWorkspaceManager workspaceManager)
{
ThreadHelper.ThrowIfNotOnUIThread();
if (info.AttributeName == "Include" || info.AttributeName == "Update" || info.AttributeName == "Exclude" || info.AttributeName == "Remove")
{
string relativePath = info.AttributeValue;
IWorkspace workspace = workspaceManager.GetWorkspace(textDoc.FilePath);
List<Definition> matchedItems = workspace.GetItems(relativePath);
if (matchedItems.Count == 1)
{
string absolutePath = Path.Combine(Path.GetDirectoryName(textDoc.FilePath), matchedItems[0].File);
FileInfo fileInfo = new FileInfo(absolutePath);
if (fileInfo.Exists)
{
ServiceUtil.DTE.ItemOperations.OpenFile(fileInfo.FullName);
return VSConstants.S_OK;
//ServiceUtil.DTE.Commands.Raise(VSConstants.CMDSETID.StandardCommandSet2K_string, (int)EditProjectFileCommandId, ref unusedArgs, ref unusedArgs);
}
}
}
return null;
}
private static bool PackageExistsOnNuGet(string packageName, string version, out string url)
{
string packageAndVersionUrl = $"https://www.nuget.org/packages/{packageName}/{version}/";
string packageUrl = $"https://www.nuget.org/packages/{packageName}/";
try
{
using (HttpClient client = new HttpClient())
{
HttpResponseMessage response = null;
ThreadHelper.JoinableTaskFactory.Run(async () => response = await client.GetAsync(packageAndVersionUrl));
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
url = packageAndVersionUrl;
return true;
}
else
{
ThreadHelper.JoinableTaskFactory.Run(async () => response = await client.GetAsync(packageAndVersionUrl));
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
url = packageUrl;
return true;
}
}
}
}
catch { }
url = null;
return false;
}
private static int ShowInFar(string title, List<Definition> definitions)
{
IFindAllReferencesService farService = ServiceUtil.GetService<SVsFindAllReferences, IFindAllReferencesService>();
FarDataSource dataSource = new FarDataSource(1);
dataSource.Snapshots[0] = new FarDataSnapshot(definitions);
IFindAllReferencesWindow farWindow = farService.StartSearch(title);
ITableManager _farManager = farWindow.Manager;
_farManager.AddSource(dataSource);
dataSource.Sink.IsStable = false;
dataSource.Sink.AddSnapshot(dataSource.Snapshots[0]);
dataSource.Sink.IsStable = true;
return VSConstants.S_OK;
}
private int? HandleAttributeCompletionResult(ITextDocument textDoc, XmlInfo info)
{
ThreadHelper.ThrowIfNotOnUIThread();
if (GoToDefinitionAttributeHandlers.TryGetValue(info.TagName, out Func<XmlInfo, ITextDocument, ITextView, IWorkspaceManager, int?> handler))
{
return handler(info, textDoc, TextView, _workspaceManager);
}
return FallbackAttributeCompletionHandler(info, textDoc, TextView, _workspaceManager);
}
private int? HandleFindAllReferences()
{
ThreadHelper.ThrowIfNotOnUIThread();
if (!TextView.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out ITextDocument textDoc))
{
return null;
}
XmlInfo info = XmlTools.GetXmlInfo(TextView.TextSnapshot, TextView.Caret.Position.BufferPosition.Position);
if (info != null)
{
if (info.AttributeName == "Include" || info.AttributeName == "Update" || info.AttributeName == "Exclude" || info.AttributeName == "Remove")
{
string relativePath = info.AttributeValue;
IWorkspace workspace = _workspaceManager.GetWorkspace(textDoc.FilePath);
List<Definition> matchedItems = workspace.GetItems(relativePath);
if (matchedItems.Count == 1)
{
string absolutePath = Path.Combine(Path.GetDirectoryName(textDoc.FilePath), matchedItems[0].File);
FileInfo fileInfo = new FileInfo(absolutePath);
if (fileInfo.Exists)
{
ServiceUtil.DTE.ItemOperations.OpenFile(fileInfo.FullName);
return VSConstants.S_OK;
}
}
return ShowInFar("Files Matching Glob", matchedItems);
}
}
return null;
}
private int? HandleGoToDefinition()
{
TextView.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out ITextDocument textDoc);
XmlInfo info = XmlTools.GetXmlInfo(TextView.TextSnapshot, TextView.Caret.Position.BufferPosition.Position);
if (info != null)
{
int? attributeCompletionResult = HandleAttributeCompletionResult(textDoc, info);
if (attributeCompletionResult.HasValue)
{
return attributeCompletionResult.Value;
}
}
IWorkspace workspace = _workspaceManager.GetWorkspace(textDoc.FilePath);
List<Definition> definitions = workspace.ResolveDefinition(textDoc.FilePath, TextView.TextSnapshot.GetText(), TextView.Caret.Position.BufferPosition.Position);
if (definitions.Count == 1)
{
DTE dte = ServiceUtil.DTE;
dte.MainWindow.Activate();
using (var state = new NewDocumentStateScope(__VSNEWDOCUMENTSTATE.NDS_Provisional, Guid.Parse(ProjectFileToolsPackage.PackageGuidString)))
{
Window w = dte.ItemOperations.OpenFile(definitions[0].File, EnvDTE.Constants.vsViewKindTextView);
if (definitions[0].Line.HasValue)
{
((TextSelection)dte.ActiveDocument.Selection).GotoLine(definitions[0].Line.Value, true);
}
}
return VSConstants.S_OK;
}
else if (definitions.Count > 1)
{
return ShowInFar("Symbol Definition", definitions);
}
return null;
}
}
}