rust-analyzer/crates/ra_hir/src/nameres/collector.rs

830 lines
30 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use ra_cfg::CfgOptions;
2019-09-05 17:27:10 +00:00
use ra_db::FileId;
2019-09-20 15:20:43 +00:00
use ra_syntax::{ast, SmolStr};
use rustc_hash::FxHashMap;
use test_utils::tested_by;
use crate::{
attr::Attr,
2019-09-08 06:53:49 +00:00
db::DefDatabase,
ids::{AstItemDef, LocationCtx, MacroCallId, MacroCallLoc, MacroDefId, MacroFileKind},
2019-07-07 21:29:38 +00:00
name::MACRO_RULES,
2019-03-23 17:41:59 +00:00
nameres::{
2019-09-05 17:27:10 +00:00
diagnostics::DefDiagnostic,
mod_resolution::{resolve_submodule, ParentModule},
raw, Crate, CrateDefMap, CrateModuleId, ModuleData, ModuleDef, PerNs, ReachedFixedPoint,
Resolution, ResolveMode,
2019-03-23 17:41:59 +00:00
},
2019-09-12 21:34:52 +00:00
Adt, AstId, Const, Enum, Function, HirFileId, MacroDef, Module, Name, Path, PathKind, Static,
Struct, Trait, TypeAlias, Union,
};
pub(super) fn collect_defs(db: &impl DefDatabase, mut def_map: CrateDefMap) -> CrateDefMap {
// populate external prelude
2019-03-13 13:38:02 +00:00
for dep in def_map.krate.dependencies(db) {
log::debug!("crate dep {:?} -> {:?}", dep.name, dep.krate);
if let Some(module) = dep.krate.root_module(db) {
def_map.extern_prelude.insert(dep.name.clone(), module.into());
}
// look for the prelude
if def_map.prelude.is_none() {
2019-03-14 09:54:03 +00:00
let map = db.crate_def_map(dep.krate);
if map.prelude.is_some() {
def_map.prelude = map.prelude;
}
}
}
let crate_graph = db.crate_graph();
let cfg_options = crate_graph.cfg_options(def_map.krate().crate_id());
let mut collector = DefCollector {
db,
def_map,
glob_imports: FxHashMap::default(),
unresolved_imports: Vec::new(),
unexpanded_macros: Vec::new(),
macro_stack_monitor: MacroStackMonitor::default(),
cfg_options,
};
collector.collect();
2019-03-13 13:38:02 +00:00
collector.finish()
}
#[derive(Default)]
struct MacroStackMonitor {
counts: FxHashMap<MacroDefId, u32>,
/// Mainly use for test
validator: Option<Box<dyn Fn(u32) -> bool>>,
}
impl MacroStackMonitor {
fn increase(&mut self, macro_def_id: MacroDefId) {
*self.counts.entry(macro_def_id).or_default() += 1;
}
fn decrease(&mut self, macro_def_id: MacroDefId) {
*self.counts.entry(macro_def_id).or_default() -= 1;
}
fn is_poison(&self, macro_def_id: MacroDefId) -> bool {
let cur = *self.counts.get(&macro_def_id).unwrap_or(&0);
if let Some(validator) = &self.validator {
validator(cur)
} else {
cur > 100
}
}
}
/// Walks the tree of module recursively
struct DefCollector<'a, DB> {
db: &'a DB,
def_map: CrateDefMap,
2019-03-16 15:57:53 +00:00
glob_imports: FxHashMap<CrateModuleId, Vec<(CrateModuleId, raw::ImportId)>>,
unresolved_imports: Vec<(CrateModuleId, raw::ImportId, raw::ImportData)>,
2019-03-26 15:03:17 +00:00
unexpanded_macros: Vec<(CrateModuleId, AstId<ast::MacroCall>, Path)>,
2019-04-20 15:05:25 +00:00
/// Some macro use `$tt:tt which mean we have to handle the macro perfectly
/// To prevent stack overflow, we add a deep counter here for prevent that.
macro_stack_monitor: MacroStackMonitor,
cfg_options: &'a CfgOptions,
}
impl<DB> DefCollector<'_, DB>
where
DB: DefDatabase,
{
fn collect(&mut self) {
let crate_graph = self.db.crate_graph();
2019-03-13 13:38:02 +00:00
let file_id = crate_graph.crate_root(self.def_map.krate.crate_id());
let raw_items = self.db.raw_items(file_id.into());
let module_id = self.def_map.root;
2019-03-13 13:38:02 +00:00
self.def_map.modules[module_id].definition = Some(file_id);
ModCollector {
def_collector: &mut *self,
2019-09-20 15:20:43 +00:00
attr_path: None,
module_id,
file_id: file_id.into(),
raw_items: &raw_items,
2019-07-29 12:16:58 +00:00
parent_module: None,
}
2019-07-29 12:16:58 +00:00
.collect(raw_items.items());
// main name resolution fixed-point loop.
let mut i = 0;
loop {
self.db.check_canceled();
match (self.resolve_imports(), self.resolve_macros()) {
(ReachedFixedPoint::Yes, ReachedFixedPoint::Yes) => break,
_ => i += 1,
}
if i == 1000 {
log::error!("name resolution is stuck");
break;
}
}
2019-03-14 08:53:40 +00:00
let unresolved_imports = std::mem::replace(&mut self.unresolved_imports, Vec::new());
// show unresolved imports in completion, etc
for (module_id, import, import_data) in unresolved_imports {
self.record_resolved_import(module_id, PerNs::none(), import, &import_data)
2019-03-14 08:53:40 +00:00
}
}
/// Define a macro with `macro_rules`.
///
/// It will define the macro in legacy textual scope, and if it has `#[macro_export]`,
/// then it is also defined in the root module scope.
/// You can `use` or invoke it by `crate::macro_name` anywhere, before or after the definition.
///
/// It is surprising that the macro will never be in the current module scope.
/// These code fails with "unresolved import/macro",
/// ```rust,compile_fail
/// mod m { macro_rules! foo { () => {} } }
/// use m::foo as bar;
/// ```
///
/// ```rust,compile_fail
/// macro_rules! foo { () => {} }
/// self::foo!();
/// crate::foo!();
/// ```
///
/// Well, this code compiles, bacause the plain path `foo` in `use` is searched
/// in the legacy textual scope only.
/// ```rust
/// macro_rules! foo { () => {} }
/// use foo as bar;
/// ```
fn define_macro(
&mut self,
module_id: CrateModuleId,
name: Name,
macro_: MacroDef,
export: bool,
) {
// Textual scoping
self.define_legacy_macro(module_id, name.clone(), macro_);
// Module scoping
// In Rust, `#[macro_export]` macros are unconditionally visible at the
// crate root, even if the parent modules is **not** visible.
if export {
2019-09-25 01:32:01 +00:00
self.update(self.def_map.root, None, &[(name, Resolution::from_macro(macro_))]);
}
2019-09-06 16:55:58 +00:00
}
/// Define a legacy textual scoped macro in module
2019-09-06 16:55:58 +00:00
///
/// We use a map `legacy_macros` to store all legacy textual scoped macros visable per module.
/// It will clone all macros from parent legacy scope, whose definition is prior to
2019-09-06 16:55:58 +00:00
/// the definition of current module.
/// And also, `macro_use` on a module will import all legacy macros visable inside to
/// current legacy scope, with possible shadowing.
fn define_legacy_macro(&mut self, module_id: CrateModuleId, name: Name, macro_: MacroDef) {
2019-09-06 16:55:58 +00:00
// Always shadowing
self.def_map.modules[module_id].scope.legacy_macros.insert(name, macro_);
}
2019-09-05 03:35:13 +00:00
/// Import macros from `#[macro_use] extern crate`.
2019-09-06 16:55:58 +00:00
fn import_macros_from_extern_crate(
&mut self,
current_module_id: CrateModuleId,
import: &raw::ImportData,
) {
2019-09-05 03:35:13 +00:00
log::debug!(
"importing macros from extern crate: {:?} ({:?})",
import,
self.def_map.edition,
);
let res = self.def_map.resolve_name_in_extern_prelude(
&import
.path
.as_ident()
.expect("extern crate should have been desugared to one-element path"),
);
if let Some(ModuleDef::Module(m)) = res.take_types() {
tested_by!(macro_rules_from_other_crates_are_visible_with_macro_use);
self.import_all_macros_exported(current_module_id, m.krate);
2019-09-05 08:20:36 +00:00
}
}
2019-09-05 03:35:13 +00:00
/// Import all exported macros from another crate
///
/// Exported macros are just all macros in the root module scope.
/// Note that it contains not only all `#[macro_export]` macros, but also all aliases
/// created by `use` in the root module, ignoring the visibility of `use`.
fn import_all_macros_exported(&mut self, current_module_id: CrateModuleId, krate: Crate) {
let def_map = self.db.crate_def_map(krate);
for (name, def) in def_map[def_map.root].scope.macros() {
// `macro_use` only bring things into legacy scope.
self.define_legacy_macro(current_module_id, name.clone(), def);
2019-09-05 03:35:13 +00:00
}
}
fn resolve_imports(&mut self) -> ReachedFixedPoint {
let mut imports = std::mem::replace(&mut self.unresolved_imports, Vec::new());
let mut resolved = Vec::new();
imports.retain(|(module_id, import, import_data)| {
let (def, fp) = self.resolve_import(*module_id, import_data);
if fp == ReachedFixedPoint::Yes {
resolved.push((*module_id, def, *import, import_data.clone()))
}
fp == ReachedFixedPoint::No
});
self.unresolved_imports = imports;
// Resolves imports, filling-in module scopes
let result =
if resolved.is_empty() { ReachedFixedPoint::Yes } else { ReachedFixedPoint::No };
for (module_id, def, import, import_data) in resolved {
self.record_resolved_import(module_id, def, import, &import_data)
}
result
}
fn resolve_import(
2019-03-19 15:35:03 +00:00
&self,
2019-03-16 15:57:53 +00:00
module_id: CrateModuleId,
import: &raw::ImportData,
2019-09-13 13:38:59 +00:00
) -> (PerNs, ReachedFixedPoint) {
log::debug!("resolving import: {:?} ({:?})", import, self.def_map.edition);
if import.is_extern_crate {
let res = self.def_map.resolve_name_in_extern_prelude(
&import
.path
.as_ident()
.expect("extern crate should have been desugared to one-element path"),
);
(res, ReachedFixedPoint::Yes)
} else {
2019-05-26 12:10:56 +00:00
let res = self.def_map.resolve_path_fp_with_macro(
self.db,
ResolveMode::Import,
module_id,
&import.path,
);
(res.resolved_def, res.reached_fixedpoint)
}
}
fn record_resolved_import(
&mut self,
2019-03-16 15:57:53 +00:00
module_id: CrateModuleId,
2019-09-13 13:38:59 +00:00
def: PerNs,
import_id: raw::ImportId,
import: &raw::ImportData,
) {
if import.is_glob {
log::debug!("glob import: {:?}", import);
match def.take_types() {
Some(ModuleDef::Module(m)) => {
if import.is_prelude {
tested_by!(std_prelude);
self.def_map.prelude = Some(m);
2019-03-13 13:38:02 +00:00
} else if m.krate != self.def_map.krate {
tested_by!(glob_across_crates);
// glob import from other crate => we can just import everything once
2019-03-14 09:54:03 +00:00
let item_map = self.db.crate_def_map(m.krate);
let scope = &item_map[m.module_id].scope;
// Module scoped macros is included
let items = scope
.items
.iter()
.map(|(name, res)| (name.clone(), res.clone()))
.collect::<Vec<_>>();
2019-05-26 12:10:56 +00:00
self.update(module_id, Some(import_id), &items);
} else {
// glob import from same crate => we do an initial
// import, and then need to propagate any further
// additions
2019-03-13 13:38:02 +00:00
let scope = &self.def_map[m.module_id].scope;
// Module scoped macros is included
let items = scope
.items
.iter()
.map(|(name, res)| (name.clone(), res.clone()))
.collect::<Vec<_>>();
2019-05-26 12:10:56 +00:00
self.update(module_id, Some(import_id), &items);
// record the glob import in case we add further items
self.glob_imports
.entry(m.module_id)
.or_default()
.push((module_id, import_id));
}
}
2019-09-12 21:34:52 +00:00
Some(ModuleDef::Adt(Adt::Enum(e))) => {
tested_by!(glob_enum);
// glob import from enum => just import all the variants
let variants = e.variants(self.db);
let resolutions = variants
.into_iter()
.filter_map(|variant| {
let res = Resolution {
def: PerNs::both(variant.into(), variant.into()),
import: Some(import_id),
};
let name = variant.name(self.db)?;
Some((name, res))
})
.collect::<Vec<_>>();
self.update(module_id, Some(import_id), &resolutions);
}
Some(d) => {
log::debug!("glob import {:?} from non-module/enum {:?}", import, d);
}
None => {
log::debug!("glob import {:?} didn't resolve as type", import);
}
}
} else {
2019-03-16 15:06:45 +00:00
match import.path.segments.last() {
Some(last_segment) => {
let name = import.alias.clone().unwrap_or_else(|| last_segment.name.clone());
log::debug!("resolved import {:?} ({:?}) to {:?}", name, import, def);
2019-03-16 15:06:45 +00:00
// extern crates in the crate root are special-cased to insert entries into the extern prelude: rust-lang/rust#54658
if import.is_extern_crate && module_id == self.def_map.root {
if let Some(def) = def.take_types() {
2019-03-16 15:06:45 +00:00
self.def_map.extern_prelude.insert(name.clone(), def);
}
}
2019-05-26 12:10:56 +00:00
let resolution = Resolution { def, import: Some(import_id) };
2019-03-16 15:06:45 +00:00
self.update(module_id, Some(import_id), &[(name, resolution)]);
}
2019-03-16 15:06:45 +00:00
None => tested_by!(bogus_paths),
}
}
}
fn update(
&mut self,
2019-03-16 15:57:53 +00:00
module_id: CrateModuleId,
import: Option<raw::ImportId>,
resolutions: &[(Name, Resolution)],
) {
self.update_recursive(module_id, import, resolutions, 0)
}
fn update_recursive(
&mut self,
2019-03-16 15:57:53 +00:00
module_id: CrateModuleId,
import: Option<raw::ImportId>,
resolutions: &[(Name, Resolution)],
depth: usize,
) {
if depth > 100 {
// prevent stack overflows (but this shouldn't be possible)
panic!("infinite recursion in glob imports!");
}
let module_items = &mut self.def_map.modules[module_id].scope;
let mut changed = false;
for (name, res) in resolutions {
let existing = module_items.items.entry(name.clone()).or_default();
2019-05-26 12:10:56 +00:00
if existing.def.types.is_none() && res.def.types.is_some() {
existing.def.types = res.def.types;
existing.import = import.or(res.import);
changed = true;
}
if existing.def.values.is_none() && res.def.values.is_some() {
existing.def.values = res.def.values;
existing.import = import.or(res.import);
changed = true;
}
if existing.def.macros.is_none() && res.def.macros.is_some() {
existing.def.macros = res.def.macros;
existing.import = import.or(res.import);
changed = true;
}
if existing.def.is_none()
&& res.def.is_none()
&& existing.import.is_none()
&& res.import.is_some()
{
existing.import = res.import;
2019-03-14 10:14:54 +00:00
}
}
2019-05-26 12:10:56 +00:00
if !changed {
return;
}
let glob_imports = self
.glob_imports
.get(&module_id)
.into_iter()
.flat_map(|v| v.iter())
.cloned()
.collect::<Vec<_>>();
for (glob_importing_module, glob_import) in glob_imports {
// We pass the glob import so that the tracked import in those modules is that glob import
self.update_recursive(glob_importing_module, Some(glob_import), resolutions, depth + 1);
}
}
fn resolve_macros(&mut self) -> ReachedFixedPoint {
let mut macros = std::mem::replace(&mut self.unexpanded_macros, Vec::new());
let mut resolved = Vec::new();
2019-03-16 16:40:41 +00:00
let mut res = ReachedFixedPoint::Yes;
2019-03-26 15:03:17 +00:00
macros.retain(|(module_id, ast_id, path)| {
2019-05-26 12:10:56 +00:00
let resolved_res = self.def_map.resolve_path_fp_with_macro(
self.db,
ResolveMode::Other,
*module_id,
path,
);
if let Some(def) = resolved_res.resolved_def.get_macros() {
2019-05-26 12:10:56 +00:00
let call_id = MacroCallLoc { def: def.id, ast_id: *ast_id }.id(self.db);
resolved.push((*module_id, call_id, def.id));
res = ReachedFixedPoint::No;
return false;
}
2019-05-26 12:10:56 +00:00
true
});
self.unexpanded_macros = macros;
for (module_id, macro_call_id, macro_def_id) in resolved {
self.collect_macro_expansion(module_id, macro_call_id, macro_def_id);
}
res
}
fn collect_macro_expansion(
&mut self,
module_id: CrateModuleId,
macro_call_id: MacroCallId,
macro_def_id: MacroDefId,
) {
if self.def_map.poison_macros.contains(&macro_def_id) {
return;
}
self.macro_stack_monitor.increase(macro_def_id);
2019-04-20 15:05:25 +00:00
if !self.macro_stack_monitor.is_poison(macro_def_id) {
2019-05-13 22:12:07 +00:00
let file_id: HirFileId = macro_call_id.as_file(MacroFileKind::Items);
2019-04-20 15:05:25 +00:00
let raw_items = self.db.raw_items(file_id);
2019-07-29 12:16:58 +00:00
ModCollector {
def_collector: &mut *self,
file_id,
2019-09-20 15:20:43 +00:00
attr_path: None,
2019-07-29 12:16:58 +00:00
module_id,
raw_items: &raw_items,
parent_module: None,
}
.collect(raw_items.items());
2019-04-20 15:05:25 +00:00
} else {
log::error!("Too deep macro expansion: {:?}", macro_call_id);
self.def_map.poison_macros.insert(macro_def_id);
2019-04-20 15:05:25 +00:00
}
self.macro_stack_monitor.decrease(macro_def_id);
}
fn finish(self) -> CrateDefMap {
self.def_map
}
}
2019-03-13 13:38:02 +00:00
/// Walks a single module, populating defs, imports and macros
struct ModCollector<'a, D> {
def_collector: D,
2019-03-16 15:57:53 +00:00
module_id: CrateModuleId,
2019-03-13 13:38:02 +00:00
file_id: HirFileId,
2019-09-20 15:20:43 +00:00
attr_path: Option<&'a SmolStr>,
2019-03-13 13:38:02 +00:00
raw_items: &'a raw::RawItems,
parent_module: Option<ParentModule<'a>>,
2019-03-13 13:38:02 +00:00
}
impl<DB> ModCollector<'_, &'_ mut DefCollector<'_, DB>>
where
DB: DefDatabase,
{
2019-07-29 12:16:58 +00:00
fn collect(&mut self, items: &[raw::RawItem]) {
2019-09-05 08:20:36 +00:00
// Prelude module is always considered to be `#[macro_use]`.
if let Some(prelude_module) = self.def_collector.def_map.prelude {
if prelude_module.krate != self.def_collector.def_map.krate {
tested_by!(prelude_is_macro_use);
self.def_collector.import_all_macros_exported(self.module_id, prelude_module.krate);
}
2019-09-05 08:20:36 +00:00
}
// This should be processed eagerly instead of deferred to resolving.
// `#[macro_use] extern crate` is hoisted to imports macros before collecting
// any other items.
for item in items {
if self.is_cfg_enabled(&item.attrs) {
if let raw::RawItemKind::Import(import_id) = item.kind {
let import = self.raw_items[import_id].clone();
if import.is_extern_crate && import.is_macro_use {
self.def_collector.import_macros_from_extern_crate(self.module_id, &import);
}
}
}
}
for item in items {
if self.is_cfg_enabled(&item.attrs) {
match item.kind {
raw::RawItemKind::Module(m) => self.collect_module(&self.raw_items[m]),
raw::RawItemKind::Import(import_id) => self
.def_collector
.unresolved_imports
.push((self.module_id, import_id, self.raw_items[import_id].clone())),
raw::RawItemKind::Def(def) => self.define_def(&self.raw_items[def]),
raw::RawItemKind::Macro(mac) => self.collect_macro(&self.raw_items[mac]),
}
}
}
}
2019-07-29 12:16:58 +00:00
fn collect_module(&mut self, module: &raw::ModuleData) {
match module {
2019-07-13 18:51:20 +00:00
// inline module, just recurse
2019-09-06 16:55:58 +00:00
raw::ModuleData::Definition { name, items, ast_id, attr_path, is_macro_use } => {
2019-03-26 14:25:14 +00:00
let module_id =
self.push_child_module(name.clone(), ast_id.with_file_id(self.file_id), None);
let parent_module = ParentModule { name, attr_path: attr_path.as_ref() };
2019-09-06 16:55:58 +00:00
ModCollector {
def_collector: &mut *self.def_collector,
module_id,
2019-09-20 15:20:43 +00:00
attr_path: attr_path.as_ref(),
file_id: self.file_id,
raw_items: self.raw_items,
parent_module: Some(parent_module),
}
2019-07-29 12:16:58 +00:00
.collect(&*items);
2019-09-06 16:55:58 +00:00
if *is_macro_use {
self.import_all_legacy_macros(module_id);
2019-09-06 16:55:58 +00:00
}
}
2019-07-13 18:51:20 +00:00
// out of line module, resolve, parse and recurse
2019-09-06 16:55:58 +00:00
raw::ModuleData::Declaration { name, ast_id, attr_path, is_macro_use } => {
2019-03-26 14:25:14 +00:00
let ast_id = ast_id.with_file_id(self.file_id);
let is_root = self.def_collector.def_map.modules[self.module_id].parent.is_none();
match resolve_submodule(
self.def_collector.db,
self.file_id,
2019-09-20 15:20:43 +00:00
self.attr_path,
name,
is_root,
attr_path.as_ref(),
2019-09-05 17:27:10 +00:00
self.parent_module,
) {
2019-03-23 15:35:14 +00:00
Ok(file_id) => {
2019-03-26 14:25:14 +00:00
let module_id = self.push_child_module(name.clone(), ast_id, Some(file_id));
let raw_items = self.def_collector.db.raw_items(file_id.into());
2019-03-23 15:35:14 +00:00
ModCollector {
def_collector: &mut *self.def_collector,
module_id,
2019-09-20 15:20:43 +00:00
attr_path: attr_path.as_ref(),
2019-03-23 15:35:14 +00:00
file_id: file_id.into(),
raw_items: &raw_items,
2019-07-29 12:16:58 +00:00
parent_module: None,
2019-03-23 15:35:14 +00:00
}
2019-09-06 16:55:58 +00:00
.collect(raw_items.items());
if *is_macro_use {
self.import_all_legacy_macros(module_id);
2019-09-06 16:55:58 +00:00
}
}
2019-03-23 15:35:14 +00:00
Err(candidate) => self.def_collector.def_map.diagnostics.push(
DefDiagnostic::UnresolvedModule {
module: self.module_id,
2019-03-26 14:25:14 +00:00
declaration: ast_id,
2019-03-23 15:35:14 +00:00
candidate,
},
),
};
}
}
}
2019-03-13 13:38:02 +00:00
fn push_child_module(
&mut self,
name: Name,
2019-03-26 14:25:14 +00:00
declaration: AstId<ast::Module>,
2019-03-13 13:38:02 +00:00
definition: Option<FileId>,
2019-03-16 15:57:53 +00:00
) -> CrateModuleId {
2019-03-13 13:38:02 +00:00
let modules = &mut self.def_collector.def_map.modules;
let res = modules.alloc(ModuleData::default());
modules[res].parent = Some(self.module_id);
modules[res].declaration = Some(declaration);
modules[res].definition = definition;
modules[res].scope.legacy_macros = modules[self.module_id].scope.legacy_macros.clone();
2019-03-14 08:53:40 +00:00
modules[self.module_id].children.insert(name.clone(), res);
let resolution = Resolution {
def: PerNs::types(
Module { krate: self.def_collector.def_map.krate, module_id: res }.into(),
),
import: None,
};
self.def_collector.update(self.module_id, None, &[(name, resolution)]);
res
}
fn define_def(&mut self, def: &raw::DefData) {
2019-03-13 13:38:02 +00:00
let module = Module { krate: self.def_collector.def_map.krate, module_id: self.module_id };
2019-06-03 14:21:08 +00:00
let ctx = LocationCtx::new(self.def_collector.db, module, self.file_id);
2019-03-26 15:27:22 +00:00
macro_rules! def {
($kind:ident, $ast_id:ident) => {
$kind { id: AstItemDef::from_ast_id(ctx, $ast_id) }.into()
};
}
let name = def.name.clone();
2019-09-13 13:38:59 +00:00
let def: PerNs = match def.kind {
2019-03-26 15:27:22 +00:00
raw::DefKind::Function(ast_id) => PerNs::values(def!(Function, ast_id)),
raw::DefKind::Struct(ast_id) => {
let s = def!(Struct, ast_id);
PerNs::both(s, s)
}
2019-05-23 17:18:47 +00:00
raw::DefKind::Union(ast_id) => {
let s = def!(Union, ast_id);
PerNs::both(s, s)
}
2019-03-26 15:27:22 +00:00
raw::DefKind::Enum(ast_id) => PerNs::types(def!(Enum, ast_id)),
raw::DefKind::Const(ast_id) => PerNs::values(def!(Const, ast_id)),
raw::DefKind::Static(ast_id) => PerNs::values(def!(Static, ast_id)),
raw::DefKind::Trait(ast_id) => PerNs::types(def!(Trait, ast_id)),
raw::DefKind::TypeAlias(ast_id) => PerNs::types(def!(TypeAlias, ast_id)),
};
let resolution = Resolution { def, import: None };
self.def_collector.update(self.module_id, None, &[(name, resolution)])
}
fn collect_macro(&mut self, mac: &raw::MacroData) {
// Case 1: macro rules, define a macro in crate-global mutable scope
if is_macro_rules(&mac.path) {
if let Some(name) = &mac.name {
2019-09-26 16:16:55 +00:00
let macro_id = MacroDefId {
ast_id: mac.ast_id.with_file_id(self.file_id),
krate: self.def_collector.def_map.krate,
};
let macro_ = MacroDef { id: macro_id };
self.def_collector.define_macro(self.module_id, name.clone(), macro_, mac.export);
}
return;
}
2019-03-26 15:03:17 +00:00
let ast_id = mac.ast_id.with_file_id(self.file_id);
// Case 2: try to resolve in legacy scope and expand macro_rules, triggering
// recursive item collection.
2019-09-06 16:55:58 +00:00
if let Some(macro_def) = mac.path.as_ident().and_then(|name| {
self.def_collector.def_map[self.module_id].scope.get_legacy_macro(&name)
2019-09-06 16:55:58 +00:00
}) {
let def = macro_def.id;
let macro_call_id = MacroCallLoc { def, ast_id }.id(self.def_collector.db);
self.def_collector.collect_macro_expansion(self.module_id, macro_call_id, def);
return;
}
// Case 3: resolve in module scope, expand during name resolution.
// We rewrite simple path `macro_name` to `self::macro_name` to force resolve in module scope only.
let mut path = mac.path.clone();
if path.is_ident() {
path.kind = PathKind::Self_;
}
self.def_collector.unexpanded_macros.push((self.module_id, ast_id, path));
}
2019-09-06 16:55:58 +00:00
fn import_all_legacy_macros(&mut self, module_id: CrateModuleId) {
let macros = self.def_collector.def_map[module_id].scope.legacy_macros.clone();
2019-09-06 16:55:58 +00:00
for (name, macro_) in macros {
self.def_collector.define_legacy_macro(self.module_id, name.clone(), macro_);
2019-09-06 16:55:58 +00:00
}
}
fn is_cfg_enabled(&self, attrs: &[Attr]) -> bool {
2019-09-30 09:47:17 +00:00
attrs.iter().all(|attr| attr.is_cfg_enabled(&self.def_collector.cfg_options) != Some(false))
}
}
fn is_macro_rules(path: &Path) -> bool {
2019-07-07 21:29:38 +00:00
path.as_ident() == Some(&MACRO_RULES)
}
2019-03-13 13:38:02 +00:00
#[cfg(test)]
mod tests {
use ra_db::SourceDatabase;
use super::*;
2019-09-08 06:53:49 +00:00
use crate::{db::DefDatabase, mock::MockDatabase, Crate};
use ra_arena::Arena;
use rustc_hash::FxHashSet;
fn do_collect_defs(
db: &impl DefDatabase,
def_map: CrateDefMap,
monitor: MacroStackMonitor,
) -> CrateDefMap {
let mut collector = DefCollector {
db,
def_map,
glob_imports: FxHashMap::default(),
unresolved_imports: Vec::new(),
unexpanded_macros: Vec::new(),
macro_stack_monitor: monitor,
cfg_options: &CfgOptions::default(),
};
collector.collect();
collector.finish()
}
fn do_limited_resolve(code: &str, limit: u32, poison_limit: u32) -> CrateDefMap {
let (db, _source_root, _) = MockDatabase::with_single_file(&code);
let crate_id = db.crate_graph().iter().next().unwrap();
let krate = Crate { crate_id };
let def_map = {
let edition = krate.edition(&db);
let mut modules: Arena<CrateModuleId, ModuleData> = Arena::default();
let root = modules.alloc(ModuleData::default());
CrateDefMap {
krate,
edition,
extern_prelude: FxHashMap::default(),
prelude: None,
root,
modules,
poison_macros: FxHashSet::default(),
diagnostics: Vec::new(),
}
};
let mut monitor = MacroStackMonitor::default();
monitor.validator = Some(Box::new(move |count| {
assert!(count < limit);
count >= poison_limit
}));
do_collect_defs(&db, def_map, monitor)
}
#[test]
fn test_macro_expand_limit_width() {
do_limited_resolve(
r#"
macro_rules! foo {
($($ty:ty)*) => { foo!($($ty)*, $($ty)*); }
}
foo!(KABOOM);
"#,
16,
1000,
);
}
#[test]
fn test_macro_expand_poisoned() {
let def = do_limited_resolve(
r#"
macro_rules! foo {
($ty:ty) => { foo!($ty); }
}
foo!(KABOOM);
"#,
100,
16,
);
assert_eq!(def.poison_macros.len(), 1);
}
#[test]
fn test_macro_expand_normal() {
let def = do_limited_resolve(
r#"
macro_rules! foo {
($ident:ident) => { struct $ident {} }
}
foo!(Bar);
"#,
16,
16,
);
assert_eq!(def.poison_macros.len(), 0);
}
}