2020-05-10 12:25:37 -05:00
|
|
|
//! rust-analyzer extensions to the LSP.
|
|
|
|
|
2020-05-17 17:11:40 -05:00
|
|
|
use std::{collections::HashMap, path::PathBuf};
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2020-05-10 12:24:02 -05:00
|
|
|
use lsp_types::request::Request;
|
2020-05-25 08:55:25 -05:00
|
|
|
use lsp_types::{Position, Range, TextDocumentIdentifier};
|
2019-01-03 07:14:36 -06:00
|
|
|
use serde::{Deserialize, Serialize};
|
2018-08-10 13:13:39 -05:00
|
|
|
|
2019-01-22 15:15:03 -06:00
|
|
|
pub enum AnalyzerStatus {}
|
|
|
|
|
|
|
|
impl Request for AnalyzerStatus {
|
|
|
|
type Params = ();
|
|
|
|
type Result = String;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/analyzerStatus";
|
2019-01-22 15:15:03 -06:00
|
|
|
}
|
|
|
|
|
2019-01-25 10:11:58 -06:00
|
|
|
pub enum CollectGarbage {}
|
|
|
|
|
|
|
|
impl Request for CollectGarbage {
|
|
|
|
type Params = ();
|
|
|
|
type Result = ();
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/collectGarbage";
|
2019-01-25 10:11:58 -06:00
|
|
|
}
|
|
|
|
|
2018-08-10 07:07:43 -05:00
|
|
|
pub enum SyntaxTree {}
|
|
|
|
|
|
|
|
impl Request for SyntaxTree {
|
|
|
|
type Params = SyntaxTreeParams;
|
|
|
|
type Result = String;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/syntaxTree";
|
2018-08-10 07:07:43 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-10 13:13:39 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2018-08-10 07:07:43 -05:00
|
|
|
pub struct SyntaxTreeParams {
|
2018-10-15 16:44:23 -05:00
|
|
|
pub text_document: TextDocumentIdentifier,
|
2019-03-03 04:02:55 -06:00
|
|
|
pub range: Option<Range>,
|
2018-08-10 07:07:43 -05:00
|
|
|
}
|
2018-08-10 13:13:39 -05:00
|
|
|
|
2019-11-17 12:47:50 -06:00
|
|
|
pub enum ExpandMacro {}
|
|
|
|
|
|
|
|
impl Request for ExpandMacro {
|
|
|
|
type Params = ExpandMacroParams;
|
2019-11-19 08:56:48 -06:00
|
|
|
type Result = Option<ExpandedMacro>;
|
2019-11-17 12:47:50 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/expandMacro";
|
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2019-11-17 12:47:50 -06:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandMacroParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
2020-05-25 07:56:26 -05:00
|
|
|
pub position: Position,
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|
|
|
|
|
2020-05-24 10:01:40 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandedMacro {
|
|
|
|
pub name: String,
|
|
|
|
pub expansion: String,
|
|
|
|
}
|
|
|
|
|
2020-05-24 09:18:46 -05:00
|
|
|
pub enum MatchingBrace {}
|
2018-08-15 16:23:22 -05:00
|
|
|
|
2020-05-24 09:18:46 -05:00
|
|
|
impl Request for MatchingBrace {
|
|
|
|
type Params = MatchingBraceParams;
|
2018-08-15 16:23:22 -05:00
|
|
|
type Result = Vec<Position>;
|
2020-05-24 09:18:46 -05:00
|
|
|
const METHOD: &'static str = "experimental/matchingBrace";
|
2018-08-15 16:23:22 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-15 16:23:22 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2020-05-24 09:18:46 -05:00
|
|
|
pub struct MatchingBraceParams {
|
2018-08-15 16:23:22 -05:00
|
|
|
pub text_document: TextDocumentIdentifier,
|
2020-05-24 09:18:46 -05:00
|
|
|
pub positions: Vec<Position>,
|
2018-08-15 16:23:22 -05:00
|
|
|
}
|
|
|
|
|
2018-08-22 02:18:58 -05:00
|
|
|
pub enum ParentModule {}
|
|
|
|
|
|
|
|
impl Request for ParentModule {
|
2020-05-10 12:24:02 -05:00
|
|
|
type Params = lsp_types::TextDocumentPositionParams;
|
2020-05-25 08:55:25 -05:00
|
|
|
type Result = Option<lsp_types::GotoDefinitionResponse>;
|
|
|
|
const METHOD: &'static str = "experimental/parentModule";
|
2018-08-22 02:18:58 -05:00
|
|
|
}
|
2018-08-23 14:14:51 -05:00
|
|
|
|
|
|
|
pub enum JoinLines {}
|
|
|
|
|
|
|
|
impl Request for JoinLines {
|
|
|
|
type Params = JoinLinesParams;
|
2020-05-21 12:50:23 -05:00
|
|
|
type Result = Vec<lsp_types::TextEdit>;
|
|
|
|
const METHOD: &'static str = "experimental/joinLines";
|
2018-08-23 14:14:51 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-23 14:14:51 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct JoinLinesParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
2020-05-21 12:50:23 -05:00
|
|
|
pub ranges: Vec<Range>,
|
2018-08-23 14:14:51 -05:00
|
|
|
}
|
2018-08-27 14:03:19 -05:00
|
|
|
|
2020-06-02 15:21:48 -05:00
|
|
|
pub enum ResolveCodeActionRequest {}
|
|
|
|
|
|
|
|
impl Request for ResolveCodeActionRequest {
|
|
|
|
type Params = ResolveCodeActionParams;
|
|
|
|
type Result = Option<SnippetWorkspaceEdit>;
|
|
|
|
const METHOD: &'static str = "experimental/resolveCodeAction";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Params for the ResolveCodeActionRequest
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ResolveCodeActionParams {
|
|
|
|
pub code_action_params: lsp_types::CodeActionParams,
|
|
|
|
pub id: String,
|
|
|
|
}
|
|
|
|
|
2018-10-09 08:00:20 -05:00
|
|
|
pub enum OnEnter {}
|
|
|
|
|
|
|
|
impl Request for OnEnter {
|
2020-05-10 12:24:02 -05:00
|
|
|
type Params = lsp_types::TextDocumentPositionParams;
|
2020-05-25 07:12:53 -05:00
|
|
|
type Result = Option<Vec<SnippetTextEdit>>;
|
|
|
|
const METHOD: &'static str = "experimental/onEnter";
|
2018-10-09 08:00:20 -05:00
|
|
|
}
|
|
|
|
|
2018-08-27 14:03:19 -05:00
|
|
|
pub enum Runnables {}
|
|
|
|
|
|
|
|
impl Request for Runnables {
|
|
|
|
type Params = RunnablesParams;
|
|
|
|
type Result = Vec<Runnable>;
|
2020-06-02 10:34:18 -05:00
|
|
|
const METHOD: &'static str = "experimental/runnables";
|
2018-08-27 14:03:19 -05:00
|
|
|
}
|
|
|
|
|
2018-09-01 12:21:11 -05:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2018-08-27 14:03:19 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct RunnablesParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub position: Option<Position>,
|
|
|
|
}
|
|
|
|
|
2020-06-02 10:22:23 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Runnable {
|
|
|
|
pub label: String,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub location: Option<lsp_types::LocationLink>,
|
|
|
|
pub kind: RunnableKind,
|
|
|
|
pub args: CargoRunnable,
|
|
|
|
}
|
|
|
|
|
2020-05-30 21:13:08 -05:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
#[serde(rename_all = "lowercase")]
|
|
|
|
pub enum RunnableKind {
|
|
|
|
Cargo,
|
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-27 14:03:19 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2020-06-02 10:22:23 -05:00
|
|
|
pub struct CargoRunnable {
|
2020-06-02 11:02:58 -05:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-06-02 10:22:23 -05:00
|
|
|
pub workspace_root: Option<PathBuf>,
|
|
|
|
// command, --package and --lib stuff
|
|
|
|
pub cargo_args: Vec<String>,
|
|
|
|
// stuff after --
|
|
|
|
pub executable_args: Vec<String>,
|
2018-08-27 14:03:19 -05:00
|
|
|
}
|
2018-08-29 10:03:14 -05:00
|
|
|
|
2019-07-22 13:52:47 -05:00
|
|
|
pub enum InlayHints {}
|
|
|
|
|
|
|
|
impl Request for InlayHints {
|
|
|
|
type Params = InlayHintsParams;
|
|
|
|
type Result = Vec<InlayHint>;
|
|
|
|
const METHOD: &'static str = "rust-analyzer/inlayHints";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct InlayHintsParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Eq, Deserialize, Serialize)]
|
|
|
|
pub enum InlayKind {
|
2019-08-04 16:28:36 -05:00
|
|
|
TypeHint,
|
2020-01-14 11:02:01 -06:00
|
|
|
ParameterHint,
|
2020-03-23 14:32:05 -05:00
|
|
|
ChainingHint,
|
2019-07-22 13:52:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct InlayHint {
|
|
|
|
pub range: Range,
|
|
|
|
pub kind: InlayKind,
|
|
|
|
pub label: String,
|
|
|
|
}
|
2020-02-10 16:45:38 -06:00
|
|
|
|
|
|
|
pub enum Ssr {}
|
|
|
|
|
|
|
|
impl Request for Ssr {
|
|
|
|
type Params = SsrParams;
|
2020-05-21 17:28:49 -05:00
|
|
|
type Result = lsp_types::WorkspaceEdit;
|
|
|
|
const METHOD: &'static str = "experimental/ssr";
|
2020-02-10 16:45:38 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
2020-03-15 16:23:18 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2020-02-10 16:45:38 -06:00
|
|
|
pub struct SsrParams {
|
2020-03-15 16:23:18 -05:00
|
|
|
pub query: String,
|
|
|
|
pub parse_only: bool,
|
2020-02-10 16:45:38 -06:00
|
|
|
}
|
2020-05-17 17:11:40 -05:00
|
|
|
|
|
|
|
pub enum CodeActionRequest {}
|
|
|
|
|
|
|
|
impl Request for CodeActionRequest {
|
|
|
|
type Params = lsp_types::CodeActionParams;
|
|
|
|
type Result = Option<Vec<CodeAction>>;
|
|
|
|
const METHOD: &'static str = "textDocument/codeAction";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Clone, Default, Deserialize, Serialize)]
|
|
|
|
pub struct CodeAction {
|
|
|
|
pub title: String,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-06-02 15:21:48 -05:00
|
|
|
pub id: Option<String>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-22 10:29:55 -05:00
|
|
|
pub group: Option<String>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-17 17:11:40 -05:00
|
|
|
pub kind: Option<String>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub command: Option<lsp_types::Command>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub edit: Option<SnippetWorkspaceEdit>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct SnippetWorkspaceEdit {
|
2020-05-19 13:27:14 -05:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-17 17:11:40 -05:00
|
|
|
pub changes: Option<HashMap<lsp_types::Url, Vec<lsp_types::TextEdit>>>,
|
2020-05-19 13:27:14 -05:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-17 17:11:40 -05:00
|
|
|
pub document_changes: Option<Vec<SnippetDocumentChangeOperation>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
|
|
|
|
#[serde(untagged, rename_all = "lowercase")]
|
|
|
|
pub enum SnippetDocumentChangeOperation {
|
|
|
|
Op(lsp_types::ResourceOp),
|
|
|
|
Edit(SnippetTextDocumentEdit),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct SnippetTextDocumentEdit {
|
|
|
|
pub text_document: lsp_types::VersionedTextDocumentIdentifier,
|
|
|
|
pub edits: Vec<SnippetTextEdit>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct SnippetTextEdit {
|
|
|
|
pub range: Range,
|
|
|
|
pub new_text: String,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub insert_text_format: Option<lsp_types::InsertTextFormat>,
|
|
|
|
}
|
2020-06-03 06:15:54 -05:00
|
|
|
|
|
|
|
pub enum HoverRequest {}
|
|
|
|
|
|
|
|
impl Request for HoverRequest {
|
|
|
|
type Params = lsp_types::HoverParams;
|
|
|
|
type Result = Option<Hover>;
|
|
|
|
const METHOD: &'static str = "textDocument/hover";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
|
|
|
pub struct Hover {
|
2020-06-03 08:39:32 -05:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub hover: lsp_types::Hover,
|
2020-06-03 06:15:54 -05:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub actions: Option<Vec<CommandLinkGroup>>,
|
|
|
|
}
|
|
|
|
|
2020-06-03 08:39:32 -05:00
|
|
|
#[derive(Debug, PartialEq, Clone, Default, Deserialize, Serialize)]
|
2020-06-03 06:15:54 -05:00
|
|
|
pub struct CommandLinkGroup {
|
2020-06-03 08:39:32 -05:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-06-03 06:15:54 -05:00
|
|
|
pub title: Option<String>,
|
|
|
|
pub commands: Vec<CommandLink>,
|
|
|
|
}
|
|
|
|
|
|
|
|
// LSP v3.15 Command does not have a `tooltip` field, vscode supports one.
|
2020-06-03 08:39:32 -05:00
|
|
|
#[derive(Debug, PartialEq, Clone, Default, Deserialize, Serialize)]
|
2020-06-03 06:15:54 -05:00
|
|
|
pub struct CommandLink {
|
2020-06-03 08:39:32 -05:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub command: lsp_types::Command,
|
2020-06-03 06:15:54 -05:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub tooltip: Option<String>,
|
|
|
|
}
|