2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2018-08-17 11:54:08 -05:00
|
|
|
use std::{
|
2019-04-13 12:45:21 -05:00
|
|
|
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-08-30 09:24:11 -05:00
|
|
|
use lsp_server::ErrorCode;
|
2019-01-14 04:55:56 -06:00
|
|
|
use lsp_types::Url;
|
2019-07-04 15:05:17 -05:00
|
|
|
use parking_lot::RwLock;
|
2019-11-27 12:32:33 -06:00
|
|
|
use ra_ide::{
|
2019-08-22 06:44:16 -05:00
|
|
|
Analysis, AnalysisChange, AnalysisHost, CrateGraph, FeatureFlags, FileId, LibraryData,
|
|
|
|
SourceRootId,
|
2018-10-31 15:41:43 -05:00
|
|
|
};
|
2019-10-02 13:02:53 -05:00
|
|
|
use ra_project_model::{get_rustc_cfg_options, ProjectWorkspace};
|
2019-09-06 08:25:24 -05:00
|
|
|
use ra_vfs::{LineEndings, RootEntry, Vfs, VfsChange, VfsFile, VfsRoot, VfsTask, Watch};
|
2019-08-06 06:34:28 -05:00
|
|
|
use ra_vfs_glob::{Glob, RustPackageFilterBuilder};
|
2019-03-19 08:14:16 -05:00
|
|
|
use relative_path::RelativePathBuf;
|
2018-08-17 11:54:08 -05:00
|
|
|
|
2018-10-15 12:15:53 -05:00
|
|
|
use crate::{
|
2019-05-31 12:14:54 -05:00
|
|
|
main_loop::pending_requests::{CompletedRequest, LatestRequests},
|
2019-07-04 15:05:17 -05:00
|
|
|
LspError, Result,
|
2018-08-17 11:54:08 -05:00
|
|
|
};
|
|
|
|
|
2019-07-08 06:09:38 -05:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Options {
|
|
|
|
pub publish_decorations: bool,
|
|
|
|
pub supports_location_link: bool,
|
2019-10-20 18:04:55 -05:00
|
|
|
pub line_folding_only: bool,
|
2019-11-18 11:02:28 -06:00
|
|
|
pub max_inlay_hint_length: Option<usize>,
|
2019-07-08 06:09:38 -05:00
|
|
|
}
|
|
|
|
|
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 {
|
2019-07-08 06:09:38 -05:00
|
|
|
pub options: Options,
|
2019-08-31 06:47:37 -05:00
|
|
|
//FIXME: this belongs to `LoopState` rather than to `WorldState`
|
2018-12-19 06:40:42 -06:00
|
|
|
pub roots_to_scan: usize,
|
2019-04-11 01:08:19 -05:00
|
|
|
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>,
|
2019-05-31 12:14:54 -05:00
|
|
|
pub latest_requests: Arc<RwLock<LatestRequests>>,
|
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 {
|
2019-07-08 06:09:38 -05:00
|
|
|
pub options: Options,
|
2019-01-10 11:13:08 -06:00
|
|
|
pub workspaces: Arc<Vec<ProjectWorkspace>>,
|
2018-08-29 10:03:14 -05:00
|
|
|
pub analysis: Analysis,
|
2018-12-19 06:04:15 -06:00
|
|
|
pub vfs: Arc<RwLock<Vfs>>,
|
2019-05-31 12:14:54 -05:00
|
|
|
pub latest_requests: Arc<RwLock<LatestRequests>>,
|
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>,
|
2019-08-06 06:34:28 -05:00
|
|
|
exclude_globs: &[Glob],
|
2019-09-06 08:25:24 -05:00
|
|
|
watch: Watch,
|
2019-07-08 06:09:38 -05:00
|
|
|
options: Options,
|
2019-08-22 06:44:16 -05:00
|
|
|
feature_flags: FeatureFlags,
|
2019-06-07 12:49:29 -05:00
|
|
|
) -> WorldState {
|
2018-10-25 02:57:55 -05:00
|
|
|
let mut change = AnalysisChange::new();
|
2018-08-17 11:54:08 -05:00
|
|
|
|
2018-12-19 06:04:15 -06:00
|
|
|
let mut roots = Vec::new();
|
2019-08-06 06:00:37 -05:00
|
|
|
roots.extend(folder_roots.iter().map(|path| {
|
2019-08-06 06:34:28 -05:00
|
|
|
let mut filter = RustPackageFilterBuilder::default().set_member(true);
|
|
|
|
for glob in exclude_globs.iter() {
|
|
|
|
filter = filter.exclude(glob.clone());
|
|
|
|
}
|
|
|
|
RootEntry::new(path.clone(), filter.into_vfs_filter())
|
2019-08-06 06:00:37 -05:00
|
|
|
}));
|
2018-12-19 06:04:15 -06:00
|
|
|
for ws in workspaces.iter() {
|
2019-08-06 06:00:37 -05:00
|
|
|
roots.extend(ws.to_roots().into_iter().map(|pkg_root| {
|
2019-08-06 06:34:28 -05:00
|
|
|
let mut filter =
|
|
|
|
RustPackageFilterBuilder::default().set_member(pkg_root.is_member());
|
|
|
|
for glob in exclude_globs.iter() {
|
|
|
|
filter = filter.exclude(glob.clone());
|
|
|
|
}
|
|
|
|
RootEntry::new(pkg_root.path().clone(), filter.into_vfs_filter())
|
2019-08-06 06:00:37 -05:00
|
|
|
}));
|
2018-09-04 03:40:45 -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);
|
2019-04-11 01:08:19 -05:00
|
|
|
let roots_to_scan = vfs_roots.len();
|
|
|
|
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);
|
2019-09-08 01:48:45 -05:00
|
|
|
change.set_debug_root_path(SourceRootId(r.0), vfs_root_path.display().to_string());
|
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
|
2019-10-08 06:22:49 -05:00
|
|
|
let default_cfg_options = {
|
|
|
|
let mut opts = get_rustc_cfg_options();
|
|
|
|
opts.insert_atom("test".into());
|
|
|
|
opts.insert_atom("debug_assertion".into());
|
|
|
|
opts
|
|
|
|
};
|
2019-10-02 13:02:53 -05:00
|
|
|
|
2019-02-06 15:54:33 -06:00
|
|
|
// Create crate graph from all the workspaces
|
2018-11-27 18:25:20 -06:00
|
|
|
let mut crate_graph = CrateGraph::default();
|
2019-02-09 04:08:24 -06:00
|
|
|
let mut load = |path: &std::path::Path| {
|
|
|
|
let vfs_file = vfs.load(path);
|
2019-06-03 09:21:08 -05:00
|
|
|
vfs_file.map(|f| FileId(f.0))
|
2019-02-09 04:08:24 -06:00
|
|
|
};
|
2018-12-19 06:04:15 -06:00
|
|
|
for ws in workspaces.iter() {
|
2019-10-02 13:02:53 -05:00
|
|
|
let (graph, crate_names) = ws.to_crate_graph(&default_cfg_options, &mut load);
|
2019-09-08 01:48:45 -05:00
|
|
|
let shift = crate_graph.extend(graph);
|
|
|
|
for (crate_id, name) in crate_names {
|
|
|
|
change.set_debug_crate_name(crate_id.shift(shift), name)
|
|
|
|
}
|
2018-12-08 14:16:11 -06:00
|
|
|
}
|
2018-10-25 02:57:55 -05:00
|
|
|
change.set_crate_graph(crate_graph);
|
2018-12-19 06:04:15 -06:00
|
|
|
|
2019-08-22 06:44:16 -05:00
|
|
|
let mut analysis_host = AnalysisHost::new(lru_capacity, feature_flags);
|
2018-12-19 06:04:15 -06:00
|
|
|
analysis_host.apply_change(change);
|
2019-06-01 02:31:40 -05:00
|
|
|
WorldState {
|
2019-07-08 06:09:38 -05:00
|
|
|
options,
|
2018-12-19 06:40:42 -06:00
|
|
|
roots_to_scan,
|
2019-04-11 01:08:19 -05:00
|
|
|
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,
|
2019-05-31 12:14:54 -05:00
|
|
|
latest_requests: Default::default(),
|
2018-12-19 06:04:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a vec of libraries
|
|
|
|
/// FIXME: better API here
|
|
|
|
pub fn process_changes(
|
|
|
|
&mut self,
|
|
|
|
) -> 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 Vec::new();
|
|
|
|
}
|
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);
|
2019-04-11 01:08:19 -05:00
|
|
|
let is_local = self.roots.iter().any(|r| root_path.starts_with(r));
|
|
|
|
if is_local {
|
2018-12-19 06:40:42 -06:00
|
|
|
self.roots_to_scan -= 1;
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-25 02:57:55 -05:00
|
|
|
self.analysis_host.apply_change(change);
|
2018-12-19 06:04:15 -06:00
|
|
|
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) {
|
2018-12-19 06:40:42 -06:00
|
|
|
self.roots_to_scan -= 1;
|
2018-12-19 06:04:15 -06:00
|
|
|
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 {
|
2019-07-08 06:09:38 -05:00
|
|
|
options: self.options.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),
|
2019-05-31 12:14:54 -05:00
|
|
|
latest_requests: Arc::clone(&self.latest_requests),
|
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) {
|
2019-05-31 12:14:54 -05:00
|
|
|
self.latest_requests.write().record(request)
|
2019-05-29 07:42:14 -05:00
|
|
|
}
|
2019-08-22 06:44:16 -05:00
|
|
|
|
|
|
|
pub fn feature_flags(&self) -> &FeatureFlags {
|
|
|
|
self.analysis_host.feature_flags()
|
|
|
|
}
|
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> {
|
2019-06-14 15:42:56 -05:00
|
|
|
let path = uri.to_file_path().map_err(|()| format!("invalid uri: {}", uri))?;
|
2019-04-06 12:20:33 -05:00
|
|
|
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
|
2019-06-14 15:42:56 -05:00
|
|
|
LspError {
|
2019-04-07 05:26:02 -05:00
|
|
|
code: ErrorCode::InvalidRequest as i32,
|
|
|
|
message: "Rust file outside current workspace is not supported yet.".to_string(),
|
2019-06-14 15:42:56 -05:00
|
|
|
}
|
2019-04-06 12:20:33 -05:00
|
|
|
})?;
|
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));
|
2018-12-19 06:04:15 -06:00
|
|
|
let url = Url::from_file_path(&path)
|
2019-06-14 15:42:56 -05:00
|
|
|
.map_err(|_| format!("can't convert path to url: {}", path.display()))?;
|
2018-08-17 11:54:08 -05:00
|
|
|
Ok(url)
|
|
|
|
}
|
2018-12-21 03:18:14 -06:00
|
|
|
|
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)
|
2019-06-14 15:42:56 -05:00
|
|
|
.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 {
|
|
|
|
let mut res = String::new();
|
|
|
|
if self.workspaces.is_empty() {
|
|
|
|
res.push_str("no workspaces\n")
|
|
|
|
} else {
|
|
|
|
res.push_str("workspaces:\n");
|
|
|
|
for w in self.workspaces.iter() {
|
2019-08-06 03:54:51 -05:00
|
|
|
res += &format!("{} packages loaded\n", w.n_packages());
|
2019-01-22 15:15:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
res.push_str("\nanalysis:\n");
|
2019-07-25 12:22:41 -05:00
|
|
|
res.push_str(
|
|
|
|
&self
|
|
|
|
.analysis
|
|
|
|
.status()
|
|
|
|
.unwrap_or_else(|_| "Analysis retrieval was cancelled".to_owned()),
|
|
|
|
);
|
2019-01-22 15:15:03 -06:00
|
|
|
res
|
|
|
|
}
|
2019-04-13 12:45:21 -05: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));
|
2019-04-13 12:45:21 -05:00
|
|
|
self.workspaces.iter().find_map(|ws| ws.workspace_root_for(&path))
|
|
|
|
}
|
2019-08-22 06:44:16 -05:00
|
|
|
|
|
|
|
pub fn feature_flags(&self) -> &FeatureFlags {
|
|
|
|
self.analysis.feature_flags()
|
|
|
|
}
|
2018-08-17 11:54:08 -05:00
|
|
|
}
|