rust/crates/ra_hir/src/mock.rs

215 lines
6.9 KiB
Rust
Raw Normal View History

2019-01-10 04:04:04 -06:00
use std::{sync::Arc, panic};
2018-11-28 07:19:01 -06:00
use parking_lot::Mutex;
2019-01-17 05:11:00 -06:00
use ra_db::{
2019-02-03 13:15:31 -06:00
FilePosition, FileId, CrateGraph, SourceRoot, SourceRootId, SourceDatabase, salsa,
2019-01-17 05:11:00 -06:00
};
2018-11-28 07:19:01 -06:00
use relative_path::RelativePathBuf;
use test_utils::{parse_fixture, CURSOR_MARKER, extract_offset};
use rustc_hash::FxHashMap;
2018-11-28 07:19:01 -06:00
2019-01-24 03:41:08 -06:00
use crate::{db, HirInterner};
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-02-01 04:33:41 -06:00
#[salsa::database(
ra_db::SourceDatabaseStorage,
db::HirDatabaseStorage,
db::PersistentHirDatabaseStorage
)]
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>,
2019-01-24 03:41:08 -06:00
interner: Arc<HirInterner>,
files: FxHashMap<String, FileId>,
2018-11-28 07:19:01 -06:00
}
2019-01-10 04:04:04 -06:00
impl panic::RefUnwindSafe for MockDatabase {}
2018-11-28 07:19:01 -06:00
impl MockDatabase {
pub fn with_files(fixture: &str) -> MockDatabase {
let (db, position) = MockDatabase::from_fixture(fixture);
2018-12-09 04:49:54 -06:00
assert!(position.is_none());
db
2018-12-09 04:49:54 -06:00
}
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)
}
2019-02-03 12:26:35 -06:00
pub fn with_position(fixture: &str) -> (MockDatabase, FilePosition) {
let (db, position) = MockDatabase::from_fixture(fixture);
2018-12-09 04:49:54 -06:00
let position = position.expect("expected a marker ( <|> )");
(db, position)
}
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),
}
}
fn from_fixture(fixture: &str) -> (MockDatabase, Option<FilePosition>) {
2018-11-28 07:19:01 -06:00
let mut db = MockDatabase::default();
let pos = db.add_fixture(fixture);
(db, pos)
}
fn add_fixture(&mut self, fixture: &str) -> Option<FilePosition> {
2018-11-28 07:19:01 -06:00
let mut position = None;
2018-12-19 03:40:41 -06:00
let mut source_root = SourceRoot::default();
let mut source_root_id = WORKSPACE;
let mut source_root_prefix = "/".to_string();
2018-11-28 07:19:01 -06:00
for entry in parse_fixture(fixture) {
if entry.meta.starts_with("root") {
self.set_source_root(source_root_id, Arc::new(source_root));
source_root = SourceRoot::default();
source_root_id = SourceRootId(source_root_id.0 + 1);
source_root_prefix = entry.meta["root".len()..].trim().to_string();
continue;
}
2018-11-28 07:19:01 -06:00
if entry.text.contains(CURSOR_MARKER) {
2019-02-08 05:49:43 -06:00
assert!(position.is_none(), "only one marker (<|>) per fixture is allowed");
position = Some(self.add_file_with_position(
source_root_id,
&source_root_prefix,
&mut source_root,
&entry.meta,
&entry.text,
));
2018-11-28 07:19:01 -06:00
} else {
self.add_file(
source_root_id,
&source_root_prefix,
&mut source_root,
&entry.meta,
&entry.text,
);
2018-11-28 07:19:01 -06:00
}
}
self.set_source_root(source_root_id, Arc::new(source_root));
position
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");
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);
source_root.files.insert(rel_path, file_id);
if is_crate_root {
let mut crate_graph = CrateGraph::default();
crate_graph.add_crate_root(file_id);
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
}
fn add_file_with_position(
&mut self,
source_root_id: SourceRootId,
source_root_prefix: &str,
2018-12-19 03:40:41 -06:00
source_root: &mut SourceRoot,
2018-11-28 07:19:01 -06:00
path: &str,
text: &str,
) -> FilePosition {
let (offset, text) = extract_offset(text);
let file_id = self.add_file(source_root_id, source_root_prefix, source_root, path, &text);
2018-11-28 07:19:01 -06:00
FilePosition { file_id, offset }
}
}
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(),
2019-01-24 03:41:08 -06:00
interner: Default::default(),
files: FxHashMap::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),
2019-01-24 03:41:08 -06:00
interner: Arc::clone(&self.interner),
// only the root database can be used to get file_id by path.
files: FxHashMap::default(),
2018-11-28 07:19:01 -06:00
})
}
}
2019-01-24 03:41:08 -06:00
impl AsRef<HirInterner> for MockDatabase {
fn as_ref(&self) -> &HirInterner {
&self.interner
2019-01-01 09:19:15 -06:00
}
}
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()
}
}