rust/crates/ra_hir/src/mock.rs

198 lines
6.4 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use std::{panic, sync::Arc};
2018-11-28 07:19:01 -06:00
2019-11-04 13:04:51 -06:00
use hir_def::{db::DefDatabase2, ModuleId};
2019-11-02 15:42:38 -05:00
use hir_expand::diagnostics::DiagnosticSink;
2018-11-28 07:19:01 -06:00
use parking_lot::Mutex;
use ra_cfg::CfgOptions;
2019-01-17 05:11:00 -06:00
use ra_db::{
2019-11-04 13:04:51 -06:00
salsa, CrateGraph, CrateId, Edition, FileId, FileLoader, FileLoaderDelegate, RelativePath,
RelativePathBuf, SourceDatabase, SourceDatabaseExt, SourceRoot, SourceRootId,
2019-01-17 05:11:00 -06:00
};
use rustc_hash::FxHashMap;
2018-11-28 07:19:01 -06:00
2019-11-02 15:42:38 -05:00
use crate::{db, debug::HirDebugHelper};
2018-11-28 07:19:01 -06:00
2018-12-20 14:56:28 -06:00
pub const WORKSPACE: SourceRootId = SourceRootId(0);
2018-12-19 07:19:53 -06:00
2019-06-01 13:17:57 -05:00
#[salsa::database(
ra_db::SourceDatabaseExtStorage,
2019-06-01 13:17:57 -05:00
ra_db::SourceDatabaseStorage,
db::InternDatabaseStorage,
2019-06-01 13:17:57 -05:00
db::AstDatabaseStorage,
db::DefDatabaseStorage,
2019-10-30 09:40:13 -05:00
db::DefDatabase2Storage,
2019-06-01 13:17:57 -05:00
db::HirDatabaseStorage
)]
2018-11-28 07:19:01 -06:00
#[derive(Debug)]
2019-02-03 12:26:35 -06:00
pub struct MockDatabase {
2018-11-28 07:19:01 -06:00
events: Mutex<Option<Vec<salsa::Event<MockDatabase>>>>,
runtime: salsa::Runtime<MockDatabase>,
files: FxHashMap<String, FileId>,
crate_names: Arc<FxHashMap<CrateId, String>>,
file_paths: Arc<FxHashMap<FileId, String>>,
2018-11-28 07:19:01 -06:00
}
2019-01-10 04:04:04 -06:00
impl panic::RefUnwindSafe for MockDatabase {}
impl FileLoader for MockDatabase {
fn file_text(&self, file_id: FileId) -> Arc<String> {
FileLoaderDelegate(self).file_text(file_id)
}
fn resolve_relative_path(
&self,
anchor: FileId,
relative_path: &RelativePath,
) -> Option<FileId> {
FileLoaderDelegate(self).resolve_relative_path(anchor, relative_path)
}
fn relevant_crates(&self, file_id: FileId) -> Arc<Vec<CrateId>> {
FileLoaderDelegate(self).relevant_crates(file_id)
}
}
impl HirDebugHelper for MockDatabase {
fn crate_name(&self, krate: CrateId) -> Option<String> {
self.crate_names.get(&krate).cloned()
}
fn file_path(&self, file_id: FileId) -> Option<String> {
self.file_paths.get(&file_id).cloned()
}
}
2018-11-28 07:19:01 -06:00
impl MockDatabase {
2019-02-03 12:26:35 -06:00
pub fn with_single_file(text: &str) -> (MockDatabase, SourceRoot, FileId) {
let mut db = MockDatabase::default();
let mut source_root = SourceRoot::default();
let file_id = db.add_file(WORKSPACE, "/", &mut source_root, "/main.rs", text);
2019-01-25 06:25:01 -06:00
db.set_source_root(WORKSPACE, Arc::new(source_root.clone()));
(db, source_root, file_id)
}
pub fn file_id_of(&self, path: &str) -> FileId {
match self.files.get(path) {
Some(it) => *it,
None => panic!("unknown file: {:?}\nexisting files:\n{:#?}", path, self.files),
}
}
2019-03-24 03:39:47 -05:00
pub fn diagnostics(&self) -> String {
2019-08-29 08:49:10 -05:00
let mut buf = String::new();
2019-11-04 13:04:51 -06:00
let crate_graph = self.crate_graph();
for krate in crate_graph.iter().next() {
let crate_def_map = self.crate_def_map(krate);
for (module_id, _) in crate_def_map.modules.iter() {
let module_id = ModuleId { krate, module_id };
let module = crate::Module::from(module_id);
module.diagnostics(
self,
&mut DiagnosticSink::new(|d| {
buf += &format!("{:?}: {}\n", d.syntax_node(self).text(), d.message());
}),
)
2018-11-28 07:19:01 -06:00
}
}
2019-11-04 13:04:51 -06:00
buf
2018-11-28 07:19:01 -06:00
}
fn add_file(
&mut self,
source_root_id: SourceRootId,
source_root_prefix: &str,
source_root: &mut SourceRoot,
path: &str,
text: &str,
) -> FileId {
assert!(source_root_prefix.starts_with('/'));
assert!(source_root_prefix.ends_with('/'));
assert!(path.starts_with(source_root_prefix));
let rel_path = RelativePathBuf::from_path(&path[source_root_prefix.len()..]).unwrap();
let is_crate_root = rel_path == "lib.rs" || rel_path == "/main.rs";
let file_id = FileId(self.files.len() as u32);
let prev = self.files.insert(path.to_string(), file_id);
assert!(prev.is_none(), "duplicate files in the text fixture");
Arc::make_mut(&mut self.file_paths).insert(file_id, path.to_string());
2018-11-28 07:19:01 -06:00
let text = Arc::new(text.to_string());
2019-01-25 06:25:01 -06:00
self.set_file_text(file_id, text);
self.set_file_relative_path(file_id, rel_path.clone());
2019-01-25 06:25:01 -06:00
self.set_file_source_root(file_id, source_root_id);
2019-09-05 14:36:04 -05:00
source_root.insert_file(rel_path, file_id);
if is_crate_root {
let mut crate_graph = CrateGraph::default();
crate_graph.add_crate_root(file_id, Edition::Edition2018, CfgOptions::default());
2019-01-25 06:25:01 -06:00
self.set_crate_graph(Arc::new(crate_graph));
}
2018-11-28 07:19:01 -06:00
file_id
}
}
impl salsa::Database for MockDatabase {
fn salsa_runtime(&self) -> &salsa::Runtime<MockDatabase> {
&self.runtime
}
fn salsa_event(&self, event: impl Fn() -> salsa::Event<MockDatabase>) {
let mut events = self.events.lock();
if let Some(events) = &mut *events {
events.push(event());
}
}
}
impl Default for MockDatabase {
fn default() -> MockDatabase {
let mut db = MockDatabase {
events: Default::default(),
runtime: salsa::Runtime::default(),
files: FxHashMap::default(),
crate_names: Default::default(),
file_paths: Default::default(),
2018-11-28 07:19:01 -06:00
};
2019-01-25 06:25:01 -06:00
db.set_crate_graph(Default::default());
2018-11-28 07:19:01 -06:00
db
}
}
impl salsa::ParallelDatabase for MockDatabase {
fn snapshot(&self) -> salsa::Snapshot<MockDatabase> {
salsa::Snapshot::new(MockDatabase {
events: Default::default(),
runtime: self.runtime.snapshot(self),
// only the root database can be used to get file_id by path.
files: FxHashMap::default(),
file_paths: Arc::clone(&self.file_paths),
crate_names: Arc::clone(&self.crate_names),
2018-11-28 07:19:01 -06:00
})
}
}
impl MockDatabase {
2019-02-03 12:26:35 -06:00
pub fn log(&self, f: impl FnOnce()) -> Vec<salsa::Event<MockDatabase>> {
2018-11-28 07:19:01 -06:00
*self.events.lock() = Some(Vec::new());
f();
2019-01-25 06:16:50 -06:00
self.events.lock().take().unwrap()
2018-11-28 07:19:01 -06:00
}
2019-02-03 12:26:35 -06:00
pub fn log_executed(&self, f: impl FnOnce()) -> Vec<String> {
2018-11-28 07:19:01 -06:00
let events = self.log(f);
events
.into_iter()
.filter_map(|e| match e.kind {
// This pretty horrible, but `Debug` is the only way to inspect
// QueryDescriptor at the moment.
2019-01-25 06:16:50 -06:00
salsa::EventKind::WillExecute { database_key } => {
Some(format!("{:?}", database_key))
}
2018-11-28 07:19:01 -06:00
_ => None,
})
.collect()
}
}