Files
rust/crates/ra_db/src/lib.rs

55 lines
1.4 KiB
Rust
Raw Normal View History

2019-01-08 22:45:52 +03:00
//! ra_db defines basic database traits. Concrete DB is defined by ra_ide_api.
mod cancelation;
mod syntax_ptr;
mod input;
mod loc2id;
2018-11-28 16:19:01 +03:00
pub mod mock;
2019-01-07 17:00:39 +03:00
use ra_syntax::{TextUnit, TextRange, SourceFile, TreePtr};
pub use crate::{
cancelation::{Canceled, Cancelable},
syntax_ptr::LocalSyntaxPtr,
input::{
2018-12-27 20:07:21 +03:00
FilesDatabase, FileId, CrateId, SourceRoot, SourceRootId, CrateGraph, Dependency,
2018-12-19 16:13:16 +03:00
FileTextQuery, FileSourceRootQuery, SourceRootQuery, LocalRootsQuery, LibraryRootsQuery, CrateGraphQuery,
2018-12-19 12:20:54 +03:00
FileRelativePathQuery
},
2019-01-08 15:53:32 +03:00
loc2id::LocationIntener,
};
pub trait BaseDatabase: salsa::Database {
fn check_canceled(&self) -> Cancelable<()> {
if self.salsa_runtime().is_current_revision_canceled() {
Err(Canceled::new())
} else {
Ok(())
}
}
}
salsa::query_group! {
pub trait SyntaxDatabase: crate::input::FilesDatabase + BaseDatabase {
2019-01-07 17:00:39 +03:00
fn source_file(file_id: FileId) -> TreePtr<SourceFile> {
type SourceFileQuery;
}
}
}
2019-01-07 17:00:39 +03:00
fn source_file(db: &impl SyntaxDatabase, file_id: FileId) -> TreePtr<SourceFile> {
let text = db.file_text(file_id);
2019-01-07 17:00:39 +03:00
SourceFile::parse(&*text)
}
2018-11-28 03:42:26 +03:00
#[derive(Clone, Copy, Debug)]
pub struct FilePosition {
pub file_id: FileId,
pub offset: TextUnit,
}
2018-12-28 18:03:03 +03:00
#[derive(Clone, Copy, Debug)]
pub struct FileRange {
pub file_id: FileId,
pub range: TextRange,
}