rust/crates/ra_db/src/lib.rs

78 lines
2.4 KiB
Rust
Raw Normal View History

//! ra_db defines basic database traits. The concrete DB is defined by ra_ide_api.
mod cancellation;
mod syntax_ptr;
mod input;
mod loc2id;
2018-11-28 07:19:01 -06:00
pub mod mock;
2019-01-09 13:51:05 -06:00
use std::panic;
use ra_syntax::{TextUnit, TextRange, SourceFile, TreeArc};
pub use crate::{
2019-01-15 12:02:42 -06:00
cancellation::Canceled,
syntax_ptr::LocalSyntaxPtr,
input::{
2018-12-27 11:07:21 -06:00
FilesDatabase, FileId, CrateId, SourceRoot, SourceRootId, CrateGraph, Dependency,
2018-12-19 07:13:16 -06:00
FileTextQuery, FileSourceRootQuery, SourceRootQuery, LocalRootsQuery, LibraryRootsQuery, CrateGraphQuery,
2018-12-19 03:20:54 -06:00
FileRelativePathQuery
},
2019-01-08 06:53:32 -06:00
loc2id::LocationIntener,
};
2019-01-10 04:04:04 -06:00
pub trait BaseDatabase: salsa::Database + panic::RefUnwindSafe {
2019-01-15 06:45:48 -06: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 06:06:45 -06:00
if self.salsa_runtime().is_current_revision_canceled() {
Canceled::throw()
}
2019-01-09 13:51:05 -06:00
}
fn catch_canceled<F: FnOnce(&Self) -> T + panic::UnwindSafe, T>(
&self,
f: F,
) -> Result<T, Canceled> {
2019-01-10 04:04:04 -06:00
panic::catch_unwind(|| f(self)).map_err(|err| match err.downcast::<Canceled>() {
2019-01-10 03:20:32 -06:00
Ok(canceled) => *canceled,
2019-01-09 13:51:05 -06:00
Err(payload) => panic::resume_unwind(payload),
})
}
}
salsa::query_group! {
pub trait SyntaxDatabase: crate::input::FilesDatabase + BaseDatabase {
fn source_file(file_id: FileId) -> TreeArc<SourceFile> {
type SourceFileQuery;
}
}
}
fn source_file(db: &impl SyntaxDatabase, file_id: FileId) -> TreeArc<SourceFile> {
let text = db.file_text(file_id);
2019-01-07 08:00:39 -06:00
SourceFile::parse(&*text)
}
2018-11-27 18:42:26 -06:00
#[derive(Clone, Copy, Debug)]
pub struct FilePosition {
pub file_id: FileId,
pub offset: TextUnit,
}
2018-12-28 09:03:03 -06:00
#[derive(Clone, Copy, Debug)]
pub struct FileRange {
pub file_id: FileId,
pub range: TextRange,
}