172 lines
4.1 KiB
Rust
Raw Normal View History

2018-08-27 22:03:19 +03:00
use std::collections::HashMap;
2018-08-10 23:56:19 +03:00
use serde::{ser::Serialize, de::DeserializeOwned};
2018-08-22 10:18:58 +03:00
use languageserver_types::{TextDocumentIdentifier, Range, Url, Position, Location};
2018-08-11 00:55:32 +03:00
use url_serde;
2018-08-10 21:13:39 +03:00
pub use languageserver_types::{
request::*, notification::*,
2018-08-10 23:56:19 +03:00
InitializeResult, PublishDiagnosticsParams,
2018-08-12 21:02:56 +03:00
DocumentSymbolParams, DocumentSymbolResponse,
2018-08-13 02:38:34 +03:00
CodeActionParams, ApplyWorkspaceEditParams,
ExecuteCommandParams,
2018-08-13 15:35:53 +03:00
WorkspaceSymbolParams,
2018-08-13 16:35:17 +03:00
TextDocumentPositionParams,
2018-08-23 22:14:51 +03:00
TextEdit,
2018-08-26 12:51:45 +03:00
CompletionParams, CompletionResponse,
2018-08-10 21:13:39 +03:00
};
2018-08-10 15:07:43 +03:00
2018-08-10 23:56:19 +03:00
2018-08-11 00:01:37 +03:00
pub trait ClientRequest: 'static {
2018-08-10 23:56:19 +03:00
type Params: DeserializeOwned + Send + 'static;
type Result: Serialize + Send + 'static;
const METHOD: &'static str;
}
impl<T> ClientRequest for T
2018-08-11 00:01:37 +03:00
where T: Request + 'static,
2018-08-10 23:56:19 +03:00
T::Params: DeserializeOwned + Send + 'static,
T::Result: Serialize + Send + 'static,
{
type Params = <T as Request>::Params;
type Result = <T as Request>::Result;
const METHOD: &'static str = <T as Request>::METHOD;
}
2018-08-10 15:07:43 +03: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 21:13:39 +03:00
#[serde(rename_all = "camelCase")]
2018-08-10 15:07:43 +03:00
pub struct SyntaxTreeParams {
pub text_document: TextDocumentIdentifier
}
2018-08-10 21:13:39 +03:00
pub enum ExtendSelection {}
2018-08-10 22:23:17 +03:00
impl Request for ExtendSelection {
type Params = ExtendSelectionParams;
type Result = ExtendSelectionResult;
const METHOD: &'static str = "m/extendSelection";
}
2018-08-10 21:13:39 +03:00
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ExtendSelectionParams {
pub text_document: TextDocumentIdentifier,
pub selections: Vec<Range>,
}
2018-08-10 22:23:17 +03:00
#[derive(Serialize, Debug)]
#[serde(rename_all = "camelCase")]
2018-08-10 21:13:39 +03:00
pub struct ExtendSelectionResult {
pub selections: Vec<Range>,
}
2018-08-11 00:55:32 +03:00
2018-08-16 00:23:22 +03: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-28 00:20:59 +03:00
pub enum DecorationsRequest {}
impl Request for DecorationsRequest {
type Params = TextDocumentIdentifier;
type Result = Vec<Decoration>;
const METHOD: &'static str = "m/decorationsRequest";
}
2018-08-11 00:55:32 +03: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-16 13:46:31 +03:00
pub enum MoveCursor {}
impl Request for MoveCursor {
type Params = Position;
type Result = ();
const METHOD: &'static str = "m/moveCursor";
}
2018-08-22 10:18:58 +03:00
pub enum ParentModule {}
impl Request for ParentModule {
type Params = TextDocumentIdentifier;
type Result = Vec<Location>;
const METHOD: &'static str = "m/parentModule";
}
2018-08-23 22:14:51 +03:00
pub enum JoinLines {}
impl Request for JoinLines {
type Params = JoinLinesParams;
type Result = Vec<TextEdit>;
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 22:03:19 +03:00
pub enum Runnables {}
impl Request for Runnables {
type Params = RunnablesParams;
type Result = Vec<Runnable>;
2018-08-27 22:52:43 +03:00
const METHOD: &'static str = "m/runnables";
2018-08-27 22:03:19 +03:00
}
#[derive(Deserialize, Debug)]
#[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: HashMap<String, String>,
}