mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-23 10:25:06 +00:00
b58ca6b1a6
177: Librariese -> Libraries r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <jkolb@ara.com>
108 lines
3.1 KiB
Rust
108 lines
3.1 KiB
Rust
use std::{
|
|
sync::Arc,
|
|
};
|
|
|
|
use ra_editor::LineIndex;
|
|
use ra_syntax::File;
|
|
use salsa;
|
|
|
|
use crate::{
|
|
db,
|
|
Cancelable, Canceled,
|
|
descriptors::{
|
|
DescriptorDatabase, SubmodulesQuery, ModuleTreeQuery, ModuleScopeQuery,
|
|
FnSyntaxQuery, FnScopesQuery
|
|
},
|
|
symbol_index::SymbolIndex,
|
|
syntax_ptr::{SyntaxPtrDatabase, ResolveSyntaxPtrQuery},
|
|
FileId,
|
|
};
|
|
|
|
#[derive(Default, Debug)]
|
|
pub(crate) struct RootDatabase {
|
|
runtime: salsa::Runtime<RootDatabase>,
|
|
}
|
|
|
|
impl salsa::Database for RootDatabase {
|
|
fn salsa_runtime(&self) -> &salsa::Runtime<RootDatabase> {
|
|
&self.runtime
|
|
}
|
|
}
|
|
|
|
pub(crate) fn check_canceled(db: &impl salsa::Database) -> Cancelable<()> {
|
|
if db.salsa_runtime().is_current_revision_canceled() {
|
|
Err(Canceled)
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl salsa::ParallelDatabase for RootDatabase {
|
|
fn fork(&self) -> Self {
|
|
RootDatabase {
|
|
runtime: self.runtime.fork(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Clone for RootDatabase {
|
|
fn clone(&self) -> RootDatabase {
|
|
salsa::ParallelDatabase::fork(self)
|
|
}
|
|
}
|
|
|
|
salsa::database_storage! {
|
|
pub(crate) struct RootDatabaseStorage for RootDatabase {
|
|
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;
|
|
fn libraries() for crate::input::LibrariesQuery;
|
|
fn library_symbols() for crate::input::LibrarySymbolsQuery;
|
|
fn crate_graph() for crate::input::CrateGraphQuery;
|
|
}
|
|
impl SyntaxDatabase {
|
|
fn file_syntax() for FileSyntaxQuery;
|
|
fn file_lines() for FileLinesQuery;
|
|
fn file_symbols() for FileSymbolsQuery;
|
|
}
|
|
impl DescriptorDatabase {
|
|
fn module_tree() for ModuleTreeQuery;
|
|
fn module_descriptor() for SubmodulesQuery;
|
|
fn module_scope() for ModuleScopeQuery;
|
|
fn fn_syntax() for FnSyntaxQuery;
|
|
fn fn_scopes() for FnScopesQuery;
|
|
}
|
|
impl SyntaxPtrDatabase {
|
|
fn resolve_syntax_ptr() for ResolveSyntaxPtrQuery;
|
|
}
|
|
}
|
|
}
|
|
|
|
salsa::query_group! {
|
|
pub(crate) trait SyntaxDatabase: crate::input::FilesDatabase {
|
|
fn file_syntax(file_id: FileId) -> File {
|
|
type FileSyntaxQuery;
|
|
}
|
|
fn file_lines(file_id: FileId) -> Arc<LineIndex> {
|
|
type FileLinesQuery;
|
|
}
|
|
fn file_symbols(file_id: FileId) -> Cancelable<Arc<SymbolIndex>> {
|
|
type FileSymbolsQuery;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn file_syntax(db: &impl SyntaxDatabase, file_id: FileId) -> File {
|
|
let text = db.file_text(file_id);
|
|
File::parse(&*text)
|
|
}
|
|
fn file_lines(db: &impl SyntaxDatabase, file_id: FileId) -> Arc<LineIndex> {
|
|
let text = db.file_text(file_id);
|
|
Arc::new(LineIndex::new(&*text))
|
|
}
|
|
fn file_symbols(db: &impl SyntaxDatabase, file_id: FileId) -> Cancelable<Arc<SymbolIndex>> {
|
|
db::check_canceled(db)?;
|
|
let syntax = db.file_syntax(file_id);
|
|
Ok(Arc::new(SymbolIndex::for_file(file_id, syntax)))
|
|
}
|