2019-12-21 20:27:38 +00:00
|
|
|
//! Defines `rust-analyzer` specific custom messages.
|
2019-09-30 08:58:53 +00:00
|
|
|
|
2020-05-10 17:24:02 +00:00
|
|
|
use lsp_types::request::Request;
|
2020-04-02 07:52:27 +00:00
|
|
|
use lsp_types::{Location, Position, Range, TextDocumentIdentifier};
|
2018-10-11 18:07:44 +00:00
|
|
|
use rustc_hash::FxHashMap;
|
2019-01-03 13:14:36 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2018-08-10 18:13:39 +00:00
|
|
|
|
2020-04-24 18:48:30 +00:00
|
|
|
use std::path::PathBuf;
|
2018-08-10 12:07:43 +00:00
|
|
|
|
2019-01-22 21:15:03 +00:00
|
|
|
pub enum AnalyzerStatus {}
|
|
|
|
|
|
|
|
impl Request for AnalyzerStatus {
|
|
|
|
type Params = ();
|
|
|
|
type Result = String;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/analyzerStatus";
|
2019-01-22 21:15:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 16:11:58 +00:00
|
|
|
pub enum CollectGarbage {}
|
|
|
|
|
|
|
|
impl Request for CollectGarbage {
|
|
|
|
type Params = ();
|
|
|
|
type Result = ();
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/collectGarbage";
|
2019-01-25 16:11:58 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 12:07:43 +00:00
|
|
|
pub enum SyntaxTree {}
|
|
|
|
|
|
|
|
impl Request for SyntaxTree {
|
|
|
|
type Params = SyntaxTreeParams;
|
|
|
|
type Result = String;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/syntaxTree";
|
2018-08-10 12:07:43 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-10 18:13:39 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2018-08-10 12:07:43 +00:00
|
|
|
pub struct SyntaxTreeParams {
|
2018-10-15 21:44:23 +00:00
|
|
|
pub text_document: TextDocumentIdentifier,
|
2019-03-03 10:02:55 +00:00
|
|
|
pub range: Option<Range>,
|
2018-08-10 12:07:43 +00:00
|
|
|
}
|
2018-08-10 18:13:39 +00:00
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2019-11-19 14:56:48 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandedMacro {
|
|
|
|
pub name: String,
|
|
|
|
pub expansion: String,
|
|
|
|
}
|
|
|
|
|
2019-11-17 18:47:50 +00:00
|
|
|
pub enum ExpandMacro {}
|
|
|
|
|
|
|
|
impl Request for ExpandMacro {
|
|
|
|
type Params = ExpandMacroParams;
|
2019-11-19 14:56:48 +00:00
|
|
|
type Result = Option<ExpandedMacro>;
|
2019-11-17 18:47:50 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/expandMacro";
|
|
|
|
}
|
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2019-11-17 18:47:50 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandMacroParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub position: Option<Position>,
|
|
|
|
}
|
|
|
|
|
2018-08-15 21:23:22 +00:00
|
|
|
pub enum FindMatchingBrace {}
|
|
|
|
|
|
|
|
impl Request for FindMatchingBrace {
|
|
|
|
type Params = FindMatchingBraceParams;
|
|
|
|
type Result = Vec<Position>;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/findMatchingBrace";
|
2018-08-15 21:23:22 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-15 21:23:22 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct FindMatchingBraceParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub offsets: Vec<Position>,
|
|
|
|
}
|
|
|
|
|
2018-08-22 07:18:58 +00:00
|
|
|
pub enum ParentModule {}
|
|
|
|
|
|
|
|
impl Request for ParentModule {
|
2020-05-10 17:24:02 +00:00
|
|
|
type Params = lsp_types::TextDocumentPositionParams;
|
2018-08-22 07:18:58 +00:00
|
|
|
type Result = Vec<Location>;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/parentModule";
|
2018-08-22 07:18:58 +00:00
|
|
|
}
|
2018-08-23 19:14:51 +00:00
|
|
|
|
|
|
|
pub enum JoinLines {}
|
|
|
|
|
|
|
|
impl Request for JoinLines {
|
|
|
|
type Params = JoinLinesParams;
|
2018-08-29 15:03:14 +00:00
|
|
|
type Result = SourceChange;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/joinLines";
|
2018-08-23 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-23 19:14:51 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct JoinLinesParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub range: Range,
|
|
|
|
}
|
2018-08-27 19:03:19 +00:00
|
|
|
|
2018-10-09 13:00:20 +00:00
|
|
|
pub enum OnEnter {}
|
|
|
|
|
|
|
|
impl Request for OnEnter {
|
2020-05-10 17:24:02 +00:00
|
|
|
type Params = lsp_types::TextDocumentPositionParams;
|
2018-10-09 13:00:20 +00:00
|
|
|
type Result = Option<SourceChange>;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/onEnter";
|
2018-10-09 13:00:20 +00:00
|
|
|
}
|
|
|
|
|
2018-08-27 19:03:19 +00:00
|
|
|
pub enum Runnables {}
|
|
|
|
|
|
|
|
impl Request for Runnables {
|
|
|
|
type Params = RunnablesParams;
|
|
|
|
type Result = Vec<Runnable>;
|
2019-01-28 11:43:07 +00:00
|
|
|
const METHOD: &'static str = "rust-analyzer/runnables";
|
2018-08-27 19:03:19 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 17:21:11 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2018-08-27 19:03:19 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct RunnablesParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub position: Option<Position>,
|
|
|
|
}
|
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-27 19:03:19 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Runnable {
|
|
|
|
pub range: Range,
|
|
|
|
pub label: String,
|
|
|
|
pub bin: String,
|
|
|
|
pub args: Vec<String>,
|
2020-03-09 21:06:45 +00:00
|
|
|
pub extra_args: Vec<String>,
|
2018-10-11 18:07:44 +00:00
|
|
|
pub env: FxHashMap<String, String>,
|
2020-04-24 18:48:30 +00:00
|
|
|
pub cwd: Option<PathBuf>,
|
2018-08-27 19:03:19 +00:00
|
|
|
}
|
2018-08-29 15:03:14 +00:00
|
|
|
|
2020-03-02 16:52:46 +00:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-29 15:03:14 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct SourceChange {
|
|
|
|
pub label: String,
|
2020-05-10 17:24:02 +00:00
|
|
|
pub workspace_edit: lsp_types::WorkspaceEdit,
|
|
|
|
pub cursor_position: Option<lsp_types::TextDocumentPositionParams>,
|
2018-08-29 15:03:14 +00:00
|
|
|
}
|
2019-07-22 18:52:47 +00: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 21:28:36 +00:00
|
|
|
TypeHint,
|
2020-01-14 17:02:01 +00:00
|
|
|
ParameterHint,
|
2020-03-23 19:32:05 +00:00
|
|
|
ChainingHint,
|
2019-07-22 18:52:47 +00: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;
|
|
|
|
type Result = SourceChange;
|
|
|
|
const METHOD: &'static str = "rust-analyzer/ssr";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
|
|
}
|