2019-11-22 14:33:53 +00:00
|
|
|
//! Contains basic data about various HIR declarations.
|
|
|
|
|
2019-11-22 14:32:10 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2022-01-06 11:30:16 +00:00
|
|
|
use hir_expand::{name::Name, AstId, ExpandResult, InFile};
|
2020-08-12 16:26:51 +00:00
|
|
|
use syntax::ast;
|
2019-11-22 14:32:10 +00:00
|
|
|
|
|
|
|
use crate::{
|
2020-04-07 15:58:05 +00:00
|
|
|
attr::Attrs,
|
2022-01-06 11:30:16 +00:00
|
|
|
body::{Expander, Mark},
|
2019-11-23 11:44:43 +00:00
|
|
|
db::DefDatabase,
|
2021-04-01 17:46:43 +00:00
|
|
|
intern::Interned,
|
2021-07-19 12:53:18 +00:00
|
|
|
item_tree::{self, AssocItem, FnFlags, ItemTreeId, ModItem, Param},
|
2022-01-06 11:30:16 +00:00
|
|
|
nameres::attr_resolution::ResolvedAttr,
|
2021-03-24 16:00:29 +00:00
|
|
|
type_ref::{TraitRef, TypeBound, TypeRef},
|
2020-03-07 22:03:56 +00:00
|
|
|
visibility::RawVisibility,
|
2022-01-06 11:30:16 +00:00
|
|
|
AssocItemId, AstIdWithPath, ConstId, ConstLoc, FunctionId, FunctionLoc, HasModule, ImplId,
|
|
|
|
Intern, ItemContainerId, Lookup, ModuleId, StaticId, TraitId, TypeAliasId, TypeAliasLoc,
|
2019-11-22 14:32:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct FunctionData {
|
|
|
|
pub name: Name,
|
2021-12-20 14:24:37 +00:00
|
|
|
pub params: Vec<(Option<Name>, Interned<TypeRef>)>,
|
2021-04-01 17:46:43 +00:00
|
|
|
pub ret_type: Interned<TypeRef>,
|
2021-05-29 16:16:20 +00:00
|
|
|
pub async_ret_type: Option<Interned<TypeRef>>,
|
2020-04-07 15:58:05 +00:00
|
|
|
pub attrs: Attrs,
|
2020-03-07 22:03:56 +00:00
|
|
|
pub visibility: RawVisibility,
|
2021-04-03 18:58:42 +00:00
|
|
|
pub abi: Option<Interned<str>>,
|
2021-12-17 17:39:51 +00:00
|
|
|
pub legacy_const_generics_indices: Vec<u32>,
|
2021-04-03 18:58:42 +00:00
|
|
|
flags: FnFlags,
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FunctionData {
|
2020-07-07 08:14:48 +00:00
|
|
|
pub(crate) fn fn_data_query(db: &dyn DefDatabase, func: FunctionId) -> Arc<FunctionData> {
|
2020-03-14 19:48:36 +00:00
|
|
|
let loc = func.lookup(db);
|
2020-12-17 23:23:46 +00:00
|
|
|
let krate = loc.container.module(db).krate;
|
2021-03-17 17:28:00 +00:00
|
|
|
let crate_graph = db.crate_graph();
|
|
|
|
let cfg_options = &crate_graph[krate].cfg_options;
|
2021-03-12 23:34:01 +00:00
|
|
|
let item_tree = loc.id.item_tree(db);
|
2020-06-22 14:41:10 +00:00
|
|
|
let func = &item_tree[loc.id.value];
|
2021-03-17 17:28:00 +00:00
|
|
|
|
|
|
|
let enabled_params = func
|
2021-03-17 15:29:57 +00:00
|
|
|
.params
|
|
|
|
.clone()
|
2021-03-17 17:28:00 +00:00
|
|
|
.filter(|¶m| item_tree.attrs(db, krate, param.into()).is_cfg_enabled(cfg_options));
|
|
|
|
|
|
|
|
// If last cfg-enabled param is a `...` param, it's a varargs function.
|
|
|
|
let is_varargs = enabled_params
|
|
|
|
.clone()
|
|
|
|
.next_back()
|
2021-03-17 15:29:57 +00:00
|
|
|
.map_or(false, |param| matches!(item_tree[param], Param::Varargs));
|
2020-06-22 14:41:10 +00:00
|
|
|
|
2021-04-03 18:58:42 +00:00
|
|
|
let mut flags = func.flags;
|
|
|
|
if is_varargs {
|
2021-04-04 09:06:01 +00:00
|
|
|
flags.bits |= FnFlags::IS_VARARGS;
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 16:31:26 +00:00
|
|
|
if matches!(loc.container, ItemContainerId::ExternBlockId(_)) {
|
|
|
|
flags.bits |= FnFlags::IS_IN_EXTERN_BLOCK;
|
|
|
|
}
|
|
|
|
|
2021-12-17 17:39:51 +00:00
|
|
|
let legacy_const_generics_indices = item_tree
|
|
|
|
.attrs(db, krate, ModItem::from(loc.id.value).into())
|
|
|
|
.by_key("rustc_legacy_const_generics")
|
|
|
|
.tt_values()
|
|
|
|
.next()
|
|
|
|
.map(|arg| parse_rustc_legacy_const_generics(arg))
|
|
|
|
.unwrap_or_default();
|
|
|
|
|
2020-06-22 14:41:10 +00:00
|
|
|
Arc::new(FunctionData {
|
|
|
|
name: func.name.clone(),
|
2021-03-17 17:28:00 +00:00
|
|
|
params: enabled_params
|
2021-03-17 15:29:57 +00:00
|
|
|
.clone()
|
|
|
|
.filter_map(|id| match &item_tree[id] {
|
2021-12-20 14:24:37 +00:00
|
|
|
Param::Normal(name, ty) => Some((name.clone(), ty.clone())),
|
2021-03-17 15:29:57 +00:00
|
|
|
Param::Varargs => None,
|
|
|
|
})
|
|
|
|
.collect(),
|
2021-04-01 17:46:43 +00:00
|
|
|
ret_type: func.ret_type.clone(),
|
2021-05-29 16:16:20 +00:00
|
|
|
async_ret_type: func.async_ret_type.clone(),
|
2021-02-05 15:57:26 +00:00
|
|
|
attrs: item_tree.attrs(db, krate, ModItem::from(loc.id.value).into()),
|
2020-06-24 13:36:18 +00:00
|
|
|
visibility: item_tree[func.visibility].clone(),
|
2021-04-03 18:58:42 +00:00
|
|
|
abi: func.abi.clone(),
|
2021-12-17 17:39:51 +00:00
|
|
|
legacy_const_generics_indices,
|
2021-04-03 18:58:42 +00:00
|
|
|
flags,
|
2020-06-22 14:41:10 +00:00
|
|
|
})
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
2021-04-03 18:58:42 +00:00
|
|
|
|
|
|
|
pub fn has_body(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::HAS_BODY != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// True if the first param is `self`. This is relevant to decide whether this
|
|
|
|
/// can be called as a method.
|
|
|
|
pub fn has_self_param(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::HAS_SELF_PARAM != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_default(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::IS_DEFAULT != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_const(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::IS_CONST != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_async(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::IS_ASYNC != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_unsafe(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::IS_UNSAFE != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_in_extern_block(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::IS_IN_EXTERN_BLOCK != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_varargs(&self) -> bool {
|
2021-04-04 09:06:01 +00:00
|
|
|
self.flags.bits & FnFlags::IS_VARARGS != 0
|
2021-04-03 18:58:42 +00:00
|
|
|
}
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 17:39:51 +00:00
|
|
|
fn parse_rustc_legacy_const_generics(tt: &tt::Subtree) -> Vec<u32> {
|
|
|
|
let mut indices = Vec::new();
|
|
|
|
for args in tt.token_trees.chunks(2) {
|
|
|
|
match &args[0] {
|
|
|
|
tt::TokenTree::Leaf(tt::Leaf::Literal(lit)) => match lit.text.parse() {
|
|
|
|
Ok(index) => indices.push(index),
|
|
|
|
Err(_) => break,
|
|
|
|
},
|
|
|
|
_ => break,
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(comma) = args.get(1) {
|
|
|
|
match comma {
|
|
|
|
tt::TokenTree::Leaf(tt::Leaf::Punct(punct)) if punct.char == ',' => {}
|
|
|
|
_ => break,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
indices
|
|
|
|
}
|
|
|
|
|
2019-11-22 14:32:10 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct TypeAliasData {
|
|
|
|
pub name: Name,
|
2021-04-01 17:46:43 +00:00
|
|
|
pub type_ref: Option<Interned<TypeRef>>,
|
2020-03-08 14:11:57 +00:00
|
|
|
pub visibility: RawVisibility,
|
2020-09-16 12:57:14 +00:00
|
|
|
pub is_extern: bool,
|
2020-06-22 14:41:10 +00:00
|
|
|
/// Bounds restricting the type alias itself (eg. `type Ty: Bound;` in a trait or impl).
|
2021-05-24 13:13:23 +00:00
|
|
|
pub bounds: Vec<Interned<TypeBound>>,
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeAliasData {
|
|
|
|
pub(crate) fn type_alias_data_query(
|
2020-03-13 15:05:46 +00:00
|
|
|
db: &dyn DefDatabase,
|
2019-11-22 14:32:10 +00:00
|
|
|
typ: TypeAliasId,
|
|
|
|
) -> Arc<TypeAliasData> {
|
2020-03-14 19:48:36 +00:00
|
|
|
let loc = typ.lookup(db);
|
2021-03-12 23:34:01 +00:00
|
|
|
let item_tree = loc.id.item_tree(db);
|
2020-06-22 14:41:10 +00:00
|
|
|
let typ = &item_tree[loc.id.value];
|
|
|
|
|
|
|
|
Arc::new(TypeAliasData {
|
|
|
|
name: typ.name.clone(),
|
2021-04-01 17:46:43 +00:00
|
|
|
type_ref: typ.type_ref.clone(),
|
2020-06-24 13:36:18 +00:00
|
|
|
visibility: item_tree[typ.visibility].clone(),
|
2021-12-07 16:31:26 +00:00
|
|
|
is_extern: matches!(loc.container, ItemContainerId::ExternBlockId(_)),
|
2020-06-24 14:07:02 +00:00
|
|
|
bounds: typ.bounds.to_vec(),
|
2020-06-22 14:41:10 +00:00
|
|
|
})
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct TraitData {
|
2019-11-27 20:22:20 +00:00
|
|
|
pub name: Name,
|
2019-11-26 14:12:16 +00:00
|
|
|
pub items: Vec<(Name, AssocItemId)>,
|
2021-03-15 16:05:03 +00:00
|
|
|
pub is_auto: bool,
|
|
|
|
pub is_unsafe: bool,
|
|
|
|
pub visibility: RawVisibility,
|
2021-06-03 11:51:43 +00:00
|
|
|
/// Whether the trait has `#[rust_skip_array_during_method_dispatch]`. `hir_ty` will ignore
|
|
|
|
/// method calls to this trait's methods when the receiver is an array and the crate edition is
|
|
|
|
/// 2015 or 2018.
|
2021-06-01 19:33:14 +00:00
|
|
|
pub skip_array_during_method_dispatch: bool,
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TraitData {
|
2020-03-13 15:05:46 +00:00
|
|
|
pub(crate) fn trait_data_query(db: &dyn DefDatabase, tr: TraitId) -> Arc<TraitData> {
|
2020-05-03 14:08:39 +00:00
|
|
|
let tr_loc = tr.lookup(db);
|
2021-03-12 23:34:01 +00:00
|
|
|
let item_tree = tr_loc.id.item_tree(db);
|
2020-06-22 13:07:06 +00:00
|
|
|
let tr_def = &item_tree[tr_loc.id.value];
|
2021-09-05 17:19:34 +00:00
|
|
|
let _cx = stdx::panic_context::enter(format!(
|
|
|
|
"trait_data_query({:?} -> {:?} -> {:?})",
|
|
|
|
tr, tr_loc, tr_def
|
|
|
|
));
|
2020-06-22 13:07:06 +00:00
|
|
|
let name = tr_def.name.clone();
|
2021-03-15 16:05:03 +00:00
|
|
|
let is_auto = tr_def.is_auto;
|
|
|
|
let is_unsafe = tr_def.is_unsafe;
|
2021-03-09 18:09:02 +00:00
|
|
|
let module_id = tr_loc.container;
|
2021-12-07 16:31:26 +00:00
|
|
|
let container = ItemContainerId::TraitId(tr);
|
2021-03-15 16:05:03 +00:00
|
|
|
let visibility = item_tree[tr_def.visibility].clone();
|
2021-03-12 23:34:01 +00:00
|
|
|
let mut expander = Expander::new(db, tr_loc.id.file_id(), module_id);
|
2021-06-01 19:33:14 +00:00
|
|
|
let skip_array_during_method_dispatch = item_tree
|
|
|
|
.attrs(db, tr_loc.container.krate(), ModItem::from(tr_loc.id.value).into())
|
|
|
|
.by_key("rustc_skip_array_during_method_dispatch")
|
|
|
|
.exists();
|
2020-06-22 13:07:06 +00:00
|
|
|
|
|
|
|
let items = collect_items(
|
|
|
|
db,
|
|
|
|
module_id,
|
|
|
|
&mut expander,
|
|
|
|
tr_def.items.iter().copied(),
|
2021-07-19 12:53:18 +00:00
|
|
|
tr_loc.id.tree_id(),
|
2020-06-22 13:07:06 +00:00
|
|
|
container,
|
|
|
|
100,
|
|
|
|
);
|
|
|
|
|
2021-06-01 19:33:14 +00:00
|
|
|
Arc::new(TraitData {
|
|
|
|
name,
|
|
|
|
items,
|
|
|
|
is_auto,
|
|
|
|
is_unsafe,
|
|
|
|
visibility,
|
|
|
|
skip_array_during_method_dispatch,
|
|
|
|
})
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn associated_types(&self) -> impl Iterator<Item = TypeAliasId> + '_ {
|
2019-11-26 14:12:16 +00:00
|
|
|
self.items.iter().filter_map(|(_name, item)| match item {
|
2019-11-22 14:32:10 +00:00
|
|
|
AssocItemId::TypeAliasId(t) => Some(*t),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
}
|
2019-11-26 14:12:16 +00:00
|
|
|
|
|
|
|
pub fn associated_type_by_name(&self, name: &Name) -> Option<TypeAliasId> {
|
|
|
|
self.items.iter().find_map(|(item_name, item)| match item {
|
|
|
|
AssocItemId::TypeAliasId(t) if item_name == name => Some(*t),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
}
|
2021-08-22 15:21:47 +00:00
|
|
|
|
|
|
|
pub fn method_by_name(&self, name: &Name) -> Option<FunctionId> {
|
|
|
|
self.items.iter().find_map(|(item_name, item)| match item {
|
|
|
|
AssocItemId::FunctionId(t) if item_name == name => Some(*t),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
}
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct ImplData {
|
2021-04-01 17:46:43 +00:00
|
|
|
pub target_trait: Option<Interned<TraitRef>>,
|
|
|
|
pub self_ty: Interned<TypeRef>,
|
2019-11-22 14:33:53 +00:00
|
|
|
pub items: Vec<AssocItemId>,
|
|
|
|
pub is_negative: bool,
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ImplData {
|
2020-03-13 15:05:46 +00:00
|
|
|
pub(crate) fn impl_data_query(db: &dyn DefDatabase, id: ImplId) -> Arc<ImplData> {
|
2020-08-12 14:32:36 +00:00
|
|
|
let _p = profile::span("impl_data_query");
|
2019-12-20 19:37:03 +00:00
|
|
|
let impl_loc = id.lookup(db);
|
2019-11-22 14:32:10 +00:00
|
|
|
|
2021-03-12 23:34:01 +00:00
|
|
|
let item_tree = impl_loc.id.item_tree(db);
|
2020-06-22 13:07:06 +00:00
|
|
|
let impl_def = &item_tree[impl_loc.id.value];
|
2021-04-01 17:46:43 +00:00
|
|
|
let target_trait = impl_def.target_trait.clone();
|
|
|
|
let self_ty = impl_def.self_ty.clone();
|
2020-06-22 13:07:06 +00:00
|
|
|
let is_negative = impl_def.is_negative;
|
2021-03-09 18:09:02 +00:00
|
|
|
let module_id = impl_loc.container;
|
2021-12-07 16:31:26 +00:00
|
|
|
let container = ItemContainerId::ImplId(id);
|
2021-03-12 23:34:01 +00:00
|
|
|
let mut expander = Expander::new(db, impl_loc.id.file_id(), module_id);
|
2019-11-22 14:32:10 +00:00
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
let items = collect_items(
|
|
|
|
db,
|
|
|
|
module_id,
|
|
|
|
&mut expander,
|
|
|
|
impl_def.items.iter().copied(),
|
2021-07-19 12:53:18 +00:00
|
|
|
impl_loc.id.tree_id(),
|
2020-06-22 13:07:06 +00:00
|
|
|
container,
|
|
|
|
100,
|
|
|
|
);
|
|
|
|
let items = items.into_iter().map(|(_, item)| item).collect();
|
2019-11-22 14:32:10 +00:00
|
|
|
|
2021-03-29 15:46:33 +00:00
|
|
|
Arc::new(ImplData { target_trait, self_ty, items, is_negative })
|
2019-11-22 14:32:10 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-22 15:46:39 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct ConstData {
|
2021-12-08 14:44:52 +00:00
|
|
|
/// `None` for `const _: () = ();`
|
2019-11-22 15:46:39 +00:00
|
|
|
pub name: Option<Name>,
|
2021-04-01 17:46:43 +00:00
|
|
|
pub type_ref: Interned<TypeRef>,
|
2020-03-08 14:11:57 +00:00
|
|
|
pub visibility: RawVisibility,
|
2019-11-22 15:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ConstData {
|
2020-03-13 15:05:46 +00:00
|
|
|
pub(crate) fn const_data_query(db: &dyn DefDatabase, konst: ConstId) -> Arc<ConstData> {
|
2020-03-14 19:48:36 +00:00
|
|
|
let loc = konst.lookup(db);
|
2021-03-12 23:34:01 +00:00
|
|
|
let item_tree = loc.id.item_tree(db);
|
2020-06-22 14:41:10 +00:00
|
|
|
let konst = &item_tree[loc.id.value];
|
2019-11-22 15:46:39 +00:00
|
|
|
|
2020-06-22 14:41:10 +00:00
|
|
|
Arc::new(ConstData {
|
|
|
|
name: konst.name.clone(),
|
2021-04-01 17:46:43 +00:00
|
|
|
type_ref: konst.type_ref.clone(),
|
2020-06-24 13:36:18 +00:00
|
|
|
visibility: item_tree[konst.visibility].clone(),
|
2020-06-22 14:41:10 +00:00
|
|
|
})
|
2019-11-24 14:34:36 +00:00
|
|
|
}
|
2019-11-22 15:46:39 +00:00
|
|
|
}
|
2019-12-20 19:37:03 +00:00
|
|
|
|
2020-05-10 15:08:28 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct StaticData {
|
2021-11-10 21:02:50 +00:00
|
|
|
pub name: Name,
|
2021-04-01 17:46:43 +00:00
|
|
|
pub type_ref: Interned<TypeRef>,
|
2020-05-10 15:08:28 +00:00
|
|
|
pub visibility: RawVisibility,
|
|
|
|
pub mutable: bool,
|
2020-12-10 14:45:01 +00:00
|
|
|
pub is_extern: bool,
|
2020-05-10 15:08:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StaticData {
|
|
|
|
pub(crate) fn static_data_query(db: &dyn DefDatabase, konst: StaticId) -> Arc<StaticData> {
|
2021-12-07 16:31:26 +00:00
|
|
|
let loc = konst.lookup(db);
|
|
|
|
let item_tree = loc.id.item_tree(db);
|
|
|
|
let statik = &item_tree[loc.id.value];
|
2020-06-22 14:41:10 +00:00
|
|
|
|
|
|
|
Arc::new(StaticData {
|
2021-11-10 21:02:50 +00:00
|
|
|
name: statik.name.clone(),
|
2021-04-01 17:46:43 +00:00
|
|
|
type_ref: statik.type_ref.clone(),
|
2020-06-24 13:36:18 +00:00
|
|
|
visibility: item_tree[statik.visibility].clone(),
|
2020-06-22 14:41:10 +00:00
|
|
|
mutable: statik.mutable,
|
2021-12-07 16:31:26 +00:00
|
|
|
is_extern: matches!(loc.container, ItemContainerId::ExternBlockId(_)),
|
2020-06-22 14:41:10 +00:00
|
|
|
})
|
2020-05-10 15:08:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
fn collect_items(
|
2020-03-13 15:05:46 +00:00
|
|
|
db: &dyn DefDatabase,
|
2020-06-22 13:07:06 +00:00
|
|
|
module: ModuleId,
|
2019-12-20 21:02:31 +00:00
|
|
|
expander: &mut Expander,
|
2020-06-22 13:07:06 +00:00
|
|
|
assoc_items: impl Iterator<Item = AssocItem>,
|
2021-07-19 12:53:18 +00:00
|
|
|
tree_id: item_tree::TreeId,
|
2021-12-07 16:31:26 +00:00
|
|
|
container: ItemContainerId,
|
2019-12-20 21:16:29 +00:00
|
|
|
limit: usize,
|
2020-05-03 14:08:39 +00:00
|
|
|
) -> Vec<(Name, AssocItemId)> {
|
2019-12-20 21:16:29 +00:00
|
|
|
if limit == 0 {
|
|
|
|
return Vec::new();
|
|
|
|
}
|
|
|
|
|
2021-07-19 12:53:18 +00:00
|
|
|
let item_tree = tree_id.item_tree(db);
|
2021-03-18 00:41:38 +00:00
|
|
|
let crate_graph = db.crate_graph();
|
|
|
|
let cfg_options = &crate_graph[module.krate].cfg_options;
|
2022-01-06 11:30:16 +00:00
|
|
|
let def_map = module.def_map(db);
|
2019-12-20 21:02:31 +00:00
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
let mut items = Vec::new();
|
2022-01-06 11:30:16 +00:00
|
|
|
'items: for item in assoc_items {
|
2021-03-18 00:28:40 +00:00
|
|
|
let attrs = item_tree.attrs(db, module.krate, ModItem::from(item).into());
|
2021-03-18 00:41:38 +00:00
|
|
|
if !attrs.is_cfg_enabled(cfg_options) {
|
2021-03-18 00:28:40 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-01-06 11:30:16 +00:00
|
|
|
for attr in &*attrs {
|
|
|
|
let ast_id = AstIdWithPath {
|
|
|
|
path: (*attr.path).clone(),
|
|
|
|
ast_id: AstId::new(expander.current_file_id(), item.ast_id(&item_tree).upcast()),
|
|
|
|
};
|
|
|
|
if let Ok(ResolvedAttr::Macro(call_id)) =
|
|
|
|
def_map.resolve_attr_macro(db, module.local_id, ast_id, attr)
|
|
|
|
{
|
|
|
|
let res = expander.enter_expand_id(db, call_id);
|
|
|
|
items.extend(collect_macro_items(db, module, expander, container, limit, res));
|
|
|
|
continue 'items;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
match item {
|
|
|
|
AssocItem::Function(id) => {
|
|
|
|
let item = &item_tree[id];
|
2021-07-19 12:53:18 +00:00
|
|
|
let def = FunctionLoc { container, id: ItemTreeId::new(tree_id, id) }.intern(db);
|
2020-06-22 13:07:06 +00:00
|
|
|
items.push((item.name.clone(), def.into()));
|
2019-12-20 19:37:03 +00:00
|
|
|
}
|
2020-06-22 13:07:06 +00:00
|
|
|
AssocItem::Const(id) => {
|
|
|
|
let item = &item_tree[id];
|
2020-06-23 16:31:14 +00:00
|
|
|
let name = match item.name.clone() {
|
|
|
|
Some(name) => name,
|
|
|
|
None => continue,
|
2020-06-22 13:07:06 +00:00
|
|
|
};
|
2021-07-19 12:53:18 +00:00
|
|
|
let def = ConstLoc { container, id: ItemTreeId::new(tree_id, id) }.intern(db);
|
2020-06-22 13:07:06 +00:00
|
|
|
items.push((name, def.into()));
|
2019-12-20 19:37:03 +00:00
|
|
|
}
|
2020-06-22 13:07:06 +00:00
|
|
|
AssocItem::TypeAlias(id) => {
|
|
|
|
let item = &item_tree[id];
|
2021-07-19 12:53:18 +00:00
|
|
|
let def = TypeAliasLoc { container, id: ItemTreeId::new(tree_id, id) }.intern(db);
|
2020-06-22 13:07:06 +00:00
|
|
|
items.push((item.name.clone(), def.into()));
|
2019-12-20 19:37:03 +00:00
|
|
|
}
|
2020-06-22 13:07:06 +00:00
|
|
|
AssocItem::MacroCall(call) => {
|
|
|
|
let call = &item_tree[call];
|
2021-07-19 12:53:18 +00:00
|
|
|
let ast_id_map = db.ast_id_map(tree_id.file_id());
|
|
|
|
let root = db.parse_or_expand(tree_id.file_id()).unwrap();
|
2020-06-22 13:07:06 +00:00
|
|
|
let call = ast_id_map.get(call.ast_id).to_node(&root);
|
2021-09-05 18:42:22 +00:00
|
|
|
let _cx = stdx::panic_context::enter(format!("collect_items MacroCall: {}", call));
|
2021-03-16 07:46:57 +00:00
|
|
|
let res = expander.enter_expand(db, call);
|
|
|
|
|
|
|
|
if let Ok(res) = res {
|
2022-01-06 11:30:16 +00:00
|
|
|
items.extend(collect_macro_items(db, module, expander, container, limit, res));
|
2020-06-22 13:07:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
items
|
2019-12-20 19:37:03 +00:00
|
|
|
}
|
2022-01-06 11:30:16 +00:00
|
|
|
|
|
|
|
fn collect_macro_items(
|
|
|
|
db: &dyn DefDatabase,
|
|
|
|
module: ModuleId,
|
|
|
|
expander: &mut Expander,
|
|
|
|
container: ItemContainerId,
|
|
|
|
limit: usize,
|
|
|
|
res: ExpandResult<Option<(Mark, ast::MacroItems)>>,
|
|
|
|
) -> Vec<(Name, AssocItemId)> {
|
|
|
|
if let Some((mark, mac)) = res.value {
|
|
|
|
let src: InFile<ast::MacroItems> = expander.to_source(mac);
|
|
|
|
let tree_id = item_tree::TreeId::new(src.file_id, None);
|
|
|
|
let item_tree = tree_id.item_tree(db);
|
|
|
|
let iter = item_tree.top_level_items().iter().filter_map(ModItem::as_assoc_item);
|
|
|
|
let items = collect_items(db, module, expander, iter, tree_id, container, limit - 1);
|
|
|
|
|
|
|
|
expander.exit(db, mark);
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vec::new()
|
|
|
|
}
|