rust/crates/ra_db/src/input.rs

128 lines
3.6 KiB
Rust
Raw Normal View History

use std::sync::Arc;
2018-12-08 23:02:53 +01:00
use rustc_hash::{FxHashSet, FxHashMap};
2018-12-18 15:22:48 +01:00
use relative_path::RelativePathBuf;
2018-12-08 23:02:53 +01:00
use ra_syntax::SmolStr;
2018-10-31 21:41:43 +01:00
use salsa;
2018-10-25 16:52:50 +02:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct FileId(pub u32);
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct CrateId(pub u32);
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct CrateGraph {
2018-12-05 14:01:18 +01:00
arena: FxHashMap<CrateId, CrateData>,
2018-10-25 16:52:50 +02:00
}
2018-12-05 14:01:18 +01:00
#[derive(Debug, Clone, PartialEq, Eq)]
struct CrateData {
file_id: FileId,
2018-12-08 22:51:06 +01:00
dependencies: Vec<Dependency>,
2018-12-05 14:01:18 +01:00
}
impl CrateData {
fn new(file_id: FileId) -> CrateData {
CrateData {
file_id,
2018-12-08 22:51:06 +01:00
dependencies: Vec::new(),
2018-12-05 14:01:18 +01:00
}
2018-10-25 16:52:50 +02:00
}
2018-12-05 14:01:18 +01:00
2018-12-08 23:02:53 +01:00
fn add_dep(&mut self, name: SmolStr, crate_id: CrateId) {
self.dependencies.push(Dependency { name, crate_id })
2018-12-05 14:01:18 +01:00
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Dependency {
2018-12-08 23:05:49 +01:00
pub crate_id: CrateId,
pub name: SmolStr,
2018-12-08 22:51:06 +01:00
}
impl Dependency {
pub fn crate_id(&self) -> CrateId {
self.crate_id
}
2018-12-05 14:01:18 +01:00
}
impl CrateGraph {
pub fn add_crate_root(&mut self, file_id: FileId) -> CrateId {
2018-12-05 14:01:18 +01:00
let crate_id = CrateId(self.arena.len() as u32);
let prev = self.arena.insert(crate_id, CrateData::new(file_id));
2018-10-25 16:52:50 +02:00
assert!(prev.is_none());
crate_id
}
2018-12-08 21:16:11 +01:00
//FIXME: check that we don't have cycles here.
// Just a simple depth first search from `to` should work,
// the graph is small.
2018-12-08 23:02:53 +01:00
pub fn add_dep(&mut self, from: CrateId, name: SmolStr, to: CrateId) {
self.arena.get_mut(&from).unwrap().add_dep(name, to)
2018-12-05 14:01:18 +01:00
}
pub fn crate_root(&self, crate_id: CrateId) -> FileId {
self.arena[&crate_id].file_id
}
pub fn crate_id_for_crate_root(&self, file_id: FileId) -> Option<CrateId> {
let (&crate_id, _) = self
2018-12-05 14:01:18 +01:00
.arena
.iter()
2018-12-05 14:01:18 +01:00
.find(|(_crate_id, data)| data.file_id == file_id)?;
Some(crate_id)
2018-11-26 22:12:43 +01:00
}
2018-12-08 22:51:06 +01:00
pub fn dependencies<'a>(
&'a self,
crate_id: CrateId,
) -> impl Iterator<Item = &'a Dependency> + 'a {
self.arena[&crate_id].dependencies.iter()
}
2018-10-25 16:52:50 +02:00
}
salsa::query_group! {
pub trait FilesDatabase: salsa::Database {
fn file_text(file_id: FileId) -> Arc<String> {
type FileTextQuery;
storage input;
}
2018-12-18 15:22:48 +01: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;
}
fn file_source_root(file_id: FileId) -> SourceRootId {
type FileSourceRootQuery;
storage input;
}
2018-12-18 15:22:48 +01:00
fn source_root_files(id: SourceRootId) -> Arc<FxHashSet<FileId>> {
type SourceRootFilesQuery;
storage input;
}
fn source_root_file_by_path(id: SourceRootId, path: RelativePathBuf) -> Option<FileId> {
2018-12-19 08:26:24 +01:00
type SourceRootFileByPathQuery;
2018-12-18 15:22:48 +01:00
storage input;
}
fn source_root(id: SourceRootId) -> Arc<SourceRoot> {
type SourceRootQuery;
storage input;
}
fn libraries() -> Arc<Vec<SourceRootId>> {
2018-10-31 19:05:14 +01:00
type LibrariesQuery;
storage input;
}
fn crate_graph() -> Arc<CrateGraph> {
type CrateGraphQuery;
storage input;
}
}
}
2018-10-30 22:59:43 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct SourceRootId(pub u32);
2018-10-30 22:59:43 +01:00
#[derive(Default, Clone, Debug, PartialEq, Eq)]
pub struct SourceRoot {
pub files: FxHashSet<FileId>,
}
pub const WORKSPACE: SourceRootId = SourceRootId(0);