2015-03-15 16:44:19 -05:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use self::ImportDirectiveSubclass::*;
|
|
|
|
|
2015-04-28 18:36:22 -05:00
|
|
|
use DefModifiers;
|
2016-01-31 21:26:16 -06:00
|
|
|
use DefOrModule;
|
2015-03-15 16:44:19 -05:00
|
|
|
use Module;
|
|
|
|
use Namespace::{self, TypeNS, ValueNS};
|
2016-01-13 19:42:45 -06:00
|
|
|
use NameBinding;
|
2015-03-15 16:44:19 -05:00
|
|
|
use ResolveResult;
|
2016-01-13 19:42:45 -06:00
|
|
|
use ResolveResult::*;
|
2015-03-15 16:44:19 -05:00
|
|
|
use Resolver;
|
|
|
|
use UseLexicalScopeFlag;
|
|
|
|
use {names_to_string, module_to_string};
|
2015-07-14 12:42:38 -05:00
|
|
|
use {resolve_error, ResolutionError};
|
2015-03-15 16:44:19 -05:00
|
|
|
|
|
|
|
use build_reduced_graph;
|
|
|
|
|
2015-12-13 12:57:07 -06:00
|
|
|
use rustc::lint;
|
2015-03-15 16:44:19 -05:00
|
|
|
use rustc::middle::def::*;
|
2015-08-16 05:32:28 -05:00
|
|
|
use rustc::middle::def_id::DefId;
|
2015-03-15 16:44:19 -05:00
|
|
|
use rustc::middle::privacy::*;
|
|
|
|
|
2015-08-16 05:32:28 -05:00
|
|
|
use syntax::ast::{NodeId, Name};
|
2015-03-15 16:44:19 -05:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
|
|
|
use syntax::codemap::Span;
|
2015-12-14 11:06:31 -06:00
|
|
|
use syntax::util::lev_distance::find_best_match_for_name;
|
2015-03-15 16:44:19 -05:00
|
|
|
|
|
|
|
use std::mem::replace;
|
|
|
|
|
|
|
|
/// Contains data for specific types of import directives.
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone,Debug)]
|
2015-03-15 16:44:19 -05:00
|
|
|
pub enum ImportDirectiveSubclass {
|
|
|
|
SingleImport(Name /* target */, Name /* source */),
|
2015-10-26 14:31:11 -05:00
|
|
|
GlobImport,
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Whether an import can be shadowed by another import.
|
|
|
|
#[derive(Debug,PartialEq,Clone,Copy)]
|
|
|
|
pub enum Shadowable {
|
|
|
|
Always,
|
2015-10-26 14:31:11 -05:00
|
|
|
Never,
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// One import directive.
|
2016-01-31 21:26:16 -06:00
|
|
|
#[derive(Debug,Clone)]
|
2015-03-15 16:44:19 -05:00
|
|
|
pub struct ImportDirective {
|
|
|
|
pub module_path: Vec<Name>,
|
|
|
|
pub subclass: ImportDirectiveSubclass,
|
|
|
|
pub span: Span,
|
|
|
|
pub id: NodeId,
|
2015-12-10 19:38:13 -06:00
|
|
|
pub is_public: bool, // see note in ImportResolutionPerNamespace about how to use this
|
2015-03-15 16:44:19 -05:00
|
|
|
pub shadowable: Shadowable,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ImportDirective {
|
2015-10-26 14:31:11 -05:00
|
|
|
pub fn new(module_path: Vec<Name>,
|
|
|
|
subclass: ImportDirectiveSubclass,
|
|
|
|
span: Span,
|
|
|
|
id: NodeId,
|
|
|
|
is_public: bool,
|
|
|
|
shadowable: Shadowable)
|
|
|
|
-> ImportDirective {
|
2015-03-15 16:44:19 -05:00
|
|
|
ImportDirective {
|
|
|
|
module_path: module_path,
|
|
|
|
subclass: subclass,
|
|
|
|
span: span,
|
|
|
|
id: id,
|
|
|
|
is_public: is_public,
|
|
|
|
shadowable: shadowable,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The item that an import resolves to.
|
|
|
|
#[derive(Clone,Debug)]
|
2016-01-11 15:19:29 -06:00
|
|
|
pub struct Target<'a> {
|
|
|
|
pub target_module: Module<'a>,
|
|
|
|
pub binding: NameBinding<'a>,
|
2015-03-15 16:44:19 -05:00
|
|
|
pub shadowable: Shadowable,
|
|
|
|
}
|
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
impl<'a> Target<'a> {
|
|
|
|
pub fn new(target_module: Module<'a>, binding: NameBinding<'a>, shadowable: Shadowable)
|
|
|
|
-> Self {
|
2015-03-15 16:44:19 -05:00
|
|
|
Target {
|
|
|
|
target_module: target_module,
|
2015-11-15 20:10:09 -06:00
|
|
|
binding: binding,
|
2015-03-15 16:44:19 -05:00
|
|
|
shadowable: shadowable,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
2016-01-13 19:42:45 -06:00
|
|
|
/// An ImportResolution records what we know about an imported name in a given namespace.
|
2015-12-01 17:06:34 -06:00
|
|
|
/// More specifically, it records the number of unresolved `use` directives that import the name,
|
2016-01-13 19:42:45 -06:00
|
|
|
/// the `use` directive importing the name in the namespace, and the `NameBinding` to which the
|
|
|
|
/// name in the namespace resolves (if applicable).
|
2015-12-01 17:06:34 -06:00
|
|
|
/// Different `use` directives may import the same name in different namespaces.
|
2016-01-13 19:42:45 -06:00
|
|
|
pub struct ImportResolution<'a> {
|
2015-12-01 17:06:34 -06:00
|
|
|
// When outstanding_references reaches zero, outside modules can count on the targets being
|
|
|
|
// correct. Before then, all bets are off; future `use` directives could override the name.
|
|
|
|
// Since shadowing is forbidden, the only way outstanding_references > 1 in a legal program
|
|
|
|
// is if the name is imported by exactly two `use` directives, one of which resolves to a
|
|
|
|
// value and the other of which resolves to a type.
|
|
|
|
pub outstanding_references: usize,
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
/// Whether this resolution came from a `use` or a `pub use`.
|
2015-03-15 16:44:19 -05:00
|
|
|
pub is_public: bool,
|
|
|
|
|
2015-12-01 17:06:34 -06:00
|
|
|
/// Resolution of the name in the namespace
|
2016-01-11 15:19:29 -06:00
|
|
|
pub target: Option<Target<'a>>,
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2015-12-01 17:06:34 -06:00
|
|
|
/// The source node of the `use` directive
|
|
|
|
pub id: NodeId,
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
impl<'a> ImportResolution<'a> {
|
2015-12-10 19:38:13 -06:00
|
|
|
pub fn new(id: NodeId, is_public: bool) -> Self {
|
2016-01-13 19:42:45 -06:00
|
|
|
ImportResolution {
|
|
|
|
outstanding_references: 0,
|
|
|
|
id: id,
|
|
|
|
target: None,
|
|
|
|
is_public: is_public,
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
pub fn shadowable(&self) -> Shadowable {
|
|
|
|
match self.target {
|
2015-12-01 17:06:34 -06:00
|
|
|
Some(ref target) => target.shadowable,
|
|
|
|
None => Shadowable::Always,
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-31 21:26:16 -06:00
|
|
|
struct ImportResolvingError<'a> {
|
|
|
|
/// Module where the error happened
|
|
|
|
source_module: Module<'a>,
|
|
|
|
import_directive: ImportDirective,
|
2015-08-04 01:14:32 -05:00
|
|
|
span: Span,
|
|
|
|
help: String,
|
|
|
|
}
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
struct ImportResolver<'a, 'b: 'a, 'tcx: 'b> {
|
|
|
|
resolver: &'a mut Resolver<'b, 'tcx>,
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b:'a, 'tcx:'b> ImportResolver<'a, 'b, 'tcx> {
|
|
|
|
// Import resolution
|
|
|
|
//
|
|
|
|
// This is a fixed-point algorithm. We resolve imports until our efforts
|
|
|
|
// are stymied by an unresolved import; then we bail out of the current
|
|
|
|
// module and continue. We terminate successfully once no more imports
|
|
|
|
// remain or unsuccessfully when no forward progress in resolving imports
|
|
|
|
// is made.
|
|
|
|
|
|
|
|
/// Resolves all imports for the crate. This method performs the fixed-
|
|
|
|
/// point iteration.
|
|
|
|
fn resolve_imports(&mut self) {
|
|
|
|
let mut i = 0;
|
|
|
|
let mut prev_unresolved_imports = 0;
|
|
|
|
loop {
|
|
|
|
debug!("(resolving imports) iteration {}, {} imports left",
|
2015-10-26 14:31:11 -05:00
|
|
|
i,
|
|
|
|
self.resolver.unresolved_imports);
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
let module_root = self.resolver.graph_root;
|
|
|
|
let errors = self.resolve_imports_for_module_subtree(module_root);
|
2015-03-15 16:44:19 -05:00
|
|
|
|
|
|
|
if self.resolver.unresolved_imports == 0 {
|
|
|
|
debug!("(resolving imports) success");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.resolver.unresolved_imports == prev_unresolved_imports {
|
2015-07-31 11:58:59 -05:00
|
|
|
// resolving failed
|
|
|
|
if errors.len() > 0 {
|
2015-08-04 01:14:32 -05:00
|
|
|
for e in errors {
|
2016-01-31 21:26:16 -06:00
|
|
|
self.import_resolving_error(e)
|
2015-07-31 11:58:59 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-08-04 01:14:32 -05:00
|
|
|
// Report unresolved imports only if no hard error was already reported
|
|
|
|
// to avoid generating multiple errors on the same import.
|
|
|
|
// Imports that are still indeterminate at this point are actually blocked
|
|
|
|
// by errored imports, so there is no point reporting them.
|
2015-07-31 11:58:59 -05:00
|
|
|
self.resolver.report_unresolved_imports(module_root);
|
|
|
|
}
|
2015-03-15 16:44:19 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
i += 1;
|
|
|
|
prev_unresolved_imports = self.resolver.unresolved_imports;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-31 21:26:16 -06:00
|
|
|
/// Resolves an `ImportResolvingError` into the correct enum discriminant
|
|
|
|
/// and passes that on to `resolve_error`.
|
|
|
|
fn import_resolving_error(&self, e: ImportResolvingError) {
|
|
|
|
// If it's a single failed import then create a "fake" import
|
|
|
|
// resolution for it so that later resolve stages won't complain.
|
|
|
|
if let SingleImport(target, _) = e.import_directive.subclass {
|
|
|
|
let mut import_resolutions = e.source_module.import_resolutions.borrow_mut();
|
|
|
|
|
|
|
|
let resolution = import_resolutions.entry((target, ValueNS)).or_insert_with(|| {
|
|
|
|
debug!("(resolving import error) adding import resolution for `{}`",
|
|
|
|
target);
|
|
|
|
|
|
|
|
ImportResolution::new(e.import_directive.id,
|
|
|
|
e.import_directive.is_public)
|
|
|
|
});
|
|
|
|
|
|
|
|
if resolution.target.is_none() {
|
|
|
|
debug!("(resolving import error) adding fake target to import resolution of `{}`",
|
|
|
|
target);
|
|
|
|
|
|
|
|
let name_binding = NameBinding {
|
|
|
|
modifiers: DefModifiers::IMPORTABLE,
|
|
|
|
def_or_module: DefOrModule::Def(Def::Err),
|
|
|
|
span: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create a fake target pointing to a fake name binding in our
|
|
|
|
// own module
|
|
|
|
let target = Target::new(e.source_module,
|
|
|
|
name_binding,
|
|
|
|
Shadowable::Always);
|
|
|
|
|
|
|
|
resolution.target = Some(target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let path = import_path_to_string(&e.import_directive.module_path,
|
|
|
|
e.import_directive.subclass);
|
|
|
|
|
|
|
|
resolve_error(self.resolver,
|
|
|
|
e.span,
|
|
|
|
ResolutionError::UnresolvedImport(Some((&path, &e.help))));
|
|
|
|
}
|
|
|
|
|
2015-03-15 16:44:19 -05:00
|
|
|
/// Attempts to resolve imports for the given module and all of its
|
|
|
|
/// submodules.
|
2015-10-26 14:31:11 -05:00
|
|
|
fn resolve_imports_for_module_subtree(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module_: Module<'b>)
|
2016-01-31 21:26:16 -06:00
|
|
|
-> Vec<ImportResolvingError<'b>> {
|
2015-07-31 11:58:59 -05:00
|
|
|
let mut errors = Vec::new();
|
2015-03-15 16:44:19 -05:00
|
|
|
debug!("(resolving imports for module subtree) resolving {}",
|
|
|
|
module_to_string(&*module_));
|
2016-01-11 15:19:29 -06:00
|
|
|
let orig_module = replace(&mut self.resolver.current_module, module_);
|
|
|
|
errors.extend(self.resolve_imports_for_module(module_));
|
2015-03-15 16:44:19 -05:00
|
|
|
self.resolver.current_module = orig_module;
|
|
|
|
|
2016-01-29 17:34:58 -06:00
|
|
|
build_reduced_graph::populate_module_if_necessary(self.resolver, module_);
|
2016-01-29 16:21:36 -06:00
|
|
|
module_.for_each_local_child(|_, _, child_node| {
|
2016-01-13 19:42:45 -06:00
|
|
|
match child_node.module() {
|
2015-03-15 16:44:19 -05:00
|
|
|
None => {
|
|
|
|
// Nothing to do.
|
|
|
|
}
|
|
|
|
Some(child_module) => {
|
2015-07-31 11:58:59 -05:00
|
|
|
errors.extend(self.resolve_imports_for_module_subtree(child_module));
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-29 16:21:36 -06:00
|
|
|
});
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2015-06-11 07:56:07 -05:00
|
|
|
for (_, child_module) in module_.anonymous_children.borrow().iter() {
|
2016-01-11 15:19:29 -06:00
|
|
|
errors.extend(self.resolve_imports_for_module_subtree(child_module));
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2015-07-31 11:58:59 -05:00
|
|
|
|
|
|
|
errors
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempts to resolve imports for the given module only.
|
2016-01-31 21:26:16 -06:00
|
|
|
fn resolve_imports_for_module(&mut self, module: Module<'b>) -> Vec<ImportResolvingError<'b>> {
|
2015-07-31 11:58:59 -05:00
|
|
|
let mut errors = Vec::new();
|
|
|
|
|
2015-03-15 16:44:19 -05:00
|
|
|
if module.all_imports_resolved() {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(resolving imports for module) all imports resolved for {}",
|
2015-03-15 16:44:19 -05:00
|
|
|
module_to_string(&*module));
|
2015-07-31 11:58:59 -05:00
|
|
|
return errors;
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
2015-07-31 11:58:59 -05:00
|
|
|
let mut imports = module.imports.borrow_mut();
|
2015-03-15 16:44:19 -05:00
|
|
|
let import_count = imports.len();
|
2015-07-31 11:58:59 -05:00
|
|
|
let mut indeterminate_imports = Vec::new();
|
|
|
|
while module.resolved_import_count.get() + indeterminate_imports.len() < import_count {
|
2015-03-15 16:44:19 -05:00
|
|
|
let import_index = module.resolved_import_count.get();
|
2016-01-11 15:19:29 -06:00
|
|
|
match self.resolve_import_for_module(module, &imports[import_index]) {
|
2015-03-15 16:44:19 -05:00
|
|
|
ResolveResult::Failed(err) => {
|
2015-07-31 11:58:59 -05:00
|
|
|
let import_directive = &imports[import_index];
|
2015-03-15 16:44:19 -05:00
|
|
|
let (span, help) = match err {
|
|
|
|
Some((span, msg)) => (span, format!(". {}", msg)),
|
2015-10-26 14:31:11 -05:00
|
|
|
None => (import_directive.span, String::new()),
|
2015-03-15 16:44:19 -05:00
|
|
|
};
|
2015-08-04 01:14:32 -05:00
|
|
|
errors.push(ImportResolvingError {
|
2016-01-31 21:26:16 -06:00
|
|
|
source_module: module,
|
|
|
|
import_directive: import_directive.clone(),
|
2015-10-26 14:31:11 -05:00
|
|
|
span: span,
|
|
|
|
help: help,
|
|
|
|
});
|
2015-07-31 11:58:59 -05:00
|
|
|
}
|
|
|
|
ResolveResult::Indeterminate => {}
|
|
|
|
ResolveResult::Success(()) => {
|
|
|
|
// count success
|
|
|
|
module.resolved_import_count
|
|
|
|
.set(module.resolved_import_count.get() + 1);
|
|
|
|
continue;
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
2015-07-31 11:58:59 -05:00
|
|
|
// This resolution was not successful, keep it for later
|
|
|
|
indeterminate_imports.push(imports.swap_remove(import_index));
|
2015-03-15 16:44:19 -05:00
|
|
|
|
|
|
|
}
|
2015-07-31 11:58:59 -05:00
|
|
|
|
|
|
|
imports.extend(indeterminate_imports);
|
|
|
|
|
|
|
|
errors
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempts to resolve the given import. The return value indicates
|
|
|
|
/// failure if we're certain the name does not exist, indeterminate if we
|
|
|
|
/// don't know whether the name exists at the moment due to other
|
|
|
|
/// currently-unresolved imports, or success if we know the name exists.
|
|
|
|
/// If successful, the resolved bindings are written into the module.
|
|
|
|
fn resolve_import_for_module(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module_: Module<'b>,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_directive: &ImportDirective)
|
|
|
|
-> ResolveResult<()> {
|
|
|
|
debug!("(resolving import for module) resolving import `{}::...` in `{}`",
|
2016-01-16 05:41:19 -06:00
|
|
|
names_to_string(&import_directive.module_path),
|
2015-03-15 16:44:19 -05:00
|
|
|
module_to_string(&*module_));
|
|
|
|
|
2016-01-16 05:41:19 -06:00
|
|
|
self.resolver
|
|
|
|
.resolve_module_path(module_,
|
|
|
|
&import_directive.module_path,
|
|
|
|
UseLexicalScopeFlag::DontUseLexicalScope,
|
|
|
|
import_directive.span)
|
|
|
|
.and_then(|(containing_module, lp)| {
|
2015-03-15 16:44:19 -05:00
|
|
|
// We found the module that the target is contained
|
|
|
|
// within. Attempt to resolve the import within it.
|
2016-01-16 05:41:19 -06:00
|
|
|
if let SingleImport(target, source) = import_directive.subclass {
|
2016-01-29 17:34:58 -06:00
|
|
|
self.resolve_single_import(module_,
|
2016-01-16 05:41:19 -06:00
|
|
|
containing_module,
|
|
|
|
target,
|
|
|
|
source,
|
|
|
|
import_directive,
|
|
|
|
lp)
|
|
|
|
} else {
|
2016-01-29 17:34:58 -06:00
|
|
|
self.resolve_glob_import(module_, containing_module, import_directive, lp)
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-16 05:41:19 -06:00
|
|
|
})
|
|
|
|
.and_then(|()| {
|
|
|
|
// Decrement the count of unresolved imports.
|
2015-03-15 16:44:19 -05:00
|
|
|
assert!(self.resolver.unresolved_imports >= 1);
|
|
|
|
self.resolver.unresolved_imports -= 1;
|
|
|
|
|
2016-01-16 05:41:19 -06:00
|
|
|
if let GlobImport = import_directive.subclass {
|
2015-08-06 05:47:10 -05:00
|
|
|
module_.dec_glob_count();
|
2015-08-05 14:47:01 -05:00
|
|
|
if import_directive.is_public {
|
2015-08-06 05:47:10 -05:00
|
|
|
module_.dec_pub_glob_count();
|
2015-08-05 14:47:01 -05:00
|
|
|
}
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-16 05:41:19 -06:00
|
|
|
if import_directive.is_public {
|
|
|
|
module_.dec_pub_count();
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-16 05:41:19 -06:00
|
|
|
Success(())
|
|
|
|
})
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:00:29 -06:00
|
|
|
/// Resolves the name in the namespace of the module because it is being imported by
|
|
|
|
/// importing_module. Returns the module in which the name was defined (as opposed to imported),
|
|
|
|
/// the name bindings defining the name, and whether or not the name was imported into `module`.
|
|
|
|
fn resolve_name_in_module(&mut self,
|
|
|
|
module: Module<'b>, // Module containing the name
|
|
|
|
name: Name,
|
|
|
|
ns: Namespace,
|
|
|
|
importing_module: Module<'b>) // Module importing the name
|
|
|
|
-> (ResolveResult<(Module<'b>, NameBinding<'b>)>, bool) {
|
|
|
|
build_reduced_graph::populate_module_if_necessary(self.resolver, module);
|
|
|
|
if let Some(name_binding) = module.get_child(name, ns) {
|
2016-01-29 16:21:36 -06:00
|
|
|
if name_binding.is_extern_crate() {
|
2016-01-21 21:00:29 -06:00
|
|
|
// track the extern crate as used.
|
2016-01-29 16:21:36 -06:00
|
|
|
if let Some(DefId { krate, .. }) = name_binding.module().unwrap().def_id() {
|
|
|
|
self.resolver.used_crates.insert(krate);
|
2016-01-21 21:00:29 -06:00
|
|
|
}
|
|
|
|
}
|
2016-01-29 16:21:36 -06:00
|
|
|
return (Success((module, name_binding)), false)
|
2016-01-21 21:00:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// If there is an unresolved glob at this point in the containing module, bail out.
|
|
|
|
// We don't know enough to be able to resolve the name.
|
|
|
|
if module.pub_glob_count.get() > 0 {
|
|
|
|
return (Indeterminate, false);
|
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
match module.import_resolutions.borrow().get(&(name, ns)) {
|
|
|
|
// The containing module definitely doesn't have an exported import with the
|
|
|
|
// name in question. We can therefore accurately report that names are unbound.
|
2016-01-21 21:00:29 -06:00
|
|
|
None => (Failed(None), false),
|
2016-01-13 19:42:45 -06:00
|
|
|
|
|
|
|
// The name is an import which has been fully resolved, so we just follow it.
|
|
|
|
Some(resolution) if resolution.outstanding_references == 0 => {
|
|
|
|
// Import resolutions must be declared with "pub" in order to be exported.
|
|
|
|
if !resolution.is_public {
|
2016-01-21 21:00:29 -06:00
|
|
|
return (Failed(None), false);
|
2016-01-13 19:42:45 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
let target = resolution.target.clone();
|
|
|
|
if let Some(Target { target_module, binding, shadowable: _ }) = target {
|
2016-01-16 06:09:13 -06:00
|
|
|
self.resolver.record_import_use(name, ns, &resolution);
|
2016-01-21 21:00:29 -06:00
|
|
|
(Success((target_module, binding)), true)
|
2016-01-13 19:42:45 -06:00
|
|
|
} else {
|
2016-01-21 21:00:29 -06:00
|
|
|
(Failed(None), false)
|
2016-01-13 19:42:45 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If module is the same module whose import we are resolving and
|
|
|
|
// it has an unresolved import with the same name as `name`, then the user
|
|
|
|
// is actually trying to import an item that is declared in the same scope
|
|
|
|
//
|
|
|
|
// e.g
|
|
|
|
// use self::submodule;
|
|
|
|
// pub mod submodule;
|
|
|
|
//
|
2016-01-21 21:00:29 -06:00
|
|
|
// In this case we continue as if we resolved the import and let
|
|
|
|
// check_for_conflicts_between_imports_and_items handle the conflict
|
2016-01-13 19:42:45 -06:00
|
|
|
Some(_) => match (importing_module.def_id(), module.def_id()) {
|
2016-01-21 21:00:29 -06:00
|
|
|
(Some(id1), Some(id2)) if id1 == id2 => (Failed(None), false),
|
|
|
|
_ => (Indeterminate, false)
|
2016-01-13 19:42:45 -06:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-15 16:44:19 -05:00
|
|
|
fn resolve_single_import(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module_: Module<'b>,
|
|
|
|
target_module: Module<'b>,
|
2015-03-15 16:44:19 -05:00
|
|
|
target: Name,
|
|
|
|
source: Name,
|
|
|
|
directive: &ImportDirective,
|
|
|
|
lp: LastPrivate)
|
|
|
|
-> ResolveResult<()> {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(resolving single import) resolving `{}` = `{}::{}` from `{}` id {}, last \
|
|
|
|
private {:?}",
|
2015-07-08 15:55:22 -05:00
|
|
|
target,
|
2015-03-15 16:44:19 -05:00
|
|
|
module_to_string(&*target_module),
|
2015-07-08 15:55:22 -05:00
|
|
|
source,
|
2015-03-15 16:44:19 -05:00
|
|
|
module_to_string(module_),
|
|
|
|
directive.id,
|
|
|
|
lp);
|
|
|
|
|
|
|
|
let lp = match lp {
|
|
|
|
LastMod(lp) => lp,
|
|
|
|
LastImport {..} => {
|
2015-10-26 14:31:11 -05:00
|
|
|
self.resolver
|
|
|
|
.session
|
|
|
|
.span_bug(directive.span, "not expecting Import here, must be LastMod")
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// We need to resolve both namespaces for this to succeed.
|
2016-01-21 21:00:29 -06:00
|
|
|
let (value_result, value_used_reexport) =
|
2016-01-29 17:34:58 -06:00
|
|
|
self.resolve_name_in_module(target_module, source, ValueNS, module_);
|
2016-01-21 21:00:29 -06:00
|
|
|
let (type_result, type_used_reexport) =
|
2016-01-29 17:34:58 -06:00
|
|
|
self.resolve_name_in_module(target_module, source, TypeNS, module_);
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2016-01-21 21:00:29 -06:00
|
|
|
match (&value_result, &type_result) {
|
|
|
|
(&Success((_, ref name_binding)), _) if !value_used_reexport &&
|
|
|
|
directive.is_public &&
|
|
|
|
!name_binding.is_public() => {
|
2016-01-13 19:42:45 -06:00
|
|
|
let msg = format!("`{}` is private, and cannot be reexported", source);
|
|
|
|
let note_msg = format!("Consider marking `{}` as `pub` in the imported module",
|
|
|
|
source);
|
|
|
|
struct_span_err!(self.resolver.session, directive.span, E0364, "{}", &msg)
|
|
|
|
.span_note(directive.span, ¬e_msg)
|
|
|
|
.emit();
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:00:29 -06:00
|
|
|
(_, &Success((_, ref name_binding))) if !type_used_reexport &&
|
|
|
|
directive.is_public => {
|
2016-01-13 19:42:45 -06:00
|
|
|
if !name_binding.is_public() {
|
|
|
|
let msg = format!("`{}` is private, and cannot be reexported", source);
|
|
|
|
let note_msg =
|
|
|
|
format!("Consider declaring type or module `{}` with `pub`", source);
|
|
|
|
struct_span_err!(self.resolver.session, directive.span, E0365, "{}", &msg)
|
|
|
|
.span_note(directive.span, ¬e_msg)
|
|
|
|
.emit();
|
|
|
|
} else if name_binding.defined_with(DefModifiers::PRIVATE_VARIANT) {
|
|
|
|
let msg = format!("variant `{}` is private, and cannot be reexported \
|
|
|
|
(error E0364), consider declaring its enum as `pub`",
|
|
|
|
source);
|
|
|
|
self.resolver.session.add_lint(lint::builtin::PRIVATE_IN_PUBLIC,
|
|
|
|
directive.id,
|
|
|
|
directive.span,
|
|
|
|
msg);
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
}
|
2015-12-14 11:06:31 -06:00
|
|
|
|
2016-01-21 21:00:29 -06:00
|
|
|
_ => {}
|
2016-01-13 19:42:45 -06:00
|
|
|
}
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2016-01-21 21:00:29 -06:00
|
|
|
let mut lev_suggestion = "".to_owned();
|
2016-01-13 19:42:45 -06:00
|
|
|
match (&value_result, &type_result) {
|
|
|
|
(&Indeterminate, _) | (_, &Indeterminate) => return Indeterminate,
|
|
|
|
(&Failed(_), &Failed(_)) => {
|
2016-01-21 21:00:29 -06:00
|
|
|
let children = target_module.children.borrow();
|
|
|
|
let names = children.keys().map(|&(ref name, _)| name);
|
|
|
|
if let Some(name) = find_best_match_for_name(names, &source.as_str(), None) {
|
|
|
|
lev_suggestion = format!(". Did you mean to use `{}`?", name);
|
|
|
|
} else {
|
|
|
|
let resolutions = target_module.import_resolutions.borrow();
|
|
|
|
let names = resolutions.keys().map(|&(ref name, _)| name);
|
2016-01-13 19:42:45 -06:00
|
|
|
if let Some(name) = find_best_match_for_name(names,
|
|
|
|
&source.as_str(),
|
|
|
|
None) {
|
|
|
|
lev_suggestion =
|
2016-01-21 21:00:29 -06:00
|
|
|
format!(". Did you mean to use the re-exported import `{}`?", name);
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
_ => (),
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut value_used_public = false;
|
|
|
|
let mut type_used_public = false;
|
|
|
|
|
|
|
|
// We've successfully resolved the import. Write the results in.
|
|
|
|
let mut import_resolutions = module_.import_resolutions.borrow_mut();
|
|
|
|
|
|
|
|
{
|
2016-01-13 19:42:45 -06:00
|
|
|
let mut check_and_write_import = |namespace, result, used_public: &mut bool| {
|
|
|
|
let result: &ResolveResult<(Module<'b>, NameBinding)> = result;
|
|
|
|
|
|
|
|
let import_resolution = import_resolutions.get_mut(&(target, namespace)).unwrap();
|
2015-03-15 16:44:19 -05:00
|
|
|
let namespace_name = match namespace {
|
|
|
|
TypeNS => "type",
|
|
|
|
ValueNS => "value",
|
|
|
|
};
|
|
|
|
|
|
|
|
match *result {
|
2016-01-13 19:42:45 -06:00
|
|
|
Success((ref target_module, ref name_binding)) => {
|
2015-03-15 16:44:19 -05:00
|
|
|
debug!("(resolving single import) found {:?} target: {:?}",
|
|
|
|
namespace_name,
|
2015-11-15 20:10:09 -06:00
|
|
|
name_binding.def());
|
2015-10-26 14:31:11 -05:00
|
|
|
self.check_for_conflicting_import(&import_resolution,
|
|
|
|
directive.span,
|
|
|
|
target,
|
|
|
|
namespace);
|
|
|
|
|
2015-11-15 20:10:09 -06:00
|
|
|
self.check_that_import_is_importable(&name_binding,
|
2015-10-26 14:31:11 -05:00
|
|
|
directive.span,
|
2015-11-15 20:10:09 -06:00
|
|
|
target);
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
import_resolution.target = Some(Target::new(target_module,
|
|
|
|
name_binding.clone(),
|
|
|
|
directive.shadowable));
|
|
|
|
import_resolution.id = directive.id;
|
|
|
|
import_resolution.is_public = directive.is_public;
|
2016-01-11 22:55:21 -06:00
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
self.add_export(module_, target, &import_resolution);
|
2015-11-15 20:10:09 -06:00
|
|
|
*used_public = name_binding.is_public();
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
Failed(_) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
Indeterminate => {
|
2015-03-15 16:44:19 -05:00
|
|
|
panic!("{:?} result should be known at this point", namespace_name);
|
|
|
|
}
|
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
|
|
|
|
self.check_for_conflicts_between_imports_and_items(module_,
|
|
|
|
import_resolution,
|
|
|
|
directive.span,
|
|
|
|
(target, namespace));
|
2015-03-15 16:44:19 -05:00
|
|
|
};
|
|
|
|
check_and_write_import(ValueNS, &value_result, &mut value_used_public);
|
|
|
|
check_and_write_import(TypeNS, &type_result, &mut type_used_public);
|
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
if let (&Failed(_), &Failed(_)) = (&value_result, &type_result) {
|
2015-12-14 11:06:31 -06:00
|
|
|
let msg = format!("There is no `{}` in `{}`{}",
|
2015-07-08 15:55:22 -05:00
|
|
|
source,
|
2016-01-29 17:34:58 -06:00
|
|
|
module_to_string(target_module), lev_suggestion);
|
2016-01-21 21:00:29 -06:00
|
|
|
return Failed(Some((directive.span, msg)));
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-21 21:00:29 -06:00
|
|
|
|
2015-03-15 16:44:19 -05:00
|
|
|
let value_used_public = value_used_reexport || value_used_public;
|
|
|
|
let type_used_public = type_used_reexport || type_used_public;
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
let value_def_and_priv = {
|
|
|
|
let import_resolution_value = import_resolutions.get_mut(&(target, ValueNS)).unwrap();
|
|
|
|
assert!(import_resolution_value.outstanding_references >= 1);
|
|
|
|
import_resolution_value.outstanding_references -= 1;
|
|
|
|
|
|
|
|
// Record what this import resolves to for later uses in documentation,
|
|
|
|
// this may resolve to either a value or a type, but for documentation
|
|
|
|
// purposes it's good enough to just favor one over the other.
|
|
|
|
import_resolution_value.target.as_ref().map(|target| {
|
|
|
|
let def = target.binding.def().unwrap();
|
2016-01-21 21:00:29 -06:00
|
|
|
let last_private = if value_used_public { lp } else { DependsOn(def.def_id()) };
|
|
|
|
(def, last_private)
|
2015-10-26 14:31:11 -05:00
|
|
|
})
|
2016-01-13 19:42:45 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let type_def_and_priv = {
|
|
|
|
let import_resolution_type = import_resolutions.get_mut(&(target, TypeNS)).unwrap();
|
|
|
|
assert!(import_resolution_type.outstanding_references >= 1);
|
|
|
|
import_resolution_type.outstanding_references -= 1;
|
|
|
|
|
|
|
|
import_resolution_type.target.as_ref().map(|target| {
|
|
|
|
let def = target.binding.def().unwrap();
|
2016-01-21 21:00:29 -06:00
|
|
|
let last_private = if type_used_public { lp } else { DependsOn(def.def_id()) };
|
|
|
|
(def, last_private)
|
2015-10-26 14:31:11 -05:00
|
|
|
})
|
2016-01-13 19:42:45 -06:00
|
|
|
};
|
2015-03-15 16:44:19 -05:00
|
|
|
|
|
|
|
let import_lp = LastImport {
|
|
|
|
value_priv: value_def_and_priv.map(|(_, p)| p),
|
|
|
|
value_used: Used,
|
|
|
|
type_priv: type_def_and_priv.map(|(_, p)| p),
|
2015-10-26 14:31:11 -05:00
|
|
|
type_used: Used,
|
2015-03-15 16:44:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some((def, _)) = value_def_and_priv {
|
2015-10-26 14:31:11 -05:00
|
|
|
self.resolver.def_map.borrow_mut().insert(directive.id,
|
|
|
|
PathResolution {
|
|
|
|
base_def: def,
|
|
|
|
last_private: import_lp,
|
|
|
|
depth: 0,
|
|
|
|
});
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
if let Some((def, _)) = type_def_and_priv {
|
2015-10-26 14:31:11 -05:00
|
|
|
self.resolver.def_map.borrow_mut().insert(directive.id,
|
|
|
|
PathResolution {
|
|
|
|
base_def: def,
|
|
|
|
last_private: import_lp,
|
|
|
|
depth: 0,
|
|
|
|
});
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!("(resolving single import) successfully resolved import");
|
2016-01-21 21:00:29 -06:00
|
|
|
return Success(());
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Resolves a glob import. Note that this function cannot fail; it either
|
|
|
|
// succeeds or bails out (as importing * from an empty module or a module
|
|
|
|
// that exports nothing is valid). target_module is the module we are
|
|
|
|
// actually importing, i.e., `foo` in `use foo::*`.
|
|
|
|
fn resolve_glob_import(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module_: Module<'b>,
|
|
|
|
target_module: Module<'b>,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_directive: &ImportDirective,
|
|
|
|
lp: LastPrivate)
|
|
|
|
-> ResolveResult<()> {
|
|
|
|
let id = import_directive.id;
|
|
|
|
let is_public = import_directive.is_public;
|
|
|
|
|
|
|
|
// This function works in a highly imperative manner; it eagerly adds
|
|
|
|
// everything it can to the list of import resolutions of the module
|
|
|
|
// node.
|
|
|
|
debug!("(resolving glob import) resolving glob import {}", id);
|
|
|
|
|
|
|
|
// We must bail out if the node has unresolved imports of any kind
|
|
|
|
// (including globs).
|
2015-08-05 14:47:01 -05:00
|
|
|
if (*target_module).pub_count.get() > 0 {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(resolving glob import) target module has unresolved pub imports; bailing out");
|
2015-03-15 16:44:19 -05:00
|
|
|
return ResolveResult::Indeterminate;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add all resolved imports from the containing module.
|
|
|
|
let import_resolutions = target_module.import_resolutions.borrow();
|
2015-08-05 14:47:01 -05:00
|
|
|
|
|
|
|
if module_.import_resolutions.borrow_state() != ::std::cell::BorrowState::Unused {
|
|
|
|
// In this case, target_module == module_
|
|
|
|
// This means we are trying to glob import a module into itself,
|
|
|
|
// and it is a no-go
|
2015-08-07 05:00:46 -05:00
|
|
|
debug!("(resolving glob imports) target module is current module; giving up");
|
2015-10-26 14:31:11 -05:00
|
|
|
return ResolveResult::Failed(Some((import_directive.span,
|
|
|
|
"Cannot glob-import a module into itself.".into())));
|
2015-08-05 14:47:01 -05:00
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
for (&(name, ns), target_import_resolution) in import_resolutions.iter() {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(resolving glob import) writing module resolution {} into `{}`",
|
2016-01-13 19:42:45 -06:00
|
|
|
name,
|
2015-03-15 16:44:19 -05:00
|
|
|
module_to_string(module_));
|
|
|
|
|
|
|
|
// Here we merge two import resolutions.
|
|
|
|
let mut import_resolutions = module_.import_resolutions.borrow_mut();
|
2016-01-13 19:42:45 -06:00
|
|
|
let mut dest_import_resolution =
|
|
|
|
import_resolutions.entry((name, ns))
|
|
|
|
.or_insert_with(|| ImportResolution::new(id, is_public));
|
|
|
|
|
|
|
|
match target_import_resolution.target {
|
|
|
|
Some(ref target) if target_import_resolution.is_public => {
|
|
|
|
self.check_for_conflicting_import(&dest_import_resolution,
|
|
|
|
import_directive.span,
|
|
|
|
name,
|
|
|
|
ns);
|
|
|
|
dest_import_resolution.id = id;
|
|
|
|
dest_import_resolution.is_public = is_public;
|
|
|
|
dest_import_resolution.target = Some(target.clone());
|
|
|
|
self.add_export(module_, name, &dest_import_resolution);
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
_ => {}
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add all children from the containing module.
|
2016-01-29 17:34:58 -06:00
|
|
|
build_reduced_graph::populate_module_if_necessary(self.resolver, target_module);
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2016-01-29 16:21:36 -06:00
|
|
|
target_module.for_each_local_child(|name, ns, name_binding| {
|
2015-03-15 16:44:19 -05:00
|
|
|
self.merge_import_resolution(module_,
|
2016-01-11 15:19:29 -06:00
|
|
|
target_module,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_directive,
|
2016-01-29 16:21:36 -06:00
|
|
|
(name, ns),
|
2016-01-13 19:42:45 -06:00
|
|
|
name_binding.clone());
|
2016-01-29 16:21:36 -06:00
|
|
|
});
|
2015-03-15 16:44:19 -05:00
|
|
|
|
|
|
|
// Record the destination of this import
|
2015-11-16 01:59:50 -06:00
|
|
|
if let Some(did) = target_module.def_id() {
|
2015-10-26 14:31:11 -05:00
|
|
|
self.resolver.def_map.borrow_mut().insert(id,
|
|
|
|
PathResolution {
|
2016-01-20 13:31:10 -06:00
|
|
|
base_def: Def::Mod(did),
|
2015-10-26 14:31:11 -05:00
|
|
|
last_private: lp,
|
|
|
|
depth: 0,
|
|
|
|
});
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!("(resolving glob import) successfully resolved import");
|
|
|
|
return ResolveResult::Success(());
|
|
|
|
}
|
|
|
|
|
|
|
|
fn merge_import_resolution(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module_: Module<'b>,
|
|
|
|
containing_module: Module<'b>,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_directive: &ImportDirective,
|
2016-01-13 19:42:45 -06:00
|
|
|
(name, ns): (Name, Namespace),
|
|
|
|
name_binding: NameBinding<'b>) {
|
2015-03-15 16:44:19 -05:00
|
|
|
let id = import_directive.id;
|
|
|
|
let is_public = import_directive.is_public;
|
|
|
|
|
|
|
|
let mut import_resolutions = module_.import_resolutions.borrow_mut();
|
2016-01-13 19:42:45 -06:00
|
|
|
let dest_import_resolution = import_resolutions.entry((name, ns)).or_insert_with(|| {
|
|
|
|
ImportResolution::new(id, is_public)
|
2015-12-10 19:38:13 -06:00
|
|
|
});
|
2015-03-15 16:44:19 -05:00
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(resolving glob import) writing resolution `{}` in `{}` to `{}`",
|
2015-07-08 15:55:22 -05:00
|
|
|
name,
|
2015-03-15 16:44:19 -05:00
|
|
|
module_to_string(&*containing_module),
|
|
|
|
module_to_string(module_));
|
|
|
|
|
|
|
|
// Merge the child item into the import resolution.
|
2016-01-13 19:42:45 -06:00
|
|
|
let modifier = DefModifiers::IMPORTABLE | DefModifiers::PUBLIC;
|
|
|
|
|
|
|
|
if ns == TypeNS && is_public && name_binding.defined_with(DefModifiers::PRIVATE_VARIANT) {
|
|
|
|
let msg = format!("variant `{}` is private, and cannot be reexported (error \
|
|
|
|
E0364), consider declaring its enum as `pub`", name);
|
|
|
|
self.resolver.session.add_lint(lint::builtin::PRIVATE_IN_PUBLIC,
|
|
|
|
import_directive.id,
|
|
|
|
import_directive.span,
|
|
|
|
msg);
|
|
|
|
}
|
2015-04-28 18:36:22 -05:00
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
if name_binding.defined_with(modifier) {
|
|
|
|
let namespace_name = match ns {
|
|
|
|
TypeNS => "type",
|
|
|
|
ValueNS => "value",
|
2015-03-15 16:44:19 -05:00
|
|
|
};
|
2016-01-13 19:42:45 -06:00
|
|
|
debug!("(resolving glob import) ... for {} target", namespace_name);
|
|
|
|
if dest_import_resolution.shadowable() == Shadowable::Never {
|
|
|
|
let msg = format!("a {} named `{}` has already been imported in this module",
|
|
|
|
namespace_name,
|
|
|
|
name);
|
|
|
|
span_err!(self.resolver.session, import_directive.span, E0251, "{}", msg);
|
2016-01-31 21:26:16 -06:00
|
|
|
} else {
|
2016-01-13 19:42:45 -06:00
|
|
|
let target = Target::new(containing_module,
|
|
|
|
name_binding.clone(),
|
|
|
|
import_directive.shadowable);
|
|
|
|
dest_import_resolution.target = Some(target);
|
|
|
|
dest_import_resolution.id = id;
|
|
|
|
dest_import_resolution.is_public = is_public;
|
|
|
|
self.add_export(module_, name, &dest_import_resolution);
|
|
|
|
}
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
self.check_for_conflicts_between_imports_and_items(module_,
|
|
|
|
dest_import_resolution,
|
|
|
|
import_directive.span,
|
2016-01-13 19:42:45 -06:00
|
|
|
(name, ns));
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
|
2016-01-11 22:55:21 -06:00
|
|
|
fn add_export(&mut self, module: Module<'b>, name: Name, resolution: &ImportResolution<'b>) {
|
|
|
|
if !resolution.is_public { return }
|
|
|
|
let node_id = match module.def_id() {
|
|
|
|
Some(def_id) => self.resolver.ast_map.as_local_node_id(def_id).unwrap(),
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
let export = match resolution.target.as_ref().unwrap().binding.def() {
|
|
|
|
Some(def) => Export { name: name, def_id: def.def_id() },
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
self.resolver.export_map.entry(node_id).or_insert(Vec::new()).push(export);
|
|
|
|
}
|
|
|
|
|
2015-03-15 16:44:19 -05:00
|
|
|
/// Checks that imported names and items don't have the same name.
|
|
|
|
fn check_for_conflicting_import(&mut self,
|
2016-01-13 19:42:45 -06:00
|
|
|
import_resolution: &ImportResolution,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_span: Span,
|
|
|
|
name: Name,
|
|
|
|
namespace: Namespace) {
|
2016-01-13 19:42:45 -06:00
|
|
|
let target = &import_resolution.target;
|
2015-03-15 16:44:19 -05:00
|
|
|
debug!("check_for_conflicting_import: {}; target exists: {}",
|
2015-07-08 15:55:22 -05:00
|
|
|
name,
|
2015-03-15 16:44:19 -05:00
|
|
|
target.is_some());
|
|
|
|
|
2015-12-01 17:06:34 -06:00
|
|
|
match *target {
|
2015-03-15 16:44:19 -05:00
|
|
|
Some(ref target) if target.shadowable != Shadowable::Always => {
|
2015-04-25 13:35:47 -05:00
|
|
|
let ns_word = match namespace {
|
2015-06-17 19:41:55 -05:00
|
|
|
TypeNS => {
|
2015-11-15 20:10:09 -06:00
|
|
|
match target.binding.module() {
|
2015-11-16 01:59:50 -06:00
|
|
|
Some(ref module) if module.is_normal() => "module",
|
|
|
|
Some(ref module) if module.is_trait() => "trait",
|
2015-11-15 20:10:09 -06:00
|
|
|
_ => "type",
|
2015-10-26 14:31:11 -05:00
|
|
|
}
|
|
|
|
}
|
2015-04-25 13:35:47 -05:00
|
|
|
ValueNS => "value",
|
|
|
|
};
|
2016-01-13 19:42:45 -06:00
|
|
|
let use_id = import_resolution.id;
|
2015-04-30 21:46:15 -05:00
|
|
|
let item = self.resolver.ast_map.expect_item(use_id);
|
2015-12-20 15:00:43 -06:00
|
|
|
let mut err = struct_span_err!(self.resolver.session,
|
|
|
|
import_span,
|
|
|
|
E0252,
|
|
|
|
"a {} named `{}` has already been imported \
|
|
|
|
in this module",
|
|
|
|
ns_word,
|
|
|
|
name);
|
|
|
|
span_note!(&mut err,
|
2015-10-26 14:31:11 -05:00
|
|
|
item.span,
|
|
|
|
"previous import of `{}` here",
|
|
|
|
name);
|
2015-12-20 15:00:43 -06:00
|
|
|
err.emit();
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
Some(_) | None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks that an import is actually importable
|
|
|
|
fn check_that_import_is_importable(&mut self,
|
2015-11-15 20:10:09 -06:00
|
|
|
name_binding: &NameBinding,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_span: Span,
|
2015-11-15 20:10:09 -06:00
|
|
|
name: Name) {
|
|
|
|
if !name_binding.defined_with(DefModifiers::IMPORTABLE) {
|
2015-10-26 14:31:11 -05:00
|
|
|
let msg = format!("`{}` is not directly importable", name);
|
2015-03-15 16:44:19 -05:00
|
|
|
span_err!(self.resolver.session, import_span, E0253, "{}", &msg[..]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks that imported names and items don't have the same name.
|
|
|
|
fn check_for_conflicts_between_imports_and_items(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module: Module<'b>,
|
2016-01-13 19:42:45 -06:00
|
|
|
import: &ImportResolution<'b>,
|
2015-03-15 16:44:19 -05:00
|
|
|
import_span: Span,
|
2016-01-13 19:42:45 -06:00
|
|
|
(name, ns): (Name, Namespace)) {
|
2015-03-15 16:44:19 -05:00
|
|
|
// Check for item conflicts.
|
2016-01-13 19:42:45 -06:00
|
|
|
let name_binding = match module.get_child(name, ns) {
|
2015-03-15 16:44:19 -05:00
|
|
|
None => {
|
|
|
|
// There can't be any conflicts.
|
2015-10-26 14:31:11 -05:00
|
|
|
return;
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
Some(name_binding) => name_binding,
|
2015-03-15 16:44:19 -05:00
|
|
|
};
|
|
|
|
|
2016-01-27 21:03:40 -06:00
|
|
|
if ns == ValueNS {
|
2016-01-13 19:42:45 -06:00
|
|
|
match import.target {
|
|
|
|
Some(ref target) if target.shadowable != Shadowable::Always => {
|
2015-12-20 15:00:43 -06:00
|
|
|
let mut err = struct_span_err!(self.resolver.session,
|
|
|
|
import_span,
|
|
|
|
E0255,
|
|
|
|
"import `{}` conflicts with \
|
|
|
|
value in this module",
|
|
|
|
name);
|
2016-01-13 19:42:45 -06:00
|
|
|
if let Some(span) = name_binding.span {
|
2015-12-20 15:00:43 -06:00
|
|
|
err.span_note(span, "conflicting value here");
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2015-12-20 15:00:43 -06:00
|
|
|
err.emit();
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
Some(_) | None => {}
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
} else {
|
|
|
|
match import.target {
|
|
|
|
Some(ref target) if target.shadowable != Shadowable::Always => {
|
2016-01-29 16:21:36 -06:00
|
|
|
if name_binding.is_extern_crate() {
|
|
|
|
let msg = format!("import `{0}` conflicts with imported crate \
|
|
|
|
in this module (maybe you meant `use {0}::*`?)",
|
|
|
|
name);
|
|
|
|
span_err!(self.resolver.session, import_span, E0254, "{}", &msg[..]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
let (what, note) = match name_binding.module() {
|
2015-11-16 01:59:50 -06:00
|
|
|
Some(ref module) if module.is_normal() =>
|
2015-10-26 14:31:11 -05:00
|
|
|
("existing submodule", "note conflicting module here"),
|
2015-11-16 01:59:50 -06:00
|
|
|
Some(ref module) if module.is_trait() =>
|
2015-10-26 14:31:11 -05:00
|
|
|
("trait in this module", "note conflicting trait here"),
|
|
|
|
_ => ("type in this module", "note conflicting type here"),
|
2015-03-15 16:44:19 -05:00
|
|
|
};
|
2015-12-20 15:00:43 -06:00
|
|
|
let mut err = struct_span_err!(self.resolver.session,
|
|
|
|
import_span,
|
|
|
|
E0256,
|
|
|
|
"import `{}` conflicts with {}",
|
|
|
|
name,
|
|
|
|
what);
|
2016-01-13 19:42:45 -06:00
|
|
|
if let Some(span) = name_binding.span {
|
2015-12-20 15:00:43 -06:00
|
|
|
err.span_note(span, note);
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2015-12-20 15:00:43 -06:00
|
|
|
err.emit();
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
Some(_) | None => {}
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
fn import_path_to_string(names: &[Name], subclass: ImportDirectiveSubclass) -> String {
|
2015-03-15 16:44:19 -05:00
|
|
|
if names.is_empty() {
|
|
|
|
import_directive_subclass_to_string(subclass)
|
|
|
|
} else {
|
|
|
|
(format!("{}::{}",
|
|
|
|
names_to_string(names),
|
2015-10-26 14:31:11 -05:00
|
|
|
import_directive_subclass_to_string(subclass)))
|
|
|
|
.to_string()
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn import_directive_subclass_to_string(subclass: ImportDirectiveSubclass) -> String {
|
|
|
|
match subclass {
|
2015-07-28 11:07:20 -05:00
|
|
|
SingleImport(_, source) => source.to_string(),
|
2015-10-26 14:31:11 -05:00
|
|
|
GlobImport => "*".to_string(),
|
2015-03-15 16:44:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn resolve_imports(resolver: &mut Resolver) {
|
2015-10-26 14:31:11 -05:00
|
|
|
let mut import_resolver = ImportResolver { resolver: resolver };
|
2015-03-15 16:44:19 -05:00
|
|
|
import_resolver.resolve_imports();
|
|
|
|
}
|