2019-11-04 13:33:21 -06:00
|
|
|
//! Database used for testing `hir`.
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2023-05-02 09:12:22 -05:00
|
|
|
use std::{fmt, panic, sync::Mutex};
|
2018-11-28 07:19:01 -06:00
|
|
|
|
2020-12-09 10:01:15 -06:00
|
|
|
use base_db::{
|
2023-03-29 12:13:40 -05:00
|
|
|
salsa::{self, Durability},
|
|
|
|
AnchoredPath, CrateId, FileId, FileLoader, FileLoaderDelegate, SourceDatabase, Upcast,
|
2020-12-09 10:01:15 -06:00
|
|
|
};
|
2020-07-14 09:43:39 -05:00
|
|
|
use hir_def::{db::DefDatabase, ModuleId};
|
2023-03-13 10:33:52 -05:00
|
|
|
use hir_expand::db::ExpandDatabase;
|
2023-04-25 07:29:26 -05:00
|
|
|
use rustc_hash::FxHashSet;
|
2023-04-05 01:41:13 -05:00
|
|
|
use stdx::hash::NoHashHashMap;
|
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,
|
2023-03-13 10:33:52 -05:00
|
|
|
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
|
|
|
)]
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) struct TestDB {
|
2020-07-07 03:14:48 -05:00
|
|
|
storage: salsa::Storage<TestDB>,
|
|
|
|
events: Mutex<Option<Vec<salsa::Event>>>,
|
|
|
|
}
|
2021-06-03 11:11:33 -05:00
|
|
|
|
|
|
|
impl Default for TestDB {
|
|
|
|
fn default() -> Self {
|
|
|
|
let mut this = Self { storage: Default::default(), events: Default::default() };
|
2023-03-29 12:13:40 -05:00
|
|
|
this.set_expand_proc_attr_macros_with_durability(true, Durability::HIGH);
|
2021-06-03 11:11:33 -05:00
|
|
|
this
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-07 03:14:48 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-03-13 10:33:52 -05:00
|
|
|
impl Upcast<dyn ExpandDatabase> for TestDB {
|
|
|
|
fn upcast(&self) -> &(dyn ExpandDatabase + 'static) {
|
2020-03-13 10:05:46 -05:00
|
|
|
&*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Upcast<dyn DefDatabase> for TestDB {
|
|
|
|
fn upcast(&self) -> &(dyn DefDatabase + 'static) {
|
|
|
|
&*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:29:51 -06:00
|
|
|
impl salsa::Database for TestDB {
|
2020-07-07 03:14:48 -05:00
|
|
|
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 {
|
2020-07-07 03:14:48 -05:00
|
|
|
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 {
|
2020-07-07 03:14:48 -05:00
|
|
|
storage: self.storage.snapshot(),
|
2019-11-04 13:29:51 -06:00
|
|
|
events: Default::default(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:21:15 -06:00
|
|
|
impl panic::RefUnwindSafe for TestDB {}
|
2019-01-10 04:04:04 -06:00
|
|
|
|
2019-11-04 13:21:15 -06:00
|
|
|
impl FileLoader for TestDB {
|
2023-04-22 02:48:37 -05:00
|
|
|
fn file_text(&self, file_id: FileId) -> Arc<str> {
|
2019-10-14 08:20:55 -05:00
|
|
|
FileLoaderDelegate(self).file_text(file_id)
|
|
|
|
}
|
2022-07-20 08:02:08 -05:00
|
|
|
fn resolve_path(&self, path: AnchoredPath<'_>) -> Option<FileId> {
|
2020-12-09 10:01:15 -06:00
|
|
|
FileLoaderDelegate(self).resolve_path(path)
|
2019-10-14 08:20:55 -05:00
|
|
|
}
|
2023-04-25 07:29:26 -05:00
|
|
|
fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> {
|
2019-10-14 08:20:55 -05:00
|
|
|
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()
|
2019-09-08 01:48:45 -05:00
|
|
|
}
|
|
|
|
|
2022-08-25 13:31:02 -05:00
|
|
|
pub(crate) fn extract_annotations(&self) -> NoHashHashMap<FileId, Vec<(TextRange, String)>> {
|
2020-06-30 05:14:16 -05:00
|
|
|
let mut files = Vec::new();
|
2020-06-29 07:21:57 -05:00
|
|
|
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() {
|
2020-06-29 07:21:57 -05:00
|
|
|
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-29 07:21:57 -05:00
|
|
|
}
|
|
|
|
}
|
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()
|
2020-06-29 07:21:57 -05:00
|
|
|
}
|
2018-11-28 07:19:01 -06:00
|
|
|
}
|
|
|
|
|
2019-11-04 13:21:15 -06:00
|
|
|
impl TestDB {
|
2020-11-02 06:13:32 -06:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -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 } => {
|
2020-07-07 03:14:48 -05:00
|
|
|
Some(format!("{:?}", database_key.debug(self)))
|
2019-01-25 06:16:50 -06:00
|
|
|
}
|
2018-11-28 07:19:01 -06:00
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
}
|