2018-12-20 04:47:32 -06:00
|
|
|
/// This modules specifies the input to rust-analyzer. In some sense, this is
|
2018-12-20 05:35:37 -06:00
|
|
|
/// **the** most important module, because all other fancy stuff is strictly
|
2018-12-20 04:47:32 -06:00
|
|
|
/// derived from this input.
|
2018-12-20 05:35:37 -06:00
|
|
|
///
|
|
|
|
/// Note that neither this module, nor any other part of the analyzer's core do
|
|
|
|
/// actual IO. See `vfs` and `project_model` in `ra_lsp_server` crate for how
|
|
|
|
/// actual IO is done and lowered to input.
|
2018-11-27 18:25:20 -06:00
|
|
|
use std::sync::Arc;
|
2018-10-25 02:57:55 -05:00
|
|
|
|
2018-12-18 08:22:48 -06:00
|
|
|
use relative_path::RelativePathBuf;
|
2018-12-21 08:27:04 -06:00
|
|
|
use rustc_hash::FxHashMap;
|
2018-10-31 15:41:43 -05:00
|
|
|
use salsa;
|
2018-10-25 02:57:55 -05:00
|
|
|
|
2018-12-21 08:27:04 -06:00
|
|
|
use ra_syntax::SmolStr;
|
2018-12-22 01:30:58 -06:00
|
|
|
use rustc_hash::FxHashSet;
|
2018-12-21 08:27:04 -06:00
|
|
|
|
2018-12-20 04:47:32 -06:00
|
|
|
/// `FileId` is an integer which uniquely identifies a file. File paths are
|
|
|
|
/// messy and system-dependent, so most of the code should work directly with
|
|
|
|
/// `FileId`, without inspecting the path. The mapping between `FileId` and path
|
|
|
|
/// and `SourceRoot` is constant. File rename is represented as a pair of
|
|
|
|
/// deletion/creation.
|
2018-10-25 09:52:50 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct FileId(pub u32);
|
|
|
|
|
2018-12-20 04:47:32 -06:00
|
|
|
/// Files are grouped into source roots. A source root is a directory on the
|
|
|
|
/// file systems which is watched for changes. Typically it corresponds to a
|
|
|
|
/// Cargo package. Source roots *might* be nested: in this case, file belongs to
|
|
|
|
/// the nearest enclosing source root. Path to files are always relative to a
|
|
|
|
/// source root, and analyzer does not know the root path of the source root at
|
|
|
|
/// all. So, a file from one source root can't refere a file in another source
|
|
|
|
/// root by path.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
|
|
|
pub struct SourceRootId(pub u32);
|
|
|
|
|
|
|
|
#[derive(Default, Clone, Debug, PartialEq, Eq)]
|
|
|
|
pub struct SourceRoot {
|
|
|
|
pub files: FxHashMap<RelativePathBuf, FileId>,
|
|
|
|
}
|
2018-10-25 09:52:50 -05:00
|
|
|
|
2018-12-20 04:47:32 -06:00
|
|
|
/// `CrateGraph` is a bit of information which turns a set of text files into a
|
|
|
|
/// number of Rust crates. Each Crate is the `FileId` of it's root module, the
|
|
|
|
/// set of cfg flags (not yet implemented) and the set of dependencies. Note
|
|
|
|
/// that, due to cfg's, there might be several crates for a single `FileId`! As
|
|
|
|
/// in the rust-lang proper, a crate does not have a name. Instead, names are
|
|
|
|
/// specified on dependency edges. That is, a crate might be known under
|
|
|
|
/// different names in different dependant crates.
|
|
|
|
///
|
|
|
|
/// Note that `CrateGraph` is build-system agnostic: it's a concept of the Rust
|
|
|
|
/// langauge proper, not a concept of the build system. In practice, we get
|
|
|
|
/// `CrateGraph` by lowering `cargo metadata` output.
|
2018-10-25 09:52:50 -05:00
|
|
|
#[derive(Debug, Clone, Default, PartialEq, Eq)]
|
|
|
|
pub struct CrateGraph {
|
2018-12-05 07:01:18 -06:00
|
|
|
arena: FxHashMap<CrateId, CrateData>,
|
2018-10-25 09:52:50 -05:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:32 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct CrateId(pub u32);
|
|
|
|
|
2018-12-05 07:01:18 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
struct CrateData {
|
|
|
|
file_id: FileId,
|
2018-12-08 15:51:06 -06:00
|
|
|
dependencies: Vec<Dependency>,
|
2018-12-05 07:01:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CrateData {
|
|
|
|
fn new(file_id: FileId) -> CrateData {
|
|
|
|
CrateData {
|
|
|
|
file_id,
|
2018-12-08 15:51:06 -06:00
|
|
|
dependencies: Vec::new(),
|
2018-12-05 07:01:18 -06:00
|
|
|
}
|
2018-10-25 09:52:50 -05:00
|
|
|
}
|
2018-12-05 07:01:18 -06:00
|
|
|
|
2018-12-08 16:02:53 -06:00
|
|
|
fn add_dep(&mut self, name: SmolStr, crate_id: CrateId) {
|
|
|
|
self.dependencies.push(Dependency { name, crate_id })
|
2018-12-05 07:01:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct Dependency {
|
2018-12-08 16:05:49 -06:00
|
|
|
pub crate_id: CrateId,
|
|
|
|
pub name: SmolStr,
|
2018-12-08 15:51:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Dependency {
|
|
|
|
pub fn crate_id(&self) -> CrateId {
|
|
|
|
self.crate_id
|
|
|
|
}
|
2018-12-05 07:01:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CrateGraph {
|
2018-10-31 14:34:31 -05:00
|
|
|
pub fn add_crate_root(&mut self, file_id: FileId) -> CrateId {
|
2018-12-05 07:01:18 -06:00
|
|
|
let crate_id = CrateId(self.arena.len() as u32);
|
|
|
|
let prev = self.arena.insert(crate_id, CrateData::new(file_id));
|
2018-10-25 09:52:50 -05:00
|
|
|
assert!(prev.is_none());
|
|
|
|
crate_id
|
|
|
|
}
|
2018-12-08 16:02:53 -06:00
|
|
|
pub fn add_dep(&mut self, from: CrateId, name: SmolStr, to: CrateId) {
|
2018-12-22 01:30:58 -06:00
|
|
|
let mut visited = FxHashSet::default();
|
|
|
|
if self.dfs_find(from, to, &mut visited) {
|
|
|
|
panic!("Cycle dependencies found.")
|
2018-12-21 08:27:04 -06:00
|
|
|
}
|
2018-12-08 16:02:53 -06:00
|
|
|
self.arena.get_mut(&from).unwrap().add_dep(name, to)
|
2018-12-05 07:01:18 -06:00
|
|
|
}
|
2018-12-21 10:13:26 -06:00
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.arena.is_empty()
|
|
|
|
}
|
2018-12-05 07:01:18 -06:00
|
|
|
pub fn crate_root(&self, crate_id: CrateId) -> FileId {
|
|
|
|
self.arena[&crate_id].file_id
|
|
|
|
}
|
2018-11-27 18:25:20 -06:00
|
|
|
pub fn crate_id_for_crate_root(&self, file_id: FileId) -> Option<CrateId> {
|
|
|
|
let (&crate_id, _) = self
|
2018-12-05 07:01:18 -06:00
|
|
|
.arena
|
2018-11-27 18:25:20 -06:00
|
|
|
.iter()
|
2018-12-05 07:01:18 -06:00
|
|
|
.find(|(_crate_id, data)| data.file_id == file_id)?;
|
2018-11-27 18:25:20 -06:00
|
|
|
Some(crate_id)
|
2018-11-26 15:12:43 -06:00
|
|
|
}
|
2018-12-08 15:51:06 -06:00
|
|
|
pub fn dependencies<'a>(
|
|
|
|
&'a self,
|
|
|
|
crate_id: CrateId,
|
|
|
|
) -> impl Iterator<Item = &'a Dependency> + 'a {
|
|
|
|
self.arena[&crate_id].dependencies.iter()
|
|
|
|
}
|
2018-12-22 01:30:58 -06:00
|
|
|
fn dfs_find(&self, target: CrateId, from: CrateId, visited: &mut FxHashSet<CrateId>) -> bool {
|
2018-12-22 08:40:41 -06:00
|
|
|
if !visited.insert(from) {
|
2018-12-22 01:30:58 -06:00
|
|
|
return false;
|
|
|
|
}
|
2018-12-22 08:40:41 -06:00
|
|
|
|
2018-12-21 08:27:04 -06:00
|
|
|
for dep in self.dependencies(from) {
|
|
|
|
let crate_id = dep.crate_id();
|
|
|
|
if crate_id == target {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-22 01:30:58 -06:00
|
|
|
|
|
|
|
if self.dfs_find(target, crate_id, visited) {
|
|
|
|
return true;
|
2018-12-21 08:27:04 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-10-25 09:52:50 -05:00
|
|
|
}
|
2018-10-25 02:57:55 -05:00
|
|
|
|
2018-12-21 08:45:38 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2018-12-21 08:27:04 -06:00
|
|
|
use super::{CrateGraph, FxHashMap, FileId, SmolStr};
|
2018-12-22 01:30:58 -06:00
|
|
|
|
2018-12-21 08:27:04 -06:00
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn it_should_painc_because_of_cycle_dependencies() {
|
2018-12-22 01:30:58 -06:00
|
|
|
let mut graph = CrateGraph::default();
|
2018-12-21 08:27:04 -06:00
|
|
|
let crate1 = graph.add_crate_root(FileId(1u32));
|
|
|
|
let crate2 = graph.add_crate_root(FileId(2u32));
|
|
|
|
let crate3 = graph.add_crate_root(FileId(3u32));
|
|
|
|
graph.add_dep(crate1, SmolStr::new("crate2"), crate2);
|
|
|
|
graph.add_dep(crate2, SmolStr::new("crate3"), crate3);
|
|
|
|
graph.add_dep(crate3, SmolStr::new("crate1"), crate1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn it_works() {
|
|
|
|
let mut graph = CrateGraph {
|
2018-12-22 01:30:58 -06:00
|
|
|
arena: FxHashMap::default(),
|
2018-12-21 08:27:04 -06:00
|
|
|
};
|
|
|
|
let crate1 = graph.add_crate_root(FileId(1u32));
|
|
|
|
let crate2 = graph.add_crate_root(FileId(2u32));
|
|
|
|
let crate3 = graph.add_crate_root(FileId(3u32));
|
|
|
|
graph.add_dep(crate1, SmolStr::new("crate2"), crate2);
|
|
|
|
graph.add_dep(crate2, SmolStr::new("crate3"), crate3);
|
|
|
|
}
|
2018-10-25 09:52:50 -05:00
|
|
|
}
|
2018-10-25 02:57:55 -05:00
|
|
|
|
|
|
|
salsa::query_group! {
|
2018-11-27 18:25:20 -06:00
|
|
|
pub trait FilesDatabase: salsa::Database {
|
2018-12-20 04:47:32 -06:00
|
|
|
/// Text of the file.
|
2018-10-25 02:57:55 -05:00
|
|
|
fn file_text(file_id: FileId) -> Arc<String> {
|
|
|
|
type FileTextQuery;
|
|
|
|
storage input;
|
|
|
|
}
|
2018-12-18 08:22:48 -06:00
|
|
|
/// Path to a file, relative to the root of its source root.
|
|
|
|
fn file_relative_path(file_id: FileId) -> RelativePathBuf {
|
|
|
|
type FileRelativePathQuery;
|
|
|
|
storage input;
|
|
|
|
}
|
2018-12-20 04:47:32 -06:00
|
|
|
/// Source root of the file.
|
2018-10-25 02:57:55 -05:00
|
|
|
fn file_source_root(file_id: FileId) -> SourceRootId {
|
|
|
|
type FileSourceRootQuery;
|
|
|
|
storage input;
|
|
|
|
}
|
2018-12-20 04:47:32 -06:00
|
|
|
/// Contents of the source root.
|
2018-10-25 02:57:55 -05:00
|
|
|
fn source_root(id: SourceRootId) -> Arc<SourceRoot> {
|
|
|
|
type SourceRootQuery;
|
|
|
|
storage input;
|
|
|
|
}
|
2018-12-20 04:47:32 -06:00
|
|
|
/// The set of "local" (that is, from the current workspace) roots.
|
|
|
|
/// Files in local roots are assumed to change frequently.
|
2018-12-19 07:13:16 -06:00
|
|
|
fn local_roots() -> Arc<Vec<SourceRootId>> {
|
|
|
|
type LocalRootsQuery;
|
|
|
|
storage input;
|
|
|
|
}
|
2018-12-20 04:47:32 -06:00
|
|
|
/// The set of roots for crates.io libraries.
|
|
|
|
/// Files in libraries are assumed to never change.
|
2018-12-19 07:13:16 -06:00
|
|
|
fn library_roots() -> Arc<Vec<SourceRootId>> {
|
|
|
|
type LibraryRootsQuery;
|
2018-10-25 02:57:55 -05:00
|
|
|
storage input;
|
|
|
|
}
|
2018-12-20 04:47:32 -06:00
|
|
|
/// The crate graph.
|
2018-10-25 02:57:55 -05:00
|
|
|
fn crate_graph() -> Arc<CrateGraph> {
|
|
|
|
type CrateGraphQuery;
|
|
|
|
storage input;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|