2019-12-21 14:27:38 -06:00
|
|
|
//! Defines `rust-analyzer` specific custom messages.
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2019-01-14 04:55:56 -06:00
|
|
|
use lsp_types::{Location, Position, Range, TextDocumentIdentifier, Url};
|
2018-10-11 13:07:44 -05:00
|
|
|
use rustc_hash::FxHashMap;
|
2019-01-03 07:14:36 -06:00
|
|
|
use serde::{Deserialize, Serialize};
|
2018-08-10 13:13:39 -05:00
|
|
|
|
2019-01-14 04:55:56 -06:00
|
|
|
pub use lsp_types::{
|
2019-07-04 15:05:17 -05:00
|
|
|
notification::*, request::*, ApplyWorkspaceEditParams, CodeActionParams, CodeLens,
|
2019-12-30 08:12:06 -06:00
|
|
|
CodeLensParams, CompletionParams, CompletionResponse, DiagnosticTag,
|
|
|
|
DidChangeConfigurationParams, DidChangeWatchedFilesParams,
|
|
|
|
DidChangeWatchedFilesRegistrationOptions, DocumentOnTypeFormattingParams, DocumentSymbolParams,
|
|
|
|
DocumentSymbolResponse, FileSystemWatcher, Hover, InitializeResult, MessageType,
|
|
|
|
PartialResultParams, ProgressParams, ProgressParamsValue, ProgressToken,
|
|
|
|
PublishDiagnosticsParams, ReferenceParams, Registration, RegistrationParams, SelectionRange,
|
2020-02-25 07:38:50 -06:00
|
|
|
SelectionRangeParams, SemanticTokensParams, SemanticTokensRangeParams,
|
|
|
|
SemanticTokensRangeResult, SemanticTokensResult, ServerCapabilities, ShowMessageParams,
|
|
|
|
SignatureHelp, SymbolKind, TextDocumentEdit, TextDocumentPositionParams, TextEdit,
|
|
|
|
WorkDoneProgressParams, WorkspaceEdit, WorkspaceSymbolParams,
|
2018-08-10 13:13:39 -05:00
|
|
|
};
|
2018-08-10 07:07:43 -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
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2019-11-19 08:56:48 -06:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExpandedMacro {
|
|
|
|
pub name: String,
|
|
|
|
pub expansion: String,
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
pub position: Option<Position>,
|
|
|
|
}
|
|
|
|
|
2018-08-15 16:23:22 -05:00
|
|
|
pub enum FindMatchingBrace {}
|
|
|
|
|
|
|
|
impl Request for FindMatchingBrace {
|
|
|
|
type Params = FindMatchingBraceParams;
|
|
|
|
type Result = Vec<Position>;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/findMatchingBrace";
|
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")]
|
|
|
|
pub struct FindMatchingBraceParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub offsets: Vec<Position>,
|
|
|
|
}
|
|
|
|
|
2018-08-27 16:20:59 -05:00
|
|
|
pub enum DecorationsRequest {}
|
|
|
|
|
|
|
|
impl Request for DecorationsRequest {
|
|
|
|
type Params = TextDocumentIdentifier;
|
|
|
|
type Result = Vec<Decoration>;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/decorationsRequest";
|
2018-08-27 16:20:59 -05:00
|
|
|
}
|
|
|
|
|
2018-08-10 16:55:32 -05:00
|
|
|
pub enum PublishDecorations {}
|
|
|
|
|
|
|
|
impl Notification for PublishDecorations {
|
|
|
|
type Params = PublishDecorationsParams;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/publishDecorations";
|
2018-08-10 16:55:32 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-10 16:55:32 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct PublishDecorationsParams {
|
|
|
|
pub uri: Url,
|
|
|
|
pub decorations: Vec<Decoration>,
|
|
|
|
}
|
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-10 16:55:32 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Decoration {
|
|
|
|
pub range: Range,
|
2020-02-26 10:08:15 -06:00
|
|
|
pub tag: String,
|
2019-05-26 08:39:57 -05:00
|
|
|
pub binding_hash: Option<String>,
|
2018-08-10 16:55:32 -05:00
|
|
|
}
|
2018-08-16 05:46:31 -05:00
|
|
|
|
2018-08-22 02:18:58 -05:00
|
|
|
pub enum ParentModule {}
|
|
|
|
|
|
|
|
impl Request for ParentModule {
|
2018-11-05 05:10:20 -06:00
|
|
|
type Params = TextDocumentPositionParams;
|
2018-08-22 02:18:58 -05:00
|
|
|
type Result = Vec<Location>;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/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;
|
2018-08-29 10:03:14 -05:00
|
|
|
type Result = SourceChange;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/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,
|
|
|
|
pub range: Range,
|
|
|
|
}
|
2018-08-27 14:03:19 -05:00
|
|
|
|
2018-10-09 08:00:20 -05:00
|
|
|
pub enum OnEnter {}
|
|
|
|
|
|
|
|
impl Request for OnEnter {
|
|
|
|
type Params = TextDocumentPositionParams;
|
|
|
|
type Result = Option<SourceChange>;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/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>;
|
2019-01-28 05:43:07 -06:00
|
|
|
const METHOD: &'static str = "rust-analyzer/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-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-27 14:03:19 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Runnable {
|
|
|
|
pub range: Range,
|
|
|
|
pub label: String,
|
|
|
|
pub bin: String,
|
|
|
|
pub args: Vec<String>,
|
2020-03-09 16:06:45 -05:00
|
|
|
pub extra_args: Vec<String>,
|
2018-10-11 13:07:44 -05:00
|
|
|
pub env: FxHashMap<String, String>,
|
2019-04-13 12:45:21 -05:00
|
|
|
pub cwd: Option<String>,
|
2018-08-27 14:03:19 -05:00
|
|
|
}
|
2018-08-29 10:03:14 -05:00
|
|
|
|
2020-03-02 10:52:46 -06:00
|
|
|
#[derive(Deserialize, Serialize, Debug)]
|
2018-08-29 10:03:14 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct SourceChange {
|
|
|
|
pub label: String,
|
2019-01-03 07:14:36 -06:00
|
|
|
pub workspace_edit: WorkspaceEdit,
|
2018-08-29 10:03:14 -05:00
|
|
|
pub cursor_position: Option<TextDocumentPositionParams>,
|
|
|
|
}
|
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,
|
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;
|
|
|
|
type Result = SourceChange;
|
|
|
|
const METHOD: &'static str = "rust-analyzer/ssr";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
|
|
}
|