]> git.lizzy.rs Git - rust.git/blob - src/librustc/ty/item_path.rs
make `ty` and `impl_trait_ref` private
[rust.git] / src / librustc / ty / item_path.rs
1 // Copyright 2012-2015 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 use hir::map::DefPathData;
12 use hir::def_id::{CrateNum, DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
13 use ty::{self, Ty, TyCtxt};
14 use syntax::ast;
15 use syntax::symbol::Symbol;
16 use syntax_pos::DUMMY_SP;
17
18 use std::cell::Cell;
19
20 thread_local! {
21     static FORCE_ABSOLUTE: Cell<bool> = Cell::new(false);
22     static FORCE_IMPL_FILENAME_LINE: Cell<bool> = Cell::new(false);
23 }
24
25 /// Enforces that item_path_str always returns an absolute path and
26 /// also enables "type-based" impl paths. This is used when building
27 /// symbols that contain types, where we want the crate name to be
28 /// part of the symbol.
29 pub fn with_forced_absolute_paths<F: FnOnce() -> R, R>(f: F) -> R {
30     FORCE_ABSOLUTE.with(|force| {
31         let old = force.get();
32         force.set(true);
33         let result = f();
34         force.set(old);
35         result
36     })
37 }
38
39 /// Force us to name impls with just the filename/line number. We
40 /// normally try to use types. But at some points, notably while printing
41 /// cycle errors, this can result in extra or suboptimal error output,
42 /// so this variable disables that check.
43 pub fn with_forced_impl_filename_line<F: FnOnce() -> R, R>(f: F) -> R {
44     FORCE_IMPL_FILENAME_LINE.with(|force| {
45         let old = force.get();
46         force.set(true);
47         let result = f();
48         force.set(old);
49         result
50     })
51 }
52
53 impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
54     /// Returns a string identifying this def-id. This string is
55     /// suitable for user output. It is relative to the current crate
56     /// root, unless with_forced_absolute_paths was used.
57     pub fn item_path_str(self, def_id: DefId) -> String {
58         let mode = FORCE_ABSOLUTE.with(|force| {
59             if force.get() {
60                 RootMode::Absolute
61             } else {
62                 RootMode::Local
63             }
64         });
65         let mut buffer = LocalPathBuffer::new(mode);
66         self.push_item_path(&mut buffer, def_id);
67         buffer.into_string()
68     }
69
70     /// Returns a string identifying this local node-id.
71     pub fn node_path_str(self, id: ast::NodeId) -> String {
72         self.item_path_str(self.hir.local_def_id(id))
73     }
74
75     /// Returns a string identifying this def-id. This string is
76     /// suitable for user output. It always begins with a crate identifier.
77     pub fn absolute_item_path_str(self, def_id: DefId) -> String {
78         let mut buffer = LocalPathBuffer::new(RootMode::Absolute);
79         self.push_item_path(&mut buffer, def_id);
80         buffer.into_string()
81     }
82
83     /// Returns the "path" to a particular crate. This can proceed in
84     /// various ways, depending on the `root_mode` of the `buffer`.
85     /// (See `RootMode` enum for more details.)
86     pub fn push_krate_path<T>(self, buffer: &mut T, cnum: CrateNum)
87         where T: ItemPathBuffer
88     {
89         match *buffer.root_mode() {
90             RootMode::Local => {
91                 // In local mode, when we encounter a crate other than
92                 // LOCAL_CRATE, execution proceeds in one of two ways:
93                 //
94                 // 1. for a direct dependency, where user added an
95                 //    `extern crate` manually, we put the `extern
96                 //    crate` as the parent. So you wind up with
97                 //    something relative to the current crate.
98                 // 2. for an indirect crate, where there is no extern
99                 //    crate, we just prepend the crate name.
100                 //
101                 // Returns `None` for the local crate.
102                 if cnum != LOCAL_CRATE {
103                     let opt_extern_crate = self.sess.cstore.extern_crate(cnum);
104                     let opt_extern_crate = opt_extern_crate.and_then(|extern_crate| {
105                         if extern_crate.direct {
106                             Some(extern_crate.def_id)
107                         } else {
108                             None
109                         }
110                     });
111                     if let Some(extern_crate_def_id) = opt_extern_crate {
112                         self.push_item_path(buffer, extern_crate_def_id);
113                     } else {
114                         buffer.push(&self.crate_name(cnum).as_str());
115                     }
116                 }
117             }
118             RootMode::Absolute => {
119                 // In absolute mode, just write the crate name
120                 // unconditionally.
121                 buffer.push(&self.original_crate_name(cnum).as_str());
122             }
123         }
124     }
125
126     /// If possible, this pushes a global path resolving to `external_def_id` that is visible
127     /// from at least one local module and returns true. If the crate defining `external_def_id` is
128     /// declared with an `extern crate`, the path is guarenteed to use the `extern crate`.
129     pub fn try_push_visible_item_path<T>(self, buffer: &mut T, external_def_id: DefId) -> bool
130         where T: ItemPathBuffer
131     {
132         let visible_parent_map = self.sess.cstore.visible_parent_map();
133
134         let (mut cur_def, mut cur_path) = (external_def_id, Vec::<ast::Name>::new());
135         loop {
136             // If `cur_def` is a direct or injected extern crate, push the path to the crate
137             // followed by the path to the item within the crate and return.
138             if cur_def.index == CRATE_DEF_INDEX {
139                 match self.sess.cstore.extern_crate(cur_def.krate) {
140                     Some(extern_crate) if extern_crate.direct => {
141                         self.push_item_path(buffer, extern_crate.def_id);
142                         cur_path.iter().rev().map(|segment| buffer.push(&segment.as_str())).count();
143                         return true;
144                     }
145                     None => {
146                         buffer.push(&self.crate_name(cur_def.krate).as_str());
147                         cur_path.iter().rev().map(|segment| buffer.push(&segment.as_str())).count();
148                         return true;
149                     }
150                     _ => {},
151                 }
152             }
153
154             cur_path.push(self.sess.cstore.def_key(cur_def)
155                               .disambiguated_data.data.get_opt_name().unwrap_or_else(||
156                 Symbol::intern("<unnamed>")));
157             match visible_parent_map.get(&cur_def) {
158                 Some(&def) => cur_def = def,
159                 None => return false,
160             };
161         }
162     }
163
164     pub fn push_item_path<T>(self, buffer: &mut T, def_id: DefId)
165         where T: ItemPathBuffer
166     {
167         match *buffer.root_mode() {
168             RootMode::Local if !def_id.is_local() =>
169                 if self.try_push_visible_item_path(buffer, def_id) { return },
170             _ => {}
171         }
172
173         let key = self.def_key(def_id);
174         match key.disambiguated_data.data {
175             DefPathData::CrateRoot => {
176                 assert!(key.parent.is_none());
177                 self.push_krate_path(buffer, def_id.krate);
178             }
179
180             DefPathData::Impl => {
181                 self.push_impl_path(buffer, def_id);
182             }
183
184             // Unclear if there is any value in distinguishing these.
185             // Probably eventually (and maybe we would even want
186             // finer-grained distinctions, e.g. between enum/struct).
187             data @ DefPathData::Misc |
188             data @ DefPathData::TypeNs(..) |
189             data @ DefPathData::ValueNs(..) |
190             data @ DefPathData::Module(..) |
191             data @ DefPathData::TypeParam(..) |
192             data @ DefPathData::LifetimeDef(..) |
193             data @ DefPathData::EnumVariant(..) |
194             data @ DefPathData::Field(..) |
195             data @ DefPathData::Initializer |
196             data @ DefPathData::MacroDef(..) |
197             data @ DefPathData::ClosureExpr |
198             data @ DefPathData::Binding(..) |
199             data @ DefPathData::ImplTrait |
200             data @ DefPathData::Typeof => {
201                 let parent_def_id = self.parent_def_id(def_id).unwrap();
202                 self.push_item_path(buffer, parent_def_id);
203                 buffer.push(&data.as_interned_str());
204             }
205             DefPathData::StructCtor => { // present `X` instead of `X::{{constructor}}`
206                 let parent_def_id = self.parent_def_id(def_id).unwrap();
207                 self.push_item_path(buffer, parent_def_id);
208             }
209         }
210     }
211
212     fn push_impl_path<T>(self,
213                          buffer: &mut T,
214                          impl_def_id: DefId)
215         where T: ItemPathBuffer
216     {
217         let parent_def_id = self.parent_def_id(impl_def_id).unwrap();
218
219         // Always use types for non-local impls, where types are always
220         // available, and filename/line-number is mostly uninteresting.
221         let use_types = !impl_def_id.is_local() || {
222             // Otherwise, use filename/line-number if forced.
223             let force_no_types = FORCE_IMPL_FILENAME_LINE.with(|f| f.get());
224             !force_no_types && {
225                 // Otherwise, use types if we can query them without inducing a cycle.
226                 ty::queries::impl_trait_ref::try_get(self, DUMMY_SP, impl_def_id).is_ok() &&
227                     ty::queries::type_of::try_get(self, DUMMY_SP, impl_def_id).is_ok()
228             }
229         };
230
231         if !use_types {
232             return self.push_impl_path_fallback(buffer, impl_def_id);
233         }
234
235         // Decide whether to print the parent path for the impl.
236         // Logically, since impls are global, it's never needed, but
237         // users may find it useful. Currently, we omit the parent if
238         // the impl is either in the same module as the self-type or
239         // as the trait.
240         let self_ty = self.type_of(impl_def_id);
241         let in_self_mod = match characteristic_def_id_of_type(self_ty) {
242             None => false,
243             Some(ty_def_id) => self.parent_def_id(ty_def_id) == Some(parent_def_id),
244         };
245
246         let impl_trait_ref = self.impl_trait_ref(impl_def_id);
247         let in_trait_mod = match impl_trait_ref {
248             None => false,
249             Some(trait_ref) => self.parent_def_id(trait_ref.def_id) == Some(parent_def_id),
250         };
251
252         if !in_self_mod && !in_trait_mod {
253             // If the impl is not co-located with either self-type or
254             // trait-type, then fallback to a format that identifies
255             // the module more clearly.
256             self.push_item_path(buffer, parent_def_id);
257             if let Some(trait_ref) = impl_trait_ref {
258                 buffer.push(&format!("<impl {} for {}>", trait_ref, self_ty));
259             } else {
260                 buffer.push(&format!("<impl {}>", self_ty));
261             }
262             return;
263         }
264
265         // Otherwise, try to give a good form that would be valid language
266         // syntax. Preferably using associated item notation.
267
268         if let Some(trait_ref) = impl_trait_ref {
269             // Trait impls.
270             buffer.push(&format!("<{} as {}>",
271                                  self_ty,
272                                  trait_ref));
273             return;
274         }
275
276         // Inherent impls. Try to print `Foo::bar` for an inherent
277         // impl on `Foo`, but fallback to `<Foo>::bar` if self-type is
278         // anything other than a simple path.
279         match self_ty.sty {
280             ty::TyAdt(adt_def, substs) => {
281                 if substs.types().next().is_none() { // ignore regions
282                     self.push_item_path(buffer, adt_def.did);
283                 } else {
284                     buffer.push(&format!("<{}>", self_ty));
285                 }
286             }
287
288             ty::TyBool |
289             ty::TyChar |
290             ty::TyInt(_) |
291             ty::TyUint(_) |
292             ty::TyFloat(_) |
293             ty::TyStr => {
294                 buffer.push(&format!("{}", self_ty));
295             }
296
297             _ => {
298                 buffer.push(&format!("<{}>", self_ty));
299             }
300         }
301     }
302
303     fn push_impl_path_fallback<T>(self,
304                                   buffer: &mut T,
305                                   impl_def_id: DefId)
306         where T: ItemPathBuffer
307     {
308         // If no type info is available, fall back to
309         // pretty printing some span information. This should
310         // only occur very early in the compiler pipeline.
311         let parent_def_id = self.parent_def_id(impl_def_id).unwrap();
312         self.push_item_path(buffer, parent_def_id);
313         let node_id = self.hir.as_local_node_id(impl_def_id).unwrap();
314         let item = self.hir.expect_item(node_id);
315         let span_str = self.sess.codemap().span_to_string(item.span);
316         buffer.push(&format!("<impl at {}>", span_str));
317     }
318
319     /// Returns the def-id of `def_id`'s parent in the def tree. If
320     /// this returns `None`, then `def_id` represents a crate root or
321     /// inlined root.
322     pub fn parent_def_id(self, def_id: DefId) -> Option<DefId> {
323         let key = self.def_key(def_id);
324         key.parent.map(|index| DefId { krate: def_id.krate, index: index })
325     }
326 }
327
328 /// As a heuristic, when we see an impl, if we see that the
329 /// 'self-type' is a type defined in the same module as the impl,
330 /// we can omit including the path to the impl itself. This
331 /// function tries to find a "characteristic def-id" for a
332 /// type. It's just a heuristic so it makes some questionable
333 /// decisions and we may want to adjust it later.
334 pub fn characteristic_def_id_of_type(ty: Ty) -> Option<DefId> {
335     match ty.sty {
336         ty::TyAdt(adt_def, _) => Some(adt_def.did),
337
338         ty::TyDynamic(data, ..) => data.principal().map(|p| p.def_id()),
339
340         ty::TyArray(subty, _) |
341         ty::TySlice(subty) => characteristic_def_id_of_type(subty),
342
343         ty::TyRawPtr(mt) |
344         ty::TyRef(_, mt) => characteristic_def_id_of_type(mt.ty),
345
346         ty::TyTuple(ref tys, _) => tys.iter()
347                                       .filter_map(|ty| characteristic_def_id_of_type(ty))
348                                       .next(),
349
350         ty::TyFnDef(def_id, ..) |
351         ty::TyClosure(def_id, _) => Some(def_id),
352
353         ty::TyBool |
354         ty::TyChar |
355         ty::TyInt(_) |
356         ty::TyUint(_) |
357         ty::TyStr |
358         ty::TyFnPtr(_) |
359         ty::TyProjection(_) |
360         ty::TyParam(_) |
361         ty::TyAnon(..) |
362         ty::TyInfer(_) |
363         ty::TyError |
364         ty::TyNever |
365         ty::TyFloat(_) => None,
366     }
367 }
368
369 /// Unifying Trait for different kinds of item paths we might
370 /// construct. The basic interface is that components get pushed: the
371 /// instance can also customize how we handle the root of a crate.
372 pub trait ItemPathBuffer {
373     fn root_mode(&self) -> &RootMode;
374     fn push(&mut self, text: &str);
375 }
376
377 #[derive(Debug)]
378 pub enum RootMode {
379     /// Try to make a path relative to the local crate.  In
380     /// particular, local paths have no prefix, and if the path comes
381     /// from an extern crate, start with the path to the `extern
382     /// crate` declaration.
383     Local,
384
385     /// Always prepend the crate name to the path, forming an absolute
386     /// path from within a given set of crates.
387     Absolute,
388 }
389
390 #[derive(Debug)]
391 struct LocalPathBuffer {
392     root_mode: RootMode,
393     str: String,
394 }
395
396 impl LocalPathBuffer {
397     fn new(root_mode: RootMode) -> LocalPathBuffer {
398         LocalPathBuffer {
399             root_mode: root_mode,
400             str: String::new(),
401         }
402     }
403
404     fn into_string(self) -> String {
405         self.str
406     }
407 }
408
409 impl ItemPathBuffer for LocalPathBuffer {
410     fn root_mode(&self) -> &RootMode {
411         &self.root_mode
412     }
413
414     fn push(&mut self, text: &str) {
415         if !self.str.is_empty() {
416             self.str.push_str("::");
417         }
418         self.str.push_str(text);
419     }
420 }