Skip to content

Commit 29a50e7

Browse files
committedMar 21, 2022
feat(inlayHint): implement inlayHint basic types
1 parent 3113162 commit 29a50e7

File tree

2 files changed

+265
-0
lines changed

2 files changed

+265
-0
lines changed
 

‎src/inlay_hint.rs

+253
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,253 @@
1+
#![cfg(feature = "proposed")]
2+
3+
use crate::{
4+
Command, Location, MarkupContent, Position, Range, StaticRegistrationOptions,
5+
TextDocumentIdentifier, TextDocumentRegistrationOptions, TextEdit, WorkDoneProgressOptions,
6+
WorkDoneProgressParams,
7+
};
8+
use serde::{Deserialize, Serialize};
9+
10+
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
11+
#[serde(rename_all = "camelCase")]
12+
pub struct InlayHintClientCapabilitiesResolveSupport {
13+
/// The properties that a client can resolve lazily.
14+
pub properties: Vec<String>,
15+
}
16+
17+
/// Inlay hint client capabilities.
18+
///
19+
/// @since 3.17.0 - proposed state
20+
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
21+
#[serde(rename_all = "camelCase")]
22+
pub struct InlayHintClientCapabilities {
23+
/// Whether inlay hints support dynamic registration.
24+
#[serde(skip_serializing_if = "Option::is_none")]
25+
pub dynamic_registration: Option<bool>,
26+
27+
/// Indicates which properties a client can resolve lazily on a inlay
28+
/// hint.
29+
#[serde(skip_serializing_if = "Option::is_none")]
30+
pub resolve_support: Option<InlayHintClientCapabilitiesResolveSupport>,
31+
}
32+
33+
/// Inlay hint options used during static registration.
34+
///
35+
/// @since 3.17.0 - proposed state
36+
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
37+
#[serde(rename_all = "camelCase")]
38+
pub struct InlayHintOptions {
39+
#[serde(flatten)]
40+
pub work_done_progress_options: WorkDoneProgressOptions,
41+
42+
/// The server provides support to resolve additional
43+
/// information for an inlay hint item.
44+
#[serde(skip_serializing_if = "Option::is_none")]
45+
pub resolve_provider: Option<bool>,
46+
}
47+
48+
/// Inlay hint options used during static or dynamic registration.
49+
///
50+
/// @since 3.17.0 - proposed state
51+
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
52+
#[serde(rename_all = "camelCase")]
53+
pub struct InlayHintRegistrationOptions {
54+
#[serde(flatten)]
55+
pub inlay_hints_options: InlayHintOptions,
56+
57+
#[serde(flatten)]
58+
pub text_document_registration_options: TextDocumentRegistrationOptions,
59+
60+
#[serde(flatten)]
61+
pub static_registration_options: StaticRegistrationOptions,
62+
}
63+
64+
/// A parameter literal used in inlay hint requests.
65+
///
66+
/// @since 3.17.0 - proposed state
67+
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
68+
#[serde(rename_all = "camelCase")]
69+
pub struct InlayHintParams {
70+
#[serde(flatten)]
71+
pub work_done_progress_params: WorkDoneProgressParams,
72+
73+
/// The text document.
74+
pub text_document: TextDocumentIdentifier,
75+
76+
/// The visible document range for which inlay hints should be computed.
77+
pub range: Range,
78+
}
79+
80+
/// Inlay hint information.
81+
///
82+
/// @since 3.17.0 - proposed state
83+
#[derive(Debug, Clone, Deserialize, Serialize)]
84+
#[serde(rename_all = "camelCase")]
85+
pub struct InlayHint {
86+
/// The position of this hint.
87+
pub position: Position,
88+
89+
/// The label of this hint. A human readable string or an array of
90+
/// InlayHintLabelPart label parts.
91+
///
92+
/// *Note* that neither the string nor the label part can be empty.
93+
pub label: InlayHintLabel,
94+
95+
/// The kind of this hint. Can be omitted in which case the client
96+
/// should fall back to a reasonable default.
97+
#[serde(skip_serializing_if = "Option::is_none")]
98+
pub kind: Option<InlayHintKind>,
99+
100+
/// Optional text edits that are performed when accepting this inlay hint.
101+
///
102+
/// *Note* that edits are expected to change the document so that the inlay
103+
/// hint (or its nearest variant) is now part of the document and the inlay
104+
/// hint itself is now obsolete.
105+
///
106+
/// Depending on the client capability `inlayHint.resolveSupport` clients
107+
/// might resolve this property late using the resolve request.
108+
#[serde(skip_serializing_if = "Option::is_none")]
109+
pub text_edits: Option<Vec<TextEdit>>,
110+
111+
/// The tooltip text when you hover over this item.
112+
///
113+
/// Depending on the client capability `inlayHint.resolveSupport` clients
114+
/// might resolve this property late using the resolve request.
115+
#[serde(skip_serializing_if = "Option::is_none")]
116+
pub tooltip: Option<InlayHintTooltip>,
117+
118+
/// Render padding before the hint.
119+
///
120+
/// Note: Padding should use the editor's background color, not the
121+
/// background color of the hint itself. That means padding can be used
122+
/// to visually align/separate an inlay hint.
123+
#[serde(skip_serializing_if = "Option::is_none")]
124+
pub padding_left: Option<bool>,
125+
126+
/// Render padding after the hint.
127+
///
128+
/// Note: Padding should use the editor's background color, not the
129+
/// background color of the hint itself. That means padding can be used
130+
/// to visually align/separate an inlay hint.
131+
#[serde(skip_serializing_if = "Option::is_none")]
132+
pub padding_right: Option<bool>,
133+
// FIXME(sno2): add [`data`] field after [`LSPAny`] is implemented
134+
// /// A data entry field that is preserved on a inlay hint between
135+
// /// a `textDocument/inlayHint` and a `inlayHint/resolve` request.
136+
// #[serde(skip_serializing_if = "Option::is_none")]
137+
// pub data: Option<crate::LSPAny>,
138+
}
139+
140+
#[derive(Debug, Clone, Deserialize, Serialize)]
141+
#[serde(untagged)]
142+
pub enum InlayHintLabel {
143+
String(String),
144+
LabelParts(Vec<InlayHintLabelPart>),
145+
}
146+
147+
impl From<String> for InlayHintLabel {
148+
#[inline]
149+
fn from(from: String) -> Self {
150+
Self::String(from)
151+
}
152+
}
153+
154+
impl From<Vec<InlayHintLabelPart>> for InlayHintLabel {
155+
#[inline]
156+
fn from(from: Vec<InlayHintLabelPart>) -> Self {
157+
Self::LabelParts(from)
158+
}
159+
}
160+
161+
#[derive(Debug, Clone, Deserialize, Serialize)]
162+
#[serde(untagged)]
163+
pub enum InlayHintTooltip {
164+
String(String),
165+
MarkupContent(MarkupContent),
166+
}
167+
168+
impl From<String> for InlayHintTooltip {
169+
#[inline]
170+
fn from(from: String) -> Self {
171+
Self::String(from)
172+
}
173+
}
174+
175+
impl From<MarkupContent> for InlayHintTooltip {
176+
#[inline]
177+
fn from(from: MarkupContent) -> Self {
178+
Self::MarkupContent(from)
179+
}
180+
}
181+
182+
/// An inlay hint label part allows for interactive and composite labels
183+
/// of inlay hints.
184+
#[derive(Debug, Clone, Default, Deserialize, Serialize)]
185+
#[serde(rename_all = "camelCase")]
186+
pub struct InlayHintLabelPart {
187+
/// The value of this label part.
188+
pub value: String,
189+
190+
/// The tooltip text when you hover over this label part. Depending on
191+
/// the client capability `inlayHint.resolveSupport` clients might resolve
192+
/// this property late using the resolve request.
193+
#[serde(skip_serializing_if = "Option::is_none")]
194+
pub tooltip: Option<InlayHintLabelPartTooltip>,
195+
196+
/// An optional source code location that represents this
197+
/// label part.
198+
///
199+
/// The editor will use this location for the hover and for code navigation
200+
/// features: This part will become a clickable link that resolves to the
201+
/// definition of the symbol at the given location (not necessarily the
202+
/// location itself), it shows the hover that shows at the given location,
203+
/// and it shows a context menu with further code navigation commands.
204+
///
205+
/// Depending on the client capability `inlayHint.resolveSupport` clients
206+
/// might resolve this property late using the resolve request.
207+
#[serde(skip_serializing_if = "Option::is_none")]
208+
pub location: Option<Location>,
209+
210+
/// An optional command for this label part.
211+
///
212+
/// Depending on the client capability `inlayHint.resolveSupport` clients
213+
/// might resolve this property late using the resolve request.
214+
#[serde(skip_serializing_if = "Option::is_none")]
215+
pub command: Option<Command>,
216+
}
217+
218+
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
219+
#[serde(untagged)]
220+
pub enum InlayHintLabelPartTooltip {
221+
String(String),
222+
MarkupContent(MarkupContent),
223+
}
224+
225+
impl From<String> for InlayHintLabelPartTooltip {
226+
#[inline]
227+
fn from(from: String) -> Self {
228+
Self::String(from)
229+
}
230+
}
231+
232+
impl From<MarkupContent> for InlayHintLabelPartTooltip {
233+
#[inline]
234+
fn from(from: MarkupContent) -> Self {
235+
Self::MarkupContent(from)
236+
}
237+
}
238+
239+
/// Inlay hint kinds.
240+
///
241+
/// @since 3.17.0 - proposed state
242+
#[derive(Eq, PartialEq, Copy, Clone, Serialize, Deserialize)]
243+
#[serde(transparent)]
244+
pub struct InlayHintKind(i32);
245+
lsp_enum! {
246+
impl InlayHintKind {
247+
/// An inlay hint that for a type annotation.
248+
pub const TYPE: InlayHintKind = InlayHintKind(1);
249+
250+
/// An inlay hint that is for a parameter.
251+
pub const PARAMETER: InlayHintKind = InlayHintKind(2);
252+
}
253+
}

‎src/lib.rs

+12
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ pub use formatting::*;
144144
mod hover;
145145
pub use hover::*;
146146

147+
#[cfg(feature = "proposed")]
148+
mod inlay_hint;
149+
#[cfg(feature = "proposed")]
150+
pub use inlay_hint::*;
151+
147152
mod moniker;
148153
pub use moniker::*;
149154

@@ -1451,6 +1456,13 @@ pub struct TextDocumentClientCapabilities {
14511456
/// @since 3.16.0
14521457
#[serde(skip_serializing_if = "Option::is_none")]
14531458
pub moniker: Option<MonikerClientCapabilities>,
1459+
1460+
/// Capabilities specific to the `textDocument/inlayHint` request.
1461+
///
1462+
/// @since 3.17.0 - proposed state
1463+
#[serde(skip_serializing_if = "Option::is_none")]
1464+
#[cfg(feature = "proposed")]
1465+
pub inlay_hint: Option<InlayHintClientCapabilities>,
14541466
}
14551467

14561468
/// Where ClientCapabilities are currently empty:

0 commit comments

Comments
 (0)
Please sign in to comment.