2020-08-13 10:42:52 -05:00
|
|
|
//! base_db defines basic database traits. The concrete DB is defined by ide.
|
2022-07-20 07:59:42 -05:00
|
|
|
|
2023-12-05 04:35:09 -06:00
|
|
|
#![warn(rust_2018_idioms, unused_lifetimes)]
|
2022-07-20 07:59:42 -05:00
|
|
|
|
2020-10-02 08:45:09 -05:00
|
|
|
mod change;
|
2024-01-26 13:08:10 -06:00
|
|
|
mod input;
|
2018-11-27 18:25:20 -06:00
|
|
|
|
2023-05-02 09:12:22 -05:00
|
|
|
use std::panic;
|
2019-01-09 13:51:05 -06:00
|
|
|
|
2024-01-10 03:53:11 -06:00
|
|
|
use salsa::Durability;
|
2023-12-18 06:30:41 -06:00
|
|
|
use syntax::{ast, Parse, SourceFile};
|
2023-05-02 09:12:22 -05:00
|
|
|
use triomphe::Arc;
|
2018-11-27 18:25:20 -06:00
|
|
|
|
|
|
|
pub use crate::{
|
2023-12-18 05:09:54 -06:00
|
|
|
change::FileChange,
|
2020-02-05 04:47:28 -06:00
|
|
|
input::{
|
2024-03-19 10:53:34 -05:00
|
|
|
CrateData, CrateDisplayName, CrateGraph, CrateId, CrateName, CrateOrigin, Dependency, Env,
|
|
|
|
LangCrateOrigin, ProcMacroPaths, ReleaseChannel, SourceRoot, SourceRootId,
|
|
|
|
TargetLayoutLoadResult,
|
2020-02-05 04:47:28 -06:00
|
|
|
},
|
2018-11-27 18:25:20 -06:00
|
|
|
};
|
2021-05-17 12:07:10 -05:00
|
|
|
pub use salsa::{self, Cancelled};
|
2023-12-18 06:30:41 -06:00
|
|
|
pub use span::{FilePosition, FileRange};
|
2020-12-09 09:41:35 -06:00
|
|
|
pub use vfs::{file_set::FileSet, AnchoredPath, AnchoredPathBuf, FileId, VfsPath};
|
2018-11-27 18:25:20 -06:00
|
|
|
|
2023-12-19 05:53:10 -06:00
|
|
|
pub use semver::{BuildMetadata, Prerelease, Version, VersionReq};
|
|
|
|
|
2019-11-24 05:13:51 -06:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! impl_intern_key {
|
|
|
|
($name:ident) => {
|
|
|
|
impl $crate::salsa::InternKey for $name {
|
|
|
|
fn from_intern_id(v: $crate::salsa::InternId) -> Self {
|
|
|
|
$name(v)
|
|
|
|
}
|
|
|
|
fn as_intern_id(&self) -> $crate::salsa::InternId {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub trait Upcast<T: ?Sized> {
|
|
|
|
fn upcast(&self) -> &T;
|
|
|
|
}
|
|
|
|
|
2024-01-10 03:53:11 -06:00
|
|
|
pub const DEFAULT_FILE_TEXT_LRU_CAP: usize = 16;
|
2023-04-22 03:35:40 -05:00
|
|
|
pub const DEFAULT_PARSE_LRU_CAP: usize = 128;
|
2024-04-15 13:38:54 -05:00
|
|
|
pub const DEFAULT_BORROWCK_LRU_CAP: usize = 2024;
|
2019-06-07 04:46:49 -05:00
|
|
|
|
2019-10-14 08:20:55 -05:00
|
|
|
pub trait FileLoader {
|
2019-01-25 06:16:50 -06:00
|
|
|
/// Text of the file.
|
2023-04-22 02:48:37 -05:00
|
|
|
fn file_text(&self, file_id: FileId) -> Arc<str>;
|
2022-07-20 08:02:08 -05:00
|
|
|
fn resolve_path(&self, path: AnchoredPath<'_>) -> Option<FileId>;
|
2024-01-10 07:51:51 -06:00
|
|
|
fn relevant_crates(&self, file_id: FileId) -> Arc<[CrateId]>;
|
2019-10-14 08:20:55 -05:00
|
|
|
}
|
2019-10-09 06:27:37 -05:00
|
|
|
|
2019-10-14 08:20:55 -05:00
|
|
|
/// Database which stores all significant input facts: source code and project
|
|
|
|
/// model. Everything else in rust-analyzer is derived from these queries.
|
|
|
|
#[salsa::query_group(SourceDatabaseStorage)]
|
2021-05-17 12:07:10 -05:00
|
|
|
pub trait SourceDatabase: FileLoader + std::fmt::Debug {
|
2023-11-25 08:10:31 -06:00
|
|
|
/// Parses the file into the syntax tree.
|
2019-07-18 14:29:20 -05:00
|
|
|
fn parse(&self, file_id: FileId) -> Parse<ast::SourceFile>;
|
2019-10-14 08:20:55 -05:00
|
|
|
|
|
|
|
/// The crate graph.
|
|
|
|
#[salsa::input]
|
|
|
|
fn crate_graph(&self) -> Arc<CrateGraph>;
|
2024-02-16 07:48:25 -06:00
|
|
|
|
|
|
|
// FIXME: Consider removing this, making HirDatabase::target_data_layout an input query
|
|
|
|
#[salsa::input]
|
|
|
|
fn data_layout(&self, krate: CrateId) -> TargetLayoutLoadResult;
|
|
|
|
|
|
|
|
#[salsa::input]
|
|
|
|
fn toolchain(&self, krate: CrateId) -> Option<Version>;
|
|
|
|
|
|
|
|
#[salsa::transparent]
|
|
|
|
fn toolchain_channel(&self, krate: CrateId) -> Option<ReleaseChannel>;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn toolchain_channel(db: &dyn SourceDatabase, krate: CrateId) -> Option<ReleaseChannel> {
|
|
|
|
db.toolchain(krate).as_ref().and_then(|v| ReleaseChannel::from_str(&v.pre))
|
2019-10-14 08:20:55 -05:00
|
|
|
}
|
|
|
|
|
2023-11-25 08:10:31 -06:00
|
|
|
fn parse(db: &dyn SourceDatabase, file_id: FileId) -> Parse<ast::SourceFile> {
|
2024-01-17 20:27:38 -06:00
|
|
|
let _p = tracing::span!(tracing::Level::INFO, "parse_query", ?file_id).entered();
|
2019-10-14 08:20:55 -05:00
|
|
|
let text = db.file_text(file_id);
|
2024-04-14 09:02:38 -05:00
|
|
|
// FIXME: Edition based parsing
|
|
|
|
SourceFile::parse(&text, span::Edition::CURRENT)
|
2019-10-14 08:20:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// We don't want to give HIR knowledge of source roots, hence we extract these
|
|
|
|
/// methods into a separate DB.
|
|
|
|
#[salsa::query_group(SourceDatabaseExtStorage)]
|
|
|
|
pub trait SourceDatabaseExt: SourceDatabase {
|
|
|
|
#[salsa::input]
|
2024-01-10 03:53:11 -06:00
|
|
|
fn compressed_file_text(&self, file_id: FileId) -> Arc<[u8]>;
|
|
|
|
|
2023-04-22 02:48:37 -05:00
|
|
|
fn file_text(&self, file_id: FileId) -> Arc<str>;
|
2024-01-10 03:53:11 -06:00
|
|
|
|
2019-01-25 06:16:50 -06:00
|
|
|
/// Path to a file, relative to the root of its source root.
|
|
|
|
/// 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>;
|
|
|
|
|
2024-01-10 07:51:51 -06:00
|
|
|
fn source_root_crates(&self, id: SourceRootId) -> Arc<[CrateId]>;
|
2019-10-09 06:27:37 -05:00
|
|
|
}
|
|
|
|
|
2024-01-10 03:53:11 -06:00
|
|
|
fn file_text(db: &dyn SourceDatabaseExt, file_id: FileId) -> Arc<str> {
|
|
|
|
let bytes = db.compressed_file_text(file_id);
|
|
|
|
let bytes =
|
|
|
|
lz4_flex::decompress_size_prepended(&bytes).expect("lz4 decompression should not fail");
|
|
|
|
let text = std::str::from_utf8(&bytes).expect("file contents should be valid UTF-8");
|
|
|
|
Arc::from(text)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait SourceDatabaseExt2 {
|
2024-01-10 04:17:10 -06:00
|
|
|
fn set_file_text(&mut self, file_id: FileId, text: &str) {
|
2024-01-10 03:53:11 -06:00
|
|
|
self.set_file_text_with_durability(file_id, text, Durability::LOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_file_text_with_durability(
|
|
|
|
&mut self,
|
|
|
|
file_id: FileId,
|
2024-01-10 04:17:10 -06:00
|
|
|
text: &str,
|
2024-01-10 03:53:11 -06:00
|
|
|
durability: Durability,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Db: ?Sized + SourceDatabaseExt> SourceDatabaseExt2 for Db {
|
|
|
|
fn set_file_text_with_durability(
|
|
|
|
&mut self,
|
|
|
|
file_id: FileId,
|
2024-01-10 04:17:10 -06:00
|
|
|
text: &str,
|
2024-01-10 03:53:11 -06:00
|
|
|
durability: Durability,
|
|
|
|
) {
|
|
|
|
let bytes = text.as_bytes();
|
2024-02-14 05:34:29 -06:00
|
|
|
let compressed = lz4_flex::compress_prepend_size(bytes);
|
2024-01-10 03:53:11 -06:00
|
|
|
self.set_compressed_file_text_with_durability(
|
|
|
|
file_id,
|
|
|
|
Arc::from(compressed.as_slice()),
|
|
|
|
durability,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-10 07:51:51 -06:00
|
|
|
fn source_root_crates(db: &dyn SourceDatabaseExt, id: SourceRootId) -> Arc<[CrateId]> {
|
2019-01-25 06:16:50 -06:00
|
|
|
let graph = db.crate_graph();
|
2024-01-11 04:36:10 -06:00
|
|
|
let mut crates = graph
|
2020-06-11 04:30:06 -05:00
|
|
|
.iter()
|
|
|
|
.filter(|&krate| {
|
|
|
|
let root_file = graph[krate].root_file_id;
|
|
|
|
db.file_source_root(root_file) == id
|
|
|
|
})
|
2024-01-11 04:36:10 -06:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
crates.sort();
|
|
|
|
crates.dedup();
|
|
|
|
crates.into_iter().collect()
|
2019-01-25 06:16:50 -06:00
|
|
|
}
|
|
|
|
|
2019-10-14 08:20:55 -05:00
|
|
|
/// Silly workaround for cyclic deps between the traits
|
|
|
|
pub struct FileLoaderDelegate<T>(pub T);
|
|
|
|
|
|
|
|
impl<T: SourceDatabaseExt> FileLoader for FileLoaderDelegate<&'_ T> {
|
2023-04-22 02:48:37 -05:00
|
|
|
fn file_text(&self, file_id: FileId) -> Arc<str> {
|
2019-10-14 08:20:55 -05:00
|
|
|
SourceDatabaseExt::file_text(self.0, file_id)
|
|
|
|
}
|
2022-07-20 08:02:08 -05:00
|
|
|
fn resolve_path(&self, path: AnchoredPath<'_>) -> Option<FileId> {
|
2020-06-05 09:45:20 -05:00
|
|
|
// FIXME: this *somehow* should be platform agnostic...
|
2020-12-09 09:41:35 -06:00
|
|
|
let source_root = self.0.file_source_root(path.anchor);
|
2020-06-11 04:04:09 -05:00
|
|
|
let source_root = self.0.source_root(source_root);
|
2022-08-25 13:31:02 -05:00
|
|
|
source_root.resolve_path(path)
|
2019-10-14 08:20:55 -05:00
|
|
|
}
|
|
|
|
|
2024-01-10 07:51:51 -06:00
|
|
|
fn relevant_crates(&self, file_id: FileId) -> Arc<[CrateId]> {
|
2024-01-17 20:27:38 -06:00
|
|
|
let _p = tracing::span!(tracing::Level::INFO, "relevant_crates").entered();
|
2019-10-14 08:20:55 -05:00
|
|
|
let source_root = self.0.file_source_root(file_id);
|
|
|
|
self.0.source_root_crates(source_root)
|
|
|
|
}
|
2019-01-25 06:16:50 -06:00
|
|
|
}
|