rust/crates/rust-analyzer/src/world.rs

344 lines
12 KiB
Rust
Raw Normal View History

2020-02-18 05:25:26 -06:00
//! The context or environment in which the language server functions. In our
//! server implementation this is know as the `WorldState`.
2019-12-21 14:27:38 -06:00
//!
//! Each tick provides an immutable snapshot of the state as `WorldSnapshot`.
2018-08-17 11:54:08 -05:00
use std::{
path::{Path, PathBuf},
2018-09-02 06:46:15 -05:00
sync::Arc,
2018-08-17 11:54:08 -05:00
};
2019-08-25 05:04:56 -05:00
use crossbeam_channel::{unbounded, Receiver};
2019-01-14 04:55:56 -06:00
use lsp_types::Url;
use parking_lot::RwLock;
use ra_flycheck::{Flycheck, FlycheckConfig};
2019-11-27 12:32:33 -06:00
use ra_ide::{
2020-04-01 07:32:04 -05:00
Analysis, AnalysisChange, AnalysisHost, CrateGraph, FileId, LibraryData, SourceRootId,
2018-10-31 15:41:43 -05:00
};
2020-03-18 07:56:46 -05:00
use ra_project_model::{get_rustc_cfg_options, ProcMacroClient, ProjectWorkspace};
2019-09-06 08:25:24 -05:00
use ra_vfs::{LineEndings, RootEntry, Vfs, VfsChange, VfsFile, VfsRoot, VfsTask, Watch};
use relative_path::RelativePathBuf;
2020-03-28 05:08:19 -05:00
use stdx::format_to;
2018-08-17 11:54:08 -05:00
2018-10-15 12:15:53 -05:00
use crate::{
2020-04-01 07:32:04 -05:00
config::Config,
diagnostics::{
to_proto::url_from_path_with_drive_lowercasing, CheckFixes, DiagnosticCollection,
},
2019-12-25 12:10:45 -06:00
main_loop::pending_requests::{CompletedRequest, LatestRequests},
2020-02-17 12:07:30 -06:00
vfs_glob::{Glob, RustPackageFilterBuilder},
LspError, Result,
2018-08-17 11:54:08 -05:00
};
2020-03-10 09:00:58 -05:00
use ra_db::ExternSourceId;
use rustc_hash::{FxHashMap, FxHashSet};
2018-08-17 11:54:08 -05:00
2020-04-01 11:41:43 -05:00
fn create_flycheck(workspaces: &[ProjectWorkspace], config: &FlycheckConfig) -> Option<Flycheck> {
// FIXME: Figure out the multi-workspace situation
2020-03-20 17:40:02 -05:00
workspaces
.iter()
.find_map(|w| match w {
ProjectWorkspace::Cargo { cargo, .. } => Some(cargo),
ProjectWorkspace::Json { .. } => None,
})
.map(|cargo| {
let cargo_project_root = cargo.workspace_root().to_path_buf();
2020-04-01 11:41:43 -05:00
Some(Flycheck::new(config.clone(), cargo_project_root))
2020-03-20 17:40:02 -05:00
})
.unwrap_or_else(|| {
log::warn!("Cargo check watching only supported for cargo workspaces, disabling");
None
})
}
2019-06-01 02:31:40 -05:00
/// `WorldState` is the primary mutable state of the language server
///
/// The most interesting components are `vfs`, which stores a consistent
/// snapshot of the file systems, and `analysis_host`, which stores our
/// incremental salsa database.
2018-12-19 06:04:15 -06:00
#[derive(Debug)]
2019-06-01 02:31:40 -05:00
pub struct WorldState {
2020-03-31 09:02:55 -05:00
pub config: Config,
pub roots: Vec<PathBuf>,
2019-01-10 11:13:08 -06:00
pub workspaces: Arc<Vec<ProjectWorkspace>>,
2018-08-30 04:51:46 -05:00
pub analysis_host: AnalysisHost,
2018-12-19 06:04:15 -06:00
pub vfs: Arc<RwLock<Vfs>>,
2019-08-25 05:04:56 -05:00
pub task_receiver: Receiver<VfsTask>,
pub latest_requests: Arc<RwLock<LatestRequests>>,
pub flycheck: Option<Flycheck>,
pub diagnostics: DiagnosticCollection,
2020-04-12 11:05:33 -05:00
pub proc_macro_client: ProcMacroClient,
2018-08-17 11:54:08 -05:00
}
2019-06-01 02:31:40 -05:00
/// An immutable snapshot of the world's state at a point in time.
pub struct WorldSnapshot {
2020-03-31 09:02:55 -05:00
pub config: Config,
2019-01-10 11:13:08 -06:00
pub workspaces: Arc<Vec<ProjectWorkspace>>,
2018-08-29 10:03:14 -05:00
pub analysis: Analysis,
pub latest_requests: Arc<RwLock<LatestRequests>>,
pub check_fixes: CheckFixes,
2020-01-16 04:58:31 -06:00
vfs: Arc<RwLock<Vfs>>,
2018-08-17 11:54:08 -05:00
}
2019-06-01 02:31:40 -05:00
impl WorldState {
2019-06-07 12:49:29 -05:00
pub fn new(
folder_roots: Vec<PathBuf>,
workspaces: Vec<ProjectWorkspace>,
lru_capacity: Option<usize>,
exclude_globs: &[Glob],
2019-09-06 08:25:24 -05:00
watch: Watch,
2020-03-31 09:02:55 -05:00
config: Config,
2019-06-07 12:49:29 -05:00
) -> WorldState {
let mut change = AnalysisChange::new();
2018-08-17 11:54:08 -05:00
2020-03-31 18:15:20 -05:00
let extern_dirs: FxHashSet<_> =
workspaces.iter().flat_map(ProjectWorkspace::out_dirs).collect();
let roots: Vec<_> = {
let create_filter = |is_member| {
RustPackageFilterBuilder::default()
.set_member(is_member)
.exclude(exclude_globs.iter().cloned())
.into_vfs_filter()
};
folder_roots
.iter()
.map(|path| RootEntry::new(path.clone(), create_filter(true)))
.chain(workspaces.iter().flat_map(ProjectWorkspace::to_roots).map(|pkg_root| {
RootEntry::new(pkg_root.path().to_owned(), create_filter(pkg_root.is_member()))
2020-03-31 18:15:20 -05:00
}))
.chain(
extern_dirs
.iter()
.map(|path| RootEntry::new(path.to_owned(), create_filter(false))),
)
.collect()
};
2020-03-10 09:00:58 -05:00
2019-08-25 05:04:56 -05:00
let (task_sender, task_receiver) = unbounded();
let task_sender = Box::new(move |t| task_sender.send(t).unwrap());
2019-09-06 08:25:24 -05:00
let (mut vfs, vfs_roots) = Vfs::new(roots, task_sender, watch);
2020-03-28 17:33:16 -05:00
2020-03-31 18:15:20 -05:00
let mut extern_source_roots = FxHashMap::default();
for r in vfs_roots {
let vfs_root_path = vfs.root2path(r);
let is_local = folder_roots.iter().any(|it| vfs_root_path.starts_with(it));
2019-06-03 09:21:08 -05:00
change.add_root(SourceRootId(r.0), is_local);
change.set_debug_root_path(SourceRootId(r.0), vfs_root_path.display().to_string());
2020-03-10 09:00:58 -05:00
// FIXME: add path2root in vfs to simpily this logic
if extern_dirs.contains(&vfs_root_path) {
extern_source_roots.insert(vfs_root_path, ExternSourceId(r.0));
}
2018-09-04 03:40:45 -05:00
}
2018-08-17 11:54:08 -05:00
2019-10-02 13:02:53 -05:00
// FIXME: Read default cfgs from config
let default_cfg_options = {
2020-05-05 11:15:13 -05:00
let mut opts = get_rustc_cfg_options(config.cargo.target.as_ref());
opts.insert_atom("test".into());
opts.insert_atom("debug_assertion".into());
opts
};
2019-10-02 13:02:53 -05:00
2020-03-31 09:29:27 -05:00
let proc_macro_client = match &config.proc_macro_srv {
2020-03-26 15:26:34 -05:00
None => ProcMacroClient::dummy(),
2020-04-20 13:26:10 -05:00
Some((path, args)) => match ProcMacroClient::extern_process(path.into(), args) {
Ok(it) => it,
Err(err) => {
log::error!(
2020-04-22 18:00:56 -05:00
"Failed to run ra_proc_macro_srv from path {}, error: {:?}",
path.display(),
2020-04-20 13:26:10 -05:00
err
);
ProcMacroClient::dummy()
2020-03-26 15:26:34 -05:00
}
2020-04-20 13:26:10 -05:00
},
2020-03-26 15:26:34 -05:00
};
2020-03-18 07:56:46 -05:00
2020-05-09 13:25:10 -05:00
// Create crate graph from all the workspaces
let mut crate_graph = CrateGraph::default();
let mut load = |path: &Path| {
// Some path from metadata will be non canonicalized, e.g. /foo/../bar/lib.rs
let path = path.canonicalize().ok()?;
let vfs_file = vfs.load(&path);
vfs_file.map(|f| FileId(f.0))
};
for ws in workspaces.iter() {
crate_graph.extend(ws.to_crate_graph(
&default_cfg_options,
&extern_source_roots,
&proc_macro_client,
&mut load,
));
}
change.set_crate_graph(crate_graph);
2018-12-19 06:04:15 -06:00
2020-04-01 11:41:43 -05:00
let flycheck = config.check.as_ref().and_then(|c| create_flycheck(&workspaces, c));
2020-03-10 12:56:15 -05:00
let mut analysis_host = AnalysisHost::new(lru_capacity);
2018-12-19 06:04:15 -06:00
analysis_host.apply_change(change);
2019-06-01 02:31:40 -05:00
WorldState {
2020-04-19 14:15:49 -05:00
config,
roots: folder_roots,
2018-12-19 06:04:15 -06:00
workspaces: Arc::new(workspaces),
analysis_host,
vfs: Arc::new(RwLock::new(vfs)),
2019-08-25 05:04:56 -05:00
task_receiver,
latest_requests: Default::default(),
flycheck,
diagnostics: Default::default(),
2020-04-12 11:05:33 -05:00
proc_macro_client,
2018-12-19 06:04:15 -06:00
}
}
2020-04-01 11:41:43 -05:00
pub fn update_configuration(&mut self, config: Config) {
self.analysis_host.update_lru_capacity(config.lru_capacity);
if config.check != self.config.check {
self.flycheck =
config.check.as_ref().and_then(|it| create_flycheck(&self.workspaces, it));
}
2020-03-31 09:02:55 -05:00
self.config = config;
}
2018-12-19 06:04:15 -06:00
/// Returns a vec of libraries
/// FIXME: better API here
pub fn process_changes(
&mut self,
2020-03-29 13:39:03 -05:00
roots_scanned: &mut usize,
) -> Option<Vec<(SourceRootId, Vec<(FileId, RelativePathBuf, Arc<String>)>)>> {
2018-12-19 06:40:42 -06:00
let changes = self.vfs.write().commit_changes();
if changes.is_empty() {
return None;
2018-12-19 06:40:42 -06:00
}
2018-12-19 06:04:15 -06:00
let mut libs = Vec::new();
let mut change = AnalysisChange::new();
2018-12-19 06:40:42 -06:00
for c in changes {
2018-12-19 06:04:15 -06:00
match c {
VfsChange::AddRoot { root, files } => {
2018-12-19 06:40:42 -06:00
let root_path = self.vfs.read().root2path(root);
let is_local = self.roots.iter().any(|r| root_path.starts_with(r));
if is_local {
2020-03-29 13:39:03 -05:00
*roots_scanned += 1;
2018-12-19 06:40:42 -06:00
for (file, path, text) in files {
2019-06-03 09:21:08 -05:00
change.add_file(SourceRootId(root.0), FileId(file.0), path, text);
2018-12-19 06:40:42 -06:00
}
} else {
let files = files
.into_iter()
2019-06-03 09:21:08 -05:00
.map(|(vfsfile, path, text)| (FileId(vfsfile.0), path, text))
2018-12-19 06:40:42 -06:00
.collect();
2019-06-03 09:21:08 -05:00
libs.push((SourceRootId(root.0), files));
2018-12-19 06:40:42 -06:00
}
2018-12-19 06:04:15 -06:00
}
2019-02-08 05:49:43 -06:00
VfsChange::AddFile { root, file, path, text } => {
2019-06-03 09:21:08 -05:00
change.add_file(SourceRootId(root.0), FileId(file.0), path, text);
2018-12-19 06:04:15 -06:00
}
VfsChange::RemoveFile { root, file, path } => {
2019-06-03 09:21:08 -05:00
change.remove_file(SourceRootId(root.0), FileId(file.0), path)
2018-12-19 06:04:15 -06:00
}
VfsChange::ChangeFile { file, text } => {
2019-06-03 09:21:08 -05:00
change.change_file(FileId(file.0), text);
2018-12-19 06:04:15 -06:00
}
}
}
self.analysis_host.apply_change(change);
Some(libs)
2018-09-02 06:46:15 -05:00
}
2018-12-19 06:04:15 -06:00
pub fn add_lib(&mut self, data: LibraryData) {
let mut change = AnalysisChange::new();
change.add_library(data);
self.analysis_host.apply_change(change);
}
2019-06-01 02:31:40 -05:00
pub fn snapshot(&self) -> WorldSnapshot {
WorldSnapshot {
2020-03-31 09:02:55 -05:00
config: self.config.clone(),
2018-09-02 06:46:15 -05:00
workspaces: Arc::clone(&self.workspaces),
2018-09-10 04:57:40 -05:00
analysis: self.analysis_host.analysis(),
2018-12-19 06:04:15 -06:00
vfs: Arc::clone(&self.vfs),
latest_requests: Arc::clone(&self.latest_requests),
check_fixes: Arc::clone(&self.diagnostics.check_fixes),
2018-08-17 11:54:08 -05:00
}
}
2019-01-25 10:11:58 -06:00
2019-01-26 11:33:33 -06:00
pub fn maybe_collect_garbage(&mut self) {
self.analysis_host.maybe_collect_garbage()
}
pub fn collect_garbage(&mut self) {
2019-01-25 10:11:58 -06:00
self.analysis_host.collect_garbage()
}
2019-05-29 07:42:14 -05:00
pub fn complete_request(&mut self, request: CompletedRequest) {
self.latest_requests.write().record(request)
2019-05-29 07:42:14 -05:00
}
2018-08-17 11:54:08 -05:00
}
2019-06-01 02:31:40 -05:00
impl WorldSnapshot {
2018-08-29 10:03:14 -05:00
pub fn analysis(&self) -> &Analysis {
2018-08-17 11:54:08 -05:00
&self.analysis
}
pub fn uri_to_file_id(&self, uri: &Url) -> Result<FileId> {
let path = uri.to_file_path().map_err(|()| format!("invalid uri: {}", uri))?;
let file = self.vfs.read().path2file(&path).ok_or_else(|| {
2019-04-07 05:26:02 -05:00
// Show warning as this file is outside current workspace
// FIXME: just handle such files, and remove `LspError::UNKNOWN_FILE`.
LspError {
code: LspError::UNKNOWN_FILE,
2019-04-07 05:26:02 -05:00
message: "Rust file outside current workspace is not supported yet.".to_string(),
}
})?;
2019-06-03 09:21:08 -05:00
Ok(FileId(file.0))
2018-08-17 11:54:08 -05:00
}
pub fn file_id_to_uri(&self, id: FileId) -> Result<Url> {
2019-06-03 09:21:08 -05:00
let path = self.vfs.read().file2path(VfsFile(id.0));
let url = url_from_path_with_drive_lowercasing(path)?;
2018-08-17 11:54:08 -05:00
Ok(url)
}
2018-12-21 03:18:14 -06:00
2020-01-16 04:58:31 -06:00
pub fn file_id_to_path(&self, id: FileId) -> PathBuf {
self.vfs.read().file2path(VfsFile(id.0))
}
2019-08-20 10:53:59 -05:00
pub fn file_line_endings(&self, id: FileId) -> LineEndings {
self.vfs.read().file_line_endings(VfsFile(id.0))
}
2018-12-21 03:18:14 -06:00
pub fn path_to_uri(&self, root: SourceRootId, path: &RelativePathBuf) -> Result<Url> {
2019-06-03 09:21:08 -05:00
let base = self.vfs.read().root2path(VfsRoot(root.0));
2018-12-21 03:18:14 -06:00
let path = path.to_path(base);
let url = Url::from_file_path(&path)
.map_err(|_| format!("can't convert path to url: {}", path.display()))?;
2018-12-21 03:18:14 -06:00
Ok(url)
}
2019-01-22 15:15:03 -06:00
pub fn status(&self) -> String {
2020-03-28 05:08:19 -05:00
let mut buf = String::new();
2019-01-22 15:15:03 -06:00
if self.workspaces.is_empty() {
2020-03-28 05:08:19 -05:00
buf.push_str("no workspaces\n")
2019-01-22 15:15:03 -06:00
} else {
2020-03-28 05:08:19 -05:00
buf.push_str("workspaces:\n");
2019-01-22 15:15:03 -06:00
for w in self.workspaces.iter() {
2020-03-28 05:08:19 -05:00
format_to!(buf, "{} packages loaded\n", w.n_packages());
2019-01-22 15:15:03 -06:00
}
}
2020-03-28 05:08:19 -05:00
buf.push_str("\nanalysis:\n");
buf.push_str(
2019-07-25 12:22:41 -05:00
&self
.analysis
.status()
.unwrap_or_else(|_| "Analysis retrieval was cancelled".to_owned()),
);
2020-03-28 05:08:19 -05:00
buf
2019-01-22 15:15:03 -06:00
}
pub fn workspace_root_for(&self, file_id: FileId) -> Option<&Path> {
2019-06-03 09:21:08 -05:00
let path = self.vfs.read().file2path(VfsFile(file_id.0));
self.workspaces.iter().find_map(|ws| ws.workspace_root_for(&path))
}
2018-08-17 11:54:08 -05:00
}