2019-01-08 06:19:37 -06:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2019-01-06 08:33:27 -06:00
|
|
|
use relative_path::RelativePathBuf;
|
2019-01-06 06:58:45 -06:00
|
|
|
use ra_db::{CrateId, Cancelable, FileId};
|
2019-01-11 11:43:10 -06:00
|
|
|
use ra_syntax::{ast, TreeArc, SyntaxNode};
|
2019-01-04 15:02:05 -06:00
|
|
|
|
2019-01-08 06:27:00 -06:00
|
|
|
use crate::{
|
2019-01-07 17:30:49 -06:00
|
|
|
Name, DefId, Path, PerNs, ScopesWithSyntaxMapping, Ty, HirFileId,
|
2019-01-08 06:27:00 -06:00
|
|
|
type_ref::TypeRef,
|
|
|
|
nameres::ModuleScope,
|
|
|
|
db::HirDatabase,
|
2019-01-08 11:11:13 -06:00
|
|
|
expr::BodySyntaxMapping,
|
|
|
|
ty::InferenceResult,
|
2019-01-09 09:46:02 -06:00
|
|
|
adt::VariantData,
|
2019-01-11 11:43:10 -06:00
|
|
|
code_model_impl::def_id_to_ast,
|
2019-01-08 06:27:00 -06:00
|
|
|
};
|
2019-01-04 15:02:05 -06:00
|
|
|
|
2019-01-08 17:47:12 -06: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 15:02:05 -06:00
|
|
|
/// 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 04:41:12 -06:00
|
|
|
pub fn crate_id(&self) -> CrateId {
|
|
|
|
self.crate_id
|
|
|
|
}
|
2019-01-06 04:45:41 -06:00
|
|
|
pub fn dependencies(&self, db: &impl HirDatabase) -> Cancelable<Vec<CrateDependency>> {
|
|
|
|
Ok(self.dependencies_impl(db))
|
2019-01-04 15:02:05 -06:00
|
|
|
}
|
|
|
|
pub fn root_module(&self, db: &impl HirDatabase) -> Cancelable<Option<Module>> {
|
|
|
|
self.root_module_impl(db)
|
|
|
|
}
|
|
|
|
}
|
2019-01-04 16:37:40 -06:00
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
#[derive(Debug)]
|
2019-01-08 11:11:13 -06:00
|
|
|
pub enum Def {
|
|
|
|
Module(Module),
|
|
|
|
Struct(Struct),
|
|
|
|
Enum(Enum),
|
2019-01-08 09:01:19 -06:00
|
|
|
EnumVariant(EnumVariant),
|
2019-01-08 11:11:13 -06:00
|
|
|
Function(Function),
|
2019-01-11 12:02:12 -06:00
|
|
|
Const(Const),
|
|
|
|
Static(Static),
|
|
|
|
Trait(Trait),
|
|
|
|
Type(Type),
|
2019-01-08 11:11:13 -06:00
|
|
|
Item,
|
|
|
|
}
|
|
|
|
|
2019-01-04 16:37:40 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Module {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
2019-01-06 06:58:45 -06:00
|
|
|
pub enum ModuleSource {
|
2019-01-11 10:59:06 -06:00
|
|
|
SourceFile(TreeArc<ast::SourceFile>),
|
|
|
|
Module(TreeArc<ast::Module>),
|
2019-01-06 06:58:45 -06:00
|
|
|
}
|
|
|
|
|
2019-01-06 08:33:27 -06:00
|
|
|
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
|
|
|
|
pub enum Problem {
|
|
|
|
UnresolvedModule {
|
|
|
|
candidate: RelativePathBuf,
|
|
|
|
},
|
|
|
|
NotDirOwner {
|
|
|
|
move_to: RelativePathBuf,
|
|
|
|
candidate: RelativePathBuf,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-01-04 16:37:40 -06:00
|
|
|
impl Module {
|
2019-01-06 07:10:25 -06:00
|
|
|
/// Name of this module.
|
2019-01-06 06:58:45 -06:00
|
|
|
pub fn name(&self, db: &impl HirDatabase) -> Cancelable<Option<Name>> {
|
|
|
|
self.name_impl(db)
|
|
|
|
}
|
|
|
|
|
2019-01-06 07:10:25 -06:00
|
|
|
/// Returns a node which defines this module. That is, a file or a `mod foo {}` with items.
|
2019-01-08 16:38:51 -06:00
|
|
|
pub fn definition_source(&self, db: &impl HirDatabase) -> Cancelable<(FileId, ModuleSource)> {
|
|
|
|
self.definition_source_impl(db)
|
2019-01-06 06:58:45 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-06 07:10:25 -06:00
|
|
|
/// Returns a node which declares this module, either a `mod foo;` or a `mod foo {}`.
|
|
|
|
/// `None` for the crate root.
|
2019-01-06 06:58:45 -06:00
|
|
|
pub fn declaration_source(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
2019-01-11 10:59:06 -06:00
|
|
|
) -> Cancelable<Option<(FileId, TreeArc<ast::Module>)>> {
|
2019-01-06 06:58:45 -06:00
|
|
|
self.declaration_source_impl(db)
|
2019-01-06 04:41:12 -06:00
|
|
|
}
|
|
|
|
|
2019-01-04 16:37:40 -06: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-08 17:47:12 -06:00
|
|
|
|
2019-01-06 07:10:25 -06:00
|
|
|
/// Topmost parent of this module. Every module has a `crate_root`, but some
|
2019-01-08 17:47:12 -06:00
|
|
|
/// 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.
|
2019-01-04 16:37:40 -06:00
|
|
|
pub fn crate_root(&self, db: &impl HirDatabase) -> Cancelable<Module> {
|
|
|
|
self.crate_root_impl(db)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-04 16:37:40 -06:00
|
|
|
/// 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-08 17:47:12 -06:00
|
|
|
|
2019-01-07 06:44:54 -06:00
|
|
|
/// Iterates over all child modules.
|
|
|
|
pub fn children(&self, db: &impl HirDatabase) -> Cancelable<impl Iterator<Item = Module>> {
|
|
|
|
self.children_impl(db)
|
|
|
|
}
|
|
|
|
|
2019-01-06 05:05:03 -06:00
|
|
|
/// Finds a parent module.
|
|
|
|
pub fn parent(&self, db: &impl HirDatabase) -> Cancelable<Option<Module>> {
|
|
|
|
self.parent_impl(db)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-06 06:58:45 -06: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-08 17:47:12 -06:00
|
|
|
|
2019-01-06 06:16:21 -06: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-08 17:47:12 -06:00
|
|
|
|
2019-01-06 05:05:03 -06:00
|
|
|
pub fn resolve_path(&self, db: &impl HirDatabase, path: &Path) -> Cancelable<PerNs<DefId>> {
|
|
|
|
self.resolve_path_impl(db, path)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 02:28:42 -06:00
|
|
|
pub fn problems(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
2019-01-11 10:59:06 -06:00
|
|
|
) -> Cancelable<Vec<(TreeArc<SyntaxNode>, Problem)>> {
|
2019-01-06 06:58:45 -06:00
|
|
|
self.problems_impl(db)
|
|
|
|
}
|
2019-01-04 16:37:40 -06:00
|
|
|
}
|
2019-01-08 06:19:37 -06:00
|
|
|
|
2019-01-09 09:46:02 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2019-01-08 06:27:00 -06:00
|
|
|
pub struct StructField {
|
2019-01-09 09:46:02 -06:00
|
|
|
struct_: Struct,
|
|
|
|
name: Name,
|
2019-01-08 06:27:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StructField {
|
|
|
|
pub fn name(&self) -> &Name {
|
|
|
|
&self.name
|
|
|
|
}
|
2019-01-09 09:46:02 -06:00
|
|
|
pub fn ty(&self, db: &impl HirDatabase) -> Cancelable<Option<Ty>> {
|
|
|
|
db.type_for_field(self.struct_.def_id, self.name.clone())
|
2019-01-08 06:32:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-08 06:22:57 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2019-01-08 06:19:37 -06: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 06:22:57 -06:00
|
|
|
Ok(db.struct_data(self.def_id)?.name.clone())
|
|
|
|
}
|
2019-01-08 06:23:56 -06:00
|
|
|
|
2019-01-09 09:46:02 -06:00
|
|
|
pub fn fields(&self, db: &impl HirDatabase) -> Cancelable<Vec<StructField>> {
|
|
|
|
let res = db
|
|
|
|
.struct_data(self.def_id)?
|
|
|
|
.variant_data
|
|
|
|
.fields()
|
|
|
|
.iter()
|
|
|
|
.map(|it| StructField {
|
|
|
|
struct_: self.clone(),
|
|
|
|
name: it.name.clone(),
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
Ok(res)
|
2019-01-08 06:23:56 -06:00
|
|
|
}
|
2019-01-07 17:30:49 -06:00
|
|
|
|
|
|
|
pub fn source(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
2019-01-11 10:59:06 -06:00
|
|
|
) -> Cancelable<(HirFileId, TreeArc<ast::StructDef>)> {
|
2019-01-11 11:43:10 -06:00
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
2019-01-07 17:30:49 -06:00
|
|
|
}
|
2019-01-08 06:22:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Enum {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Enum {
|
2019-01-08 09:01:19 -06:00
|
|
|
pub(crate) fn new(def_id: DefId) -> Self {
|
|
|
|
Enum { def_id }
|
|
|
|
}
|
|
|
|
|
2019-01-08 06:22:57 -06:00
|
|
|
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())
|
|
|
|
}
|
|
|
|
|
2019-01-09 19:07:42 -06:00
|
|
|
pub fn variants(&self, db: &impl HirDatabase) -> Cancelable<Vec<(Name, EnumVariant)>> {
|
2019-01-08 06:22:57 -06:00
|
|
|
Ok(db.enum_data(self.def_id)?.variants.clone())
|
2019-01-08 06:19:37 -06:00
|
|
|
}
|
2019-01-07 17:30:49 -06:00
|
|
|
|
2019-01-11 10:59:06 -06:00
|
|
|
pub fn source(&self, db: &impl HirDatabase) -> Cancelable<(HirFileId, TreeArc<ast::EnumDef>)> {
|
2019-01-11 11:43:10 -06:00
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
2019-01-07 17:30:49 -06:00
|
|
|
}
|
2019-01-08 06:19:37 -06:00
|
|
|
}
|
2019-01-08 11:11:13 -06:00
|
|
|
|
2019-01-08 09:01:19 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EnumVariant {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EnumVariant {
|
|
|
|
pub(crate) fn new(def_id: DefId) -> Self {
|
|
|
|
EnumVariant { def_id }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn def_id(&self) -> DefId {
|
|
|
|
self.def_id
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parent_enum(&self, db: &impl HirDatabase) -> Cancelable<Enum> {
|
|
|
|
Ok(db.enum_variant_data(self.def_id)?.parent_enum.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn name(&self, db: &impl HirDatabase) -> Cancelable<Option<Name>> {
|
|
|
|
Ok(db.enum_variant_data(self.def_id)?.name.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn variant_data(&self, db: &impl HirDatabase) -> Cancelable<Arc<VariantData>> {
|
|
|
|
Ok(db.enum_variant_data(self.def_id)?.variant_data.clone())
|
|
|
|
}
|
2019-01-07 17:30:49 -06:00
|
|
|
|
|
|
|
pub fn source(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
2019-01-11 10:59:06 -06:00
|
|
|
) -> Cancelable<(HirFileId, TreeArc<ast::EnumVariant>)> {
|
2019-01-11 11:43:10 -06:00
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
2019-01-07 17:30:49 -06:00
|
|
|
}
|
2019-01-08 09:01:19 -06:00
|
|
|
}
|
|
|
|
|
2019-01-08 11:11:13 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Function {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
2019-01-11 05:00:54 -06:00
|
|
|
pub use crate::code_model_impl::function::ScopeEntryWithSyntax;
|
|
|
|
|
2019-01-08 11:11:13 -06:00
|
|
|
/// The declared signature of a function.
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct FnSignature {
|
2019-01-07 17:30:49 -06:00
|
|
|
pub(crate) name: Name,
|
2019-01-08 11:11:13 -06:00
|
|
|
pub(crate) args: Vec<TypeRef>,
|
|
|
|
pub(crate) ret_type: TypeRef,
|
2019-01-07 06:44:54 -06:00
|
|
|
/// True if the first arg is `self`. This is relevant to decide whether this
|
|
|
|
/// can be called as a method.
|
|
|
|
pub(crate) has_self_arg: bool,
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FnSignature {
|
2019-01-07 17:30:49 -06:00
|
|
|
pub fn name(&self) -> &Name {
|
|
|
|
&self.name
|
|
|
|
}
|
|
|
|
|
2019-01-08 11:11:13 -06:00
|
|
|
pub fn args(&self) -> &[TypeRef] {
|
|
|
|
&self.args
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ret_type(&self) -> &TypeRef {
|
|
|
|
&self.ret_type
|
|
|
|
}
|
2019-01-07 06:44:54 -06:00
|
|
|
|
|
|
|
/// True if the first arg is `self`. This is relevant to decide whether this
|
|
|
|
/// can be called as a method.
|
|
|
|
pub fn has_self_arg(&self) -> bool {
|
|
|
|
self.has_self_arg
|
|
|
|
}
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Function {
|
|
|
|
pub fn def_id(&self) -> DefId {
|
|
|
|
self.def_id
|
|
|
|
}
|
|
|
|
|
2019-01-11 10:59:06 -06:00
|
|
|
pub fn source(&self, db: &impl HirDatabase) -> Cancelable<(HirFileId, TreeArc<ast::FnDef>)> {
|
2019-01-11 11:43:10 -06:00
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn body_syntax_mapping(&self, db: &impl HirDatabase) -> Cancelable<Arc<BodySyntaxMapping>> {
|
|
|
|
db.body_syntax_mapping(self.def_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn scopes(&self, db: &impl HirDatabase) -> Cancelable<ScopesWithSyntaxMapping> {
|
|
|
|
let scopes = db.fn_scopes(self.def_id)?;
|
|
|
|
let syntax_mapping = db.body_syntax_mapping(self.def_id)?;
|
|
|
|
Ok(ScopesWithSyntaxMapping {
|
|
|
|
scopes,
|
|
|
|
syntax_mapping,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn signature(&self, db: &impl HirDatabase) -> Arc<FnSignature> {
|
|
|
|
db.fn_signature(self.def_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn infer(&self, db: &impl HirDatabase) -> Cancelable<Arc<InferenceResult>> {
|
|
|
|
db.infer(self.def_id)
|
|
|
|
}
|
|
|
|
}
|
2019-01-11 11:28:10 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Const {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
impl Const {
|
|
|
|
pub(crate) fn new(def_id: DefId) -> Const {
|
|
|
|
Const { def_id }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn source(&self, db: &impl HirDatabase) -> Cancelable<(HirFileId, TreeArc<ast::ConstDef>)> {
|
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-11 11:28:10 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Static {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
impl Static {
|
|
|
|
pub(crate) fn new(def_id: DefId) -> Static {
|
|
|
|
Static { def_id }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn source(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
) -> Cancelable<(HirFileId, TreeArc<ast::StaticDef>)> {
|
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-11 11:28:10 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Trait {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
impl Trait {
|
|
|
|
pub(crate) fn new(def_id: DefId) -> Trait {
|
|
|
|
Trait { def_id }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn source(&self, db: &impl HirDatabase) -> Cancelable<(HirFileId, TreeArc<ast::TraitDef>)> {
|
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-11 11:28:10 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Type {
|
|
|
|
pub(crate) def_id: DefId,
|
|
|
|
}
|
2019-01-11 12:02:12 -06:00
|
|
|
|
|
|
|
impl Type {
|
|
|
|
pub(crate) fn new(def_id: DefId) -> Type {
|
|
|
|
Type { def_id }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn source(&self, db: &impl HirDatabase) -> Cancelable<(HirFileId, TreeArc<ast::TypeDef>)> {
|
|
|
|
Ok(def_id_to_ast(db, self.def_id))
|
|
|
|
}
|
|
|
|
}
|