rust/crates/hir-ty/src/test_db.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

151 lines
4.5 KiB
Rust
Raw Normal View History

//! Database used for testing `hir`.
2023-05-02 09:12:22 -05:00
use std::{fmt, panic, sync::Mutex};
2018-11-28 07:19:01 -06:00
use base_db::{
salsa::{self, Durability},
AnchoredPath, CrateId, FileId, FileLoader, FileLoaderDelegate, SourceDatabase, Upcast,
};
2020-07-14 09:43:39 -05:00
use hir_def::{db::DefDatabase, ModuleId};
use hir_expand::db::ExpandDatabase;
2023-05-04 18:28:15 -05:00
use nohash_hasher::IntMap;
2020-08-12 11:26:51 -05:00
use syntax::TextRange;
2020-06-30 05:14:16 -05:00
use test_utils::extract_annotations;
2023-05-02 09:12:22 -05:00
use triomphe::Arc;
2018-11-28 07:19:01 -06:00
2019-06-01 13:17:57 -05:00
#[salsa::database(
2020-08-13 09:25:38 -05:00
base_db::SourceDatabaseExtStorage,
base_db::SourceDatabaseStorage,
hir_expand::db::ExpandDatabaseStorage,
2019-11-27 08:46:02 -06:00
hir_def::db::InternDatabaseStorage,
hir_def::db::DefDatabaseStorage,
crate::db::HirDatabaseStorage
2019-06-01 13:17:57 -05:00
)]
pub(crate) struct TestDB {
storage: salsa::Storage<TestDB>,
events: Mutex<Option<Vec<salsa::Event>>>,
}
impl Default for TestDB {
fn default() -> Self {
let mut this = Self { storage: Default::default(), events: Default::default() };
this.setup_syntax_context_root();
this.set_expand_proc_attr_macros_with_durability(true, Durability::HIGH);
this
}
}
impl fmt::Debug for TestDB {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("TestDB").finish()
}
2018-11-28 07:19:01 -06:00
}
impl Upcast<dyn ExpandDatabase> for TestDB {
fn upcast(&self) -> &(dyn ExpandDatabase + 'static) {
2024-01-18 06:59:49 -06:00
self
}
}
impl Upcast<dyn DefDatabase> for TestDB {
fn upcast(&self) -> &(dyn DefDatabase + 'static) {
2024-01-18 06:59:49 -06:00
self
}
}
2019-11-04 13:29:51 -06:00
impl salsa::Database for TestDB {
fn salsa_event(&self, event: salsa::Event) {
2019-11-27 12:23:31 -06:00
let mut events = self.events.lock().unwrap();
2019-11-04 13:29:51 -06:00
if let Some(events) = &mut *events {
events.push(event);
2019-11-04 13:29:51 -06:00
}
}
}
impl salsa::ParallelDatabase for TestDB {
fn snapshot(&self) -> salsa::Snapshot<TestDB> {
salsa::Snapshot::new(TestDB {
storage: self.storage.snapshot(),
2019-11-04 13:29:51 -06:00
events: Default::default(),
})
}
}
impl panic::RefUnwindSafe for TestDB {}
2019-01-10 04:04:04 -06:00
impl FileLoader for TestDB {
2023-04-22 02:48:37 -05:00
fn file_text(&self, file_id: FileId) -> Arc<str> {
FileLoaderDelegate(self).file_text(file_id)
}
2022-07-20 08:02:08 -05:00
fn resolve_path(&self, path: AnchoredPath<'_>) -> Option<FileId> {
FileLoaderDelegate(self).resolve_path(path)
}
fn relevant_crates(&self, file_id: FileId) -> Arc<[CrateId]> {
FileLoaderDelegate(self).relevant_crates(file_id)
}
}
2019-11-27 08:46:02 -06:00
impl TestDB {
2021-06-20 09:37:50 -05:00
pub(crate) fn module_for_file_opt(&self, file_id: FileId) -> Option<ModuleId> {
2019-11-27 08:46:02 -06:00
for &krate in self.relevant_crates(file_id).iter() {
let crate_def_map = self.crate_def_map(krate);
2021-01-20 08:41:18 -06:00
for (local_id, data) in crate_def_map.modules() {
2019-12-03 14:23:21 -06:00
if data.origin.file_id() == Some(file_id) {
2021-06-20 09:37:50 -05:00
return Some(crate_def_map.module_id(local_id));
2019-11-27 08:46:02 -06:00
}
}
}
2021-06-20 09:37:50 -05:00
None
}
pub(crate) fn module_for_file(&self, file_id: FileId) -> ModuleId {
self.module_for_file_opt(file_id).unwrap()
}
2023-05-04 18:28:15 -05:00
pub(crate) fn extract_annotations(&self) -> IntMap<FileId, Vec<(TextRange, String)>> {
2020-06-30 05:14:16 -05:00
let mut files = Vec::new();
let crate_graph = self.crate_graph();
for krate in crate_graph.iter() {
let crate_def_map = self.crate_def_map(krate);
2021-01-20 08:41:18 -06:00
for (module_id, _) in crate_def_map.modules() {
let file_id = crate_def_map[module_id].origin.file_id();
2020-06-30 05:14:16 -05:00
files.extend(file_id)
}
}
2020-06-30 05:14:16 -05:00
files
.into_iter()
.filter_map(|file_id| {
let text = self.file_text(file_id);
let annotations = extract_annotations(&text);
if annotations.is_empty() {
return None;
}
Some((file_id, annotations))
})
.collect()
}
2018-11-28 07:19:01 -06:00
}
impl TestDB {
pub(crate) fn log(&self, f: impl FnOnce()) -> Vec<salsa::Event> {
2019-11-27 12:23:31 -06:00
*self.events.lock().unwrap() = Some(Vec::new());
2018-11-28 07:19:01 -06:00
f();
2019-11-27 12:23:31 -06:00
self.events.lock().unwrap().take().unwrap()
2018-11-28 07:19:01 -06:00
}
pub(crate) 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 {
2021-07-27 17:00:22 -05:00
// This is pretty horrible, but `Debug` is the only way to inspect
2018-11-28 07:19:01 -06:00
// QueryDescriptor at the moment.
2019-01-25 06:16:50 -06:00
salsa::EventKind::WillExecute { database_key } => {
Some(format!("{:?}", database_key.debug(self)))
2019-01-25 06:16:50 -06:00
}
2018-11-28 07:19:01 -06:00
_ => None,
})
.collect()
}
}