]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/traits/error_reporting.rs
Rewrite each_attr to return a vector.
[rust.git] / src / librustc / middle / traits / error_reporting.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 use super::{
12     FulfillmentError,
13     FulfillmentErrorCode,
14     MismatchedProjectionTypes,
15     ObligationCauseCode,
16     OutputTypeParameterMismatch,
17     PredicateObligation,
18     SelectionError,
19 };
20
21 use fmt_macros::{Parser, Piece, Position};
22 use middle::infer::InferCtxt;
23 use middle::ty::{self, AsPredicate, ReferencesError, ToPolyTraitRef, TraitRef};
24 use std::collections::HashMap;
25 use syntax::codemap::{DUMMY_SP, Span};
26 use syntax::attr::{AttributeMethods, AttrMetaMethods};
27 use util::ppaux::{Repr, UserString};
28
29 pub fn report_fulfillment_errors<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
30                                            errors: &Vec<FulfillmentError<'tcx>>) {
31     for error in errors.iter() {
32         report_fulfillment_error(infcx, error);
33     }
34 }
35
36 fn report_fulfillment_error<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
37                                       error: &FulfillmentError<'tcx>) {
38     match error.code {
39         FulfillmentErrorCode::CodeSelectionError(ref e) => {
40             report_selection_error(infcx, &error.obligation, e);
41         }
42         FulfillmentErrorCode::CodeProjectionError(ref e) => {
43             report_projection_error(infcx, &error.obligation, e);
44         }
45         FulfillmentErrorCode::CodeAmbiguity => {
46             maybe_report_ambiguity(infcx, &error.obligation);
47         }
48     }
49 }
50
51 pub fn report_projection_error<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
52                                          obligation: &PredicateObligation<'tcx>,
53                                          error: &MismatchedProjectionTypes<'tcx>)
54 {
55     let predicate =
56         infcx.resolve_type_vars_if_possible(&obligation.predicate);
57     if !predicate.references_error() {
58         infcx.tcx.sess.span_err(
59             obligation.cause.span,
60             format!(
61                 "type mismatch resolving `{}`: {}",
62                 predicate.user_string(infcx.tcx),
63                 ty::type_err_to_str(infcx.tcx, &error.err)).as_slice());
64         note_obligation_cause(infcx, obligation);
65     }
66 }
67
68 fn report_on_unimplemented<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
69                                      trait_ref: &TraitRef<'tcx>,
70                                      span: Span) -> Option<String> {
71     let def_id = trait_ref.def_id;
72     let mut report = None;
73     for item in ty::get_attrs(infcx.tcx, def_id).iter() {
74         if item.check_name("rustc_on_unimplemented") {
75             let err_sp = if item.meta().span == DUMMY_SP {
76                 span
77             } else {
78                 item.meta().span
79             };
80             let def = ty::lookup_trait_def(infcx.tcx, def_id);
81             let trait_str = def.trait_ref.user_string(infcx.tcx);
82             if let Some(ref istring) = item.value_str() {
83                 let mut generic_map = def.generics.types.iter_enumerated()
84                                          .map(|(param, i, gen)| {
85                                                (gen.name.as_str().to_string(),
86                                                 trait_ref.substs.types.get(param, i)
87                                                          .user_string(infcx.tcx))
88                                               }).collect::<HashMap<String, String>>();
89                 generic_map.insert("Self".to_string(),
90                                    trait_ref.self_ty().user_string(infcx.tcx));
91                 let parser = Parser::new(istring.get());
92                 let mut errored = false;
93                 let err: String = parser.filter_map(|p| {
94                     match p {
95                         Piece::String(s) => Some(s),
96                         Piece::NextArgument(a) => match a.position {
97                             Position::ArgumentNamed(s) => match generic_map.get(s) {
98                                 Some(val) => Some(val.as_slice()),
99                                 None => {
100                                     infcx.tcx.sess
101                                          .span_err(err_sp,
102                                                    format!("the #[rustc_on_unimplemented] \
103                                                             attribute on \
104                                                             trait definition for {} refers to \
105                                                             non-existent type parameter {}",
106                                                            trait_str, s)
107                                                    .as_slice());
108                                     errored = true;
109                                     None
110                                 }
111                             },
112                             _ => {
113                                 infcx.tcx.sess
114                                      .span_err(err_sp,
115                                                format!("the #[rustc_on_unimplemented] \
116                                                         attribute on \
117                                                         trait definition for {} must have named \
118                                                         format arguments, \
119                                                         eg `#[rustc_on_unimplemented = \
120                                                         \"foo {{T}}\"]`",
121                                                        trait_str).as_slice());
122                                 errored = true;
123                                 None
124                             }
125                         }
126                     }
127                 }).collect();
128                 // Report only if the format string checks out
129                 if !errored {
130                     report = Some(err);
131                 }
132             } else {
133                 infcx.tcx.sess.span_err(err_sp,
134                                         format!("the #[rustc_on_unimplemented] attribute on \
135                                                  trait definition for {} must have a value, \
136                                                  eg `#[rustc_on_unimplemented = \"foo\"]`",
137                                                  trait_str).as_slice());
138             }
139             break;
140         }
141     }
142     report
143 }
144
145 pub fn report_selection_error<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
146                                         obligation: &PredicateObligation<'tcx>,
147                                         error: &SelectionError<'tcx>)
148 {
149     match *error {
150         SelectionError::Overflow => {
151             // We could track the stack here more precisely if we wanted, I imagine.
152             let predicate =
153                 infcx.resolve_type_vars_if_possible(&obligation.predicate);
154             infcx.tcx.sess.span_err(
155                 obligation.cause.span,
156                 format!(
157                     "overflow evaluating the requirement `{}`",
158                     predicate.user_string(infcx.tcx)).as_slice());
159
160             suggest_new_overflow_limit(infcx.tcx, obligation.cause.span);
161
162             note_obligation_cause(infcx, obligation);
163         }
164         SelectionError::Unimplemented => {
165             match obligation.predicate {
166                 ty::Predicate::Trait(ref trait_predicate) => {
167                     let trait_predicate =
168                         infcx.resolve_type_vars_if_possible(trait_predicate);
169                     if !trait_predicate.references_error() {
170                         let trait_ref = trait_predicate.to_poly_trait_ref();
171                         infcx.tcx.sess.span_err(
172                             obligation.cause.span,
173                             format!(
174                                 "the trait `{}` is not implemented for the type `{}`",
175                                 trait_ref.user_string(infcx.tcx),
176                                 trait_ref.self_ty().user_string(infcx.tcx)).as_slice());
177                         // Check if it has a custom "#[rustc_on_unimplemented]" error message,
178                         // report with that message if it does
179                         let custom_note = report_on_unimplemented(infcx, &*trait_ref.0,
180                                                                   obligation.cause.span);
181                         if let Some(s) = custom_note {
182                            infcx.tcx.sess.span_note(obligation.cause.span,
183                                                     s.as_slice());
184                         }
185                     }
186                 }
187
188                 ty::Predicate::Equate(ref predicate) => {
189                     let predicate = infcx.resolve_type_vars_if_possible(predicate);
190                     let err = infcx.equality_predicate(obligation.cause.span,
191                                                              &predicate).unwrap_err();
192                     infcx.tcx.sess.span_err(
193                         obligation.cause.span,
194                         format!(
195                             "the requirement `{}` is not satisfied (`{}`)",
196                             predicate.user_string(infcx.tcx),
197                             ty::type_err_to_str(infcx.tcx, &err)).as_slice());
198                 }
199
200                 ty::Predicate::RegionOutlives(ref predicate) => {
201                     let predicate = infcx.resolve_type_vars_if_possible(predicate);
202                     let err = infcx.region_outlives_predicate(obligation.cause.span,
203                                                               &predicate).unwrap_err();
204                     infcx.tcx.sess.span_err(
205                         obligation.cause.span,
206                         format!(
207                             "the requirement `{}` is not satisfied (`{}`)",
208                             predicate.user_string(infcx.tcx),
209                             ty::type_err_to_str(infcx.tcx, &err)).as_slice());
210                 }
211
212                 ty::Predicate::Projection(..) |
213                 ty::Predicate::TypeOutlives(..) => {
214                     let predicate =
215                         infcx.resolve_type_vars_if_possible(&obligation.predicate);
216                     infcx.tcx.sess.span_err(
217                         obligation.cause.span,
218                         format!(
219                             "the requirement `{}` is not satisfied",
220                             predicate.user_string(infcx.tcx)).as_slice());
221                 }
222             }
223         }
224         OutputTypeParameterMismatch(ref expected_trait_ref, ref actual_trait_ref, ref e) => {
225             let expected_trait_ref = infcx.resolve_type_vars_if_possible(&*expected_trait_ref);
226             let actual_trait_ref = infcx.resolve_type_vars_if_possible(&*actual_trait_ref);
227             if !ty::type_is_error(actual_trait_ref.self_ty()) {
228                 infcx.tcx.sess.span_err(
229                     obligation.cause.span,
230                     format!(
231                         "type mismatch: the type `{}` implements the trait `{}`, \
232                          but the trait `{}` is required ({})",
233                         expected_trait_ref.self_ty().user_string(infcx.tcx),
234                         expected_trait_ref.user_string(infcx.tcx),
235                         actual_trait_ref.user_string(infcx.tcx),
236                         ty::type_err_to_str(infcx.tcx, e)).as_slice());
237                 note_obligation_cause(infcx, obligation);
238             }
239         }
240     }
241 }
242
243 pub fn maybe_report_ambiguity<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
244                                         obligation: &PredicateObligation<'tcx>) {
245     // Unable to successfully determine, probably means
246     // insufficient type information, but could mean
247     // ambiguous impls. The latter *ought* to be a
248     // coherence violation, so we don't report it here.
249
250     let predicate = infcx.resolve_type_vars_if_possible(&obligation.predicate);
251
252     debug!("maybe_report_ambiguity(predicate={}, obligation={})",
253            predicate.repr(infcx.tcx),
254            obligation.repr(infcx.tcx));
255
256     match predicate {
257         ty::Predicate::Trait(ref data) => {
258             let trait_ref = data.to_poly_trait_ref();
259             let self_ty = trait_ref.self_ty();
260             let all_types = &trait_ref.substs().types;
261             if all_types.iter().any(|&t| ty::type_is_error(t)) {
262             } else if all_types.iter().any(|&t| ty::type_needs_infer(t)) {
263                 // This is kind of a hack: it frequently happens that some earlier
264                 // error prevents types from being fully inferred, and then we get
265                 // a bunch of uninteresting errors saying something like "<generic
266                 // #0> doesn't implement Sized".  It may even be true that we
267                 // could just skip over all checks where the self-ty is an
268                 // inference variable, but I was afraid that there might be an
269                 // inference variable created, registered as an obligation, and
270                 // then never forced by writeback, and hence by skipping here we'd
271                 // be ignoring the fact that we don't KNOW the type works
272                 // out. Though even that would probably be harmless, given that
273                 // we're only talking about builtin traits, which are known to be
274                 // inhabited. But in any case I just threw in this check for
275                 // has_errors() to be sure that compilation isn't happening
276                 // anyway. In that case, why inundate the user.
277                 if !infcx.tcx.sess.has_errors() {
278                     if
279                         infcx.tcx.lang_items.sized_trait()
280                         .map_or(false, |sized_id| sized_id == trait_ref.def_id())
281                     {
282                         infcx.tcx.sess.span_err(
283                             obligation.cause.span,
284                             format!(
285                                 "unable to infer enough type information about `{}`; \
286                                  type annotations required",
287                                 self_ty.user_string(infcx.tcx)).as_slice());
288                     } else {
289                         infcx.tcx.sess.span_err(
290                             obligation.cause.span,
291                             format!(
292                                 "type annotations required: cannot resolve `{}`",
293                                 predicate.user_string(infcx.tcx)).as_slice());
294                         note_obligation_cause(infcx, obligation);
295                     }
296                 }
297             } else if !infcx.tcx.sess.has_errors() {
298                 // Ambiguity. Coherence should have reported an error.
299                 infcx.tcx.sess.span_bug(
300                     obligation.cause.span,
301                     format!(
302                         "coherence failed to report ambiguity: \
303                          cannot locate the impl of the trait `{}` for \
304                          the type `{}`",
305                         trait_ref.user_string(infcx.tcx),
306                         self_ty.user_string(infcx.tcx)).as_slice());
307             }
308         }
309
310         _ => {
311             if !infcx.tcx.sess.has_errors() {
312                 infcx.tcx.sess.span_err(
313                     obligation.cause.span,
314                     format!(
315                         "type annotations required: cannot resolve `{}`",
316                         predicate.user_string(infcx.tcx)).as_slice());
317                 note_obligation_cause(infcx, obligation);
318             }
319         }
320     }
321 }
322
323 fn note_obligation_cause<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
324                                    obligation: &PredicateObligation<'tcx>)
325 {
326     note_obligation_cause_code(infcx,
327                                &obligation.predicate,
328                                obligation.cause.span,
329                                &obligation.cause.code);
330 }
331
332 fn note_obligation_cause_code<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
333                                         _predicate: &ty::Predicate<'tcx>,
334                                         cause_span: Span,
335                                         cause_code: &ObligationCauseCode<'tcx>)
336 {
337     let tcx = infcx.tcx;
338     match *cause_code {
339         ObligationCauseCode::MiscObligation => { }
340         ObligationCauseCode::ItemObligation(item_def_id) => {
341             let item_name = ty::item_path_str(tcx, item_def_id);
342             tcx.sess.span_note(
343                 cause_span,
344                 format!("required by `{}`", item_name).as_slice());
345         }
346         ObligationCauseCode::ObjectCastObligation(object_ty) => {
347             tcx.sess.span_note(
348                 cause_span,
349                 format!(
350                     "required for the cast to the object type `{}`",
351                     infcx.ty_to_string(object_ty)).as_slice());
352         }
353         ObligationCauseCode::RepeatVec => {
354             tcx.sess.span_note(
355                 cause_span,
356                 "the `Copy` trait is required because the \
357                  repeated element will be copied");
358         }
359         ObligationCauseCode::VariableType(_) => {
360             tcx.sess.span_note(
361                 cause_span,
362                 "all local variables must have a statically known size");
363         }
364         ObligationCauseCode::ReturnType => {
365             tcx.sess.span_note(
366                 cause_span,
367                 "the return type of a function must have a \
368                  statically known size");
369         }
370         ObligationCauseCode::AssignmentLhsSized => {
371             tcx.sess.span_note(
372                 cause_span,
373                 "the left-hand-side of an assignment must have a statically known size");
374         }
375         ObligationCauseCode::StructInitializerSized => {
376             tcx.sess.span_note(
377                 cause_span,
378                 "structs must have a statically known size to be initialized");
379         }
380         ObligationCauseCode::ClosureCapture(var_id, closure_span, builtin_bound) => {
381             let def_id = tcx.lang_items.from_builtin_kind(builtin_bound).unwrap();
382             let trait_name = ty::item_path_str(tcx, def_id);
383             let name = ty::local_var_name_str(tcx, var_id);
384             span_note!(tcx.sess, closure_span,
385                        "the closure that captures `{}` requires that all captured variables \
386                        implement the trait `{}`",
387                        name,
388                        trait_name);
389         }
390         ObligationCauseCode::FieldSized => {
391             span_note!(tcx.sess, cause_span,
392                        "only the last field of a struct or enum variant \
393                        may have a dynamically sized type")
394         }
395         ObligationCauseCode::ObjectSized => {
396             span_note!(tcx.sess, cause_span,
397                        "only sized types can be made into objects");
398         }
399         ObligationCauseCode::SharedStatic => {
400             span_note!(tcx.sess, cause_span,
401                        "shared static variables must have a type that implements `Sync`");
402         }
403         ObligationCauseCode::BuiltinDerivedObligation(ref data) => {
404             let parent_trait_ref = infcx.resolve_type_vars_if_possible(&data.parent_trait_ref);
405             span_note!(tcx.sess, cause_span,
406                        "required because it appears within the type `{}`",
407                        parent_trait_ref.0.self_ty().user_string(infcx.tcx));
408             let parent_predicate = parent_trait_ref.as_predicate();
409             note_obligation_cause_code(infcx, &parent_predicate, cause_span, &*data.parent_code);
410         }
411         ObligationCauseCode::ImplDerivedObligation(ref data) => {
412             let parent_trait_ref = infcx.resolve_type_vars_if_possible(&data.parent_trait_ref);
413             span_note!(tcx.sess, cause_span,
414                        "required because of the requirements on the impl of `{}` for `{}`",
415                        parent_trait_ref.user_string(infcx.tcx),
416                        parent_trait_ref.0.self_ty().user_string(infcx.tcx));
417             let parent_predicate = parent_trait_ref.as_predicate();
418             note_obligation_cause_code(infcx, &parent_predicate, cause_span, &*data.parent_code);
419         }
420     }
421 }
422
423 pub fn suggest_new_overflow_limit(tcx: &ty::ctxt, span: Span) {
424     let current_limit = tcx.sess.recursion_limit.get();
425     let suggested_limit = current_limit * 2;
426     tcx.sess.span_note(
427         span,
428         &format!(
429             "consider adding a `#![recursion_limit=\"{}\"]` attribute to your crate",
430             suggested_limit)[]);
431 }