2020-08-25 05:57:15 -05:00
|
|
|
//! Attributes & documentation for hir types.
|
2020-08-25 05:56:01 -05:00
|
|
|
use hir_def::{
|
2020-12-07 11:49:03 -06:00
|
|
|
attr::{Attrs, Documentation},
|
|
|
|
path::ModPath,
|
2021-01-19 09:43:06 -06:00
|
|
|
per_ns::PerNs,
|
2020-12-07 11:49:03 -06:00
|
|
|
resolver::HasResolver,
|
2021-01-01 17:42:07 -06:00
|
|
|
AttrDefId, GenericParamId, ModuleDefId,
|
2020-08-25 05:56:01 -05:00
|
|
|
};
|
2020-08-26 11:56:41 -05:00
|
|
|
use hir_expand::hygiene::Hygiene;
|
2020-08-25 05:56:01 -05:00
|
|
|
use hir_ty::db::HirDatabase;
|
2020-08-26 11:56:41 -05:00
|
|
|
use syntax::ast;
|
2020-08-25 05:56:01 -05:00
|
|
|
|
|
|
|
use crate::{
|
2021-03-16 12:57:47 -05:00
|
|
|
Adt, Const, ConstParam, Enum, Field, Function, GenericParam, Impl, LifetimeParam, MacroDef,
|
|
|
|
Module, ModuleDef, Static, Struct, Trait, TypeAlias, TypeParam, Union, Variant,
|
2020-08-25 05:56:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
pub trait HasAttrs {
|
|
|
|
fn attrs(self, db: &dyn HirDatabase) -> Attrs;
|
|
|
|
fn docs(self, db: &dyn HirDatabase) -> Option<Documentation>;
|
2020-08-26 11:56:41 -05:00
|
|
|
fn resolve_doc_path(
|
|
|
|
self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
link: &str,
|
|
|
|
ns: Option<Namespace>,
|
|
|
|
) -> Option<ModuleDef>;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Hash, Copy, Clone, Debug)]
|
|
|
|
pub enum Namespace {
|
|
|
|
Types,
|
|
|
|
Values,
|
|
|
|
Macros,
|
2020-08-25 05:56:01 -05:00
|
|
|
}
|
|
|
|
|
2020-08-25 07:44:15 -05:00
|
|
|
macro_rules! impl_has_attrs {
|
|
|
|
($(($def:ident, $def_id:ident),)*) => {$(
|
|
|
|
impl HasAttrs for $def {
|
|
|
|
fn attrs(self, db: &dyn HirDatabase) -> Attrs {
|
|
|
|
let def = AttrDefId::$def_id(self.into());
|
|
|
|
db.attrs(def)
|
|
|
|
}
|
|
|
|
fn docs(self, db: &dyn HirDatabase) -> Option<Documentation> {
|
|
|
|
let def = AttrDefId::$def_id(self.into());
|
2020-12-07 11:06:46 -06:00
|
|
|
db.attrs(def).docs()
|
2020-08-25 07:44:15 -05:00
|
|
|
}
|
2020-08-26 11:56:41 -05:00
|
|
|
fn resolve_doc_path(self, db: &dyn HirDatabase, link: &str, ns: Option<Namespace>) -> Option<ModuleDef> {
|
|
|
|
let def = AttrDefId::$def_id(self.into());
|
|
|
|
resolve_doc_path(db, def, link, ns).map(ModuleDef::from)
|
|
|
|
}
|
2020-08-25 07:44:15 -05:00
|
|
|
}
|
|
|
|
)*};
|
2020-08-25 05:56:01 -05:00
|
|
|
}
|
|
|
|
|
2020-08-25 07:44:15 -05:00
|
|
|
impl_has_attrs![
|
|
|
|
(Field, FieldId),
|
2020-12-20 01:05:24 -06:00
|
|
|
(Variant, EnumVariantId),
|
2020-08-25 07:44:15 -05:00
|
|
|
(Static, StaticId),
|
|
|
|
(Const, ConstId),
|
|
|
|
(Trait, TraitId),
|
|
|
|
(TypeAlias, TypeAliasId),
|
|
|
|
(MacroDef, MacroDefId),
|
|
|
|
(Function, FunctionId),
|
|
|
|
(Adt, AdtId),
|
|
|
|
(Module, ModuleId),
|
2021-01-01 17:42:07 -06:00
|
|
|
(GenericParam, GenericParamId),
|
2021-03-16 12:57:47 -05:00
|
|
|
(Impl, ImplId),
|
2020-08-25 07:44:15 -05:00
|
|
|
];
|
|
|
|
|
2021-01-02 05:11:46 -06:00
|
|
|
macro_rules! impl_has_attrs_enum {
|
|
|
|
($($variant:ident),* for $enum:ident) => {$(
|
|
|
|
impl HasAttrs for $variant {
|
2020-08-25 07:44:15 -05:00
|
|
|
fn attrs(self, db: &dyn HirDatabase) -> Attrs {
|
2021-01-02 05:11:46 -06:00
|
|
|
$enum::$variant(self).attrs(db)
|
2020-08-25 07:44:15 -05:00
|
|
|
}
|
|
|
|
fn docs(self, db: &dyn HirDatabase) -> Option<Documentation> {
|
2021-01-02 05:11:46 -06:00
|
|
|
$enum::$variant(self).docs(db)
|
2020-08-25 07:44:15 -05:00
|
|
|
}
|
2020-08-26 11:56:41 -05:00
|
|
|
fn resolve_doc_path(self, db: &dyn HirDatabase, link: &str, ns: Option<Namespace>) -> Option<ModuleDef> {
|
2021-01-02 05:11:46 -06:00
|
|
|
$enum::$variant(self).resolve_doc_path(db, link, ns)
|
2020-08-26 11:56:41 -05:00
|
|
|
}
|
2020-08-25 07:44:15 -05:00
|
|
|
}
|
|
|
|
)*};
|
|
|
|
}
|
|
|
|
|
2021-01-02 05:11:46 -06:00
|
|
|
impl_has_attrs_enum![Struct, Union, Enum for Adt];
|
|
|
|
impl_has_attrs_enum![TypeParam, ConstParam, LifetimeParam for GenericParam];
|
2020-08-25 07:44:15 -05:00
|
|
|
|
2020-08-26 11:56:41 -05:00
|
|
|
fn resolve_doc_path(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
def: AttrDefId,
|
|
|
|
link: &str,
|
|
|
|
ns: Option<Namespace>,
|
|
|
|
) -> Option<ModuleDefId> {
|
|
|
|
let resolver = match def {
|
|
|
|
AttrDefId::ModuleId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::FieldId(it) => it.parent.resolver(db.upcast()),
|
|
|
|
AttrDefId::AdtId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::FunctionId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::EnumVariantId(it) => it.parent.resolver(db.upcast()),
|
|
|
|
AttrDefId::StaticId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::ConstId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::TraitId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::TypeAliasId(it) => it.resolver(db.upcast()),
|
|
|
|
AttrDefId::ImplId(it) => it.resolver(db.upcast()),
|
2021-01-01 17:42:07 -06:00
|
|
|
AttrDefId::GenericParamId(it) => match it {
|
|
|
|
GenericParamId::TypeParamId(it) => it.parent,
|
|
|
|
GenericParamId::LifetimeParamId(it) => it.parent,
|
|
|
|
GenericParamId::ConstParamId(it) => it.parent,
|
|
|
|
}
|
|
|
|
.resolver(db.upcast()),
|
2020-08-26 11:56:41 -05:00
|
|
|
AttrDefId::MacroDefId(_) => return None,
|
|
|
|
};
|
|
|
|
let path = ast::Path::parse(link).ok()?;
|
|
|
|
let modpath = ModPath::from_src(path, &Hygiene::new_unhygienic()).unwrap();
|
|
|
|
let resolved = resolver.resolve_module_path_in_items(db.upcast(), &modpath);
|
2021-01-19 09:43:06 -06:00
|
|
|
if resolved == PerNs::none() {
|
|
|
|
if let Some(trait_id) = resolver.resolve_module_path_in_trait_items(db.upcast(), &modpath) {
|
|
|
|
return Some(ModuleDefId::TraitId(trait_id));
|
|
|
|
};
|
|
|
|
}
|
2020-08-26 11:56:41 -05:00
|
|
|
let def = match ns {
|
|
|
|
Some(Namespace::Types) => resolved.take_types()?,
|
|
|
|
Some(Namespace::Values) => resolved.take_values()?,
|
|
|
|
Some(Namespace::Macros) => return None,
|
|
|
|
None => resolved.iter_items().find_map(|it| it.as_module_def_id())?,
|
|
|
|
};
|
2021-03-16 19:27:56 -05:00
|
|
|
Some(def)
|
2020-08-25 05:56:01 -05:00
|
|
|
}
|