-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathInlineValueFeature.cs
223 lines (202 loc) · 8.52 KB
/
InlineValueFeature.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
using System.Diagnostics;
using MediatR;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using OmniSharp.Extensions.JsonRpc;
using OmniSharp.Extensions.JsonRpc.Generation;
using OmniSharp.Extensions.LanguageServer.Protocol.Client;
using OmniSharp.Extensions.LanguageServer.Protocol.Client.Capabilities;
using OmniSharp.Extensions.LanguageServer.Protocol.Generation;
using OmniSharp.Extensions.LanguageServer.Protocol.Models;
using OmniSharp.Extensions.LanguageServer.Protocol.Serialization;
using OmniSharp.Extensions.LanguageServer.Protocol.Serialization.Converters;
using OmniSharp.Extensions.LanguageServer.Protocol.Server;
using OmniSharp.Extensions.LanguageServer.Protocol.Server.Capabilities;
// ReSharper disable once CheckNamespace
namespace OmniSharp.Extensions.LanguageServer.Protocol
{
namespace Models
{
[Parallel]
[Method(TextDocumentNames.InlineValue, Direction.ClientToServer)]
[
GenerateHandler("OmniSharp.Extensions.LanguageServer.Protocol.Document", Name = "InlineValues"),
GenerateHandlerMethods,
GenerateRequestMethods(typeof(ITextDocumentLanguageClient), typeof(ILanguageClient))
]
[RegistrationOptions(typeof(InlineValueRegistrationOptions)), Capability(typeof(InlineValueClientCapabilities))]
public partial record InlineValueParams : ITextDocumentIdentifierParams, IWorkDoneProgressParams,
IRequest<Container<InlineValueBase>?>
{
/// <summary>
/// The text document.
/// </summary>
public TextDocumentIdentifier TextDocument { get; init; }
/// <summary>
/// The document range for which inline values should be computed.
/// </summary>
public Range Range { get; init; }
/// <summary>
/// Additional information about the context in which inline values were
/// requested.
/// </summary>
public InlineValueContext Context { get; init; }
}
/// <summary>
/// @since 3.17.0
/// </summary>
public partial record InlineValueContext
{
/// <summary>
/// The stack frame (as a DAP Id) where the execution has stopped.
/// </summary>
public int FrameId { get; set; }
/// <summary>
/// The document range where execution has stopped.
/// Typically the end position of the range denotes the line where the
/// inline values are shown.
/// </summary>
public Range StoppedLocation { get; set; }
}
[Parallel]
[Method(WorkspaceNames.InlineValueRefresh, Direction.ServerToClient)]
[GenerateHandler("OmniSharp.Extensions.LanguageServer.Protocol.Workspace")]
[GenerateHandlerMethods]
[GenerateRequestMethods(typeof(IWorkspaceLanguageServer), typeof(ILanguageServer))]
[Capability(typeof(InlineValueWorkspaceClientCapabilities))]
public partial record InlineValueRefreshParams : IRequest;
[JsonConverter(typeof(Converter))]
public abstract partial record InlineValueBase
{
/// <summary>
/// The document range for which the inline value applies.
/// </summary>
public Range Range { get; init; }
internal class Converter : JsonConverter<InlineValueBase>
{
public override bool CanWrite => false;
public override void WriteJson(JsonWriter writer, InlineValueBase value, JsonSerializer serializer)
{
throw new NotImplementedException();
}
public override InlineValueBase ReadJson(
JsonReader reader, Type objectType, InlineValueBase existingValue, bool hasExistingValue, JsonSerializer serializer
)
{
var result = JObject.Load(reader);
if (result.ContainsKey("text"))
{
return new InlineValueText()
{
Range = result["range"]!.ToObject<Range?>(serializer)!,
Text = result["text"]!.Value<string>()!
};
}
if (result.ContainsKey("variableName") || result.ContainsKey("caseSensitiveLookup"))
{
return new InlineValueVariableLookup()
{
Range = result["range"].ToObject<Range>(serializer)!,
VariableName = result["variableName"]!.Value<string>()!,
CaseSensitiveLookup = result["caseSensitiveLookup"]?.Value<bool?>() ?? false,
};
}
return new InlineValueEvaluatableExpression()
{
Range = result["range"].ToObject<Range>(serializer)!,
Expression = result["expression"]?.Value<string>()
};
}
}
}
/// <summary>
/// Provide inline value as text.
///
/// @since 3.17.0
/// </summary>
public partial record InlineValueText : InlineValueBase
{
/// <summary>
/// The text of the inline value.
/// </summary>
public string Text { get; init; }
}
/// <summary>
/// Provide inline value through a variable lookup.
///
/// If only a range is specified, the variable name will be extracted from
/// the underlying document.
///
/// An optional variable name can be used to override the extracted name.
///
/// @since 3.17.0
/// </summary>
public partial record InlineValueVariableLookup : InlineValueBase
{
/// <summary>
/// If specified the name of the variable to look up.
/// </summary>
[Optional]
public string? VariableName { get; init; }
/// <summary>
/// How to perform the lookup.
/// </summary>
public bool CaseSensitiveLookup { get; init; }
}
/// <summary>
/// Provide an inline value through an expression evaluation.
///
/// If only a range is specified, the expression will be extracted from the
/// underlying document.
///
/// An optional expression can be used to override the extracted expression.
///
/// @since 3.17.0
/// </summary>
public partial record InlineValueEvaluatableExpression : InlineValueBase
{
/// <summary>
/// If specified the expression overrides the extracted expression.
/// </summary>
public string? Expression { get; init; }
}
[GenerateRegistrationOptions(nameof(ServerCapabilities.InlineValueProvider))]
[RegistrationName(TextDocumentNames.InlineValue)]
public partial class InlineValueRegistrationOptions : ITextDocumentRegistrationOptions, IWorkDoneProgressOptions, IStaticRegistrationOptions
{
}
}
namespace Server.Capabilities
{
}
namespace Client.Capabilities
{
[CapabilityKey(nameof(ClientCapabilities.TextDocument), nameof(TextDocumentClientCapabilities.InlineValue))]
public partial class InlineValueClientCapabilities : DynamicCapability
{
}
/// <summary>
/// Client workspace capabilities specific to inline values.
///
/// @since 3.17.0
/// </summary>
[CapabilityKey(nameof(ClientCapabilities.Workspace), nameof(WorkspaceClientCapabilities.InlineValue))]
public partial class InlineValueWorkspaceClientCapabilities : ICapability
{
/// <summary>
/// Whether the client implementation supports a refresh request sent from
/// the server to the client.
///
/// Note that this event is global and will force the client to refresh all
/// inline values currently shown. It should be used with absolute care and
/// is useful for situation where a server for example detect a project wide
/// change that requires such a calculation.
/// </summary>
[Optional]
public bool RefreshSupport { get; set; }
}
}
namespace Document
{
}
}