]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/coherence/orphan.rs
rollup merge of #20217: luqmana/pc
[rust.git] / src / librustc_typeck / coherence / orphan.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Orphan checker: every impl either implements a trait defined in this
12 //! crate or pertains to a type defined in this crate.
13
14 use middle::traits;
15 use middle::ty;
16 use syntax::ast::{Item, ItemImpl};
17 use syntax::ast;
18 use syntax::ast_util;
19 use syntax::codemap::Span;
20 use syntax::visit;
21 use util::ppaux::Repr;
22
23 pub fn check(tcx: &ty::ctxt) {
24     let mut orphan = OrphanChecker { tcx: tcx };
25     visit::walk_crate(&mut orphan, tcx.map.krate());
26 }
27
28 struct OrphanChecker<'cx, 'tcx:'cx> {
29     tcx: &'cx ty::ctxt<'tcx>
30 }
31
32 impl<'cx, 'tcx> OrphanChecker<'cx, 'tcx> {
33     fn check_def_id(&self, span: Span, def_id: ast::DefId) {
34         if def_id.krate != ast::LOCAL_CRATE {
35             span_err!(self.tcx.sess, span, E0116,
36                       "cannot associate methods with a type outside the \
37                        crate the type is defined in; define and implement \
38                        a trait or new type instead");
39         }
40     }
41 }
42
43 impl<'cx, 'tcx,'v> visit::Visitor<'v> for OrphanChecker<'cx, 'tcx> {
44     fn visit_item(&mut self, item: &'v ast::Item) {
45         let def_id = ast_util::local_def(item.id);
46         match item.node {
47             ast::ItemImpl(_, _, None, _, _) => {
48                 // For inherent impls, self type must be a nominal type
49                 // defined in this crate.
50                 debug!("coherence2::orphan check: inherent impl {}", item.repr(self.tcx));
51                 let self_ty = ty::lookup_item_type(self.tcx, def_id).ty;
52                 match self_ty.sty {
53                     ty::ty_enum(def_id, _) |
54                     ty::ty_struct(def_id, _) => {
55                         self.check_def_id(item.span, def_id);
56                     }
57                     ty::ty_trait(ref data) => {
58                         self.check_def_id(item.span, data.principal_def_id());
59                     }
60                     _ => {
61                         span_err!(self.tcx.sess, item.span, E0118,
62                                   "no base type found for inherent implementation; \
63                                    implement a trait or new type instead");
64                     }
65                 }
66             }
67             ast::ItemImpl(_, _, Some(_), _, _) => {
68                 // "Trait" impl
69                 debug!("coherence2::orphan check: trait impl {}", item.repr(self.tcx));
70                 if traits::is_orphan_impl(self.tcx, def_id) {
71                     span_err!(self.tcx.sess, item.span, E0117,
72                               "cannot provide an extension implementation \
73                                where both trait and type are not defined in this crate");
74                 }
75             }
76             _ => {
77                 // Not an impl
78             }
79         }
80
81         visit::walk_item(self, item);
82     }
83 }