rust/crates/ra_hir/src/code_model_api.rs

466 lines
12 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-15 18:56:06 +01:00
use ra_db::{CrateId, FileId};
use ra_syntax::{ast::self, TreeArc, SyntaxNode};
2019-01-04 22:02:05 +01:00
2019-01-08 13:27:00 +01:00
use crate::{
2019-01-24 23:32:47 +01:00
Name, Path, PerNs, ScopesWithSyntaxMapping, Ty, HirFileId,
2019-01-08 13:27:00 +01:00
type_ref::TypeRef,
2019-01-18 14:56:02 +01:00
nameres::{ModuleScope, lower::ImportId},
2019-01-08 13:27:00 +01:00
db::HirDatabase,
2019-01-08 18:11:13 +01:00
expr::BodySyntaxMapping,
2019-01-24 15:54:18 +01:00
ty::{InferenceResult, VariantDef},
2019-01-09 16:46:02 +01:00
adt::VariantData,
2019-01-19 18:58:04 +01:00
generics::GenericParams,
docs::{Documentation, Docs, docs_from_ast},
module_tree::ModuleId,
2019-01-24 23:31:32 +01:00
ids::{FunctionId, StructId, EnumId, EnumVariantId, AstItemDef, ConstId, StaticId, TraitId, TypeId},
2019-01-08 13:27:00 +01:00
};
2019-01-04 22:02:05 +01:00
/// hir::Crate describes a single crate. It's the main interface with which
/// a crate's dependencies interact. Mostly, it should be just a proxy for the
2019-01-04 22:02:05 +01:00
/// root module.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-04 22:02:05 +01:00
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-15 16:33:26 +01:00
pub fn dependencies(&self, db: &impl HirDatabase) -> Vec<CrateDependency> {
self.dependencies_impl(db)
2019-01-04 22:02:05 +01:00
}
2019-01-15 16:33:26 +01:00
pub fn root_module(&self, db: &impl HirDatabase) -> Option<Module> {
2019-01-04 22:02:05 +01:00
self.root_module_impl(db)
}
}
2019-01-04 23:37:40 +01:00
2019-01-11 19:02:12 +01:00
#[derive(Debug)]
2019-01-08 18:11:13 +01:00
pub enum Def {
Item,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-04 23:37:40 +01:00
pub struct Module {
pub(crate) krate: CrateId,
pub(crate) module_id: ModuleId,
}
/// The defs which can be visible in the module.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ModuleDef {
Module(Module),
2019-01-24 13:28:50 +01:00
Function(Function),
2019-01-24 15:54:18 +01:00
Struct(Struct),
2019-01-24 16:56:38 +01:00
Enum(Enum),
2019-01-24 23:32:47 +01:00
// Can't be directly declared, but can be imported.
2019-01-24 21:32:41 +01:00
EnumVariant(EnumVariant),
2019-01-24 22:50:08 +01:00
Const(Const),
Static(Static),
2019-01-24 23:31:32 +01:00
Trait(Trait),
Type(Type),
}
2019-01-24 22:50:08 +01:00
impl_froms!(
ModuleDef: Module,
Function,
Struct,
Enum,
EnumVariant,
Const,
2019-01-24 23:31:32 +01:00
Static,
Trait,
Type
2019-01-24 22:50:08 +01:00
);
2019-01-24 15:54:18 +01:00
2019-01-06 13:58:45 +01:00
pub enum ModuleSource {
SourceFile(TreeArc<ast::SourceFile>),
Module(TreeArc<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-15 16:26:29 +01:00
pub fn name(&self, db: &impl HirDatabase) -> Option<Name> {
2019-01-06 13:58:45 +01:00
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-15 16:26:29 +01:00
pub fn definition_source(&self, db: &impl HirDatabase) -> (FileId, ModuleSource) {
2019-01-08 23:38:51 +01:00
self.definition_source_impl(db)
2019-01-06 13:58:45 +01:00
}
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-15 16:26:29 +01:00
) -> Option<(FileId, TreeArc<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-18 14:36:56 +01:00
/// Returns the syntax of the last path segment corresponding to this import
pub fn import_source(
&self,
db: &impl HirDatabase,
2019-01-18 14:56:02 +01:00
import: ImportId,
2019-01-18 14:36:56 +01:00
) -> TreeArc<ast::PathSegment> {
self.import_source_impl(db, import)
}
2019-01-04 23:37:40 +01:00
/// Returns the crate this module is part of.
pub fn krate(&self, db: &impl HirDatabase) -> Option<Crate> {
2019-01-04 23:37:40 +01:00
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 be missing `krate`. This can happen if a module's file is not included
/// in the module tree of any target in Cargo.toml.
pub fn crate_root(&self, db: &impl HirDatabase) -> Module {
2019-01-04 23:37:40 +01:00
self.crate_root_impl(db)
}
2019-01-04 23:37:40 +01:00
/// Finds a child module with the specified name.
2019-01-15 16:13:11 +01:00
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Option<Module> {
2019-01-04 23:37:40 +01:00
self.child_impl(db, name)
}
/// Iterates over all child modules.
pub fn children(&self, db: &impl HirDatabase) -> impl Iterator<Item = Module> {
self.children_impl(db)
}
2019-01-06 12:05:03 +01:00
/// Finds a parent module.
pub fn parent(&self, db: &impl HirDatabase) -> Option<Module> {
2019-01-06 12:05:03 +01:00
self.parent_impl(db)
}
pub fn path_to_root(&self, db: &impl HirDatabase) -> Vec<Module> {
2019-01-06 13:58:45 +01:00
let mut res = vec![self.clone()];
let mut curr = self.clone();
while let Some(next) = curr.parent(db) {
2019-01-06 13:58:45 +01:00
res.push(next.clone());
curr = next
}
res
2019-01-06 13:58:45 +01:00
}
2019-01-06 13:16:21 +01:00
/// Returns a `ModuleScope`: a set of items, visible in this module.
2019-01-15 17:15:01 +01:00
pub fn scope(&self, db: &impl HirDatabase) -> ModuleScope {
2019-01-25 08:29:00 +01:00
db.item_map(self.krate)[self.module_id].clone()
2019-01-06 13:16:21 +01:00
}
pub fn resolve_path(&self, db: &impl HirDatabase, path: &Path) -> PerNs<ModuleDef> {
2019-01-25 08:20:35 +01:00
db.item_map(self.krate).resolve_path(db, *self, path)
2019-01-06 12:05:03 +01:00
}
2019-01-15 18:56:06 +01:00
pub fn problems(&self, db: &impl HirDatabase) -> Vec<(TreeArc<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-09 16:46:02 +01:00
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
2019-01-08 13:27:00 +01:00
pub struct StructField {
2019-01-24 15:54:18 +01:00
parent: VariantDef,
2019-01-09 16:46:02 +01:00
name: Name,
2019-01-08 13:27:00 +01:00
}
impl StructField {
pub fn name(&self) -> &Name {
&self.name
}
2019-01-15 18:43:37 +01:00
pub fn ty(&self, db: &impl HirDatabase) -> Option<Ty> {
db.type_for_field(self.parent, self.name.clone())
2019-01-08 13:32:27 +01:00
}
}
2019-01-24 15:54:18 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 13:19:37 +01:00
pub struct Struct {
2019-01-24 15:54:18 +01:00
pub(crate) id: StructId,
2019-01-08 13:19:37 +01:00
}
impl Struct {
2019-01-24 22:02:18 +01:00
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::StructDef>) {
self.id.source(db)
}
2019-01-24 15:54:18 +01:00
pub fn module(&self, db: &impl HirDatabase) -> Module {
2019-01-24 22:02:18 +01:00
self.id.module(db)
2019-01-08 13:19:37 +01:00
}
2019-01-15 16:43:25 +01:00
pub fn name(&self, db: &impl HirDatabase) -> Option<Name> {
2019-01-24 15:54:18 +01:00
db.struct_data(*self).name.clone()
2019-01-08 13:22:57 +01:00
}
2019-01-08 13:23:56 +01:00
2019-01-15 16:43:25 +01:00
pub fn fields(&self, db: &impl HirDatabase) -> Vec<StructField> {
2019-01-24 15:54:18 +01:00
db.struct_data(*self)
2019-01-09 16:46:02 +01:00
.variant_data
.fields()
.iter()
.map(|it| StructField {
2019-01-24 15:54:18 +01:00
parent: (*self).into(),
2019-01-09 16:46:02 +01:00
name: it.name.clone(),
})
2019-01-15 16:43:25 +01:00
.collect()
2019-01-08 13:23:56 +01:00
}
2019-01-19 18:58:04 +01:00
pub fn generic_params(&self, db: &impl HirDatabase) -> Arc<GenericParams> {
2019-01-24 15:54:18 +01:00
db.generic_params((*self).into())
}
2019-01-08 13:22:57 +01:00
}
impl Docs for Struct {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}
2019-01-24 16:56:38 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 13:22:57 +01:00
pub struct Enum {
2019-01-24 16:56:38 +01:00
pub(crate) id: EnumId,
2019-01-08 13:22:57 +01:00
}
impl Enum {
2019-01-24 22:02:18 +01:00
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::EnumDef>) {
self.id.source(db)
}
2019-01-24 16:56:38 +01:00
pub fn module(&self, db: &impl HirDatabase) -> Module {
2019-01-24 22:02:18 +01:00
self.id.module(db)
2019-01-08 13:22:57 +01:00
}
2019-01-15 16:43:25 +01:00
pub fn name(&self, db: &impl HirDatabase) -> Option<Name> {
2019-01-24 16:56:38 +01:00
db.enum_data(*self).name.clone()
2019-01-08 13:22:57 +01:00
}
2019-01-15 16:43:25 +01:00
pub fn variants(&self, db: &impl HirDatabase) -> Vec<(Name, EnumVariant)> {
2019-01-24 16:56:38 +01:00
db.enum_data(*self).variants.clone()
2019-01-08 13:19:37 +01:00
}
2019-01-19 18:58:04 +01:00
pub fn generic_params(&self, db: &impl HirDatabase) -> Arc<GenericParams> {
2019-01-24 16:56:38 +01:00
db.generic_params((*self).into())
}
2019-01-08 13:19:37 +01:00
}
2019-01-08 18:11:13 +01:00
impl Docs for Enum {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}
2019-01-24 21:32:41 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct EnumVariant {
2019-01-24 21:32:41 +01:00
pub(crate) id: EnumVariantId,
}
impl EnumVariant {
2019-01-24 22:02:18 +01:00
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::EnumVariant>) {
self.id.source(db)
}
2019-01-24 21:32:41 +01:00
pub fn module(&self, db: &impl HirDatabase) -> Module {
2019-01-24 22:02:18 +01:00
self.id.module(db)
}
2019-01-15 16:43:25 +01:00
pub fn parent_enum(&self, db: &impl HirDatabase) -> Enum {
2019-01-24 21:32:41 +01:00
db.enum_variant_data(*self).parent_enum.clone()
}
2019-01-15 16:43:25 +01:00
pub fn name(&self, db: &impl HirDatabase) -> Option<Name> {
2019-01-24 21:32:41 +01:00
db.enum_variant_data(*self).name.clone()
}
2019-01-15 16:43:25 +01:00
pub fn variant_data(&self, db: &impl HirDatabase) -> Arc<VariantData> {
2019-01-24 21:32:41 +01:00
db.enum_variant_data(*self).variant_data.clone()
}
pub fn fields(&self, db: &impl HirDatabase) -> Vec<StructField> {
self.variant_data(db)
.fields()
.iter()
.map(|it| StructField {
2019-01-24 21:32:41 +01:00
parent: (*self).into(),
name: it.name.clone(),
})
.collect()
}
}
impl Docs for EnumVariant {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}
2019-01-24 13:28:50 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 18:11:13 +01:00
pub struct Function {
2019-01-24 13:28:50 +01:00
pub(crate) id: FunctionId,
2019-01-08 18:11:13 +01:00
}
2019-01-11 12:00:54 +01:00
pub use crate::code_model_impl::function::ScopeEntryWithSyntax;
2019-01-08 18:11:13 +01:00
/// The declared signature of a function.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct FnSignature {
pub(crate) name: Name,
2019-01-12 21:58:16 +01:00
pub(crate) params: Vec<TypeRef>,
2019-01-08 18:11:13 +01:00
pub(crate) ret_type: TypeRef,
2019-01-12 21:58:16 +01:00
/// True if the first param is `self`. This is relevant to decide whether this
/// can be called as a method.
2019-01-12 21:58:16 +01:00
pub(crate) has_self_param: bool,
2019-01-08 18:11:13 +01:00
}
impl FnSignature {
pub fn name(&self) -> &Name {
&self.name
}
2019-01-12 21:58:16 +01:00
pub fn params(&self) -> &[TypeRef] {
&self.params
2019-01-08 18:11:13 +01:00
}
pub fn ret_type(&self) -> &TypeRef {
&self.ret_type
}
/// True if the first arg is `self`. This is relevant to decide whether this
/// can be called as a method.
2019-01-12 21:58:16 +01:00
pub fn has_self_param(&self) -> bool {
self.has_self_param
}
2019-01-08 18:11:13 +01:00
}
impl Function {
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::FnDef>) {
2019-01-24 22:02:18 +01:00
self.id.source(db)
}
pub fn module(&self, db: &impl HirDatabase) -> Module {
self.id.module(db)
2019-01-08 18:11:13 +01:00
}
2019-01-15 17:01:59 +01:00
pub fn body_syntax_mapping(&self, db: &impl HirDatabase) -> Arc<BodySyntaxMapping> {
2019-01-24 13:28:50 +01:00
db.body_syntax_mapping(*self)
2019-01-08 18:11:13 +01:00
}
2019-01-15 17:04:49 +01:00
pub fn scopes(&self, db: &impl HirDatabase) -> ScopesWithSyntaxMapping {
2019-01-24 13:28:50 +01:00
let scopes = db.fn_scopes(*self);
let syntax_mapping = db.body_syntax_mapping(*self);
2019-01-15 17:04:49 +01:00
ScopesWithSyntaxMapping {
2019-01-08 18:11:13 +01:00
scopes,
syntax_mapping,
2019-01-15 17:04:49 +01:00
}
2019-01-08 18:11:13 +01:00
}
pub fn signature(&self, db: &impl HirDatabase) -> Arc<FnSignature> {
2019-01-24 13:28:50 +01:00
db.fn_signature(*self)
2019-01-08 18:11:13 +01:00
}
2019-01-15 18:54:18 +01:00
pub fn infer(&self, db: &impl HirDatabase) -> Arc<InferenceResult> {
2019-01-24 13:28:50 +01:00
db.infer(*self)
2019-01-08 18:11:13 +01:00
}
2019-01-19 18:58:04 +01:00
pub fn generic_params(&self, db: &impl HirDatabase) -> Arc<GenericParams> {
2019-01-24 13:28:50 +01:00
db.generic_params((*self).into())
}
}
2019-01-22 14:55:05 +01:00
impl Docs for Function {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
2019-01-22 14:55:05 +01:00
}
2019-01-08 18:11:13 +01:00
}
2019-01-11 18:28:10 +01:00
2019-01-24 22:50:08 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 18:28:10 +01:00
pub struct Const {
2019-01-24 22:50:08 +01:00
pub(crate) id: ConstId,
2019-01-11 18:28:10 +01:00
}
2019-01-11 19:02:12 +01:00
impl Const {
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::ConstDef>) {
2019-01-24 22:50:08 +01:00
self.id.source(db)
2019-01-11 19:02:12 +01:00
}
}
impl Docs for Const {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}
2019-01-24 22:50:08 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 18:28:10 +01:00
pub struct Static {
2019-01-24 22:50:08 +01:00
pub(crate) id: StaticId,
2019-01-11 18:28:10 +01:00
}
2019-01-11 19:02:12 +01:00
impl Static {
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::StaticDef>) {
2019-01-24 22:50:08 +01:00
self.id.source(db)
2019-01-11 19:02:12 +01:00
}
}
impl Docs for Static {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}
2019-01-24 23:31:32 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 18:28:10 +01:00
pub struct Trait {
2019-01-24 23:31:32 +01:00
pub(crate) id: TraitId,
2019-01-11 18:28:10 +01:00
}
2019-01-11 19:02:12 +01:00
impl Trait {
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::TraitDef>) {
2019-01-24 23:31:32 +01:00
self.id.source(db)
2019-01-11 19:02:12 +01:00
}
2019-01-19 18:58:04 +01:00
pub fn generic_params(&self, db: &impl HirDatabase) -> Arc<GenericParams> {
2019-01-24 23:31:32 +01:00
db.generic_params((*self).into())
}
2019-01-11 19:02:12 +01:00
}
impl Docs for Trait {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}
2019-01-24 23:31:32 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 18:28:10 +01:00
pub struct Type {
2019-01-24 23:31:32 +01:00
pub(crate) id: TypeId,
2019-01-11 18:28:10 +01:00
}
2019-01-11 19:02:12 +01:00
impl Type {
pub fn source(&self, db: &impl HirDatabase) -> (HirFileId, TreeArc<ast::TypeDef>) {
2019-01-24 23:31:32 +01:00
self.id.source(db)
2019-01-11 19:02:12 +01:00
}
2019-01-19 18:58:04 +01:00
pub fn generic_params(&self, db: &impl HirDatabase) -> Arc<GenericParams> {
2019-01-24 23:31:32 +01:00
db.generic_params((*self).into())
}
2019-01-11 19:02:12 +01:00
}
impl Docs for Type {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
docs_from_ast(&*self.source(db).1)
}
}