forked from OmniSharp/omnisharp-roslyn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOmniSharpTypeDefinitionHandler.cs
More file actions
64 lines (56 loc) · 2.66 KB
/
OmniSharpTypeDefinitionHandler.cs
File metadata and controls
64 lines (56 loc) · 2.66 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using OmniSharp.Extensions.JsonRpc;
using OmniSharp.Extensions.LanguageServer.Protocol.Client.Capabilities;
using OmniSharp.Extensions.LanguageServer.Protocol.Document;
using OmniSharp.Extensions.LanguageServer.Protocol.Models;
using OmniSharp.Models.GotoTypeDefinition;
using static OmniSharp.LanguageServerProtocol.Helpers;
namespace OmniSharp.LanguageServerProtocol.Handlers
{
class OmniSharpTypeDefinitionHandler : TypeDefinitionHandlerBase
{
public static IEnumerable<IJsonRpcHandler> Enumerate(RequestHandlers handlers)
{
foreach (var (selector, handler) in handlers.OfType<Mef.IRequestHandler<GotoTypeDefinitionRequest, GotoTypeDefinitionResponse>>())
if (handler != null)
yield return new OmniSharpTypeDefinitionHandler(handler, selector);
}
private readonly Mef.IRequestHandler<GotoTypeDefinitionRequest, GotoTypeDefinitionResponse> _definitionHandler;
private readonly DocumentSelector _documentSelector;
public OmniSharpTypeDefinitionHandler(Mef.IRequestHandler<GotoTypeDefinitionRequest, GotoTypeDefinitionResponse> definitionHandler, DocumentSelector documentSelector)
{
_definitionHandler = definitionHandler;
_documentSelector = documentSelector;
}
public override async Task<LocationOrLocationLinks> Handle(TypeDefinitionParams request, CancellationToken token)
{
var omnisharpRequest = new GotoTypeDefinitionRequest()
{
FileName = FromUri(request.TextDocument.Uri),
Column = Convert.ToInt32(request.Position.Character),
Line = Convert.ToInt32(request.Position.Line)
};
var omnisharpResponse = await _definitionHandler.Handle(omnisharpRequest);
if (omnisharpResponse.Definitions == null)
{
return new LocationOrLocationLinks();
}
return new LocationOrLocationLinks(omnisharpResponse.Definitions.Select<TypeDefinition, LocationOrLocationLink>(definition => new Location()
{
Uri = definition.Location.FileName,
Range = ToRange(definition.Location.Range)
}));
}
protected override TypeDefinitionRegistrationOptions CreateRegistrationOptions(TypeDefinitionCapability capability, ClientCapabilities clientCapabilities)
{
return new TypeDefinitionRegistrationOptions()
{
DocumentSelector = _documentSelector
};
}
}
}