rust/crates/ra_lsp_server/src/req.rs

179 lines
4.4 KiB
Rust
Raw Normal View History

use languageserver_types::{Location, Position, Range, TextDocumentIdentifier, Url};
use rustc_hash::FxHashMap;
2018-08-10 23:55:32 +02:00
use url_serde;
2018-08-10 20:13:39 +02:00
pub use languageserver_types::{
notification::*, request::*, ApplyWorkspaceEditParams, CodeActionParams, CompletionParams,
CompletionResponse, DocumentOnTypeFormattingParams, DocumentSymbolParams,
DocumentSymbolResponse, ExecuteCommandParams, Hover, InitializeResult,
2018-10-31 21:41:43 +01:00
PublishDiagnosticsParams, ReferenceParams, SignatureHelp, TextDocumentEdit,
TextDocumentPositionParams, TextEdit, WorkspaceSymbolParams,
2018-08-10 20:13:39 +02:00
};
2018-08-10 14:07:43 +02:00
pub enum SyntaxTree {}
impl Request for SyntaxTree {
type Params = SyntaxTreeParams;
type Result = String;
const METHOD: &'static str = "m/syntaxTree";
}
#[derive(Deserialize, Debug)]
2018-08-10 20:13:39 +02:00
#[serde(rename_all = "camelCase")]
2018-08-10 14:07:43 +02:00
pub struct SyntaxTreeParams {
pub text_document: TextDocumentIdentifier,
2018-08-10 14:07:43 +02:00
}
2018-08-10 20:13:39 +02:00
pub enum ExtendSelection {}
2018-08-10 21:23:17 +02:00
impl Request for ExtendSelection {
type Params = ExtendSelectionParams;
type Result = ExtendSelectionResult;
const METHOD: &'static str = "m/extendSelection";
}
2018-08-10 20:13:39 +02:00
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ExtendSelectionParams {
pub text_document: TextDocumentIdentifier,
pub selections: Vec<Range>,
}
2018-08-10 21:23:17 +02:00
#[derive(Serialize, Debug)]
#[serde(rename_all = "camelCase")]
2018-08-10 20:13:39 +02:00
pub struct ExtendSelectionResult {
pub selections: Vec<Range>,
}
2018-08-10 23:55:32 +02:00
2018-08-15 23:23:22 +02:00
pub enum FindMatchingBrace {}
impl Request for FindMatchingBrace {
type Params = FindMatchingBraceParams;
type Result = Vec<Position>;
const METHOD: &'static str = "m/findMatchingBrace";
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct FindMatchingBraceParams {
pub text_document: TextDocumentIdentifier,
pub offsets: Vec<Position>,
}
2018-08-27 23:20:59 +02:00
pub enum DecorationsRequest {}
impl Request for DecorationsRequest {
type Params = TextDocumentIdentifier;
type Result = Vec<Decoration>;
const METHOD: &'static str = "m/decorationsRequest";
}
2018-08-10 23:55:32 +02:00
pub enum PublishDecorations {}
impl Notification for PublishDecorations {
type Params = PublishDecorationsParams;
const METHOD: &'static str = "m/publishDecorations";
}
#[derive(Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct PublishDecorationsParams {
#[serde(with = "url_serde")]
pub uri: Url,
pub decorations: Vec<Decoration>,
}
#[derive(Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Decoration {
pub range: Range,
pub tag: &'static str,
2018-08-10 23:55:32 +02:00
}
2018-08-16 12:46:31 +02:00
2018-08-22 09:18:58 +02:00
pub enum ParentModule {}
impl Request for ParentModule {
type Params = TextDocumentIdentifier;
type Result = Vec<Location>;
const METHOD: &'static str = "m/parentModule";
}
2018-08-23 21:14:51 +02:00
pub enum JoinLines {}
impl Request for JoinLines {
type Params = JoinLinesParams;
2018-08-29 17:03:14 +02:00
type Result = SourceChange;
2018-08-23 21:14:51 +02:00
const METHOD: &'static str = "m/joinLines";
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct JoinLinesParams {
pub text_document: TextDocumentIdentifier,
pub range: Range,
}
2018-08-27 21:03:19 +02:00
pub enum OnEnter {}
impl Request for OnEnter {
type Params = TextDocumentPositionParams;
type Result = Option<SourceChange>;
const METHOD: &'static str = "m/onEnter";
}
2018-08-27 21:03:19 +02:00
pub enum Runnables {}
impl Request for Runnables {
type Params = RunnablesParams;
type Result = Vec<Runnable>;
2018-08-27 21:52:43 +02:00
const METHOD: &'static str = "m/runnables";
2018-08-27 21:03:19 +02:00
}
2018-09-01 19:21:11 +02:00
#[derive(Serialize, Deserialize, Debug)]
2018-08-27 21:03:19 +02:00
#[serde(rename_all = "camelCase")]
pub struct RunnablesParams {
pub text_document: TextDocumentIdentifier,
pub position: Option<Position>,
}
#[derive(Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Runnable {
pub range: Range,
pub label: String,
pub bin: String,
pub args: Vec<String>,
pub env: FxHashMap<String, String>,
2018-08-27 21:03:19 +02:00
}
2018-08-29 17:03:14 +02:00
#[derive(Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct SourceChange {
pub label: String,
pub source_file_edits: Vec<TextDocumentEdit>,
pub file_system_edits: Vec<FileSystemEdit>,
pub cursor_position: Option<TextDocumentPositionParams>,
}
#[derive(Serialize, Debug)]
#[serde(tag = "type", rename_all = "camelCase")]
pub enum FileSystemEdit {
CreateFile {
#[serde(with = "url_serde")]
uri: Url,
2018-08-29 17:03:14 +02:00
},
MoveFile {
#[serde(with = "url_serde")]
src: Url,
#[serde(with = "url_serde")]
dst: Url,
},
2018-08-29 17:03:14 +02:00
}
2018-09-02 13:46:15 +02:00
2018-09-03 22:32:42 +02:00
pub enum InternalFeedback {}
2018-09-02 13:46:15 +02:00
2018-09-03 22:32:42 +02:00
impl Notification for InternalFeedback {
const METHOD: &'static str = "internalFeedback";
type Params = String;
2018-09-02 13:46:15 +02:00
}