2019-01-06 12:58:45 +00:00
|
|
|
use ra_db::{CrateId, Cancelable, FileId};
|
|
|
|
use ra_syntax::{ast, SyntaxNode};
|
2019-01-04 21:02:05 +00:00
|
|
|
|
2019-01-06 12:58:45 +00:00
|
|
|
use crate::{Name, db::HirDatabase, DefId, Path, PerNs, module::{Problem, ModuleScope}};
|
2019-01-04 21:02:05 +00:00
|
|
|
|
|
|
|
/// hir::Crate describes a single crate. It's the main inteface with which
|
|
|
|
/// crate's dependencies interact. Mostly, it should be just a proxy for the
|
|
|
|
/// root module.
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Crate {
|
|
|
|
pub(crate) crate_id: CrateId,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CrateDependency {
|
|
|
|
pub krate: Crate,
|
|
|
|
pub name: Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Crate {
|
2019-01-06 10:41:12 +00:00
|
|
|
pub fn crate_id(&self) -> CrateId {
|
|
|
|
self.crate_id
|
|
|
|
}
|
2019-01-06 10:45:41 +00:00
|
|
|
pub fn dependencies(&self, db: &impl HirDatabase) -> Cancelable<Vec<CrateDependency>> {
|
|
|
|
Ok(self.dependencies_impl(db))
|
2019-01-04 21:02:05 +00:00
|
|
|
}
|
|
|
|
pub fn root_module(&self, db: &impl HirDatabase) -> Cancelable<Option<Module>> {
|
|
|
|
self.root_module_impl(db)
|
|
|
|
}
|
|
|
|
}
|
2019-01-04 22:37:40 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Module {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
2019-01-06 12:58:45 +00:00
|
|
|
/// An owned syntax node for a module. Unlike `ModuleSource`,
|
|
|
|
/// this holds onto the AST for the whole file.
|
|
|
|
pub enum ModuleSource {
|
|
|
|
SourceFile(ast::SourceFileNode),
|
|
|
|
Module(ast::ModuleNode),
|
|
|
|
}
|
|
|
|
|
2019-01-04 22:37:40 +00:00
|
|
|
impl Module {
|
2019-01-06 12:58:45 +00:00
|
|
|
pub fn name(&self, db: &impl HirDatabase) -> Cancelable<Option<Name>> {
|
|
|
|
self.name_impl(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn defenition_source(&self, db: &impl HirDatabase) -> Cancelable<(FileId, ModuleSource)> {
|
|
|
|
self.defenition_source_impl(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn declaration_source(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
) -> Cancelable<Option<(FileId, ast::ModuleNode)>> {
|
|
|
|
self.declaration_source_impl(db)
|
2019-01-06 10:41:12 +00:00
|
|
|
}
|
|
|
|
|
2019-01-04 22:37:40 +00:00
|
|
|
/// Returns the crate this module is part of.
|
|
|
|
pub fn krate(&self, db: &impl HirDatabase) -> Cancelable<Option<Crate>> {
|
|
|
|
self.krate_impl(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn crate_root(&self, db: &impl HirDatabase) -> Cancelable<Module> {
|
|
|
|
self.crate_root_impl(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Finds a child module with the specified name.
|
|
|
|
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
|
|
|
|
self.child_impl(db, name)
|
|
|
|
}
|
2019-01-06 11:05:03 +00:00
|
|
|
/// Finds a parent module.
|
|
|
|
pub fn parent(&self, db: &impl HirDatabase) -> Cancelable<Option<Module>> {
|
|
|
|
self.parent_impl(db)
|
|
|
|
}
|
2019-01-06 12:58:45 +00:00
|
|
|
pub fn path_to_root(&self, db: &impl HirDatabase) -> Cancelable<Vec<Module>> {
|
|
|
|
let mut res = vec![self.clone()];
|
|
|
|
let mut curr = self.clone();
|
|
|
|
while let Some(next) = curr.parent(db)? {
|
|
|
|
res.push(next.clone());
|
|
|
|
curr = next
|
|
|
|
}
|
|
|
|
Ok(res)
|
|
|
|
}
|
2019-01-06 12:16:21 +00:00
|
|
|
/// Returns a `ModuleScope`: a set of items, visible in this module.
|
|
|
|
pub fn scope(&self, db: &impl HirDatabase) -> Cancelable<ModuleScope> {
|
|
|
|
self.scope_impl(db)
|
|
|
|
}
|
2019-01-06 11:05:03 +00:00
|
|
|
pub fn resolve_path(&self, db: &impl HirDatabase, path: &Path) -> Cancelable<PerNs<DefId>> {
|
|
|
|
self.resolve_path_impl(db, path)
|
|
|
|
}
|
2019-01-06 12:58:45 +00:00
|
|
|
pub fn problems(&self, db: &impl HirDatabase) -> Cancelable<Vec<(SyntaxNode, Problem)>> {
|
|
|
|
self.problems_impl(db)
|
|
|
|
}
|
2019-01-04 22:37:40 +00:00
|
|
|
}
|