rust/crates/ra_lsp_server/src/server_world.rs

194 lines
6.4 KiB
Rust
Raw Normal View History

2018-08-17 18:54:08 +02:00
use std::{
2018-12-19 13:04:15 +01:00
path::{PathBuf},
2018-09-02 13:46:15 +02:00
sync::Arc,
2018-08-17 18:54:08 +02:00
};
use languageserver_types::Url;
2018-10-31 21:41:43 +01:00
use ra_analysis::{
2018-12-19 10:48:34 +01:00
Analysis, AnalysisChange, AnalysisHost, CrateGraph, FileId, LibraryData,
2018-12-19 13:04:15 +01:00
SourceRootId
2018-10-31 21:41:43 +01:00
};
2018-12-21 10:18:14 +01:00
use ra_vfs::{Vfs, VfsChange, VfsFile, VfsRoot};
use rustc_hash::FxHashMap;
2018-12-19 13:04:15 +01:00
use relative_path::RelativePathBuf;
use parking_lot::RwLock;
use failure::{format_err};
2018-08-17 18:54:08 +02:00
2018-10-15 19:15:53 +02:00
use crate::{
2018-12-08 21:16:11 +01:00
project_model::{CargoWorkspace, TargetKind},
Result,
2018-08-17 18:54:08 +02:00
};
2018-12-19 13:04:15 +01:00
#[derive(Debug)]
2018-08-17 18:54:08 +02:00
pub struct ServerWorldState {
2018-12-19 13:40:42 +01:00
pub roots_to_scan: usize,
pub root: PathBuf,
2018-09-02 13:46:15 +02:00
pub workspaces: Arc<Vec<CargoWorkspace>>,
2018-08-30 11:51:46 +02:00
pub analysis_host: AnalysisHost,
2018-12-19 13:04:15 +01:00
pub vfs: Arc<RwLock<Vfs>>,
2018-08-17 18:54:08 +02:00
}
pub struct ServerWorld {
2018-09-02 13:46:15 +02:00
pub workspaces: Arc<Vec<CargoWorkspace>>,
2018-08-29 17:03:14 +02:00
pub analysis: Analysis,
2018-12-19 13:04:15 +01:00
pub vfs: Arc<RwLock<Vfs>>,
2018-08-17 18:54:08 +02:00
}
impl ServerWorldState {
2018-12-19 13:04:15 +01:00
pub fn new(root: PathBuf, workspaces: Vec<CargoWorkspace>) -> ServerWorldState {
let mut change = AnalysisChange::new();
2018-08-17 18:54:08 +02:00
2018-12-19 13:04:15 +01:00
let mut roots = Vec::new();
2018-12-19 13:40:42 +01:00
roots.push(root.clone());
2018-12-19 13:04:15 +01:00
for ws in workspaces.iter() {
for pkg in ws.packages() {
roots.push(pkg.root(&ws).to_path_buf());
}
2018-09-04 10:40:45 +02:00
}
2018-12-19 13:40:42 +01:00
let roots_to_scan = roots.len();
2018-12-19 13:04:15 +01:00
let (mut vfs, roots) = Vfs::new(roots);
for r in roots {
2018-12-19 14:19:53 +01:00
let is_local = vfs.root2path(r).starts_with(&root);
change.add_root(SourceRootId(r.0), is_local);
2018-09-04 10:40:45 +02:00
}
2018-08-17 18:54:08 +02:00
let mut crate_graph = CrateGraph::default();
2018-12-08 21:16:11 +01:00
let mut pkg_to_lib_crate = FxHashMap::default();
let mut pkg_crates = FxHashMap::default();
2018-12-19 13:04:15 +01:00
for ws in workspaces.iter() {
2018-12-08 21:16:11 +01:00
for pkg in ws.packages() {
for tgt in pkg.targets(ws) {
let root = tgt.root(ws);
2018-12-19 13:04:15 +01:00
if let Some(file_id) = vfs.load(root) {
let file_id = FileId(file_id.0);
2018-12-08 21:16:11 +01:00
let crate_id = crate_graph.add_crate_root(file_id);
if tgt.kind(ws) == TargetKind::Lib {
pkg_to_lib_crate.insert(pkg, crate_id);
}
pkg_crates
.entry(pkg)
.or_insert_with(Vec::new)
.push(crate_id);
}
}
}
for pkg in ws.packages() {
for dep in pkg.dependencies(ws) {
2018-12-08 23:02:53 +01:00
if let Some(&to) = pkg_to_lib_crate.get(&dep.pkg) {
2018-12-08 21:16:11 +01:00
for &from in pkg_crates.get(&pkg).into_iter().flatten() {
2018-12-08 23:02:53 +01:00
crate_graph.add_dep(from, dep.name.clone(), to);
2018-12-08 21:16:11 +01:00
}
}
}
2018-12-08 21:16:11 +01:00
}
}
change.set_crate_graph(crate_graph);
2018-12-19 13:04:15 +01:00
let mut analysis_host = AnalysisHost::default();
analysis_host.apply_change(change);
ServerWorldState {
2018-12-19 13:40:42 +01:00
roots_to_scan,
root,
2018-12-19 13:04:15 +01:00
workspaces: Arc::new(workspaces),
analysis_host,
vfs: Arc::new(RwLock::new(vfs)),
}
}
/// 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 13:40:42 +01:00
let changes = self.vfs.write().commit_changes();
if changes.is_empty() {
return Vec::new();
}
2018-12-19 13:04:15 +01:00
let mut libs = Vec::new();
let mut change = AnalysisChange::new();
2018-12-19 13:40:42 +01:00
for c in changes {
2018-12-19 13:04:15 +01:00
match c {
VfsChange::AddRoot { root, files } => {
2018-12-19 13:40:42 +01:00
let root_path = self.vfs.read().root2path(root);
if root_path.starts_with(&self.root) {
self.roots_to_scan -= 1;
for (file, path, text) in files {
change.add_file(SourceRootId(root.0), FileId(file.0), path, text);
}
} else {
let files = files
.into_iter()
.map(|(vfsfile, path, text)| (FileId(vfsfile.0), path, text))
.collect();
libs.push((SourceRootId(root.0), files));
}
2018-12-19 13:04:15 +01:00
}
VfsChange::AddFile {
root,
file,
path,
text,
} => {
change.add_file(SourceRootId(root.0), FileId(file.0), path, text);
}
VfsChange::RemoveFile { root, file, path } => {
change.remove_file(SourceRootId(root.0), FileId(file.0), path)
}
VfsChange::ChangeFile { file, text } => {
change.change_file(FileId(file.0), text);
}
}
}
self.analysis_host.apply_change(change);
2018-12-19 13:04:15 +01:00
libs
2018-09-02 13:46:15 +02:00
}
2018-12-19 13:04:15 +01:00
pub fn add_lib(&mut self, data: LibraryData) {
2018-12-19 13:40:42 +01:00
self.roots_to_scan -= 1;
2018-12-19 13:04:15 +01:00
let mut change = AnalysisChange::new();
change.add_library(data);
self.analysis_host.apply_change(change);
}
2018-08-21 21:24:59 +02:00
pub fn snapshot(&self) -> ServerWorld {
2018-08-17 18:54:08 +02:00
ServerWorld {
2018-09-02 13:46:15 +02:00
workspaces: Arc::clone(&self.workspaces),
2018-09-10 11:57:40 +02:00
analysis: self.analysis_host.analysis(),
2018-12-19 13:04:15 +01:00
vfs: Arc::clone(&self.vfs),
2018-08-17 18:54:08 +02:00
}
}
}
impl ServerWorld {
2018-08-29 17:03:14 +02:00
pub fn analysis(&self) -> &Analysis {
2018-08-17 18:54:08 +02:00
&self.analysis
}
pub fn uri_to_file_id(&self, uri: &Url) -> Result<FileId> {
let path = uri
.to_file_path()
2018-08-17 18:54:08 +02:00
.map_err(|()| format_err!("invalid uri: {}", uri))?;
2018-12-19 13:04:15 +01:00
let file = self
.vfs
.read()
.path2file(&path)
.ok_or_else(|| format_err!("unknown file: {}", path.display()))?;
Ok(FileId(file.0))
2018-08-17 18:54:08 +02:00
}
pub fn file_id_to_uri(&self, id: FileId) -> Result<Url> {
2018-12-19 13:04:15 +01:00
let path = self.vfs.read().file2path(VfsFile(id.0));
let url = Url::from_file_path(&path)
.map_err(|_| format_err!("can't convert path to url: {}", path.display()))?;
2018-08-17 18:54:08 +02:00
Ok(url)
}
2018-12-21 10:18:14 +01:00
pub fn path_to_uri(&self, root: SourceRootId, path: &RelativePathBuf) -> Result<Url> {
let base = self.vfs.read().root2path(VfsRoot(root.0));
let path = path.to_path(base);
let url = Url::from_file_path(&path)
.map_err(|_| format_err!("can't convert path to url: {}", path.display()))?;
Ok(url)
}
2018-08-17 18:54:08 +02:00
}