2019-01-08 17:47:12 -06:00
|
|
|
//! ra_db defines basic database traits. The concrete DB is defined by ra_ide_api.
|
|
|
|
mod cancellation;
|
2018-11-27 18:25:20 -06:00
|
|
|
mod input;
|
|
|
|
mod loc2id;
|
2018-11-28 07:19:01 -06:00
|
|
|
pub mod mock;
|
2018-11-27 18:25:20 -06:00
|
|
|
|
2019-01-25 06:16:50 -06:00
|
|
|
use std::{
|
|
|
|
panic, sync::Arc,
|
|
|
|
};
|
2019-01-09 13:51:05 -06:00
|
|
|
|
2019-01-11 10:59:06 -06:00
|
|
|
use ra_syntax::{TextUnit, TextRange, SourceFile, TreeArc};
|
2019-01-25 06:16:50 -06:00
|
|
|
use relative_path::RelativePathBuf;
|
2018-11-27 18:25:20 -06:00
|
|
|
|
2019-01-17 05:11:00 -06:00
|
|
|
pub use ::salsa as salsa;
|
2018-11-27 18:25:20 -06:00
|
|
|
pub use crate::{
|
2019-01-15 12:02:42 -06:00
|
|
|
cancellation::Canceled,
|
2018-11-27 18:25:20 -06:00
|
|
|
input::{
|
2019-01-25 06:16:50 -06:00
|
|
|
FileId, CrateId, SourceRoot, SourceRootId, CrateGraph, Dependency,
|
2018-11-27 18:25:20 -06:00
|
|
|
},
|
2019-01-08 06:53:32 -06:00
|
|
|
loc2id::LocationIntener,
|
2018-11-27 18:25:20 -06:00
|
|
|
};
|
|
|
|
|
2019-01-26 02:09:39 -06:00
|
|
|
pub trait CheckCanceled: 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),
|
|
|
|
})
|
2018-11-27 18:25:20 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
}
|
2019-01-25 06:16:50 -06:00
|
|
|
|
2019-01-25 14:27:16 -06:00
|
|
|
#[salsa::query_group(FilesDatabaseStorage)]
|
2019-01-26 02:09:39 -06:00
|
|
|
pub trait FilesDatabase: salsa::Database + CheckCanceled {
|
2019-01-25 06:16:50 -06:00
|
|
|
/// Text of the file.
|
|
|
|
#[salsa::input]
|
|
|
|
fn file_text(&self, file_id: FileId) -> Arc<String>;
|
2019-01-26 02:09:39 -06:00
|
|
|
// Parses the file into the syntax tree.
|
|
|
|
fn source_file(&self, file_id: FileId) -> TreeArc<SourceFile>;
|
2019-01-25 06:16:50 -06:00
|
|
|
/// 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 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)
|
|
|
|
}
|
|
|
|
|
2019-01-26 02:09:39 -06:00
|
|
|
fn source_file(db: &impl FilesDatabase, file_id: FileId) -> TreeArc<SourceFile> {
|
2019-01-25 06:16:50 -06:00
|
|
|
let text = db.file_text(file_id);
|
|
|
|
SourceFile::parse(&*text)
|
|
|
|
}
|