rust/crates/ra_db/src/lib.rs

114 lines
3.6 KiB
Rust
Raw Normal View History

//! ra_db defines basic database traits. The concrete DB is defined by ra_ide_api.
mod cancellation;
mod input;
mod loc2id;
2018-11-28 14:19:01 +01:00
pub mod mock;
2019-01-25 13:16:50 +01:00
use std::{
panic, sync::Arc,
};
2019-01-09 20:51:05 +01:00
use ra_syntax::{TextUnit, TextRange, SourceFile, TreeArc};
2019-01-25 13:16:50 +01:00
use relative_path::RelativePathBuf;
2019-01-17 12:11:00 +01:00
pub use ::salsa as salsa;
pub use crate::{
2019-01-15 19:02:42 +01:00
cancellation::Canceled,
input::{
2019-01-25 13:16:50 +01:00
FileId, CrateId, SourceRoot, SourceRootId, CrateGraph, Dependency,
},
2019-01-08 13:53:32 +01:00
loc2id::LocationIntener,
};
2019-01-10 11:04:04 +01:00
pub trait BaseDatabase: salsa::Database + panic::RefUnwindSafe {
2019-01-15 13:45:48 +01:00
/// Aborts current query if there are pending changes.
///
/// rust-analyzer needs to be able to answer semantic questions about the
/// code while the code is being modified. A common problem is that a
/// long-running query is being calculated when a new change arrives.
///
/// We can't just apply the change immediately: this will cause the pending
/// query to see inconsistent state (it will observe an absence of
/// repeatable read). So what we do is we **cancel** all pending queries
/// before applying the change.
///
/// We implement cancellation by panicking with a special value and catching
/// it on the API boundary. Salsa explicitly supports this use-case.
fn check_canceled(&self) {
2019-01-15 13:06:45 +01:00
if self.salsa_runtime().is_current_revision_canceled() {
Canceled::throw()
}
2019-01-09 20:51:05 +01:00
}
fn catch_canceled<F: FnOnce(&Self) -> T + panic::UnwindSafe, T>(
&self,
f: F,
) -> Result<T, Canceled> {
2019-01-10 11:04:04 +01:00
panic::catch_unwind(|| f(self)).map_err(|err| match err.downcast::<Canceled>() {
2019-01-10 10:20:32 +01:00
Ok(canceled) => *canceled,
2019-01-09 20:51:05 +01:00
Err(payload) => panic::resume_unwind(payload),
})
}
}
2018-11-28 01:42:26 +01:00
#[derive(Clone, Copy, Debug)]
pub struct FilePosition {
pub file_id: FileId,
pub offset: TextUnit,
}
2018-12-28 16:03:03 +01:00
#[derive(Clone, Copy, Debug)]
pub struct FileRange {
pub file_id: FileId,
pub range: TextRange,
}
2019-01-25 13:16:50 +01:00
#[salsa::query_group]
pub trait FilesDatabase: salsa::Database {
/// Text of the file.
#[salsa::input]
fn file_text(&self, file_id: FileId) -> Arc<String>;
/// Path to a file, relative to the root of its source root.
#[salsa::input]
fn file_relative_path(&self, file_id: FileId) -> RelativePathBuf;
/// Source root of the file.
#[salsa::input]
fn file_source_root(&self, file_id: FileId) -> SourceRootId;
/// Contents of the source root.
#[salsa::input]
fn source_root(&self, id: SourceRootId) -> Arc<SourceRoot>;
fn source_root_crates(&self, id: SourceRootId) -> Arc<Vec<CrateId>>;
/// The set of "local" (that is, from the current workspace) roots.
/// Files in local roots are assumed to change frequently.
#[salsa::input]
fn local_roots(&self) -> Arc<Vec<SourceRootId>>;
/// The set of roots for crates.io libraries.
/// Files in libraries are assumed to never change.
#[salsa::input]
fn library_roots(&self) -> Arc<Vec<SourceRootId>>;
/// The crate graph.
#[salsa::input]
fn crate_graph(&self) -> Arc<CrateGraph>;
}
fn source_root_crates(db: &impl FilesDatabase, id: SourceRootId) -> Arc<Vec<CrateId>> {
let root = db.source_root(id);
let graph = db.crate_graph();
let res = root
.files
.values()
.filter_map(|&it| graph.crate_id_for_crate_root(it))
.collect::<Vec<_>>();
Arc::new(res)
}
#[salsa::query_group]
pub trait SyntaxDatabase: FilesDatabase + BaseDatabase {
fn source_file(&self, file_id: FileId) -> TreeArc<SourceFile>;
}
fn source_file(db: &impl SyntaxDatabase, file_id: FileId) -> TreeArc<SourceFile> {
let text = db.file_text(file_id);
SourceFile::parse(&*text)
}