]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/utils/sugg.rs
Merge pull request #1963 from rust-lang-nursery/upstream
[rust.git] / clippy_lints / src / utils / sugg.rs
1 //! Contains utility functions to generate suggestions.
2 #![deny(missing_docs_in_private_items)]
3 // currently ignores lifetimes and generics
4 #![allow(use_self)]
5
6 use rustc::hir;
7 use rustc::lint::{EarlyContext, LateContext, LintContext};
8 use rustc_errors;
9 use std::borrow::Cow;
10 use std::fmt::Display;
11 use std;
12 use syntax::codemap::{CharPos, Span};
13 use syntax::parse::token;
14 use syntax::print::pprust::token_to_string;
15 use syntax::util::parser::AssocOp;
16 use syntax::ast;
17 use utils::{higher, snippet, snippet_opt};
18
19 /// A helper type to build suggestion correctly handling parenthesis.
20 pub enum Sugg<'a> {
21     /// An expression that never needs parenthesis such as `1337` or `[0; 42]`.
22     NonParen(Cow<'a, str>),
23     /// An expression that does not fit in other variants.
24     MaybeParen(Cow<'a, str>),
25     /// A binary operator expression, including `as`-casts and explicit type
26     /// coercion.
27     BinOp(AssocOp, Cow<'a, str>),
28 }
29
30 /// Literal constant `1`, for convenience.
31 pub const ONE: Sugg<'static> = Sugg::NonParen(Cow::Borrowed("1"));
32
33 impl<'a> Display for Sugg<'a> {
34     fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
35         match *self {
36             Sugg::NonParen(ref s) | Sugg::MaybeParen(ref s) | Sugg::BinOp(_, ref s) => s.fmt(f),
37         }
38     }
39 }
40
41 #[allow(wrong_self_convention)] // ok, because of the function `as_ty` method
42 impl<'a> Sugg<'a> {
43     /// Prepare a suggestion from an expression.
44     pub fn hir_opt(cx: &LateContext, expr: &hir::Expr) -> Option<Self> {
45         snippet_opt(cx, expr.span).map(|snippet| {
46             let snippet = Cow::Owned(snippet);
47             match expr.node {
48                 hir::ExprAddrOf(..) |
49                 hir::ExprBox(..) |
50                 hir::ExprClosure(.., _) |
51                 hir::ExprIf(..) |
52                 hir::ExprUnary(..) |
53                 hir::ExprMatch(..) => Sugg::MaybeParen(snippet),
54                 hir::ExprAgain(..) |
55                 hir::ExprYield(..) |
56                 hir::ExprArray(..) |
57                 hir::ExprBlock(..) |
58                 hir::ExprBreak(..) |
59                 hir::ExprCall(..) |
60                 hir::ExprField(..) |
61                 hir::ExprIndex(..) |
62                 hir::ExprInlineAsm(..) |
63                 hir::ExprLit(..) |
64                 hir::ExprLoop(..) |
65                 hir::ExprMethodCall(..) |
66                 hir::ExprPath(..) |
67                 hir::ExprRepeat(..) |
68                 hir::ExprRet(..) |
69                 hir::ExprStruct(..) |
70                 hir::ExprTup(..) |
71                 hir::ExprTupField(..) |
72                 hir::ExprWhile(..) => Sugg::NonParen(snippet),
73                 hir::ExprAssign(..) => Sugg::BinOp(AssocOp::Assign, snippet),
74                 hir::ExprAssignOp(op, ..) => Sugg::BinOp(hirbinop2assignop(op), snippet),
75                 hir::ExprBinary(op, ..) => Sugg::BinOp(AssocOp::from_ast_binop(higher::binop(op.node)), snippet),
76                 hir::ExprCast(..) => Sugg::BinOp(AssocOp::As, snippet),
77                 hir::ExprType(..) => Sugg::BinOp(AssocOp::Colon, snippet),
78             }
79         })
80     }
81
82     /// Convenience function around `hir_opt` for suggestions with a default
83     /// text.
84     pub fn hir(cx: &LateContext, expr: &hir::Expr, default: &'a str) -> Self {
85         Self::hir_opt(cx, expr).unwrap_or_else(|| Sugg::NonParen(Cow::Borrowed(default)))
86     }
87
88     /// Prepare a suggestion from an expression.
89     pub fn ast(cx: &EarlyContext, expr: &ast::Expr, default: &'a str) -> Self {
90         use syntax::ast::RangeLimits;
91
92         let snippet = snippet(cx, expr.span, default);
93
94         match expr.node {
95             ast::ExprKind::AddrOf(..) |
96             ast::ExprKind::Box(..) |
97             ast::ExprKind::Closure(..) |
98             ast::ExprKind::If(..) |
99             ast::ExprKind::IfLet(..) |
100             ast::ExprKind::InPlace(..) |
101             ast::ExprKind::Unary(..) |
102             ast::ExprKind::Match(..) => Sugg::MaybeParen(snippet),
103             ast::ExprKind::Block(..) |
104             ast::ExprKind::Break(..) |
105             ast::ExprKind::Call(..) |
106             ast::ExprKind::Catch(..) |
107             ast::ExprKind::Continue(..) |
108             ast::ExprKind::Yield(..) |
109             ast::ExprKind::Field(..) |
110             ast::ExprKind::ForLoop(..) |
111             ast::ExprKind::Index(..) |
112             ast::ExprKind::InlineAsm(..) |
113             ast::ExprKind::Lit(..) |
114             ast::ExprKind::Loop(..) |
115             ast::ExprKind::Mac(..) |
116             ast::ExprKind::MethodCall(..) |
117             ast::ExprKind::Paren(..) |
118             ast::ExprKind::Path(..) |
119             ast::ExprKind::Repeat(..) |
120             ast::ExprKind::Ret(..) |
121             ast::ExprKind::Struct(..) |
122             ast::ExprKind::Try(..) |
123             ast::ExprKind::Tup(..) |
124             ast::ExprKind::TupField(..) |
125             ast::ExprKind::Array(..) |
126             ast::ExprKind::While(..) |
127             ast::ExprKind::WhileLet(..) => Sugg::NonParen(snippet),
128             ast::ExprKind::Range(.., RangeLimits::HalfOpen) => Sugg::BinOp(AssocOp::DotDot, snippet),
129             ast::ExprKind::Range(.., RangeLimits::Closed) => Sugg::BinOp(AssocOp::DotDotDot, snippet),
130             ast::ExprKind::Assign(..) => Sugg::BinOp(AssocOp::Assign, snippet),
131             ast::ExprKind::AssignOp(op, ..) => Sugg::BinOp(astbinop2assignop(op), snippet),
132             ast::ExprKind::Binary(op, ..) => Sugg::BinOp(AssocOp::from_ast_binop(op.node), snippet),
133             ast::ExprKind::Cast(..) => Sugg::BinOp(AssocOp::As, snippet),
134             ast::ExprKind::Type(..) => Sugg::BinOp(AssocOp::Colon, snippet),
135         }
136     }
137
138     /// Convenience method to create the `<lhs> && <rhs>` suggestion.
139     pub fn and(self, rhs: Self) -> Sugg<'static> {
140         make_binop(ast::BinOpKind::And, &self, &rhs)
141     }
142
143     /// Convenience method to create the `<lhs> as <rhs>` suggestion.
144     pub fn as_ty<R: Display>(self, rhs: R) -> Sugg<'static> {
145         make_assoc(AssocOp::As, &self, &Sugg::NonParen(rhs.to_string().into()))
146     }
147
148     /// Convenience method to create the `&<expr>` suggestion.
149     pub fn addr(self) -> Sugg<'static> {
150         make_unop("&", self)
151     }
152
153     /// Convenience method to create the `&mut <expr>` suggestion.
154     pub fn mut_addr(self) -> Sugg<'static> {
155         make_unop("&mut ", self)
156     }
157
158     /// Convenience method to create the `*<expr>` suggestion.
159     pub fn deref(self) -> Sugg<'static> {
160         make_unop("*", self)
161     }
162
163     /// Convenience method to create the `<lhs>..<rhs>` or `<lhs>...<rhs>`
164     /// suggestion.
165     pub fn range(self, end: Self, limit: ast::RangeLimits) -> Sugg<'static> {
166         match limit {
167             ast::RangeLimits::HalfOpen => make_assoc(AssocOp::DotDot, &self, &end),
168             ast::RangeLimits::Closed => make_assoc(AssocOp::DotDotDot, &self, &end),
169         }
170     }
171
172     /// Add parenthesis to any expression that might need them. Suitable to the
173     /// `self` argument of
174     /// a method call (eg. to build `bar.foo()` or `(1 + 2).foo()`).
175     pub fn maybe_par(self) -> Self {
176         match self {
177             Sugg::NonParen(..) => self,
178             // (x) and (x).y() both don't need additional parens
179             Sugg::MaybeParen(sugg) => if sugg.starts_with('(') && sugg.ends_with(')') {
180                 Sugg::MaybeParen(sugg)
181             } else {
182                 Sugg::NonParen(format!("({})", sugg).into())
183             },
184             Sugg::BinOp(_, sugg) => Sugg::NonParen(format!("({})", sugg).into()),
185         }
186     }
187 }
188
189 impl<'a, 'b> std::ops::Add<Sugg<'b>> for Sugg<'a> {
190     type Output = Sugg<'static>;
191     fn add(self, rhs: Sugg<'b>) -> Sugg<'static> {
192         make_binop(ast::BinOpKind::Add, &self, &rhs)
193     }
194 }
195
196 impl<'a, 'b> std::ops::Sub<Sugg<'b>> for Sugg<'a> {
197     type Output = Sugg<'static>;
198     fn sub(self, rhs: Sugg<'b>) -> Sugg<'static> {
199         make_binop(ast::BinOpKind::Sub, &self, &rhs)
200     }
201 }
202
203 impl<'a> std::ops::Not for Sugg<'a> {
204     type Output = Sugg<'static>;
205     fn not(self) -> Sugg<'static> {
206         make_unop("!", self)
207     }
208 }
209
210 /// Helper type to display either `foo` or `(foo)`.
211 struct ParenHelper<T> {
212     /// Whether parenthesis are needed.
213     paren: bool,
214     /// The main thing to display.
215     wrapped: T,
216 }
217
218 impl<T> ParenHelper<T> {
219     /// Build a `ParenHelper`.
220     fn new(paren: bool, wrapped: T) -> Self {
221         Self {
222             paren: paren,
223             wrapped: wrapped,
224         }
225     }
226 }
227
228 impl<T: Display> Display for ParenHelper<T> {
229     fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
230         if self.paren {
231             write!(f, "({})", self.wrapped)
232         } else {
233             self.wrapped.fmt(f)
234         }
235     }
236 }
237
238 /// Build the string for `<op><expr>` adding parenthesis when necessary.
239 ///
240 /// For convenience, the operator is taken as a string because all unary
241 /// operators have the same
242 /// precedence.
243 pub fn make_unop(op: &str, expr: Sugg) -> Sugg<'static> {
244     Sugg::MaybeParen(format!("{}{}", op, expr.maybe_par()).into())
245 }
246
247 /// Build the string for `<lhs> <op> <rhs>` adding parenthesis when necessary.
248 ///
249 /// Precedence of shift operator relative to other arithmetic operation is
250 /// often confusing so
251 /// parenthesis will always be added for a mix of these.
252 pub fn make_assoc(op: AssocOp, lhs: &Sugg, rhs: &Sugg) -> Sugg<'static> {
253     /// Whether the operator is a shift operator `<<` or `>>`.
254     fn is_shift(op: &AssocOp) -> bool {
255         matches!(*op, AssocOp::ShiftLeft | AssocOp::ShiftRight)
256     }
257
258     /// Whether the operator is a arithmetic operator (`+`, `-`, `*`, `/`, `%`).
259     fn is_arith(op: &AssocOp) -> bool {
260         matches!(
261             *op,
262             AssocOp::Add | AssocOp::Subtract | AssocOp::Multiply | AssocOp::Divide | AssocOp::Modulus
263         )
264     }
265
266     /// Whether the operator `op` needs parenthesis with the operator `other`
267     /// in the direction
268     /// `dir`.
269     fn needs_paren(op: &AssocOp, other: &AssocOp, dir: Associativity) -> bool {
270         other.precedence() < op.precedence() ||
271             (other.precedence() == op.precedence() &&
272                 ((op != other && associativity(op) != dir) ||
273                     (op == other && associativity(op) != Associativity::Both))) ||
274             is_shift(op) && is_arith(other) || is_shift(other) && is_arith(op)
275     }
276
277     let lhs_paren = if let Sugg::BinOp(ref lop, _) = *lhs {
278         needs_paren(&op, lop, Associativity::Left)
279     } else {
280         false
281     };
282
283     let rhs_paren = if let Sugg::BinOp(ref rop, _) = *rhs {
284         needs_paren(&op, rop, Associativity::Right)
285     } else {
286         false
287     };
288
289     let lhs = ParenHelper::new(lhs_paren, lhs);
290     let rhs = ParenHelper::new(rhs_paren, rhs);
291     let sugg = match op {
292         AssocOp::Add |
293         AssocOp::BitAnd |
294         AssocOp::BitOr |
295         AssocOp::BitXor |
296         AssocOp::Divide |
297         AssocOp::Equal |
298         AssocOp::Greater |
299         AssocOp::GreaterEqual |
300         AssocOp::LAnd |
301         AssocOp::LOr |
302         AssocOp::Less |
303         AssocOp::LessEqual |
304         AssocOp::Modulus |
305         AssocOp::Multiply |
306         AssocOp::NotEqual |
307         AssocOp::ShiftLeft |
308         AssocOp::ShiftRight |
309         AssocOp::Subtract => format!("{} {} {}", lhs, op.to_ast_binop().expect("Those are AST ops").to_string(), rhs),
310         AssocOp::Inplace => format!("in ({}) {}", lhs, rhs),
311         AssocOp::Assign => format!("{} = {}", lhs, rhs),
312         AssocOp::AssignOp(op) => format!("{} {}= {}", lhs, token_to_string(&token::BinOp(op)), rhs),
313         AssocOp::As => format!("{} as {}", lhs, rhs),
314         AssocOp::DotDot => format!("{}..{}", lhs, rhs),
315         AssocOp::DotDotDot => format!("{}...{}", lhs, rhs),
316         AssocOp::Colon => format!("{}: {}", lhs, rhs),
317     };
318
319     Sugg::BinOp(op, sugg.into())
320 }
321
322 /// Convinience wrapper arround `make_assoc` and `AssocOp::from_ast_binop`.
323 pub fn make_binop(op: ast::BinOpKind, lhs: &Sugg, rhs: &Sugg) -> Sugg<'static> {
324     make_assoc(AssocOp::from_ast_binop(op), lhs, rhs)
325 }
326
327 #[derive(PartialEq, Eq, Clone, Copy)]
328 /// Operator associativity.
329 enum Associativity {
330     /// The operator is both left-associative and right-associative.
331     Both,
332     /// The operator is left-associative.
333     Left,
334     /// The operator is not associative.
335     None,
336     /// The operator is right-associative.
337     Right,
338 }
339
340 /// Return the associativity/fixity of an operator. The difference with
341 /// `AssocOp::fixity` is that
342 /// an operator can be both left and right associative (such as `+`:
343 /// `a + b + c == (a + b) + c == a + (b + c)`.
344 ///
345 /// Chained `as` and explicit `:` type coercion never need inner parenthesis so
346 /// they are considered
347 /// associative.
348 fn associativity(op: &AssocOp) -> Associativity {
349     use syntax::util::parser::AssocOp::*;
350
351     match *op {
352         Inplace | Assign | AssignOp(_) => Associativity::Right,
353         Add | BitAnd | BitOr | BitXor | LAnd | LOr | Multiply | As | Colon => Associativity::Both,
354         Divide |
355         Equal |
356         Greater |
357         GreaterEqual |
358         Less |
359         LessEqual |
360         Modulus |
361         NotEqual |
362         ShiftLeft |
363         ShiftRight |
364         Subtract => Associativity::Left,
365         DotDot | DotDotDot => Associativity::None,
366     }
367 }
368
369 /// Convert a `hir::BinOp` to the corresponding assigning binary operator.
370 fn hirbinop2assignop(op: hir::BinOp) -> AssocOp {
371     use rustc::hir::BinOp_::*;
372     use syntax::parse::token::BinOpToken::*;
373
374     AssocOp::AssignOp(match op.node {
375         BiAdd => Plus,
376         BiBitAnd => And,
377         BiBitOr => Or,
378         BiBitXor => Caret,
379         BiDiv => Slash,
380         BiMul => Star,
381         BiRem => Percent,
382         BiShl => Shl,
383         BiShr => Shr,
384         BiSub => Minus,
385         BiAnd | BiEq | BiGe | BiGt | BiLe | BiLt | BiNe | BiOr => panic!("This operator does not exist"),
386     })
387 }
388
389 /// Convert an `ast::BinOp` to the corresponding assigning binary operator.
390 fn astbinop2assignop(op: ast::BinOp) -> AssocOp {
391     use syntax::ast::BinOpKind::*;
392     use syntax::parse::token::BinOpToken;
393
394     AssocOp::AssignOp(match op.node {
395         Add => BinOpToken::Plus,
396         BitAnd => BinOpToken::And,
397         BitOr => BinOpToken::Or,
398         BitXor => BinOpToken::Caret,
399         Div => BinOpToken::Slash,
400         Mul => BinOpToken::Star,
401         Rem => BinOpToken::Percent,
402         Shl => BinOpToken::Shl,
403         Shr => BinOpToken::Shr,
404         Sub => BinOpToken::Minus,
405         And | Eq | Ge | Gt | Le | Lt | Ne | Or => panic!("This operator does not exist"),
406     })
407 }
408
409 /// Return the indentation before `span` if there are nothing but `[ \t]`
410 /// before it on its line.
411 fn indentation<'a, T: LintContext<'a>>(cx: &T, span: Span) -> Option<String> {
412     let lo = cx.sess().codemap().lookup_char_pos(span.lo());
413     if let Some(line) = lo.file
414         .get_line(lo.line - 1 /* line numbers in `Loc` are 1-based */)
415     {
416         if let Some((pos, _)) = line.char_indices().find(|&(_, c)| c != ' ' && c != '\t') {
417             // we can mix char and byte positions here because we only consider `[ \t]`
418             if lo.col == CharPos(pos) {
419                 Some(line[..pos].into())
420             } else {
421                 None
422             }
423         } else {
424             None
425         }
426     } else {
427         None
428     }
429 }
430
431 /// Convenience extension trait for `DiagnosticBuilder`.
432 pub trait DiagnosticBuilderExt<'a, T: LintContext<'a>> {
433     /// Suggests to add an attribute to an item.
434     ///
435     /// Correctly handles indentation of the attribute and item.
436     ///
437     /// # Example
438     ///
439     /// ```rust,ignore
440     /// db.suggest_item_with_attr(cx, item, "#[derive(Default)]");
441     /// ```
442     fn suggest_item_with_attr<D: Display + ?Sized>(&mut self, cx: &T, item: Span, msg: &str, attr: &D);
443
444     /// Suggest to add an item before another.
445     ///
446     /// The item should not be indented (expect for inner indentation).
447     ///
448     /// # Example
449     ///
450     /// ```rust,ignore
451     /// db.suggest_prepend_item(cx, item,
452     /// "fn foo() {
453     ///     bar();
454     /// }");
455     /// ```
456     fn suggest_prepend_item(&mut self, cx: &T, item: Span, msg: &str, new_item: &str);
457 }
458
459 impl<'a, 'b, 'c, T: LintContext<'c>> DiagnosticBuilderExt<'c, T> for rustc_errors::DiagnosticBuilder<'b> {
460     fn suggest_item_with_attr<D: Display + ?Sized>(&mut self, cx: &T, item: Span, msg: &str, attr: &D) {
461         if let Some(indent) = indentation(cx, item) {
462             let span = item.with_hi(item.lo());
463
464             self.span_suggestion(span, msg, format!("{}\n{}", attr, indent));
465         }
466     }
467
468     fn suggest_prepend_item(&mut self, cx: &T, item: Span, msg: &str, new_item: &str) {
469         if let Some(indent) = indentation(cx, item) {
470             let span = item.with_hi(item.lo());
471
472             let mut first = true;
473             let new_item = new_item
474                 .lines()
475                 .map(|l| if first {
476                     first = false;
477                     format!("{}\n", l)
478                 } else {
479                     format!("{}{}\n", indent, l)
480                 })
481                 .collect::<String>();
482
483             self.span_suggestion(span, msg, format!("{}\n{}", new_item, indent));
484         }
485     }
486 }