]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/resolve_imports.rs
rustc: use DefKind instead of Def, where possible.
[rust.git] / src / librustc_resolve / resolve_imports.rs
1 use ImportDirectiveSubclass::*;
2
3 use crate::{AmbiguityError, AmbiguityKind, AmbiguityErrorMisc};
4 use crate::{CrateLint, Module, ModuleOrUniformRoot, PerNS, ScopeSet, Weak};
5 use crate::Namespace::{self, TypeNS, MacroNS};
6 use crate::{NameBinding, NameBindingKind, ToNameBinding, PathResult, PrivacyError};
7 use crate::{Resolver, Segment};
8 use crate::{names_to_string, module_to_string};
9 use crate::{resolve_error, ResolutionError, Suggestion};
10 use crate::ModuleKind;
11 use crate::macros::ParentScope;
12
13 use errors::Applicability;
14
15 use rustc_data_structures::ptr_key::PtrKey;
16 use rustc::ty;
17 use rustc::lint::builtin::BuiltinLintDiagnostics;
18 use rustc::lint::builtin::{
19     DUPLICATE_MACRO_EXPORTS,
20     PUB_USE_OF_PRIVATE_EXTERN_CRATE,
21     UNUSED_IMPORTS,
22 };
23 use rustc::hir::def_id::{CrateNum, DefId};
24 use rustc::hir::def::{self, DefKind, PathResolution, Export};
25 use rustc::session::DiagnosticMessageId;
26 use rustc::util::nodemap::FxHashSet;
27 use rustc::{bug, span_bug};
28
29 use syntax::ast::{self, Ident, Name, NodeId, CRATE_NODE_ID};
30 use syntax::ext::base::Determinacy::{self, Determined, Undetermined};
31 use syntax::ext::hygiene::Mark;
32 use syntax::symbol::keywords;
33 use syntax::util::lev_distance::find_best_match_for_name;
34 use syntax::{struct_span_err, unwrap_or};
35 use syntax_pos::{MultiSpan, Span};
36
37 use log::*;
38
39 use std::cell::{Cell, RefCell};
40 use std::{mem, ptr};
41
42 type Def = def::Def<NodeId>;
43
44 /// Contains data for specific types of import directives.
45 #[derive(Clone, Debug)]
46 pub enum ImportDirectiveSubclass<'a> {
47     SingleImport {
48         /// `source` in `use prefix::source as target`.
49         source: Ident,
50         /// `target` in `use prefix::source as target`.
51         target: Ident,
52         /// Bindings to which `source` refers to.
53         source_bindings: PerNS<Cell<Result<&'a NameBinding<'a>, Determinacy>>>,
54         /// Bindings introduced by `target`.
55         target_bindings: PerNS<Cell<Option<&'a NameBinding<'a>>>>,
56         /// `true` for `...::{self [as target]}` imports, `false` otherwise.
57         type_ns_only: bool,
58         /// Did this import result from a nested import? ie. `use foo::{bar, baz};`
59         nested: bool,
60     },
61     GlobImport {
62         is_prelude: bool,
63         max_vis: Cell<ty::Visibility>, // The visibility of the greatest re-export.
64         // n.b. `max_vis` is only used in `finalize_import` to check for re-export errors.
65     },
66     ExternCrate {
67         source: Option<Name>,
68         target: Ident,
69     },
70     MacroUse,
71 }
72
73 /// One import directive.
74 #[derive(Debug,Clone)]
75 crate struct ImportDirective<'a> {
76     /// The ID of the `extern crate`, `UseTree` etc that imported this `ImportDirective`.
77     ///
78     /// In the case where the `ImportDirective` was expanded from a "nested" use tree,
79     /// this id is the ID of the leaf tree. For example:
80     ///
81     /// ```ignore (pacify the mercilous tidy)
82     /// use foo::bar::{a, b}
83     /// ```
84     ///
85     /// If this is the import directive for `foo::bar::a`, we would have the ID of the `UseTree`
86     /// for `a` in this field.
87     pub id: NodeId,
88
89     /// The `id` of the "root" use-kind -- this is always the same as
90     /// `id` except in the case of "nested" use trees, in which case
91     /// it will be the `id` of the root use tree. e.g., in the example
92     /// from `id`, this would be the ID of the `use foo::bar`
93     /// `UseTree` node.
94     pub root_id: NodeId,
95
96     /// Span of the entire use statement.
97     pub use_span: Span,
98
99     /// Span of the entire use statement with attributes.
100     pub use_span_with_attributes: Span,
101
102     /// Did the use statement have any attributes?
103     pub has_attributes: bool,
104
105     /// Span of this use tree.
106     pub span: Span,
107
108     /// Span of the *root* use tree (see `root_id`).
109     pub root_span: Span,
110
111     pub parent_scope: ParentScope<'a>,
112     pub module_path: Vec<Segment>,
113     /// The resolution of `module_path`.
114     pub imported_module: Cell<Option<ModuleOrUniformRoot<'a>>>,
115     pub subclass: ImportDirectiveSubclass<'a>,
116     pub vis: Cell<ty::Visibility>,
117     pub used: Cell<bool>,
118 }
119
120 impl<'a> ImportDirective<'a> {
121     pub fn is_glob(&self) -> bool {
122         match self.subclass { ImportDirectiveSubclass::GlobImport { .. } => true, _ => false }
123     }
124
125     pub fn is_nested(&self) -> bool {
126         match self.subclass {
127             ImportDirectiveSubclass::SingleImport { nested, .. } => nested,
128             _ => false
129         }
130     }
131
132     crate fn crate_lint(&self) -> CrateLint {
133         CrateLint::UsePath { root_id: self.root_id, root_span: self.root_span }
134     }
135 }
136
137 #[derive(Clone, Default, Debug)]
138 /// Records information about the resolution of a name in a namespace of a module.
139 pub struct NameResolution<'a> {
140     /// Single imports that may define the name in the namespace.
141     /// Import directives are arena-allocated, so it's ok to use pointers as keys.
142     single_imports: FxHashSet<PtrKey<'a, ImportDirective<'a>>>,
143     /// The least shadowable known binding for this name, or None if there are no known bindings.
144     pub binding: Option<&'a NameBinding<'a>>,
145     shadowed_glob: Option<&'a NameBinding<'a>>,
146 }
147
148 impl<'a> NameResolution<'a> {
149     // Returns the binding for the name if it is known or None if it not known.
150     pub(crate) fn binding(&self) -> Option<&'a NameBinding<'a>> {
151         self.binding.and_then(|binding| {
152             if !binding.is_glob_import() ||
153                self.single_imports.is_empty() { Some(binding) } else { None }
154         })
155     }
156 }
157
158 impl<'a> Resolver<'a> {
159     fn resolution(&self, module: Module<'a>, ident: Ident, ns: Namespace)
160                   -> &'a RefCell<NameResolution<'a>> {
161         *module.resolutions.borrow_mut().entry((ident.modern(), ns))
162                .or_insert_with(|| self.arenas.alloc_name_resolution())
163     }
164
165     crate fn resolve_ident_in_module_unadjusted(
166         &mut self,
167         module: ModuleOrUniformRoot<'a>,
168         ident: Ident,
169         ns: Namespace,
170         record_used: bool,
171         path_span: Span,
172     ) -> Result<&'a NameBinding<'a>, Determinacy> {
173         self.resolve_ident_in_module_unadjusted_ext(
174             module, ident, ns, None, false, record_used, path_span
175         ).map_err(|(determinacy, _)| determinacy)
176     }
177
178     /// Attempts to resolve `ident` in namespaces `ns` of `module`.
179     /// Invariant: if `record_used` is `Some`, expansion and import resolution must be complete.
180     crate fn resolve_ident_in_module_unadjusted_ext(
181         &mut self,
182         module: ModuleOrUniformRoot<'a>,
183         ident: Ident,
184         ns: Namespace,
185         parent_scope: Option<&ParentScope<'a>>,
186         restricted_shadowing: bool,
187         record_used: bool,
188         path_span: Span,
189     ) -> Result<&'a NameBinding<'a>, (Determinacy, Weak)> {
190         let module = match module {
191             ModuleOrUniformRoot::Module(module) => module,
192             ModuleOrUniformRoot::CrateRootAndExternPrelude => {
193                 assert!(!restricted_shadowing);
194                 let parent_scope = self.dummy_parent_scope();
195                 let binding = self.early_resolve_ident_in_lexical_scope(
196                     ident, ScopeSet::AbsolutePath(ns), &parent_scope,
197                     record_used, record_used, path_span,
198                 );
199                 return binding.map_err(|determinacy| (determinacy, Weak::No));
200             }
201             ModuleOrUniformRoot::ExternPrelude => {
202                 assert!(!restricted_shadowing);
203                 return if ns != TypeNS {
204                     Err((Determined, Weak::No))
205                 } else if let Some(binding) = self.extern_prelude_get(ident, !record_used) {
206                     Ok(binding)
207                 } else if !self.graph_root.unresolved_invocations.borrow().is_empty() {
208                     // Macro-expanded `extern crate` items can add names to extern prelude.
209                     Err((Undetermined, Weak::No))
210                 } else {
211                     Err((Determined, Weak::No))
212                 }
213             }
214             ModuleOrUniformRoot::CurrentScope => {
215                 assert!(!restricted_shadowing);
216                 let parent_scope =
217                     parent_scope.expect("no parent scope for a single-segment import");
218
219                 if ns == TypeNS {
220                     if ident.name == keywords::Crate.name() ||
221                         ident.name == keywords::DollarCrate.name() {
222                         let module = self.resolve_crate_root(ident);
223                         let binding = (module, ty::Visibility::Public,
224                                         module.span, Mark::root())
225                                         .to_name_binding(self.arenas);
226                         return Ok(binding);
227                     } else if ident.name == keywords::Super.name() ||
228                                 ident.name == keywords::SelfLower.name() {
229                         // FIXME: Implement these with renaming requirements so that e.g.
230                         // `use super;` doesn't work, but `use super as name;` does.
231                         // Fall through here to get an error from `early_resolve_...`.
232                     }
233                 }
234
235                 let binding = self.early_resolve_ident_in_lexical_scope(
236                     ident, ScopeSet::Import(ns), parent_scope, record_used, record_used, path_span
237                 );
238                 return binding.map_err(|determinacy| (determinacy, Weak::No));
239             }
240         };
241
242         self.populate_module_if_necessary(module);
243
244         let resolution = self.resolution(module, ident, ns)
245             .try_borrow_mut()
246             .map_err(|_| (Determined, Weak::No))?; // This happens when there is a cycle of imports.
247
248         if let Some(binding) = resolution.binding {
249             if !restricted_shadowing && binding.expansion != Mark::root() {
250                 if let NameBindingKind::Def(_, true) = binding.kind {
251                     self.macro_expanded_macro_export_errors.insert((path_span, binding.span));
252                 }
253             }
254         }
255
256         let check_usable = |this: &mut Self, binding: &'a NameBinding<'a>| {
257             if let Some(blacklisted_binding) = this.blacklisted_binding {
258                 if ptr::eq(binding, blacklisted_binding) {
259                     return Err((Determined, Weak::No));
260                 }
261             }
262             // `extern crate` are always usable for backwards compatibility, see issue #37020,
263             // remove this together with `PUB_USE_OF_PRIVATE_EXTERN_CRATE`.
264             let usable = this.is_accessible(binding.vis) || binding.is_extern_crate();
265             if usable { Ok(binding) } else { Err((Determined, Weak::No)) }
266         };
267
268         if record_used {
269             return resolution.binding.and_then(|binding| {
270                 // If the primary binding is blacklisted, search further and return the shadowed
271                 // glob binding if it exists. What we really want here is having two separate
272                 // scopes in a module - one for non-globs and one for globs, but until that's done
273                 // use this hack to avoid inconsistent resolution ICEs during import validation.
274                 if let Some(blacklisted_binding) = self.blacklisted_binding {
275                     if ptr::eq(binding, blacklisted_binding) {
276                         return resolution.shadowed_glob;
277                     }
278                 }
279                 Some(binding)
280             }).ok_or((Determined, Weak::No)).and_then(|binding| {
281                 if self.last_import_segment && check_usable(self, binding).is_err() {
282                     Err((Determined, Weak::No))
283                 } else {
284                     self.record_use(ident, ns, binding, restricted_shadowing);
285
286                     if let Some(shadowed_glob) = resolution.shadowed_glob {
287                         // Forbid expanded shadowing to avoid time travel.
288                         if restricted_shadowing &&
289                         binding.expansion != Mark::root() &&
290                         binding.def() != shadowed_glob.def() {
291                             self.ambiguity_errors.push(AmbiguityError {
292                                 kind: AmbiguityKind::GlobVsExpanded,
293                                 ident,
294                                 b1: binding,
295                                 b2: shadowed_glob,
296                                 misc1: AmbiguityErrorMisc::None,
297                                 misc2: AmbiguityErrorMisc::None,
298                             });
299                         }
300                     }
301
302                     if !self.is_accessible(binding.vis) &&
303                        // Remove this together with `PUB_USE_OF_PRIVATE_EXTERN_CRATE`
304                        !(self.last_import_segment && binding.is_extern_crate()) {
305                         self.privacy_errors.push(PrivacyError(path_span, ident, binding));
306                     }
307
308                     Ok(binding)
309                 }
310             })
311         }
312
313         // Items and single imports are not shadowable, if we have one, then it's determined.
314         if let Some(binding) = resolution.binding {
315             if !binding.is_glob_import() {
316                 return check_usable(self, binding);
317             }
318         }
319
320         // --- From now on we either have a glob resolution or no resolution. ---
321
322         // Check if one of single imports can still define the name,
323         // if it can then our result is not determined and can be invalidated.
324         for single_import in &resolution.single_imports {
325             if !self.is_accessible(single_import.vis.get()) {
326                 continue;
327             }
328             let module = unwrap_or!(single_import.imported_module.get(),
329                                     return Err((Undetermined, Weak::No)));
330             let ident = match single_import.subclass {
331                 SingleImport { source, .. } => source,
332                 _ => unreachable!(),
333             };
334             match self.resolve_ident_in_module(module, ident, ns, Some(&single_import.parent_scope),
335                                                false, path_span) {
336                 Err(Determined) => continue,
337                 Ok(binding) if !self.is_accessible_from(
338                     binding.vis, single_import.parent_scope.module
339                 ) => continue,
340                 Ok(_) | Err(Undetermined) => return Err((Undetermined, Weak::No)),
341             }
342         }
343
344         // So we have a resolution that's from a glob import. This resolution is determined
345         // if it cannot be shadowed by some new item/import expanded from a macro.
346         // This happens either if there are no unexpanded macros, or expanded names cannot
347         // shadow globs (that happens in macro namespace or with restricted shadowing).
348         //
349         // Additionally, any macro in any module can plant names in the root module if it creates
350         // `macro_export` macros, so the root module effectively has unresolved invocations if any
351         // module has unresolved invocations.
352         // However, it causes resolution/expansion to stuck too often (#53144), so, to make
353         // progress, we have to ignore those potential unresolved invocations from other modules
354         // and prohibit access to macro-expanded `macro_export` macros instead (unless restricted
355         // shadowing is enabled, see `macro_expanded_macro_export_errors`).
356         let unexpanded_macros = !module.unresolved_invocations.borrow().is_empty();
357         if let Some(binding) = resolution.binding {
358             if !unexpanded_macros || ns == MacroNS || restricted_shadowing {
359                 return check_usable(self, binding);
360             } else {
361                 return Err((Undetermined, Weak::No));
362             }
363         }
364
365         // --- From now on we have no resolution. ---
366
367         // Now we are in situation when new item/import can appear only from a glob or a macro
368         // expansion. With restricted shadowing names from globs and macro expansions cannot
369         // shadow names from outer scopes, so we can freely fallback from module search to search
370         // in outer scopes. For `early_resolve_ident_in_lexical_scope` to continue search in outer
371         // scopes we return `Undetermined` with `Weak::Yes`.
372
373         // Check if one of unexpanded macros can still define the name,
374         // if it can then our "no resolution" result is not determined and can be invalidated.
375         if unexpanded_macros {
376             return Err((Undetermined, Weak::Yes));
377         }
378
379         // Check if one of glob imports can still define the name,
380         // if it can then our "no resolution" result is not determined and can be invalidated.
381         for glob_import in module.globs.borrow().iter() {
382             if !self.is_accessible(glob_import.vis.get()) {
383                 continue
384             }
385             let module = match glob_import.imported_module.get() {
386                 Some(ModuleOrUniformRoot::Module(module)) => module,
387                 Some(_) => continue,
388                 None => return Err((Undetermined, Weak::Yes)),
389             };
390             let (orig_current_module, mut ident) = (self.current_module, ident.modern());
391             match ident.span.glob_adjust(module.expansion, glob_import.span.ctxt().modern()) {
392                 Some(Some(def)) => self.current_module = self.macro_def_scope(def),
393                 Some(None) => {}
394                 None => continue,
395             };
396             let result = self.resolve_ident_in_module_unadjusted(
397                 ModuleOrUniformRoot::Module(module),
398                 ident,
399                 ns,
400                 false,
401                 path_span,
402             );
403             self.current_module = orig_current_module;
404
405             match result {
406                 Err(Determined) => continue,
407                 Ok(binding) if !self.is_accessible_from(
408                     binding.vis, glob_import.parent_scope.module
409                 ) => continue,
410                 Ok(_) | Err(Undetermined) => return Err((Undetermined, Weak::Yes)),
411             }
412         }
413
414         // No resolution and no one else can define the name - determinate error.
415         Err((Determined, Weak::No))
416     }
417
418     // Add an import directive to the current module.
419     pub fn add_import_directive(&mut self,
420                                 module_path: Vec<Segment>,
421                                 subclass: ImportDirectiveSubclass<'a>,
422                                 span: Span,
423                                 id: NodeId,
424                                 item: &ast::Item,
425                                 root_span: Span,
426                                 root_id: NodeId,
427                                 vis: ty::Visibility,
428                                 parent_scope: ParentScope<'a>) {
429         let current_module = parent_scope.module;
430         let directive = self.arenas.alloc_import_directive(ImportDirective {
431             parent_scope,
432             module_path,
433             imported_module: Cell::new(None),
434             subclass,
435             span,
436             id,
437             use_span: item.span,
438             use_span_with_attributes: item.span_with_attributes(),
439             has_attributes: !item.attrs.is_empty(),
440             root_span,
441             root_id,
442             vis: Cell::new(vis),
443             used: Cell::new(false),
444         });
445
446         debug!("add_import_directive({:?})", directive);
447
448         self.indeterminate_imports.push(directive);
449         match directive.subclass {
450             SingleImport { target, type_ns_only, .. } => {
451                 self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
452                     let mut resolution = this.resolution(current_module, target, ns).borrow_mut();
453                     resolution.single_imports.insert(PtrKey(directive));
454                 });
455             }
456             // We don't add prelude imports to the globs since they only affect lexical scopes,
457             // which are not relevant to import resolution.
458             GlobImport { is_prelude: true, .. } => {}
459             GlobImport { .. } => current_module.globs.borrow_mut().push(directive),
460             _ => unreachable!(),
461         }
462     }
463
464     // Given a binding and an import directive that resolves to it,
465     // return the corresponding binding defined by the import directive.
466     crate fn import(&self, binding: &'a NameBinding<'a>, directive: &'a ImportDirective<'a>)
467                     -> &'a NameBinding<'a> {
468         let vis = if binding.pseudo_vis().is_at_least(directive.vis.get(), self) ||
469                      // cf. `PUB_USE_OF_PRIVATE_EXTERN_CRATE`
470                      !directive.is_glob() && binding.is_extern_crate() {
471             directive.vis.get()
472         } else {
473             binding.pseudo_vis()
474         };
475
476         if let GlobImport { ref max_vis, .. } = directive.subclass {
477             if vis == directive.vis.get() || vis.is_at_least(max_vis.get(), self) {
478                 max_vis.set(vis)
479             }
480         }
481
482         self.arenas.alloc_name_binding(NameBinding {
483             kind: NameBindingKind::Import {
484                 binding,
485                 directive,
486                 used: Cell::new(false),
487             },
488             ambiguity: None,
489             span: directive.span,
490             vis,
491             expansion: directive.parent_scope.expansion,
492         })
493     }
494
495     crate fn check_reserved_macro_name(&self, ident: Ident, ns: Namespace) {
496         // Reserve some names that are not quite covered by the general check
497         // performed on `Resolver::builtin_attrs`.
498         if ns == MacroNS &&
499            (ident.name == "cfg" || ident.name == "cfg_attr" || ident.name == "derive") {
500             self.session.span_err(ident.span,
501                                   &format!("name `{}` is reserved in macro namespace", ident));
502         }
503     }
504
505     // Define the name or return the existing binding if there is a collision.
506     pub fn try_define(&mut self,
507                       module: Module<'a>,
508                       ident: Ident,
509                       ns: Namespace,
510                       binding: &'a NameBinding<'a>)
511                       -> Result<(), &'a NameBinding<'a>> {
512         self.check_reserved_macro_name(ident, ns);
513         self.set_binding_parent_module(binding, module);
514         self.update_resolution(module, ident, ns, |this, resolution| {
515             if let Some(old_binding) = resolution.binding {
516                 if binding.def() == Def::Err {
517                     // Do not override real bindings with `Def::Err`s from error recovery.
518                     return Ok(());
519                 }
520                 match (old_binding.is_glob_import(), binding.is_glob_import()) {
521                     (true, true) => {
522                         if binding.def() != old_binding.def() {
523                             resolution.binding = Some(this.ambiguity(AmbiguityKind::GlobVsGlob,
524                                                                      old_binding, binding));
525                         } else if !old_binding.vis.is_at_least(binding.vis, &*this) {
526                             // We are glob-importing the same item but with greater visibility.
527                             resolution.binding = Some(binding);
528                         }
529                     }
530                     (old_glob @ true, false) | (old_glob @ false, true) => {
531                         let (glob_binding, nonglob_binding) = if old_glob {
532                             (old_binding, binding)
533                         } else {
534                             (binding, old_binding)
535                         };
536                         if glob_binding.def() != nonglob_binding.def() &&
537                            ns == MacroNS && nonglob_binding.expansion != Mark::root() {
538                             resolution.binding = Some(this.ambiguity(AmbiguityKind::GlobVsExpanded,
539                                                                     nonglob_binding, glob_binding));
540                         } else {
541                             resolution.binding = Some(nonglob_binding);
542                         }
543                         resolution.shadowed_glob = Some(glob_binding);
544                     }
545                     (false, false) => {
546                         if let (&NameBindingKind::Def(_, true), &NameBindingKind::Def(_, true)) =
547                                (&old_binding.kind, &binding.kind) {
548
549                             this.session.buffer_lint_with_diagnostic(
550                                 DUPLICATE_MACRO_EXPORTS,
551                                 CRATE_NODE_ID,
552                                 binding.span,
553                                 &format!("a macro named `{}` has already been exported", ident),
554                                 BuiltinLintDiagnostics::DuplicatedMacroExports(
555                                     ident, old_binding.span, binding.span));
556
557                             resolution.binding = Some(binding);
558                         } else {
559                             return Err(old_binding);
560                         }
561                     }
562                 }
563             } else {
564                 resolution.binding = Some(binding);
565             }
566
567             Ok(())
568         })
569     }
570
571     fn ambiguity(&self, kind: AmbiguityKind,
572                  primary_binding: &'a NameBinding<'a>, secondary_binding: &'a NameBinding<'a>)
573                  -> &'a NameBinding<'a> {
574         self.arenas.alloc_name_binding(NameBinding {
575             ambiguity: Some((secondary_binding, kind)),
576             ..primary_binding.clone()
577         })
578     }
579
580     // Use `f` to mutate the resolution of the name in the module.
581     // If the resolution becomes a success, define it in the module's glob importers.
582     fn update_resolution<T, F>(&mut self, module: Module<'a>, ident: Ident, ns: Namespace, f: F)
583                                -> T
584         where F: FnOnce(&mut Resolver<'a>, &mut NameResolution<'a>) -> T
585     {
586         // Ensure that `resolution` isn't borrowed when defining in the module's glob importers,
587         // during which the resolution might end up getting re-defined via a glob cycle.
588         let (binding, t) = {
589             let resolution = &mut *self.resolution(module, ident, ns).borrow_mut();
590             let old_binding = resolution.binding();
591
592             let t = f(self, resolution);
593
594             match resolution.binding() {
595                 _ if old_binding.is_some() => return t,
596                 None => return t,
597                 Some(binding) => match old_binding {
598                     Some(old_binding) if ptr::eq(old_binding, binding) => return t,
599                     _ => (binding, t),
600                 }
601             }
602         };
603
604         // Define `binding` in `module`s glob importers.
605         for directive in module.glob_importers.borrow_mut().iter() {
606             let mut ident = ident.modern();
607             let scope = match ident.span.reverse_glob_adjust(module.expansion,
608                                                              directive.span.ctxt().modern()) {
609                 Some(Some(def)) => self.macro_def_scope(def),
610                 Some(None) => directive.parent_scope.module,
611                 None => continue,
612             };
613             if self.is_accessible_from(binding.vis, scope) {
614                 let imported_binding = self.import(binding, directive);
615                 let _ = self.try_define(directive.parent_scope.module, ident, ns, imported_binding);
616             }
617         }
618
619         t
620     }
621
622     // Define a "dummy" resolution containing a Def::Err as a placeholder for a
623     // failed resolution
624     fn import_dummy_binding(&mut self, directive: &'a ImportDirective<'a>) {
625         if let SingleImport { target, .. } = directive.subclass {
626             let dummy_binding = self.dummy_binding;
627             let dummy_binding = self.import(dummy_binding, directive);
628             self.per_ns(|this, ns| {
629                 let _ = this.try_define(directive.parent_scope.module, target, ns, dummy_binding);
630                 // Consider erroneous imports used to avoid duplicate diagnostics.
631                 this.record_use(target, ns, dummy_binding, false);
632             });
633         }
634     }
635 }
636
637 /// An error that may be transformed into a diagnostic later. Used to combine multiple unresolved
638 /// import errors within the same use tree into a single diagnostic.
639 #[derive(Debug, Clone)]
640 struct UnresolvedImportError {
641     span: Span,
642     label: Option<String>,
643     note: Vec<String>,
644     suggestion: Option<Suggestion>,
645 }
646
647 pub struct ImportResolver<'a, 'b: 'a> {
648     pub resolver: &'a mut Resolver<'b>,
649 }
650
651 impl<'a, 'b: 'a> std::ops::Deref for ImportResolver<'a, 'b> {
652     type Target = Resolver<'b>;
653     fn deref(&self) -> &Resolver<'b> {
654         self.resolver
655     }
656 }
657
658 impl<'a, 'b: 'a> std::ops::DerefMut for ImportResolver<'a, 'b> {
659     fn deref_mut(&mut self) -> &mut Resolver<'b> {
660         self.resolver
661     }
662 }
663
664 impl<'a, 'b: 'a> ty::DefIdTree for &'a ImportResolver<'a, 'b> {
665     fn parent(self, id: DefId) -> Option<DefId> {
666         self.resolver.parent(id)
667     }
668 }
669
670 impl<'a, 'b:'a> ImportResolver<'a, 'b> {
671     // Import resolution
672     //
673     // This is a fixed-point algorithm. We resolve imports until our efforts
674     // are stymied by an unresolved import; then we bail out of the current
675     // module and continue. We terminate successfully once no more imports
676     // remain or unsuccessfully when no forward progress in resolving imports
677     // is made.
678
679     /// Resolves all imports for the crate. This method performs the fixed-
680     /// point iteration.
681     pub fn resolve_imports(&mut self) {
682         let mut prev_num_indeterminates = self.indeterminate_imports.len() + 1;
683         while self.indeterminate_imports.len() < prev_num_indeterminates {
684             prev_num_indeterminates = self.indeterminate_imports.len();
685             for import in mem::replace(&mut self.indeterminate_imports, Vec::new()) {
686                 match self.resolve_import(&import) {
687                     true => self.determined_imports.push(import),
688                     false => self.indeterminate_imports.push(import),
689                 }
690             }
691         }
692     }
693
694     pub fn finalize_imports(&mut self) {
695         for module in self.arenas.local_modules().iter() {
696             self.finalize_resolutions_in(module);
697         }
698
699         let mut has_errors = false;
700         let mut seen_spans = FxHashSet::default();
701         let mut errors = vec![];
702         let mut prev_root_id: NodeId = NodeId::from_u32(0);
703         for i in 0 .. self.determined_imports.len() {
704             let import = self.determined_imports[i];
705             if let Some(err) = self.finalize_import(import) {
706                 has_errors = true;
707
708                 if let SingleImport { source, ref source_bindings, .. } = import.subclass {
709                     if source.name == "self" {
710                         // Silence `unresolved import` error if E0429 is already emitted
711                         if let Err(Determined) = source_bindings.value_ns.get() {
712                             continue;
713                         }
714                     }
715                 }
716
717                 // If the error is a single failed import then create a "fake" import
718                 // resolution for it so that later resolve stages won't complain.
719                 self.import_dummy_binding(import);
720                 if prev_root_id.as_u32() != 0
721                         && prev_root_id.as_u32() != import.root_id.as_u32()
722                         && !errors.is_empty() {
723                     // In the case of a new import line, throw a diagnostic message
724                     // for the previous line.
725                     self.throw_unresolved_import_error(errors, None);
726                     errors = vec![];
727                 }
728                 if !seen_spans.contains(&err.span) {
729                     let path = import_path_to_string(
730                         &import.module_path.iter().map(|seg| seg.ident).collect::<Vec<_>>(),
731                         &import.subclass,
732                         err.span,
733                     );
734                     seen_spans.insert(err.span);
735                     errors.push((path, err));
736                     prev_root_id = import.root_id;
737                 }
738             }
739         }
740
741         if !errors.is_empty() {
742             self.throw_unresolved_import_error(errors.clone(), None);
743         }
744
745         // Report unresolved imports only if no hard error was already reported
746         // to avoid generating multiple errors on the same import.
747         if !has_errors {
748             for import in &self.indeterminate_imports {
749                 self.throw_unresolved_import_error(errors, Some(MultiSpan::from(import.span)));
750                 break;
751             }
752         }
753     }
754
755     fn throw_unresolved_import_error(
756         &self,
757         errors: Vec<(String, UnresolvedImportError)>,
758         span: Option<MultiSpan>,
759     ) {
760         /// Upper limit on the number of `span_label` messages.
761         const MAX_LABEL_COUNT: usize = 10;
762
763         let (span, msg) = if errors.is_empty() {
764             (span.unwrap(), "unresolved import".to_string())
765         } else {
766             let span = MultiSpan::from_spans(
767                 errors
768                     .iter()
769                     .map(|(_, err)| err.span)
770                     .collect(),
771             );
772
773             let paths = errors
774                 .iter()
775                 .map(|(path, _)| format!("`{}`", path))
776                 .collect::<Vec<_>>();
777
778             let msg = format!(
779                 "unresolved import{} {}",
780                 if paths.len() > 1 { "s" } else { "" },
781                 paths.join(", "),
782             );
783
784             (span, msg)
785         };
786
787         let mut diag = struct_span_err!(self.resolver.session, span, E0432, "{}", &msg);
788
789         if let Some((_, UnresolvedImportError { note, .. })) = errors.iter().last() {
790             for message in note {
791                 diag.note(&message);
792             }
793         }
794
795         for (_, err) in errors.into_iter().take(MAX_LABEL_COUNT) {
796             if let Some(label) = err.label {
797                 diag.span_label(err.span, label);
798             }
799
800             if let Some((suggestions, msg, applicability)) = err.suggestion {
801                 diag.multipart_suggestion(&msg, suggestions, applicability);
802             }
803         }
804
805         diag.emit();
806     }
807
808     /// Attempts to resolve the given import, returning true if its resolution is determined.
809     /// If successful, the resolved bindings are written into the module.
810     fn resolve_import(&mut self, directive: &'b ImportDirective<'b>) -> bool {
811         debug!("(resolving import for module) resolving import `{}::...` in `{}`",
812                Segment::names_to_string(&directive.module_path),
813                module_to_string(self.current_module).unwrap_or_else(|| "???".to_string()));
814
815         self.current_module = directive.parent_scope.module;
816
817         let module = if let Some(module) = directive.imported_module.get() {
818             module
819         } else {
820             // For better failure detection, pretend that the import will
821             // not define any names while resolving its module path.
822             let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
823             let path_res = self.resolve_path(
824                 &directive.module_path,
825                 None,
826                 &directive.parent_scope,
827                 false,
828                 directive.span,
829                 directive.crate_lint(),
830             );
831             directive.vis.set(orig_vis);
832
833             match path_res {
834                 PathResult::Module(module) => module,
835                 PathResult::Indeterminate => return false,
836                 PathResult::NonModule(..) | PathResult::Failed { .. } => return true,
837             }
838         };
839
840         directive.imported_module.set(Some(module));
841         let (source, target, source_bindings, target_bindings, type_ns_only) =
842                 match directive.subclass {
843             SingleImport { source, target, ref source_bindings,
844                            ref target_bindings, type_ns_only, .. } =>
845                 (source, target, source_bindings, target_bindings, type_ns_only),
846             GlobImport { .. } => {
847                 self.resolve_glob_import(directive);
848                 return true;
849             }
850             _ => unreachable!(),
851         };
852
853         let mut indeterminate = false;
854         self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
855             if let Err(Undetermined) = source_bindings[ns].get() {
856                 // For better failure detection, pretend that the import will
857                 // not define any names while resolving its module path.
858                 let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
859                 let binding = this.resolve_ident_in_module(
860                     module, source, ns, Some(&directive.parent_scope), false, directive.span
861                 );
862                 directive.vis.set(orig_vis);
863
864                 source_bindings[ns].set(binding);
865             } else {
866                 return
867             };
868
869             let parent = directive.parent_scope.module;
870             match source_bindings[ns].get() {
871                 Err(Undetermined) => indeterminate = true,
872                 Err(Determined) => {
873                     this.update_resolution(parent, target, ns, |_, resolution| {
874                         resolution.single_imports.remove(&PtrKey(directive));
875                     });
876                 }
877                 Ok(binding) if !binding.is_importable() => {
878                     let msg = format!("`{}` is not directly importable", target);
879                     struct_span_err!(this.session, directive.span, E0253, "{}", &msg)
880                         .span_label(directive.span, "cannot be imported directly")
881                         .emit();
882                     // Do not import this illegal binding. Import a dummy binding and pretend
883                     // everything is fine
884                     this.import_dummy_binding(directive);
885                 }
886                 Ok(binding) => {
887                     let imported_binding = this.import(binding, directive);
888                     target_bindings[ns].set(Some(imported_binding));
889                     this.define(parent, target, ns, imported_binding);
890                 }
891             }
892         });
893
894         !indeterminate
895     }
896
897     /// Performs final import resolution, consistency checks and error reporting.
898     ///
899     /// Optionally returns an unresolved import error. This error is buffered and used to
900     /// consolidate multiple unresolved import errors into a single diagnostic.
901     fn finalize_import(
902         &mut self,
903         directive: &'b ImportDirective<'b>
904     ) -> Option<UnresolvedImportError> {
905         self.current_module = directive.parent_scope.module;
906
907         let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
908         let prev_ambiguity_errors_len = self.ambiguity_errors.len();
909         let path_res = self.resolve_path(&directive.module_path, None, &directive.parent_scope,
910                                          true, directive.span, directive.crate_lint());
911         let no_ambiguity = self.ambiguity_errors.len() == prev_ambiguity_errors_len;
912         directive.vis.set(orig_vis);
913         let module = match path_res {
914             PathResult::Module(module) => {
915                 // Consistency checks, analogous to `finalize_current_module_macro_resolutions`.
916                 if let Some(initial_module) = directive.imported_module.get() {
917                     if !ModuleOrUniformRoot::same_def(module, initial_module) && no_ambiguity {
918                         span_bug!(directive.span, "inconsistent resolution for an import");
919                     }
920                 } else {
921                     if self.privacy_errors.is_empty() {
922                         let msg = "cannot determine resolution for the import";
923                         let msg_note = "import resolution is stuck, try simplifying other imports";
924                         self.session.struct_span_err(directive.span, msg).note(msg_note).emit();
925                     }
926                 }
927
928                 module
929             }
930             PathResult::Failed { is_error_from_last_segment: false, span, label, suggestion } => {
931                 if no_ambiguity {
932                     assert!(directive.imported_module.get().is_none());
933                     resolve_error(self, span, ResolutionError::FailedToResolve {
934                         label,
935                         suggestion,
936                     });
937                 }
938                 return None;
939             }
940             PathResult::Failed { is_error_from_last_segment: true, span, label, suggestion } => {
941                 if no_ambiguity {
942                     assert!(directive.imported_module.get().is_none());
943                     let err = match self.make_path_suggestion(
944                         span,
945                         directive.module_path.clone(),
946                         &directive.parent_scope,
947                     ) {
948                         Some((suggestion, note)) => {
949                             UnresolvedImportError {
950                                 span,
951                                 label: None,
952                                 note,
953                                 suggestion: Some((
954                                     vec![(span, Segment::names_to_string(&suggestion))],
955                                     String::from("a similar path exists"),
956                                     Applicability::MaybeIncorrect,
957                                 )),
958                             }
959                         }
960                         None => {
961                             UnresolvedImportError {
962                                 span,
963                                 label: Some(label),
964                                 note: Vec::new(),
965                                 suggestion,
966                             }
967                         }
968                     };
969
970                     return Some(err);
971                 }
972                 return None;
973             }
974             PathResult::NonModule(path_res) if path_res.base_def() == Def::Err => {
975                 if no_ambiguity {
976                     assert!(directive.imported_module.get().is_none());
977                 }
978                 // The error was already reported earlier.
979                 return None;
980             }
981             PathResult::Indeterminate | PathResult::NonModule(..) => unreachable!(),
982         };
983
984         let (ident, target, source_bindings, target_bindings, type_ns_only) =
985                 match directive.subclass {
986             SingleImport { source, target, ref source_bindings,
987                            ref target_bindings, type_ns_only, .. } =>
988                 (source, target, source_bindings, target_bindings, type_ns_only),
989             GlobImport { is_prelude, ref max_vis } => {
990                 if directive.module_path.len() <= 1 {
991                     // HACK(eddyb) `lint_if_path_starts_with_module` needs at least
992                     // 2 segments, so the `resolve_path` above won't trigger it.
993                     let mut full_path = directive.module_path.clone();
994                     full_path.push(Segment::from_ident(keywords::Invalid.ident()));
995                     self.lint_if_path_starts_with_module(
996                         directive.crate_lint(),
997                         &full_path,
998                         directive.span,
999                         None,
1000                     );
1001                 }
1002
1003                 if let ModuleOrUniformRoot::Module(module) = module {
1004                     if module.def_id() == directive.parent_scope.module.def_id() {
1005                         // Importing a module into itself is not allowed.
1006                         return Some(UnresolvedImportError {
1007                             span: directive.span,
1008                             label: Some(String::from("cannot glob-import a module into itself")),
1009                             note: Vec::new(),
1010                             suggestion: None,
1011                         });
1012                     }
1013                 }
1014                 if !is_prelude &&
1015                    max_vis.get() != ty::Visibility::Invisible && // Allow empty globs.
1016                    !max_vis.get().is_at_least(directive.vis.get(), &*self) {
1017                     let msg = "A non-empty glob must import something with the glob's visibility";
1018                     self.session.span_err(directive.span, msg);
1019                 }
1020                 return None;
1021             }
1022             _ => unreachable!(),
1023         };
1024
1025         let mut all_ns_err = true;
1026         self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
1027             let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
1028             let orig_blacklisted_binding =
1029                 mem::replace(&mut this.blacklisted_binding, target_bindings[ns].get());
1030             let orig_last_import_segment = mem::replace(&mut this.last_import_segment, true);
1031             let binding = this.resolve_ident_in_module(
1032                 module, ident, ns, Some(&directive.parent_scope), true, directive.span
1033             );
1034             this.last_import_segment = orig_last_import_segment;
1035             this.blacklisted_binding = orig_blacklisted_binding;
1036             directive.vis.set(orig_vis);
1037
1038             match binding {
1039                 Ok(binding) => {
1040                     // Consistency checks, analogous to `finalize_current_module_macro_resolutions`.
1041                     let initial_def = source_bindings[ns].get().map(|initial_binding| {
1042                         all_ns_err = false;
1043                         if let Some(target_binding) = target_bindings[ns].get() {
1044                             if target.name == "_" &&
1045                                initial_binding.is_extern_crate() && !initial_binding.is_import() {
1046                                 this.record_use(ident, ns, target_binding,
1047                                                 directive.module_path.is_empty());
1048                             }
1049                         }
1050                         initial_binding.def()
1051                     });
1052                     let def = binding.def();
1053                     if let Ok(initial_def) = initial_def {
1054                         if def != initial_def && this.ambiguity_errors.is_empty() {
1055                             span_bug!(directive.span, "inconsistent resolution for an import");
1056                         }
1057                     } else {
1058                         if def != Def::Err &&
1059                            this.ambiguity_errors.is_empty() && this.privacy_errors.is_empty() {
1060                             let msg = "cannot determine resolution for the import";
1061                             let msg_note =
1062                                 "import resolution is stuck, try simplifying other imports";
1063                             this.session.struct_span_err(directive.span, msg).note(msg_note).emit();
1064                         }
1065                     }
1066                 }
1067                 Err(..) => {
1068                     // FIXME: This assert may fire if public glob is later shadowed by a private
1069                     // single import (see test `issue-55884-2.rs`). In theory single imports should
1070                     // always block globs, even if they are not yet resolved, so that this kind of
1071                     // self-inconsistent resolution never happens.
1072                     // Reenable the assert when the issue is fixed.
1073                     // assert!(result[ns].get().is_err());
1074                 }
1075             }
1076         });
1077
1078         if all_ns_err {
1079             let mut all_ns_failed = true;
1080             self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
1081                 let binding = this.resolve_ident_in_module(
1082                     module, ident, ns, Some(&directive.parent_scope), true, directive.span
1083                 );
1084                 if binding.is_ok() {
1085                     all_ns_failed = false;
1086                 }
1087             });
1088
1089             return if all_ns_failed {
1090                 let resolutions = match module {
1091                     ModuleOrUniformRoot::Module(module) => Some(module.resolutions.borrow()),
1092                     _ => None,
1093                 };
1094                 let resolutions = resolutions.as_ref().into_iter().flat_map(|r| r.iter());
1095                 let names = resolutions.filter_map(|(&(ref i, _), resolution)| {
1096                     if *i == ident { return None; } // Never suggest the same name
1097                     match *resolution.borrow() {
1098                         NameResolution { binding: Some(name_binding), .. } => {
1099                             match name_binding.kind {
1100                                 NameBindingKind::Import { binding, .. } => {
1101                                     match binding.kind {
1102                                         // Never suggest the name that has binding error
1103                                         // i.e., the name that cannot be previously resolved
1104                                         NameBindingKind::Def(Def::Err, _) => return None,
1105                                         _ => Some(&i.name),
1106                                     }
1107                                 },
1108                                 _ => Some(&i.name),
1109                             }
1110                         },
1111                         NameResolution { ref single_imports, .. }
1112                             if single_imports.is_empty() => None,
1113                         _ => Some(&i.name),
1114                     }
1115                 });
1116
1117                 let lev_suggestion = find_best_match_for_name(names, &ident.as_str(), None)
1118                    .map(|suggestion|
1119                         (vec![(ident.span, suggestion.to_string())],
1120                          String::from("a similar name exists in the module"),
1121                          Applicability::MaybeIncorrect)
1122                     );
1123
1124                 let (suggestion, note) = match self.check_for_module_export_macro(
1125                     directive, module, ident,
1126                 ) {
1127                     Some((suggestion, note)) => (suggestion.or(lev_suggestion), note),
1128                     _ => (lev_suggestion, Vec::new()),
1129                 };
1130
1131                 let label = match module {
1132                     ModuleOrUniformRoot::Module(module) => {
1133                         let module_str = module_to_string(module);
1134                         if let Some(module_str) = module_str {
1135                             format!("no `{}` in `{}`", ident, module_str)
1136                         } else {
1137                             format!("no `{}` in the root", ident)
1138                         }
1139                     }
1140                     _ => {
1141                         if !ident.is_path_segment_keyword() {
1142                             format!("no `{}` external crate", ident)
1143                         } else {
1144                             // HACK(eddyb) this shows up for `self` & `super`, which
1145                             // should work instead - for now keep the same error message.
1146                             format!("no `{}` in the root", ident)
1147                         }
1148                     }
1149                 };
1150
1151                 Some(UnresolvedImportError {
1152                     span: directive.span,
1153                     label: Some(label),
1154                     note,
1155                     suggestion,
1156                 })
1157             } else {
1158                 // `resolve_ident_in_module` reported a privacy error.
1159                 self.import_dummy_binding(directive);
1160                 None
1161             }
1162         }
1163
1164         let mut reexport_error = None;
1165         let mut any_successful_reexport = false;
1166         self.per_ns(|this, ns| {
1167             if let Ok(binding) = source_bindings[ns].get() {
1168                 let vis = directive.vis.get();
1169                 if !binding.pseudo_vis().is_at_least(vis, &*this) {
1170                     reexport_error = Some((ns, binding));
1171                 } else {
1172                     any_successful_reexport = true;
1173                 }
1174             }
1175         });
1176
1177         // All namespaces must be re-exported with extra visibility for an error to occur.
1178         if !any_successful_reexport {
1179             let (ns, binding) = reexport_error.unwrap();
1180             if ns == TypeNS && binding.is_extern_crate() {
1181                 let msg = format!("extern crate `{}` is private, and cannot be \
1182                                    re-exported (error E0365), consider declaring with \
1183                                    `pub`",
1184                                    ident);
1185                 self.session.buffer_lint(PUB_USE_OF_PRIVATE_EXTERN_CRATE,
1186                                          directive.id,
1187                                          directive.span,
1188                                          &msg);
1189             } else if ns == TypeNS {
1190                 struct_span_err!(self.session, directive.span, E0365,
1191                                  "`{}` is private, and cannot be re-exported", ident)
1192                     .span_label(directive.span, format!("re-export of private `{}`", ident))
1193                     .note(&format!("consider declaring type or module `{}` with `pub`", ident))
1194                     .emit();
1195             } else {
1196                 let msg = format!("`{}` is private, and cannot be re-exported", ident);
1197                 let note_msg =
1198                     format!("consider marking `{}` as `pub` in the imported module", ident);
1199                 struct_span_err!(self.session, directive.span, E0364, "{}", &msg)
1200                     .span_note(directive.span, &note_msg)
1201                     .emit();
1202             }
1203         }
1204
1205         if directive.module_path.len() <= 1 {
1206             // HACK(eddyb) `lint_if_path_starts_with_module` needs at least
1207             // 2 segments, so the `resolve_path` above won't trigger it.
1208             let mut full_path = directive.module_path.clone();
1209             full_path.push(Segment::from_ident(ident));
1210             self.per_ns(|this, ns| {
1211                 if let Ok(binding) = source_bindings[ns].get() {
1212                     this.lint_if_path_starts_with_module(
1213                         directive.crate_lint(),
1214                         &full_path,
1215                         directive.span,
1216                         Some(binding),
1217                     );
1218                 }
1219             });
1220         }
1221
1222         // Record what this import resolves to for later uses in documentation,
1223         // this may resolve to either a value or a type, but for documentation
1224         // purposes it's good enough to just favor one over the other.
1225         self.per_ns(|this, ns| if let Some(binding) = source_bindings[ns].get().ok() {
1226             let mut def = binding.def();
1227             if let Def::Def(DefKind::Macro(_), def_id) = def {
1228                 // `DefId`s from the "built-in macro crate" should not leak from resolve because
1229                 // later stages are not ready to deal with them and produce lots of ICEs. Replace
1230                 // them with `Def::Err` until some saner scheme is implemented for built-in macros.
1231                 if def_id.krate == CrateNum::BuiltinMacros {
1232                     this.session.span_err(directive.span, "cannot import a built-in macro");
1233                     def = Def::Err;
1234                 }
1235             }
1236             let import = this.import_map.entry(directive.id).or_default();
1237             import[ns] = Some(PathResolution::new(def));
1238         });
1239
1240         self.check_for_redundant_imports(
1241             ident,
1242             directive,
1243             source_bindings,
1244             target_bindings,
1245             target,
1246         );
1247
1248         debug!("(resolving single import) successfully resolved import");
1249         None
1250     }
1251
1252     fn check_for_redundant_imports(
1253         &mut self,
1254         ident: Ident,
1255         directive: &'b ImportDirective<'b>,
1256         source_bindings: &PerNS<Cell<Result<&'b NameBinding<'b>, Determinacy>>>,
1257         target_bindings: &PerNS<Cell<Option<&'b NameBinding<'b>>>>,
1258         target: Ident,
1259     ) {
1260         // Skip if the import was produced by a macro.
1261         if directive.parent_scope.expansion != Mark::root() {
1262             return;
1263         }
1264
1265         // Skip if we are inside a named module (in contrast to an anonymous
1266         // module defined by a block).
1267         if let ModuleKind::Def(..) = directive.parent_scope.module.kind {
1268             return;
1269         }
1270
1271         let mut is_redundant = PerNS {
1272             value_ns: None,
1273             type_ns: None,
1274             macro_ns: None,
1275         };
1276
1277         let mut redundant_span = PerNS {
1278             value_ns: None,
1279             type_ns: None,
1280             macro_ns: None,
1281         };
1282
1283         self.per_ns(|this, ns| if let Some(binding) = source_bindings[ns].get().ok() {
1284             if binding.def() == Def::Err {
1285                 return;
1286             }
1287
1288             let orig_blacklisted_binding = mem::replace(
1289                 &mut this.blacklisted_binding,
1290                 target_bindings[ns].get()
1291             );
1292
1293             match this.early_resolve_ident_in_lexical_scope(
1294                 target,
1295                 ScopeSet::Import(ns),
1296                 &directive.parent_scope,
1297                 false,
1298                 false,
1299                 directive.span,
1300             ) {
1301                 Ok(other_binding) => {
1302                     is_redundant[ns] = Some(
1303                         binding.def() == other_binding.def()
1304                         && !other_binding.is_ambiguity()
1305                     );
1306                     redundant_span[ns] =
1307                         Some((other_binding.span, other_binding.is_import()));
1308                 }
1309                 Err(_) => is_redundant[ns] = Some(false)
1310             }
1311
1312             this.blacklisted_binding = orig_blacklisted_binding;
1313         });
1314
1315         if !is_redundant.is_empty() &&
1316             is_redundant.present_items().all(|is_redundant| is_redundant)
1317         {
1318             let mut redundant_spans: Vec<_> = redundant_span.present_items().collect();
1319             redundant_spans.sort();
1320             redundant_spans.dedup();
1321             self.session.buffer_lint_with_diagnostic(
1322                 UNUSED_IMPORTS,
1323                 directive.id,
1324                 directive.span,
1325                 &format!("the item `{}` is imported redundantly", ident),
1326                 BuiltinLintDiagnostics::RedundantImport(redundant_spans, ident),
1327             );
1328         }
1329     }
1330
1331     fn resolve_glob_import(&mut self, directive: &'b ImportDirective<'b>) {
1332         let module = match directive.imported_module.get().unwrap() {
1333             ModuleOrUniformRoot::Module(module) => module,
1334             _ => {
1335                 self.session.span_err(directive.span, "cannot glob-import all possible crates");
1336                 return;
1337             }
1338         };
1339
1340         self.populate_module_if_necessary(module);
1341
1342         if module.is_trait() {
1343             self.session.span_err(directive.span, "items in traits are not importable.");
1344             return;
1345         } else if module.def_id() == directive.parent_scope.module.def_id()  {
1346             return;
1347         } else if let GlobImport { is_prelude: true, .. } = directive.subclass {
1348             self.prelude = Some(module);
1349             return;
1350         }
1351
1352         // Add to module's glob_importers
1353         module.glob_importers.borrow_mut().push(directive);
1354
1355         // Ensure that `resolutions` isn't borrowed during `try_define`,
1356         // since it might get updated via a glob cycle.
1357         let bindings = module.resolutions.borrow().iter().filter_map(|(&ident, resolution)| {
1358             resolution.borrow().binding().map(|binding| (ident, binding))
1359         }).collect::<Vec<_>>();
1360         for ((mut ident, ns), binding) in bindings {
1361             let scope = match ident.span.reverse_glob_adjust(module.expansion,
1362                                                              directive.span.ctxt().modern()) {
1363                 Some(Some(def)) => self.macro_def_scope(def),
1364                 Some(None) => self.current_module,
1365                 None => continue,
1366             };
1367             if self.is_accessible_from(binding.pseudo_vis(), scope) {
1368                 let imported_binding = self.import(binding, directive);
1369                 let _ = self.try_define(directive.parent_scope.module, ident, ns, imported_binding);
1370             }
1371         }
1372
1373         // Record the destination of this import
1374         self.record_def(directive.id, PathResolution::new(module.def().unwrap()));
1375     }
1376
1377     // Miscellaneous post-processing, including recording re-exports,
1378     // reporting conflicts, and reporting unresolved imports.
1379     fn finalize_resolutions_in(&mut self, module: Module<'b>) {
1380         // Since import resolution is finished, globs will not define any more names.
1381         *module.globs.borrow_mut() = Vec::new();
1382
1383         let mut reexports = Vec::new();
1384
1385         for (&(ident, ns), resolution) in module.resolutions.borrow().iter() {
1386             let resolution = &mut *resolution.borrow_mut();
1387             let binding = match resolution.binding {
1388                 Some(binding) => binding,
1389                 None => continue,
1390             };
1391
1392             // Filter away ambiguous and gensymed imports. Gensymed imports
1393             // (e.g. implicitly injected `std`) cannot be properly encoded in metadata,
1394             // so they can cause name conflict errors downstream.
1395             let is_good_import = binding.is_import() && !binding.is_ambiguity() &&
1396                                  !(ident.name.is_gensymed() && ident.name != "_");
1397             if is_good_import || binding.is_macro_def() {
1398                 let def = binding.def();
1399                 if def != Def::Err {
1400                     if let Some(def_id) = def.opt_def_id() {
1401                         if !def_id.is_local() && def_id.krate != CrateNum::BuiltinMacros {
1402                             self.cstore.export_macros_untracked(def_id.krate);
1403                         }
1404                     }
1405                     reexports.push(Export {
1406                         ident: ident.modern(),
1407                         def: def,
1408                         span: binding.span,
1409                         vis: binding.vis,
1410                     });
1411                 }
1412             }
1413
1414             if let NameBindingKind::Import { binding: orig_binding, directive, .. } = binding.kind {
1415                 if ns == TypeNS && orig_binding.is_variant() &&
1416                     !orig_binding.vis.is_at_least(binding.vis, &*self) {
1417                         let msg = match directive.subclass {
1418                             ImportDirectiveSubclass::SingleImport { .. } => {
1419                                 format!("variant `{}` is private and cannot be re-exported",
1420                                         ident)
1421                             },
1422                             ImportDirectiveSubclass::GlobImport { .. } => {
1423                                 let msg = "enum is private and its variants \
1424                                            cannot be re-exported".to_owned();
1425                                 let error_id = (DiagnosticMessageId::ErrorId(0), // no code?!
1426                                                 Some(binding.span),
1427                                                 msg.clone());
1428                                 let fresh = self.session.one_time_diagnostics
1429                                     .borrow_mut().insert(error_id);
1430                                 if !fresh {
1431                                     continue;
1432                                 }
1433                                 msg
1434                             },
1435                             ref s @ _ => bug!("unexpected import subclass {:?}", s)
1436                         };
1437                         let mut err = self.session.struct_span_err(binding.span, &msg);
1438
1439                         let imported_module = match directive.imported_module.get() {
1440                             Some(ModuleOrUniformRoot::Module(module)) => module,
1441                             _ => bug!("module should exist"),
1442                         };
1443                         let resolutions = imported_module.parent.expect("parent should exist")
1444                             .resolutions.borrow();
1445                         let enum_path_segment_index = directive.module_path.len() - 1;
1446                         let enum_ident = directive.module_path[enum_path_segment_index].ident;
1447
1448                         let enum_resolution = resolutions.get(&(enum_ident, TypeNS))
1449                             .expect("resolution should exist");
1450                         let enum_span = enum_resolution.borrow()
1451                             .binding.expect("binding should exist")
1452                             .span;
1453                         let enum_def_span = self.session.source_map().def_span(enum_span);
1454                         let enum_def_snippet = self.session.source_map()
1455                             .span_to_snippet(enum_def_span).expect("snippet should exist");
1456                         // potentially need to strip extant `crate`/`pub(path)` for suggestion
1457                         let after_vis_index = enum_def_snippet.find("enum")
1458                             .expect("`enum` keyword should exist in snippet");
1459                         let suggestion = format!("pub {}",
1460                                                  &enum_def_snippet[after_vis_index..]);
1461
1462                         self.session
1463                             .diag_span_suggestion_once(&mut err,
1464                                                        DiagnosticMessageId::ErrorId(0),
1465                                                        enum_def_span,
1466                                                        "consider making the enum public",
1467                                                        suggestion);
1468                         err.emit();
1469                 }
1470             }
1471         }
1472
1473         if reexports.len() > 0 {
1474             if let Some(def_id) = module.def_id() {
1475                 self.export_map.insert(def_id, reexports);
1476             }
1477         }
1478     }
1479 }
1480
1481 fn import_path_to_string(names: &[Ident],
1482                          subclass: &ImportDirectiveSubclass<'_>,
1483                          span: Span) -> String {
1484     let pos = names.iter()
1485         .position(|p| span == p.span && p.name != keywords::PathRoot.name());
1486     let global = !names.is_empty() && names[0].name == keywords::PathRoot.name();
1487     if let Some(pos) = pos {
1488         let names = if global { &names[1..pos + 1] } else { &names[..pos + 1] };
1489         names_to_string(names)
1490     } else {
1491         let names = if global { &names[1..] } else { names };
1492         if names.is_empty() {
1493             import_directive_subclass_to_string(subclass)
1494         } else {
1495             format!("{}::{}",
1496                     names_to_string(names),
1497                     import_directive_subclass_to_string(subclass))
1498         }
1499     }
1500 }
1501
1502 fn import_directive_subclass_to_string(subclass: &ImportDirectiveSubclass<'_>) -> String {
1503     match *subclass {
1504         SingleImport { source, .. } => source.to_string(),
1505         GlobImport { .. } => "*".to_string(),
1506         ExternCrate { .. } => "<extern crate>".to_string(),
1507         MacroUse => "#[macro_use]".to_string(),
1508     }
1509 }