2018-10-31 15:41:43 -05:00
|
|
|
use std::sync::Arc;
|
2018-10-20 14:29:26 -05:00
|
|
|
|
2018-11-18 06:44:24 -06:00
|
|
|
use parking_lot::Mutex;
|
|
|
|
|
2018-10-15 16:44:23 -05:00
|
|
|
use ra_editor::LineIndex;
|
2018-11-07 09:32:33 -06:00
|
|
|
use ra_syntax::{SourceFileNode, SyntaxNode};
|
2018-11-04 05:09:21 -06:00
|
|
|
use salsa::{self, Database};
|
2018-10-15 16:44:23 -05:00
|
|
|
|
2018-10-20 14:29:26 -05:00
|
|
|
use crate::{
|
2018-10-20 14:35:55 -05:00
|
|
|
db,
|
2018-10-31 02:56:31 -05:00
|
|
|
descriptors::{
|
2018-10-31 15:41:43 -05:00
|
|
|
DescriptorDatabase, FnScopesQuery, FnSyntaxQuery, ModuleScopeQuery, ModuleTreeQuery,
|
|
|
|
SubmodulesQuery,
|
2018-11-18 06:44:24 -06:00
|
|
|
module::{ModuleSource, ModuleId},
|
2018-10-31 02:56:31 -05:00
|
|
|
},
|
2018-11-18 06:44:24 -06:00
|
|
|
input::SourceRootId,
|
2018-10-20 14:29:26 -05:00
|
|
|
symbol_index::SymbolIndex,
|
2018-11-01 05:15:11 -05:00
|
|
|
syntax_ptr::SyntaxPtr,
|
2018-11-18 06:44:24 -06:00
|
|
|
loc2id::Loc2IdMap,
|
2018-10-31 15:41:43 -05:00
|
|
|
Cancelable, Canceled, FileId,
|
2018-10-15 16:44:23 -05:00
|
|
|
};
|
2018-09-13 14:58:36 -05:00
|
|
|
|
2018-11-04 05:09:21 -06:00
|
|
|
#[derive(Debug)]
|
2018-10-07 05:18:25 -05:00
|
|
|
pub(crate) struct RootDatabase {
|
2018-10-20 10:43:02 -05:00
|
|
|
runtime: salsa::Runtime<RootDatabase>,
|
2018-11-18 06:44:24 -06:00
|
|
|
loc2id: Arc<Mutex<Loc2IdMap<(SourceRootId, ModuleSource), ModuleId>>>,
|
2018-09-13 14:58:36 -05:00
|
|
|
}
|
|
|
|
|
2018-10-07 05:18:25 -05:00
|
|
|
impl salsa::Database for RootDatabase {
|
2018-10-20 10:43:02 -05:00
|
|
|
fn salsa_runtime(&self) -> &salsa::Runtime<RootDatabase> {
|
2018-10-07 05:18:25 -05:00
|
|
|
&self.runtime
|
|
|
|
}
|
2018-09-13 14:58:36 -05:00
|
|
|
}
|
|
|
|
|
2018-11-04 05:09:21 -06:00
|
|
|
impl Default for RootDatabase {
|
|
|
|
fn default() -> RootDatabase {
|
|
|
|
let mut db = RootDatabase {
|
|
|
|
runtime: Default::default(),
|
2018-11-18 06:44:24 -06:00
|
|
|
loc2id: Default::default(),
|
2018-11-04 05:09:21 -06:00
|
|
|
};
|
|
|
|
db.query_mut(crate::input::SourceRootQuery)
|
|
|
|
.set(crate::input::WORKSPACE, Default::default());
|
|
|
|
db.query_mut(crate::input::CrateGraphQuery)
|
|
|
|
.set((), Default::default());
|
|
|
|
db.query_mut(crate::input::LibrariesQuery)
|
|
|
|
.set((), Default::default());
|
|
|
|
db
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 09:22:31 -05:00
|
|
|
pub(crate) fn check_canceled(db: &impl salsa::Database) -> Cancelable<()> {
|
|
|
|
if db.salsa_runtime().is_current_revision_canceled() {
|
|
|
|
Err(Canceled)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2018-10-20 14:35:55 -05:00
|
|
|
}
|
|
|
|
|
2018-10-15 14:29:24 -05:00
|
|
|
impl salsa::ParallelDatabase for RootDatabase {
|
2018-11-01 07:29:23 -05:00
|
|
|
fn snapshot(&self) -> salsa::Snapshot<RootDatabase> {
|
|
|
|
salsa::Snapshot::new(RootDatabase {
|
|
|
|
runtime: self.runtime.snapshot(self),
|
2018-11-18 06:44:24 -06:00
|
|
|
loc2id: Arc::clone(&self.loc2id),
|
2018-11-01 07:29:23 -05:00
|
|
|
})
|
2018-10-15 14:29:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-07 05:18:25 -05:00
|
|
|
salsa::database_storage! {
|
|
|
|
pub(crate) struct RootDatabaseStorage for RootDatabase {
|
2018-10-25 09:52:50 -05:00
|
|
|
impl crate::input::FilesDatabase {
|
|
|
|
fn file_text() for crate::input::FileTextQuery;
|
|
|
|
fn file_source_root() for crate::input::FileSourceRootQuery;
|
|
|
|
fn source_root() for crate::input::SourceRootQuery;
|
2018-10-31 13:05:14 -05:00
|
|
|
fn libraries() for crate::input::LibrariesQuery;
|
2018-10-25 09:52:50 -05:00
|
|
|
fn library_symbols() for crate::input::LibrarySymbolsQuery;
|
|
|
|
fn crate_graph() for crate::input::CrateGraphQuery;
|
2018-10-07 05:18:25 -05:00
|
|
|
}
|
|
|
|
impl SyntaxDatabase {
|
|
|
|
fn file_syntax() for FileSyntaxQuery;
|
|
|
|
fn file_lines() for FileLinesQuery;
|
|
|
|
fn file_symbols() for FileSymbolsQuery;
|
2018-11-01 05:15:11 -05:00
|
|
|
fn resolve_syntax_ptr() for ResolveSyntaxPtrQuery;
|
2018-10-07 05:18:25 -05:00
|
|
|
}
|
2018-10-31 02:56:31 -05:00
|
|
|
impl DescriptorDatabase {
|
2018-10-08 05:18:47 -05:00
|
|
|
fn module_tree() for ModuleTreeQuery;
|
2018-10-23 11:15:31 -05:00
|
|
|
fn module_descriptor() for SubmodulesQuery;
|
2018-10-30 18:08:54 -05:00
|
|
|
fn module_scope() for ModuleScopeQuery;
|
2018-10-31 02:56:31 -05:00
|
|
|
fn fn_syntax() for FnSyntaxQuery;
|
|
|
|
fn fn_scopes() for FnScopesQuery;
|
2018-10-30 18:08:54 -05:00
|
|
|
}
|
2018-10-07 05:18:25 -05:00
|
|
|
}
|
2018-09-13 14:58:36 -05:00
|
|
|
}
|
|
|
|
|
2018-10-07 05:18:25 -05:00
|
|
|
salsa::query_group! {
|
2018-10-25 09:52:50 -05:00
|
|
|
pub(crate) trait SyntaxDatabase: crate::input::FilesDatabase {
|
2018-11-07 09:32:33 -06:00
|
|
|
fn file_syntax(file_id: FileId) -> SourceFileNode {
|
2018-10-07 05:18:25 -05:00
|
|
|
type FileSyntaxQuery;
|
|
|
|
}
|
|
|
|
fn file_lines(file_id: FileId) -> Arc<LineIndex> {
|
|
|
|
type FileLinesQuery;
|
|
|
|
}
|
2018-10-20 14:29:26 -05:00
|
|
|
fn file_symbols(file_id: FileId) -> Cancelable<Arc<SymbolIndex>> {
|
2018-10-07 05:18:25 -05:00
|
|
|
type FileSymbolsQuery;
|
|
|
|
}
|
2018-11-01 05:15:11 -05:00
|
|
|
fn resolve_syntax_ptr(ptr: SyntaxPtr) -> SyntaxNode {
|
|
|
|
type ResolveSyntaxPtrQuery;
|
|
|
|
// Don't retain syntax trees in memory
|
|
|
|
storage volatile;
|
|
|
|
use fn crate::syntax_ptr::resolve_syntax_ptr;
|
|
|
|
}
|
2018-09-15 09:21:47 -05:00
|
|
|
}
|
2018-09-13 14:58:36 -05:00
|
|
|
}
|
2018-10-07 05:18:25 -05:00
|
|
|
|
2018-11-07 09:32:33 -06:00
|
|
|
fn file_syntax(db: &impl SyntaxDatabase, file_id: FileId) -> SourceFileNode {
|
2018-10-07 05:18:25 -05:00
|
|
|
let text = db.file_text(file_id);
|
2018-11-07 09:32:33 -06:00
|
|
|
SourceFileNode::parse(&*text)
|
2018-10-07 05:18:25 -05:00
|
|
|
}
|
|
|
|
fn file_lines(db: &impl SyntaxDatabase, file_id: FileId) -> Arc<LineIndex> {
|
|
|
|
let text = db.file_text(file_id);
|
|
|
|
Arc::new(LineIndex::new(&*text))
|
|
|
|
}
|
2018-10-20 14:29:26 -05:00
|
|
|
fn file_symbols(db: &impl SyntaxDatabase, file_id: FileId) -> Cancelable<Arc<SymbolIndex>> {
|
2018-10-20 14:35:55 -05:00
|
|
|
db::check_canceled(db)?;
|
2018-10-07 05:18:25 -05:00
|
|
|
let syntax = db.file_syntax(file_id);
|
2018-10-20 14:29:26 -05:00
|
|
|
Ok(Arc::new(SymbolIndex::for_file(file_id, syntax)))
|
2018-10-07 05:18:25 -05:00
|
|
|
}
|