2018-08-10 15:56:19 -05:00
|
|
|
use serde::{ser::Serialize, de::DeserializeOwned};
|
2018-08-11 06:44:12 -05:00
|
|
|
use languageserver_types::{TextDocumentIdentifier, Range, Url};
|
2018-08-10 16:55:32 -05:00
|
|
|
use url_serde;
|
2018-08-10 13:13:39 -05:00
|
|
|
|
|
|
|
pub use languageserver_types::{
|
|
|
|
request::*, notification::*,
|
2018-08-10 15:56:19 -05:00
|
|
|
InitializeResult, PublishDiagnosticsParams,
|
2018-08-12 13:02:56 -05:00
|
|
|
DocumentSymbolParams, DocumentSymbolResponse,
|
|
|
|
CodeActionParams,
|
2018-08-10 13:13:39 -05:00
|
|
|
};
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2018-08-10 15:56:19 -05:00
|
|
|
|
2018-08-10 16:01:37 -05:00
|
|
|
pub trait ClientRequest: 'static {
|
2018-08-10 15:56:19 -05:00
|
|
|
type Params: DeserializeOwned + Send + 'static;
|
|
|
|
type Result: Serialize + Send + 'static;
|
|
|
|
const METHOD: &'static str;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> ClientRequest for T
|
2018-08-10 16:01:37 -05:00
|
|
|
where T: Request + 'static,
|
2018-08-10 15:56:19 -05: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 07:07:43 -05: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 13:13:39 -05:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2018-08-10 07:07:43 -05:00
|
|
|
pub struct SyntaxTreeParams {
|
|
|
|
pub text_document: TextDocumentIdentifier
|
|
|
|
}
|
2018-08-10 13:13:39 -05:00
|
|
|
|
|
|
|
pub enum ExtendSelection {}
|
|
|
|
|
2018-08-10 14:23:17 -05:00
|
|
|
impl Request for ExtendSelection {
|
|
|
|
type Params = ExtendSelectionParams;
|
|
|
|
type Result = ExtendSelectionResult;
|
|
|
|
const METHOD: &'static str = "m/extendSelection";
|
|
|
|
}
|
|
|
|
|
2018-08-10 13:13:39 -05:00
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ExtendSelectionParams {
|
|
|
|
pub text_document: TextDocumentIdentifier,
|
|
|
|
pub selections: Vec<Range>,
|
|
|
|
}
|
|
|
|
|
2018-08-10 14:23:17 -05:00
|
|
|
#[derive(Serialize, Debug)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
2018-08-10 13:13:39 -05:00
|
|
|
pub struct ExtendSelectionResult {
|
|
|
|
pub selections: Vec<Range>,
|
|
|
|
}
|
2018-08-10 16:55:32 -05: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
|
|
|
|
}
|