Auto merge of #17849 - Veykril:rust-analyzer-crate, r=Veykril
internal: Move some main crate stuff
This commit is contained in:
commit
2e0f5f6336
@ -34,9 +34,9 @@
|
|||||||
use vfs::{AbsPath, AbsPathBuf, VfsPath};
|
use vfs::{AbsPath, AbsPathBuf, VfsPath};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
capabilities::ClientCapabilities,
|
|
||||||
diagnostics::DiagnosticsMapConfig,
|
diagnostics::DiagnosticsMapConfig,
|
||||||
flycheck::{CargoOptions, FlycheckConfig},
|
flycheck::{CargoOptions, FlycheckConfig},
|
||||||
|
lsp::capabilities::ClientCapabilities,
|
||||||
lsp_ext::{WorkspaceSymbolSearchKind, WorkspaceSymbolSearchScope},
|
lsp_ext::{WorkspaceSymbolSearchKind, WorkspaceSymbolSearchScope},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,53 +0,0 @@
|
|||||||
//! Generate minimal `TextEdit`s from different text versions
|
|
||||||
use dissimilar::Chunk;
|
|
||||||
use ide::{TextEdit, TextRange, TextSize};
|
|
||||||
|
|
||||||
pub(crate) fn diff(left: &str, right: &str) -> TextEdit {
|
|
||||||
let chunks = dissimilar::diff(left, right);
|
|
||||||
textedit_from_chunks(chunks)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn textedit_from_chunks(chunks: Vec<dissimilar::Chunk<'_>>) -> TextEdit {
|
|
||||||
let mut builder = TextEdit::builder();
|
|
||||||
let mut pos = TextSize::default();
|
|
||||||
|
|
||||||
let mut chunks = chunks.into_iter().peekable();
|
|
||||||
while let Some(chunk) = chunks.next() {
|
|
||||||
if let (Chunk::Delete(deleted), Some(&Chunk::Insert(inserted))) = (chunk, chunks.peek()) {
|
|
||||||
chunks.next().unwrap();
|
|
||||||
let deleted_len = TextSize::of(deleted);
|
|
||||||
builder.replace(TextRange::at(pos, deleted_len), inserted.into());
|
|
||||||
pos += deleted_len;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
match chunk {
|
|
||||||
Chunk::Equal(text) => {
|
|
||||||
pos += TextSize::of(text);
|
|
||||||
}
|
|
||||||
Chunk::Delete(deleted) => {
|
|
||||||
let deleted_len = TextSize::of(deleted);
|
|
||||||
builder.delete(TextRange::at(pos, deleted_len));
|
|
||||||
pos += deleted_len;
|
|
||||||
}
|
|
||||||
Chunk::Insert(inserted) => {
|
|
||||||
builder.insert(pos, inserted.into());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
builder.finish()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
use super::*;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn diff_applies() {
|
|
||||||
let mut original = String::from("fn foo(a:u32){\n}");
|
|
||||||
let result = "fn foo(a: u32) {}";
|
|
||||||
let edit = diff(&original, result);
|
|
||||||
edit.apply(&mut original);
|
|
||||||
assert_eq!(original, result);
|
|
||||||
}
|
|
||||||
}
|
|
@ -460,6 +460,11 @@ pub(crate) fn process_changes(&mut self) -> bool {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIXME: `workspace_structure_change` is computed from `should_refresh_for_change` which is
|
||||||
|
// path syntax based. That is not sufficient for all cases so we should lift that check out
|
||||||
|
// into a `QueuedTask`, see `handle_did_save_text_document`.
|
||||||
|
// Or maybe instead of replacing that check, kick off a semantic one if the syntactic one
|
||||||
|
// didn't find anything (to make up for the lack of precision).
|
||||||
{
|
{
|
||||||
if !matches!(&workspace_structure_change, Some((.., true))) {
|
if !matches!(&workspace_structure_change, Some((.., true))) {
|
||||||
_ = self
|
_ = self
|
||||||
|
@ -158,6 +158,8 @@ pub(crate) fn handle_did_save_text_document(
|
|||||||
.map(|cfg| cfg.files_to_watch.iter().map(String::as_str).collect::<Vec<&str>>())
|
.map(|cfg| cfg.files_to_watch.iter().map(String::as_str).collect::<Vec<&str>>())
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
|
// FIXME: We should move this check into a QueuedTask and do semantic resolution of
|
||||||
|
// the files. There is only so much we can tell syntactically from the path.
|
||||||
if reload::should_refresh_for_change(path, ChangeKind::Modify, additional_files) {
|
if reload::should_refresh_for_change(path, ChangeKind::Modify, additional_files) {
|
||||||
state.fetch_workspaces_queue.request_op(
|
state.fetch_workspaces_queue.request_op(
|
||||||
format!("workspace vfs file change saved {path}"),
|
format!("workspace vfs file change saved {path}"),
|
||||||
|
@ -36,7 +36,6 @@
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
config::{Config, RustfmtConfig, WorkspaceSymbolConfig},
|
config::{Config, RustfmtConfig, WorkspaceSymbolConfig},
|
||||||
diff::diff,
|
|
||||||
global_state::{FetchWorkspaceRequest, GlobalState, GlobalStateSnapshot},
|
global_state::{FetchWorkspaceRequest, GlobalState, GlobalStateSnapshot},
|
||||||
hack_recover_crate_name,
|
hack_recover_crate_name,
|
||||||
line_index::LineEndings,
|
line_index::LineEndings,
|
||||||
@ -2370,3 +2369,47 @@ fn resolve_resource_op(op: &ResourceOp) -> ResourceOperationKind {
|
|||||||
ResourceOp::Delete(_) => ResourceOperationKind::Delete,
|
ResourceOp::Delete(_) => ResourceOperationKind::Delete,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub(crate) fn diff(left: &str, right: &str) -> TextEdit {
|
||||||
|
use dissimilar::Chunk;
|
||||||
|
|
||||||
|
let chunks = dissimilar::diff(left, right);
|
||||||
|
|
||||||
|
let mut builder = TextEdit::builder();
|
||||||
|
let mut pos = TextSize::default();
|
||||||
|
|
||||||
|
let mut chunks = chunks.into_iter().peekable();
|
||||||
|
while let Some(chunk) = chunks.next() {
|
||||||
|
if let (Chunk::Delete(deleted), Some(&Chunk::Insert(inserted))) = (chunk, chunks.peek()) {
|
||||||
|
chunks.next().unwrap();
|
||||||
|
let deleted_len = TextSize::of(deleted);
|
||||||
|
builder.replace(TextRange::at(pos, deleted_len), inserted.into());
|
||||||
|
pos += deleted_len;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
match chunk {
|
||||||
|
Chunk::Equal(text) => {
|
||||||
|
pos += TextSize::of(text);
|
||||||
|
}
|
||||||
|
Chunk::Delete(deleted) => {
|
||||||
|
let deleted_len = TextSize::of(deleted);
|
||||||
|
builder.delete(TextRange::at(pos, deleted_len));
|
||||||
|
pos += deleted_len;
|
||||||
|
}
|
||||||
|
Chunk::Insert(inserted) => {
|
||||||
|
builder.insert(pos, inserted.into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
builder.finish()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn diff_smoke_test() {
|
||||||
|
let mut original = String::from("fn foo(a:u32){\n}");
|
||||||
|
let result = "fn foo(a: u32) {}";
|
||||||
|
let edit = diff(&original, result);
|
||||||
|
edit.apply(&mut original);
|
||||||
|
assert_eq!(original, result);
|
||||||
|
}
|
||||||
|
@ -11,12 +11,9 @@
|
|||||||
|
|
||||||
pub mod cli;
|
pub mod cli;
|
||||||
|
|
||||||
mod capabilities;
|
|
||||||
mod command;
|
mod command;
|
||||||
mod diagnostics;
|
mod diagnostics;
|
||||||
mod diff;
|
|
||||||
mod discover;
|
mod discover;
|
||||||
mod dispatch;
|
|
||||||
mod flycheck;
|
mod flycheck;
|
||||||
mod hack_recover_crate_name;
|
mod hack_recover_crate_name;
|
||||||
mod line_index;
|
mod line_index;
|
||||||
@ -30,6 +27,7 @@
|
|||||||
mod version;
|
mod version;
|
||||||
|
|
||||||
mod handlers {
|
mod handlers {
|
||||||
|
pub(crate) mod dispatch;
|
||||||
pub(crate) mod notification;
|
pub(crate) mod notification;
|
||||||
pub(crate) mod request;
|
pub(crate) mod request;
|
||||||
}
|
}
|
||||||
@ -51,7 +49,7 @@ pub mod tracing {
|
|||||||
use serde::de::DeserializeOwned;
|
use serde::de::DeserializeOwned;
|
||||||
|
|
||||||
pub use crate::{
|
pub use crate::{
|
||||||
capabilities::server_capabilities, main_loop::main_loop, reload::ws_to_crate_graph,
|
lsp::capabilities::server_capabilities, main_loop::main_loop, reload::ws_to_crate_graph,
|
||||||
version::version,
|
version::version,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
use core::fmt;
|
use core::fmt;
|
||||||
|
|
||||||
pub mod ext;
|
pub mod ext;
|
||||||
|
|
||||||
|
pub(crate) mod capabilities;
|
||||||
pub(crate) mod from_proto;
|
pub(crate) mod from_proto;
|
||||||
pub(crate) mod semantic_tokens;
|
pub(crate) mod semantic_tokens;
|
||||||
pub(crate) mod to_proto;
|
pub(crate) mod to_proto;
|
||||||
|
@ -20,10 +20,10 @@
|
|||||||
config::Config,
|
config::Config,
|
||||||
diagnostics::{fetch_native_diagnostics, DiagnosticsGeneration, NativeDiagnosticsFetchKind},
|
diagnostics::{fetch_native_diagnostics, DiagnosticsGeneration, NativeDiagnosticsFetchKind},
|
||||||
discover::{DiscoverArgument, DiscoverCommand, DiscoverProjectMessage},
|
discover::{DiscoverArgument, DiscoverCommand, DiscoverProjectMessage},
|
||||||
dispatch::{NotificationDispatcher, RequestDispatcher},
|
|
||||||
flycheck::{self, FlycheckMessage},
|
flycheck::{self, FlycheckMessage},
|
||||||
global_state::{file_id_to_url, url_to_file_id, FetchWorkspaceRequest, GlobalState},
|
global_state::{file_id_to_url, url_to_file_id, FetchWorkspaceRequest, GlobalState},
|
||||||
hack_recover_crate_name,
|
hack_recover_crate_name,
|
||||||
|
handlers::dispatch::{NotificationDispatcher, RequestDispatcher},
|
||||||
lsp::{
|
lsp::{
|
||||||
from_proto, to_proto,
|
from_proto, to_proto,
|
||||||
utils::{notification_is, Progress},
|
utils::{notification_is, Progress},
|
||||||
@ -105,6 +105,7 @@ pub(crate) enum Task {
|
|||||||
FetchWorkspace(ProjectWorkspaceProgress),
|
FetchWorkspace(ProjectWorkspaceProgress),
|
||||||
FetchBuildData(BuildDataProgress),
|
FetchBuildData(BuildDataProgress),
|
||||||
LoadProcMacros(ProcMacroProgress),
|
LoadProcMacros(ProcMacroProgress),
|
||||||
|
// FIXME: Remove this in favor of a more general QueuedTask, see `handle_did_save_text_document`
|
||||||
BuildDepsHaveChanged,
|
BuildDepsHaveChanged,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user