rust/crates/rust-analyzer/src/lsp/ext.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

828 lines
22 KiB
Rust
Raw Normal View History

2020-05-10 17:25:37 +00:00
//! rust-analyzer extensions to the LSP.
#![allow(clippy::disallowed_types)]
use std::path::PathBuf;
use ide_db::line_index::WideEncoding;
2020-05-10 17:24:02 +00:00
use lsp_types::request::Request;
use lsp_types::{
notification::Notification, CodeActionKind, DocumentOnTypeFormattingParams,
PartialResultParams, Position, Range, TextDocumentIdentifier, WorkDoneProgressParams,
};
2023-04-27 19:13:05 +00:00
use lsp_types::{PositionEncodingKind, Url};
use rustc_hash::FxHashMap;
use serde::{Deserialize, Serialize};
2018-08-10 18:13:39 +00:00
use crate::line_index::PositionEncoding;
2019-01-22 21:15:03 +00:00
pub enum AnalyzerStatus {}
impl Request for AnalyzerStatus {
type Params = AnalyzerStatusParams;
2019-01-22 21:15:03 +00:00
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
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct AnalyzerStatusParams {
pub text_document: Option<TextDocumentIdentifier>,
}
2023-04-03 00:58:20 +00:00
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct CrateInfoResult {
2023-04-13 16:06:43 +00:00
pub name: Option<String>,
pub version: Option<String>,
2023-04-27 19:13:05 +00:00
pub path: Url,
2023-04-03 00:58:20 +00:00
}
2023-04-04 16:47:01 +00:00
pub enum FetchDependencyList {}
2022-07-17 16:05:55 +00:00
2023-04-04 16:47:01 +00:00
impl Request for FetchDependencyList {
type Params = FetchDependencyListParams;
type Result = FetchDependencyListResult;
const METHOD: &'static str = "rust-analyzer/fetchDependencyList";
2022-07-17 16:05:55 +00:00
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
2023-04-04 16:47:01 +00:00
pub struct FetchDependencyListParams {}
2023-04-03 00:58:20 +00:00
2022-07-17 16:05:55 +00:00
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
2023-04-04 16:47:01 +00:00
pub struct FetchDependencyListResult {
2023-04-03 00:58:20 +00:00
pub crates: Vec<CrateInfoResult>,
}
2022-07-17 16:05:55 +00:00
pub enum MemoryUsage {}
impl Request for MemoryUsage {
type Params = ();
type Result = String;
const METHOD: &'static str = "rust-analyzer/memoryUsage";
}
pub enum ShuffleCrateGraph {}
impl Request for ShuffleCrateGraph {
type Params = ();
type Result = ();
const METHOD: &'static str = "rust-analyzer/shuffleCrateGraph";
}
2020-07-01 12:57:59 +00:00
pub enum ReloadWorkspace {}
2019-01-25 16:11:58 +00:00
2020-07-01 12:57:59 +00:00
impl Request for ReloadWorkspace {
2019-01-25 16:11:58 +00:00
type Params = ();
type Result = ();
2020-07-01 12:57:59 +00:00
const METHOD: &'static str = "rust-analyzer/reloadWorkspace";
2019-01-25 16:11:58 +00:00
}
2023-03-26 06:39:28 +00:00
pub enum RebuildProcMacros {}
2023-03-26 06:39:28 +00:00
impl Request for RebuildProcMacros {
type Params = ();
type Result = ();
2023-03-26 06:39:28 +00:00
const METHOD: &'static str = "rust-analyzer/rebuildProcMacros";
}
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 {
pub text_document: TextDocumentIdentifier,
pub range: Option<Range>,
2018-08-10 12:07:43 +00:00
}
2018-08-10 18:13:39 +00:00
pub enum ViewHir {}
impl Request for ViewHir {
type Params = lsp_types::TextDocumentPositionParams;
type Result = String;
const METHOD: &'static str = "rust-analyzer/viewHir";
}
pub enum ViewMir {}
impl Request for ViewMir {
type Params = lsp_types::TextDocumentPositionParams;
type Result = String;
const METHOD: &'static str = "rust-analyzer/viewMir";
}
2023-04-28 17:14:30 +00:00
pub enum InterpretFunction {}
impl Request for InterpretFunction {
type Params = lsp_types::TextDocumentPositionParams;
type Result = String;
const METHOD: &'static str = "rust-analyzer/interpretFunction";
}
pub enum ViewFileText {}
impl Request for ViewFileText {
type Params = lsp_types::TextDocumentIdentifier;
type Result = String;
const METHOD: &'static str = "rust-analyzer/viewFileText";
}
2021-07-01 22:08:05 +00:00
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ViewCrateGraphParams {
/// Include *all* crates, not just crates in the workspace.
pub full: bool,
}
pub enum ViewCrateGraph {}
impl Request for ViewCrateGraph {
2021-07-01 22:08:05 +00:00
type Params = ViewCrateGraphParams;
type Result = String;
const METHOD: &'static str = "rust-analyzer/viewCrateGraph";
}
2021-05-21 21:59:52 +00:00
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ViewItemTreeParams {
pub text_document: TextDocumentIdentifier,
}
pub enum ViewItemTree {}
impl Request for ViewItemTree {
type Params = ViewItemTreeParams;
type Result = String;
const METHOD: &'static str = "rust-analyzer/viewItemTree";
}
2024-03-01 10:10:29 +00:00
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct DiscoverTestParams {
pub test_id: Option<String>,
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub enum TestItemKind {
2024-03-01 10:10:29 +00:00
Package,
Module,
Test,
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct TestItem {
pub id: String,
pub label: String,
pub kind: TestItemKind,
2024-03-01 10:10:29 +00:00
pub can_resolve_children: bool,
pub parent: Option<String>,
pub text_document: Option<TextDocumentIdentifier>,
pub range: Option<Range>,
pub runnable: Option<Runnable>,
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct DiscoverTestResults {
pub tests: Vec<TestItem>,
pub scope: Vec<String>,
}
pub enum DiscoverTest {}
impl Request for DiscoverTest {
type Params = DiscoverTestParams;
type Result = DiscoverTestResults;
const METHOD: &'static str = "experimental/discoverTest";
}
pub enum DiscoveredTests {}
impl Notification for DiscoveredTests {
type Params = DiscoverTestResults;
const METHOD: &'static str = "experimental/discoveredTests";
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct RunTestParams {
pub include: Option<Vec<String>>,
pub exclude: Option<Vec<String>>,
}
pub enum RunTest {}
impl Request for RunTest {
type Params = RunTestParams;
type Result = ();
const METHOD: &'static str = "experimental/runTest";
}
pub enum EndRunTest {}
impl Notification for EndRunTest {
type Params = ();
const METHOD: &'static str = "experimental/endRunTest";
}
pub enum AppendOutputToRunTest {}
impl Notification for AppendOutputToRunTest {
type Params = String;
const METHOD: &'static str = "experimental/appendOutputToRunTest";
}
2024-03-01 10:10:29 +00:00
pub enum AbortRunTest {}
impl Notification for AbortRunTest {
type Params = ();
const METHOD: &'static str = "experimental/abortRunTest";
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase", tag = "tag")]
pub enum TestState {
Passed,
Failed { message: String },
Skipped,
Started,
Enqueued,
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ChangeTestStateParams {
pub test_id: String,
pub state: TestState,
}
pub enum ChangeTestState {}
impl Notification for ChangeTestState {
type Params = ChangeTestStateParams;
const METHOD: &'static str = "experimental/changeTestState";
}
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: Position,
2019-11-17 18:47:50 +00:00
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ExpandedMacro {
pub name: String,
pub expansion: String,
}
pub enum ViewRecursiveMemoryLayout {}
impl Request for ViewRecursiveMemoryLayout {
type Params = lsp_types::TextDocumentPositionParams;
type Result = Option<RecursiveMemoryLayout>;
const METHOD: &'static str = "rust-analyzer/viewRecursiveMemoryLayout";
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct RecursiveMemoryLayout {
pub nodes: Vec<MemoryLayoutNode>,
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct MemoryLayoutNode {
pub item_name: String,
pub typename: String,
pub size: u64,
pub offset: u64,
pub alignment: u64,
pub parent_idx: i64,
pub children_start: i64,
pub children_len: u64,
}
pub enum CancelFlycheck {}
impl Notification for CancelFlycheck {
type Params = ();
const METHOD: &'static str = "rust-analyzer/cancelFlycheck";
}
pub enum RunFlycheck {}
impl Notification for RunFlycheck {
type Params = RunFlycheckParams;
const METHOD: &'static str = "rust-analyzer/runFlycheck";
}
pub enum ClearFlycheck {}
impl Notification for ClearFlycheck {
type Params = ();
const METHOD: &'static str = "rust-analyzer/clearFlycheck";
}
pub enum OpenServerLogs {}
impl Notification for OpenServerLogs {
type Params = ();
const METHOD: &'static str = "rust-analyzer/openServerLogs";
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct RunFlycheckParams {
pub text_document: Option<TextDocumentIdentifier>,
}
2020-05-24 14:18:46 +00:00
pub enum MatchingBrace {}
2018-08-15 21:23:22 +00:00
2020-05-24 14:18:46 +00:00
impl Request for MatchingBrace {
type Params = MatchingBraceParams;
2018-08-15 21:23:22 +00:00
type Result = Vec<Position>;
2020-05-24 14:18:46 +00:00
const METHOD: &'static str = "experimental/matchingBrace";
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")]
2020-05-24 14:18:46 +00:00
pub struct MatchingBraceParams {
2018-08-15 21:23:22 +00:00
pub text_document: TextDocumentIdentifier,
2020-05-24 14:18:46 +00:00
pub positions: Vec<Position>,
2018-08-15 21:23:22 +00:00
}
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;
type Result = Option<lsp_types::GotoDefinitionResponse>;
const METHOD: &'static str = "experimental/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;
2020-05-21 17:50:23 +00:00
type Result = Vec<lsp_types::TextEdit>;
const METHOD: &'static str = "experimental/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,
2020-05-21 17:50:23 +00:00
pub ranges: Vec<Range>,
2018-08-23 19:14:51 +00:00
}
2018-08-27 19:03:19 +00:00
pub enum OnEnter {}
impl Request for OnEnter {
2020-05-10 17:24:02 +00:00
type Params = lsp_types::TextDocumentPositionParams;
2020-05-25 12:12:53 +00:00
type Result = Option<Vec<SnippetTextEdit>>;
const METHOD: &'static str = "experimental/onEnter";
}
2018-08-27 19:03:19 +00:00
pub enum Runnables {}
impl Request for Runnables {
type Params = RunnablesParams;
type Result = Vec<Runnable>;
2020-06-02 15:34:18 +00:00
const METHOD: &'static str = "experimental/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-06-02 15:22:23 +00:00
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Runnable {
pub label: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub location: Option<lsp_types::LocationLink>,
pub kind: RunnableKind,
pub args: CargoRunnable,
}
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "lowercase")]
pub enum RunnableKind {
Cargo,
}
2020-03-02 16:52:46 +00:00
#[derive(Deserialize, Serialize, Debug)]
2018-08-27 19:03:19 +00:00
#[serde(rename_all = "camelCase")]
2020-06-02 15:22:23 +00:00
pub struct CargoRunnable {
// command to be executed instead of cargo
pub override_cargo: Option<String>,
2020-06-02 16:02:58 +00:00
#[serde(skip_serializing_if = "Option::is_none")]
2020-06-02 15:22:23 +00:00
pub workspace_root: Option<PathBuf>,
// command, --package and --lib stuff
pub cargo_args: Vec<String>,
// user-specified additional cargo args, like `--release`.
pub cargo_extra_args: Vec<String>,
2020-06-02 15:22:23 +00:00
// stuff after --
pub executable_args: Vec<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub expect_test: Option<bool>,
2018-08-27 19:03:19 +00:00
}
2018-08-29 15:03:14 +00:00
2021-02-27 17:04:43 +00:00
pub enum RelatedTests {}
impl Request for RelatedTests {
2021-03-11 14:39:41 +00:00
type Params = lsp_types::TextDocumentPositionParams;
2021-02-27 17:04:43 +00:00
type Result = Vec<TestInfo>;
const METHOD: &'static str = "rust-analyzer/relatedTests";
}
#[derive(Debug, Deserialize, Serialize)]
pub struct TestInfo {
pub runnable: Runnable,
}
2019-07-22 18:52:47 +00:00
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintsParams {
pub text_document: TextDocumentIdentifier,
2022-02-11 22:48:01 +00:00
pub range: Option<lsp_types::Range>,
2019-07-22 18:52:47 +00:00
}
pub enum Ssr {}
impl Request for Ssr {
type Params = SsrParams;
2020-05-21 22:28:49 +00:00
type Result = lsp_types::WorkspaceEdit;
const METHOD: &'static str = "experimental/ssr";
}
#[derive(Debug, Deserialize, Serialize)]
2020-03-15 21:23:18 +00:00
#[serde(rename_all = "camelCase")]
pub struct SsrParams {
2020-03-15 21:23:18 +00:00
pub query: String,
pub parse_only: bool,
/// File position where SSR was invoked. Paths in `query` will be resolved relative to this
/// position.
#[serde(flatten)]
pub position: lsp_types::TextDocumentPositionParams,
/// Current selections. Search/replace will be restricted to these if non-empty.
pub selections: Vec<lsp_types::Range>,
}
2020-05-17 22:11:40 +00:00
2021-04-06 11:16:35 +00:00
pub enum ServerStatusNotification {}
2020-07-02 10:37:04 +00:00
2021-04-06 11:16:35 +00:00
impl Notification for ServerStatusNotification {
type Params = ServerStatusParams;
const METHOD: &'static str = "experimental/serverStatus";
2020-07-02 10:37:04 +00:00
}
2021-04-06 11:16:35 +00:00
#[derive(Deserialize, Serialize, PartialEq, Eq, Clone)]
pub struct ServerStatusParams {
pub health: Health,
pub quiescent: bool,
pub message: Option<String>,
2020-08-17 11:56:27 +00:00
}
2021-04-06 11:16:35 +00:00
#[derive(Serialize, Deserialize, Clone, Copy, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub enum Health {
Ok,
Warning,
Error,
2020-07-02 10:37:04 +00:00
}
2020-05-17 22:11:40 +00:00
pub enum CodeActionRequest {}
impl Request for CodeActionRequest {
type Params = lsp_types::CodeActionParams;
type Result = Option<Vec<CodeAction>>;
const METHOD: &'static str = "textDocument/codeAction";
}
pub enum CodeActionResolveRequest {}
2023-04-03 00:58:20 +00:00
impl Request for CodeActionResolveRequest {
type Params = CodeAction;
type Result = CodeAction;
const METHOD: &'static str = "codeAction/resolve";
}
2020-05-17 22:11:40 +00:00
#[derive(Debug, PartialEq, Clone, Default, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
2020-05-17 22:11:40 +00:00
pub struct CodeAction {
pub title: String,
#[serde(skip_serializing_if = "Option::is_none")]
2020-05-22 15:29:55 +00:00
pub group: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub kind: Option<CodeActionKind>,
#[serde(skip_serializing_if = "Option::is_none")]
pub command: Option<lsp_types::Command>,
2020-05-17 22:11:40 +00:00
#[serde(skip_serializing_if = "Option::is_none")]
pub edit: Option<SnippetWorkspaceEdit>,
#[serde(skip_serializing_if = "Option::is_none")]
pub is_preferred: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub data: Option<CodeActionData>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionData {
pub code_action_params: lsp_types::CodeActionParams,
pub id: String,
2020-05-17 22:11:40 +00:00
}
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SnippetWorkspaceEdit {
2020-05-19 18:27:14 +00:00
#[serde(skip_serializing_if = "Option::is_none")]
pub changes: Option<FxHashMap<lsp_types::Url, Vec<lsp_types::TextEdit>>>,
2020-05-19 18:27:14 +00:00
#[serde(skip_serializing_if = "Option::is_none")]
2020-05-17 22:11:40 +00:00
pub document_changes: Option<Vec<SnippetDocumentChangeOperation>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub change_annotations: Option<
std::collections::HashMap<
lsp_types::ChangeAnnotationIdentifier,
lsp_types::ChangeAnnotation,
>,
>,
2020-05-17 22:11:40 +00:00
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(untagged, rename_all = "lowercase")]
pub enum SnippetDocumentChangeOperation {
Op(lsp_types::ResourceOp),
Edit(SnippetTextDocumentEdit),
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SnippetTextDocumentEdit {
pub text_document: lsp_types::OptionalVersionedTextDocumentIdentifier,
2020-05-17 22:11:40 +00:00
pub edits: Vec<SnippetTextEdit>,
}
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SnippetTextEdit {
pub range: Range,
pub new_text: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub insert_text_format: Option<lsp_types::InsertTextFormat>,
/// The annotation id if this is an annotated
#[serde(skip_serializing_if = "Option::is_none")]
pub annotation_id: Option<lsp_types::ChangeAnnotationIdentifier>,
2020-05-17 22:11:40 +00:00
}
2020-06-03 11:15:54 +00:00
pub enum HoverRequest {}
impl Request for HoverRequest {
type Params = HoverParams;
2020-06-03 11:15:54 +00:00
type Result = Option<Hover>;
const METHOD: &'static str = lsp_types::request::HoverRequest::METHOD;
2020-06-03 11:15:54 +00:00
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct HoverParams {
pub text_document: TextDocumentIdentifier,
pub position: PositionOrRange,
#[serde(flatten)]
pub work_done_progress_params: WorkDoneProgressParams,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(untagged)]
pub enum PositionOrRange {
Position(lsp_types::Position),
Range(lsp_types::Range),
}
2020-06-03 11:15:54 +00:00
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
pub struct Hover {
2020-06-03 13:39:32 +00:00
#[serde(flatten)]
pub hover: lsp_types::Hover,
2020-06-03 14:35:26 +00:00
#[serde(skip_serializing_if = "Vec::is_empty")]
pub actions: Vec<CommandLinkGroup>,
2020-06-03 11:15:54 +00:00
}
2020-06-03 13:39:32 +00:00
#[derive(Debug, PartialEq, Clone, Default, Deserialize, Serialize)]
2020-06-03 11:15:54 +00:00
pub struct CommandLinkGroup {
2020-06-03 13:39:32 +00:00
#[serde(skip_serializing_if = "Option::is_none")]
2020-06-03 11:15:54 +00:00
pub title: Option<String>,
pub commands: Vec<CommandLink>,
}
// LSP v3.15 Command does not have a `tooltip` field, vscode supports one.
2020-06-03 13:39:32 +00:00
#[derive(Debug, PartialEq, Clone, Default, Deserialize, Serialize)]
2020-06-03 11:15:54 +00:00
pub struct CommandLink {
2020-06-03 13:39:32 +00:00
#[serde(flatten)]
pub command: lsp_types::Command,
2020-06-03 11:15:54 +00:00
#[serde(skip_serializing_if = "Option::is_none")]
pub tooltip: Option<String>,
}
2020-08-30 08:02:29 +00:00
2020-08-31 23:38:32 +00:00
pub enum ExternalDocs {}
2020-08-30 08:02:29 +00:00
2020-08-31 23:38:32 +00:00
impl Request for ExternalDocs {
type Params = lsp_types::TextDocumentPositionParams;
2023-04-28 08:27:16 +00:00
type Result = ExternalDocsResponse;
2020-08-31 23:38:32 +00:00
const METHOD: &'static str = "experimental/externalDocs";
2020-08-30 08:02:29 +00:00
}
2020-11-13 01:48:07 +00:00
2023-04-28 08:27:16 +00:00
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]
#[serde(untagged)]
pub enum ExternalDocsResponse {
Simple(Option<lsp_types::Url>),
WithLocal(ExternalDocsPair),
}
#[derive(Debug, Default, PartialEq, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct ExternalDocsPair {
pub web: Option<lsp_types::Url>,
pub local: Option<lsp_types::Url>,
}
2020-11-13 01:48:07 +00:00
pub enum OpenCargoToml {}
impl Request for OpenCargoToml {
type Params = OpenCargoTomlParams;
type Result = Option<lsp_types::GotoDefinitionResponse>;
const METHOD: &'static str = "experimental/openCargoToml";
}
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct OpenCargoTomlParams {
pub text_document: TextDocumentIdentifier,
}
2021-02-13 11:07:47 +00:00
/// Information about CodeLens, that is to be resolved.
#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLensResolveData {
pub version: i32,
pub kind: CodeLensResolveDataKind,
}
#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum CodeLensResolveDataKind {
2021-02-13 11:07:47 +00:00
Impls(lsp_types::request::GotoImplementationParams),
References(lsp_types::TextDocumentPositionParams),
}
2021-02-12 22:26:01 +00:00
pub fn negotiated_encoding(caps: &lsp_types::ClientCapabilities) -> PositionEncoding {
let client_encodings = match &caps.general {
Some(general) => general.position_encodings.as_deref().unwrap_or_default(),
None => &[],
};
for enc in client_encodings {
if enc == &PositionEncodingKind::UTF8 {
return PositionEncoding::Utf8;
} else if enc == &PositionEncodingKind::UTF32 {
return PositionEncoding::Wide(WideEncoding::Utf32);
}
// NB: intentionally prefer just about anything else to utf-16.
2022-10-25 11:43:26 +00:00
}
PositionEncoding::Wide(WideEncoding::Utf16)
2021-02-12 22:26:01 +00:00
}
2021-03-16 12:37:00 +00:00
pub enum MoveItem {}
impl Request for MoveItem {
type Params = MoveItemParams;
type Result = Vec<SnippetTextEdit>;
2021-03-16 12:37:00 +00:00
const METHOD: &'static str = "experimental/moveItem";
}
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct MoveItemParams {
pub direction: MoveItemDirection,
pub text_document: TextDocumentIdentifier,
pub range: Range,
}
#[derive(Serialize, Deserialize, Debug)]
pub enum MoveItemDirection {
Up,
Down,
}
#[derive(Debug)]
pub enum WorkspaceSymbol {}
impl Request for WorkspaceSymbol {
type Params = WorkspaceSymbolParams;
type Result = Option<lsp_types::WorkspaceSymbolResponse>;
const METHOD: &'static str = "workspace/symbol";
}
#[derive(Debug, Eq, PartialEq, Clone, Default, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceSymbolParams {
#[serde(flatten)]
pub partial_result_params: PartialResultParams,
#[serde(flatten)]
pub work_done_progress_params: WorkDoneProgressParams,
/// A non-empty query string
pub query: String,
pub search_scope: Option<WorkspaceSymbolSearchScope>,
pub search_kind: Option<WorkspaceSymbolSearchKind>,
}
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
#[serde(rename_all = "camelCase")]
pub enum WorkspaceSymbolSearchScope {
Workspace,
WorkspaceAndDependencies,
}
#[derive(Serialize, Deserialize, Debug, Clone, Eq, PartialEq)]
#[serde(rename_all = "camelCase")]
pub enum WorkspaceSymbolSearchKind {
OnlyTypes,
AllSymbols,
}
/// The document on type formatting request is sent from the client to
/// the server to format parts of the document during typing. This is
/// almost same as lsp_types::request::OnTypeFormatting, but the
/// result has SnippetTextEdit in it instead of TextEdit.
#[derive(Debug)]
pub enum OnTypeFormatting {}
impl Request for OnTypeFormatting {
type Params = DocumentOnTypeFormattingParams;
type Result = Option<Vec<SnippetTextEdit>>;
const METHOD: &'static str = "textDocument/onTypeFormatting";
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CompletionResolveData {
pub position: lsp_types::TextDocumentPositionParams,
pub imports: Vec<CompletionImport>,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InlayHintResolveData {
pub file_id: u32,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CompletionImport {
pub full_import_path: String,
pub imported_name: String,
}
#[derive(Debug, Deserialize, Default)]
pub struct ClientCommandOptions {
pub commands: Vec<String>,
}
pub enum UnindexedProject {}
impl Notification for UnindexedProject {
type Params = UnindexedProjectParams;
const METHOD: &'static str = "rust-analyzer/unindexedProject";
}
#[derive(Deserialize, Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct UnindexedProjectParams {
pub text_documents: Vec<TextDocumentIdentifier>,
}