2020-05-10 19:25:37 +02:00
|
|
|
//! rust-analyzer extensions to the LSP.
|
|
|
|
|
2020-05-18 00:11:40 +02:00
|
|
|
use std::{collections::HashMap, path::PathBuf};
|
2019-09-30 11:58:53 +03:00
|
|
|
|
2020-05-10 19:24:02 +02:00
|
|
|
use lsp_types::request::Request;
|
2020-04-02 09:52:27 +02:00
|
|
|
use lsp_types::{Location, Position, Range, TextDocumentIdentifier};
|
2018-10-12 00:07:44 +06:00
|
|
|
use rustc_hash::FxHashMap;
|
2019-01-03 14:14:36 +01:00
|
|
|
use serde::{Deserialize, Serialize};
|
2018-08-10 21:13:39 +03:00
|
|
|
|
2019-01-23 00:15:03 +03:00
|
|
|
pub enum AnalyzerStatus {}
|
|
|
|
|
|
|
|
impl Request for AnalyzerStatus {
|
|
|
|
type Params = ();
|
|
|
|
type Result = String;
|
2019-01-28 14:43:07 +03:00
|
|
|
const METHOD: &'static str = "rust-analyzer/analyzerStatus";
|
2019-01-23 00:15:03 +03:00
|
|
|
}
|
|
|
|
|
2019-01-25 19:11:58 +03:00
|
|
|
pub enum CollectGarbage {}
|
|
|
|
|
|
|
|
impl Request for CollectGarbage {
|
|
|
|
type Params = ();
|
|
|
|
type Result = ();
|
2019-01-28 14:43:07 +03:00
|
|
|
const METHOD: &'static str = "rust-analyzer/collectGarbage";
|
2019-01-25 19:11:58 +03:00
|
|
|
}
|
|
|
|
|
2018-08-10 15:07:43 +03:00
|
|
|
pub enum SyntaxTree {}
|
|
|
|
|
|
|
|
impl Request for SyntaxTree {
|
|
|
|
type Params = SyntaxTreeParams;
|
|
|
|
type Result = String;
|
2019-01-28 14:43:07 +03:00
|
|
|
const METHOD: &'static str = "rust-analyzer/syntaxTree";
|
2018-08-10 15:07:43 +03:00
|
|
|
}
|
|
|
|
|
2020-03-02 11:52:46 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-10 21:13:39 +03:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2018-08-10 15:07:43 +03:00
|
|
|
pub struct SyntaxTreeParams {
|
2018-10-15 17:44:23 -04:00
|
|
|
pub text_document: TextDocumentIdentifier,
|
2019-03-03 12:02:55 +02:00
|
|
|
pub range: Option<Range>,
|
2018-08-10 15:07:43 +03:00
|
|
|
}
|
2018-08-10 21:13:39 +03:00
|
|
|
|
2020-03-02 11:52:46 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2019-11-19 22:56:48 +08:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandedMacro {
|
|
|
|
pub name: String,
|
|
|
|
pub expansion: String,
|
|
|
|
}
|
|
|
|
|
2019-11-18 02:47:50 +08:00
|
|
|
pub enum ExpandMacro {}
|
|
|
|
|
|
|
|
impl Request for ExpandMacro {
|
|
|
|
type Params = ExpandMacroParams;
|
2019-11-19 22:56:48 +08:00
|
|
|
type Result = Option<ExpandedMacro>;
|
2019-11-18 02:47:50 +08:00
|
|
|
const METHOD: &'static str = "rust-analyzer/expandMacro";
|
|
|
|
}
|
|
|
|
|
2020-03-02 11:52:46 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2019-11-18 02:47:50 +08:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandMacroParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub position: Option<Position>,
|
|
|
|
}
|
|
|
|
|
2020-05-24 16:18:46 +02:00
|
|
|
pub enum MatchingBrace {}
|
2018-08-16 00:23:22 +03:00
|
|
|
|
2020-05-24 16:18:46 +02:00
|
|
|
impl Request for MatchingBrace {
|
|
|
|
type Params = MatchingBraceParams;
|
2018-08-16 00:23:22 +03:00
|
|
|
type Result = Vec<Position>;
|
2020-05-24 16:18:46 +02:00
|
|
|
const METHOD: &'static str = "experimental/matchingBrace";
|
2018-08-16 00:23:22 +03:00
|
|
|
}
|
|
|
|
|
2020-03-02 11:52:46 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-16 00:23:22 +03:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2020-05-24 16:18:46 +02:00
|
|
|
pub struct MatchingBraceParams {
|
2018-08-16 00:23:22 +03:00
|
|
|
pub text_document: TextDocumentIdentifier,
|
2020-05-24 16:18:46 +02:00
|
|
|
pub positions: Vec<Position>,
|
2018-08-16 00:23:22 +03:00
|
|
|
}
|
|
|
|
|
2018-08-22 10:18:58 +03:00
|
|
|
pub enum ParentModule {}
|
|
|
|
|
|
|
|
impl Request for ParentModule {
|
2020-05-10 19:24:02 +02:00
|
|
|
type Params = lsp_types::TextDocumentPositionParams;
|
2018-08-22 10:18:58 +03:00
|
|
|
type Result = Vec<Location>;
|
2019-01-28 14:43:07 +03:00
|
|
|
const METHOD: &'static str = "rust-analyzer/parentModule";
|
2018-08-22 10:18:58 +03:00
|
|
|
}
|
2018-08-23 22:14:51 +03:00
|
|
|
|
|
|
|
pub enum JoinLines {}
|
|
|
|
|
|
|
|
impl Request for JoinLines {
|
|
|
|
type Params = JoinLinesParams;
|
2020-05-21 19:50:23 +02:00
|
|
|
type Result = Vec<lsp_types::TextEdit>;
|
|
|
|
const METHOD: &'static str = "experimental/joinLines";
|
2018-08-23 22:14:51 +03:00
|
|
|
}
|
|
|
|
|
2020-03-02 11:52:46 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-23 22:14:51 +03:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct JoinLinesParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
2020-05-21 19:50:23 +02:00
|
|
|
pub ranges: Vec<Range>,
|
2018-08-23 22:14:51 +03:00
|
|
|
}
|
2018-08-27 22:03:19 +03:00
|
|
|
|
2018-10-09 16:00:20 +03:00
|
|
|
pub enum OnEnter {}
|
|
|
|
|
|
|
|
impl Request for OnEnter {
|
2020-05-10 19:24:02 +02:00
|
|
|
type Params = lsp_types::TextDocumentPositionParams;
|
2020-05-21 14:26:44 +02:00
|
|
|
type Result = Option<SnippetWorkspaceEdit>;
|
2019-01-28 14:43:07 +03:00
|
|
|
const METHOD: &'static str = "rust-analyzer/onEnter";
|
2018-10-09 16:00:20 +03:00
|
|
|
}
|
|
|
|
|
2018-08-27 22:03:19 +03:00
|
|
|
pub enum Runnables {}
|
|
|
|
|
|
|
|
impl Request for Runnables {
|
|
|
|
type Params = RunnablesParams;
|
|
|
|
type Result = Vec<Runnable>;
|
2019-01-28 14:43:07 +03:00
|
|
|
const METHOD: &'static str = "rust-analyzer/runnables";
|
2018-08-27 22:03:19 +03:00
|
|
|
}
|
|
|
|
|
2018-09-01 20:21:11 +03:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2018-08-27 22:03:19 +03:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct RunnablesParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub position: Option<Position>,
|
|
|
|
}
|
|
|
|
|
2020-03-02 11:52:46 -05:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-27 22:03:19 +03:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Runnable {
|
|
|
|
pub range: Range,
|
|
|
|
pub label: String,
|
|
|
|
pub bin: String,
|
|
|
|
pub args: Vec<String>,
|
2020-03-09 22:06:45 +01:00
|
|
|
pub extra_args: Vec<String>,
|
2018-10-12 00:07:44 +06:00
|
|
|
pub env: FxHashMap<String, String>,
|
2020-04-24 21:48:30 +03:00
|
|
|
pub cwd: Option<PathBuf>,
|
2018-08-27 22:03:19 +03:00
|
|
|
}
|
2018-08-29 18:03:14 +03:00
|
|
|
|
2019-07-22 21:52:47 +03: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-05 00:28:36 +03:00
|
|
|
TypeHint,
|
2020-01-15 01:02:01 +08:00
|
|
|
ParameterHint,
|
2020-03-23 20:32:05 +01:00
|
|
|
ChainingHint,
|
2019-07-22 21:52:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct InlayHint {
|
|
|
|
pub range: Range,
|
|
|
|
pub kind: InlayKind,
|
|
|
|
pub label: String,
|
|
|
|
}
|
2020-02-10 22:45:38 +00:00
|
|
|
|
|
|
|
pub enum Ssr {}
|
|
|
|
|
|
|
|
impl Request for Ssr {
|
|
|
|
type Params = SsrParams;
|
2020-05-22 00:28:49 +02:00
|
|
|
type Result = lsp_types::WorkspaceEdit;
|
|
|
|
const METHOD: &'static str = "experimental/ssr";
|
2020-02-10 22:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
2020-03-15 21:23:18 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2020-02-10 22:45:38 +00:00
|
|
|
pub struct SsrParams {
|
2020-03-15 21:23:18 +00:00
|
|
|
pub query: String,
|
|
|
|
pub parse_only: bool,
|
2020-02-10 22:45:38 +00:00
|
|
|
}
|
2020-05-18 00:11:40 +02: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-05-22 17:29:55 +02:00
|
|
|
pub group: Option<String>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-18 00:11:40 +02: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 20:27:14 +02:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-18 00:11:40 +02:00
|
|
|
pub changes: Option<HashMap<lsp_types::Url, Vec<lsp_types::TextEdit>>>,
|
2020-05-19 20:27:14 +02:00
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2020-05-18 00:11:40 +02: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>,
|
|
|
|
}
|