rust/crates/ra_hir/src/code_model_api.rs

154 lines
4.5 KiB
Rust
Raw Normal View History

2019-01-08 13:19:37 +01:00
use std::sync::Arc;
2019-01-06 15:33:27 +01:00
use relative_path::RelativePathBuf;
2019-01-06 13:58:45 +01:00
use ra_db::{CrateId, Cancelable, FileId};
2019-01-08 09:28:42 +01:00
use ra_syntax::{ast, TreePtr, SyntaxNode};
2019-01-04 22:02:05 +01:00
2019-01-08 13:19:37 +01:00
use crate::{Name, db::HirDatabase, DefId, Path, PerNs, nameres::ModuleScope, adt::VariantData};
2019-01-04 22:02:05 +01: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 11:41:12 +01:00
pub fn crate_id(&self) -> CrateId {
self.crate_id
}
2019-01-06 11:45:41 +01:00
pub fn dependencies(&self, db: &impl HirDatabase) -> Cancelable<Vec<CrateDependency>> {
Ok(self.dependencies_impl(db))
2019-01-04 22:02:05 +01:00
}
pub fn root_module(&self, db: &impl HirDatabase) -> Cancelable<Option<Module>> {
self.root_module_impl(db)
}
}
2019-01-04 23:37:40 +01:00
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Module {
pub(crate) def_id: DefId,
}
2019-01-06 13:58:45 +01:00
pub enum ModuleSource {
2019-01-08 09:28:42 +01:00
SourceFile(TreePtr<ast::SourceFile>),
Module(TreePtr<ast::Module>),
2019-01-06 13:58:45 +01:00
}
2019-01-06 15:33:27 +01:00
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub enum Problem {
UnresolvedModule {
candidate: RelativePathBuf,
},
NotDirOwner {
move_to: RelativePathBuf,
candidate: RelativePathBuf,
},
}
2019-01-04 23:37:40 +01:00
impl Module {
2019-01-06 14:10:25 +01:00
/// Name of this module.
2019-01-06 13:58:45 +01:00
pub fn name(&self, db: &impl HirDatabase) -> Cancelable<Option<Name>> {
self.name_impl(db)
}
2019-01-06 14:10:25 +01:00
/// Returns a node which defines this module. That is, a file or a `mod foo {}` with items.
2019-01-06 13:58:45 +01:00
pub fn defenition_source(&self, db: &impl HirDatabase) -> Cancelable<(FileId, ModuleSource)> {
self.defenition_source_impl(db)
}
2019-01-06 14:10:25 +01:00
/// Returns a node which declares this module, either a `mod foo;` or a `mod foo {}`.
/// `None` for the crate root.
2019-01-06 13:58:45 +01:00
pub fn declaration_source(
&self,
db: &impl HirDatabase,
2019-01-08 09:28:42 +01:00
) -> Cancelable<Option<(FileId, TreePtr<ast::Module>)>> {
2019-01-06 13:58:45 +01:00
self.declaration_source_impl(db)
2019-01-06 11:41:12 +01:00
}
2019-01-04 23:37:40 +01:00
/// Returns the crate this module is part of.
pub fn krate(&self, db: &impl HirDatabase) -> Cancelable<Option<Crate>> {
self.krate_impl(db)
}
2019-01-06 14:10:25 +01:00
/// Topmost parent of this module. Every module has a `crate_root`, but some
/// might miss `krate`. This can happen if a module's file is not included
/// into any module tree of any target from Cargo.toml.
2019-01-04 23:37:40 +01:00
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 12:05:03 +01:00
/// Finds a parent module.
pub fn parent(&self, db: &impl HirDatabase) -> Cancelable<Option<Module>> {
self.parent_impl(db)
}
2019-01-06 13:58:45 +01: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 13:16:21 +01: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 12:05:03 +01:00
pub fn resolve_path(&self, db: &impl HirDatabase, path: &Path) -> Cancelable<PerNs<DefId>> {
self.resolve_path_impl(db, path)
}
2019-01-08 09:28:42 +01:00
pub fn problems(
&self,
db: &impl HirDatabase,
) -> Cancelable<Vec<(TreePtr<SyntaxNode>, Problem)>> {
2019-01-06 13:58:45 +01:00
self.problems_impl(db)
}
2019-01-04 23:37:40 +01:00
}
2019-01-08 13:19:37 +01:00
2019-01-08 13:22:57 +01:00
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
2019-01-08 13:19:37 +01:00
pub struct Struct {
pub(crate) def_id: DefId,
}
impl Struct {
pub fn def_id(&self) -> DefId {
self.def_id
}
pub fn name(&self, db: &impl HirDatabase) -> Cancelable<Option<Name>> {
2019-01-08 13:22:57 +01:00
Ok(db.struct_data(self.def_id)?.name.clone())
}
2019-01-08 13:23:56 +01:00
pub fn variant_data(&self, db: &impl HirDatabase) -> Cancelable<Arc<VariantData>> {
Ok(db.struct_data(self.def_id)?.variant_data.clone())
}
2019-01-08 13:22:57 +01:00
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Enum {
pub(crate) def_id: DefId,
}
impl Enum {
pub fn def_id(&self) -> DefId {
self.def_id
}
pub fn name(&self, db: &impl HirDatabase) -> Cancelable<Option<Name>> {
Ok(db.enum_data(self.def_id)?.name.clone())
}
pub fn variants(&self, db: &impl HirDatabase) -> Cancelable<Vec<(Name, Arc<VariantData>)>> {
Ok(db.enum_data(self.def_id)?.variants.clone())
2019-01-08 13:19:37 +01:00
}
}