]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/utils/mod.rs
Fix `cast_sign_loss` false positive
[rust.git] / clippy_lints / src / utils / mod.rs
1 use crate::reexport::*;
2 use if_chain::if_chain;
3 use matches::matches;
4 use rustc::hir;
5 use rustc::hir::def::Def;
6 use rustc::hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
7 use rustc::hir::intravisit::{NestedVisitorMap, Visitor};
8 use rustc::hir::Node;
9 use rustc::hir::*;
10 use rustc::lint::{LateContext, Level, Lint, LintContext};
11 use rustc::session::Session;
12 use rustc::traits;
13 use rustc::ty::{
14     self,
15     layout::{self, IntegerExt},
16     subst::Kind,
17     Binder, Ty, TyCtxt,
18 };
19 use rustc_data_structures::sync::Lrc;
20 use rustc_errors::{Applicability, CodeSuggestion, Substitution, SubstitutionPart};
21 use std::borrow::Cow;
22 use std::env;
23 use std::mem;
24 use std::str::FromStr;
25 use syntax::ast::{self, LitKind};
26 use syntax::attr;
27 use syntax::errors::DiagnosticBuilder;
28 use syntax::source_map::{Span, DUMMY_SP};
29 use syntax::symbol;
30 use syntax::symbol::{keywords, Symbol};
31
32 pub mod camel_case;
33
34 pub mod author;
35 pub mod comparisons;
36 pub mod conf;
37 pub mod constants;
38 mod hir_utils;
39 pub mod inspector;
40 pub mod internal_lints;
41 pub mod paths;
42 pub mod ptr;
43 pub mod sugg;
44 pub mod usage;
45 pub use self::hir_utils::{SpanlessEq, SpanlessHash};
46
47 pub mod higher;
48
49 /// Returns true if the two spans come from differing expansions (i.e. one is
50 /// from a macro and one
51 /// isn't).
52 pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
53     rhs.ctxt() != lhs.ctxt()
54 }
55
56 /// Returns `true` if the given `NodeId` is inside a constant context
57 ///
58 /// # Example
59 ///
60 /// ```rust,ignore
61 /// if in_constant(cx, expr.id) {
62 ///     // Do something
63 /// }
64 /// ```
65 pub fn in_constant(cx: &LateContext<'_, '_>, id: NodeId) -> bool {
66     let parent_id = cx.tcx.hir().get_parent(id);
67     match cx.tcx.hir().get(parent_id) {
68         Node::Item(&Item {
69             node: ItemKind::Const(..),
70             ..
71         })
72         | Node::TraitItem(&TraitItem {
73             node: TraitItemKind::Const(..),
74             ..
75         })
76         | Node::ImplItem(&ImplItem {
77             node: ImplItemKind::Const(..),
78             ..
79         })
80         | Node::AnonConst(_)
81         | Node::Item(&Item {
82             node: ItemKind::Static(..),
83             ..
84         }) => true,
85         Node::Item(&Item {
86             node: ItemKind::Fn(_, header, ..),
87             ..
88         }) => header.constness == Constness::Const,
89         _ => false,
90     }
91 }
92
93 /// Returns true if this `expn_info` was expanded by any macro.
94 pub fn in_macro(span: Span) -> bool {
95     span.ctxt().outer().expn_info().is_some()
96 }
97
98 /// Used to store the absolute path to a type.
99 ///
100 /// See `match_def_path` for usage.
101 #[derive(Debug)]
102 pub struct AbsolutePathBuffer {
103     pub names: Vec<symbol::LocalInternedString>,
104 }
105
106 impl ty::item_path::ItemPathBuffer for AbsolutePathBuffer {
107     fn root_mode(&self) -> &ty::item_path::RootMode {
108         const ABSOLUTE: &ty::item_path::RootMode = &ty::item_path::RootMode::Absolute;
109         ABSOLUTE
110     }
111
112     fn push(&mut self, text: &str) {
113         self.names.push(symbol::Symbol::intern(text).as_str());
114     }
115 }
116
117 /// Check if a `DefId`'s path matches the given absolute type path usage.
118 ///
119 /// # Examples
120 /// ```rust,ignore
121 /// match_def_path(cx.tcx, id, &["core", "option", "Option"])
122 /// ```
123 ///
124 /// See also the `paths` module.
125 pub fn match_def_path(tcx: TyCtxt<'_, '_, '_>, def_id: DefId, path: &[&str]) -> bool {
126     let mut apb = AbsolutePathBuffer { names: vec![] };
127
128     tcx.push_item_path(&mut apb, def_id, false);
129
130     apb.names.len() == path.len() && apb.names.into_iter().zip(path.iter()).all(|(a, &b)| *a == *b)
131 }
132
133 pub fn get_def_path(tcx: TyCtxt<'_, '_, '_>, def_id: DefId) -> Vec<&'static str> {
134     let mut apb = AbsolutePathBuffer { names: vec![] };
135     tcx.push_item_path(&mut apb, def_id, false);
136     apb.names.iter().map(|n| n.get()).collect()
137 }
138
139 /// Check if type is struct, enum or union type with given def path.
140 pub fn match_type(cx: &LateContext<'_, '_>, ty: Ty<'_>, path: &[&str]) -> bool {
141     match ty.sty {
142         ty::Adt(adt, _) => match_def_path(cx.tcx, adt.did, path),
143         _ => false,
144     }
145 }
146
147 /// Check if the method call given in `expr` belongs to given trait.
148 pub fn match_trait_method(cx: &LateContext<'_, '_>, expr: &Expr, path: &[&str]) -> bool {
149     let method_call = cx.tables.type_dependent_defs()[expr.hir_id];
150     let trt_id = cx.tcx.trait_of_item(method_call.def_id());
151     if let Some(trt_id) = trt_id {
152         match_def_path(cx.tcx, trt_id, path)
153     } else {
154         false
155     }
156 }
157
158 /// Check if an expression references a variable of the given name.
159 pub fn match_var(expr: &Expr, var: Name) -> bool {
160     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.node {
161         if path.segments.len() == 1 && path.segments[0].ident.name == var {
162             return true;
163         }
164     }
165     false
166 }
167
168 pub fn last_path_segment(path: &QPath) -> &PathSegment {
169     match *path {
170         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
171         QPath::TypeRelative(_, ref seg) => seg,
172     }
173 }
174
175 pub fn single_segment_path(path: &QPath) -> Option<&PathSegment> {
176     match *path {
177         QPath::Resolved(_, ref path) if path.segments.len() == 1 => Some(&path.segments[0]),
178         QPath::Resolved(..) => None,
179         QPath::TypeRelative(_, ref seg) => Some(seg),
180     }
181 }
182
183 /// Match a `Path` against a slice of segment string literals.
184 ///
185 /// # Examples
186 /// ```rust,ignore
187 /// match_qpath(path, &["std", "rt", "begin_unwind"])
188 /// ```
189 pub fn match_qpath(path: &QPath, segments: &[&str]) -> bool {
190     match *path {
191         QPath::Resolved(_, ref path) => match_path(path, segments),
192         QPath::TypeRelative(ref ty, ref segment) => match ty.node {
193             TyKind::Path(ref inner_path) => {
194                 !segments.is_empty()
195                     && match_qpath(inner_path, &segments[..(segments.len() - 1)])
196                     && segment.ident.name == segments[segments.len() - 1]
197             },
198             _ => false,
199         },
200     }
201 }
202
203 pub fn match_path(path: &Path, segments: &[&str]) -> bool {
204     path.segments
205         .iter()
206         .rev()
207         .zip(segments.iter().rev())
208         .all(|(a, b)| a.ident.name == *b)
209 }
210
211 /// Match a `Path` against a slice of segment string literals, e.g.
212 ///
213 /// # Examples
214 /// ```rust,ignore
215 /// match_qpath(path, &["std", "rt", "begin_unwind"])
216 /// ```
217 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
218     path.segments
219         .iter()
220         .rev()
221         .zip(segments.iter().rev())
222         .all(|(a, b)| a.ident.name == *b)
223 }
224
225 /// Get the definition associated to a path.
226 pub fn path_to_def(cx: &LateContext<'_, '_>, path: &[&str]) -> Option<def::Def> {
227     let crates = cx.tcx.crates();
228     let krate = crates.iter().find(|&&krate| cx.tcx.crate_name(krate) == path[0]);
229     if let Some(krate) = krate {
230         let krate = DefId {
231             krate: *krate,
232             index: CRATE_DEF_INDEX,
233         };
234         let mut items = cx.tcx.item_children(krate);
235         let mut path_it = path.iter().skip(1).peekable();
236
237         loop {
238             let segment = match path_it.next() {
239                 Some(segment) => segment,
240                 None => return None,
241             };
242
243             for item in mem::replace(&mut items, Lrc::new(vec![])).iter() {
244                 if item.ident.name == *segment {
245                     if path_it.peek().is_none() {
246                         return Some(item.def);
247                     }
248
249                     items = cx.tcx.item_children(item.def.def_id());
250                     break;
251                 }
252             }
253         }
254     } else {
255         None
256     }
257 }
258
259 /// Convenience function to get the `DefId` of a trait by path.
260 pub fn get_trait_def_id(cx: &LateContext<'_, '_>, path: &[&str]) -> Option<DefId> {
261     let def = match path_to_def(cx, path) {
262         Some(def) => def,
263         None => return None,
264     };
265
266     match def {
267         def::Def::Trait(trait_id) => Some(trait_id),
268         _ => None,
269     }
270 }
271
272 /// Check whether a type implements a trait.
273 /// See also `get_trait_def_id`.
274 pub fn implements_trait<'a, 'tcx>(
275     cx: &LateContext<'a, 'tcx>,
276     ty: Ty<'tcx>,
277     trait_id: DefId,
278     ty_params: &[Kind<'tcx>],
279 ) -> bool {
280     let ty = cx.tcx.erase_regions(&ty);
281     let obligation = cx.tcx.predicate_for_trait_def(
282         cx.param_env,
283         traits::ObligationCause::dummy(),
284         trait_id,
285         0,
286         ty,
287         ty_params,
288     );
289     cx.tcx
290         .infer_ctxt()
291         .enter(|infcx| infcx.predicate_must_hold_modulo_regions(&obligation))
292 }
293
294 /// Check whether this type implements Drop.
295 pub fn has_drop<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
296     match ty.ty_adt_def() {
297         Some(def) => def.has_dtor(cx.tcx),
298         _ => false,
299     }
300 }
301
302 /// Resolve the definition of a node from its `HirId`.
303 pub fn resolve_node(cx: &LateContext<'_, '_>, qpath: &QPath, id: HirId) -> def::Def {
304     cx.tables.qpath_def(qpath, id)
305 }
306
307 /// Return the method names and argument list of nested method call expressions that make up
308 /// `expr`.
309 pub fn method_calls<'a>(expr: &'a Expr, max_depth: usize) -> (Vec<Symbol>, Vec<&'a [Expr]>) {
310     let mut method_names = Vec::with_capacity(max_depth);
311     let mut arg_lists = Vec::with_capacity(max_depth);
312
313     let mut current = expr;
314     for _ in 0..max_depth {
315         if let ExprKind::MethodCall(path, _, args) = &current.node {
316             if args.iter().any(|e| in_macro(e.span)) {
317                 break;
318             }
319             method_names.push(path.ident.name);
320             arg_lists.push(&**args);
321             current = &args[0];
322         } else {
323             break;
324         }
325     }
326
327     (method_names, arg_lists)
328 }
329
330 /// Match an `Expr` against a chain of methods, and return the matched `Expr`s.
331 ///
332 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
333 /// `matched_method_chain(expr, &["bar", "baz"])` will return a `Vec`
334 /// containing the `Expr`s for
335 /// `.bar()` and `.baz()`
336 pub fn method_chain_args<'a>(expr: &'a Expr, methods: &[&str]) -> Option<Vec<&'a [Expr]>> {
337     let mut current = expr;
338     let mut matched = Vec::with_capacity(methods.len());
339     for method_name in methods.iter().rev() {
340         // method chains are stored last -> first
341         if let ExprKind::MethodCall(ref path, _, ref args) = current.node {
342             if path.ident.name == *method_name {
343                 if args.iter().any(|e| in_macro(e.span)) {
344                     return None;
345                 }
346                 matched.push(&**args); // build up `matched` backwards
347                 current = &args[0] // go to parent expression
348             } else {
349                 return None;
350             }
351         } else {
352             return None;
353         }
354     }
355     matched.reverse(); // reverse `matched`, so that it is in the same order as `methods`
356     Some(matched)
357 }
358
359 /// Returns true if the provided `def_id` is an entrypoint to a program
360 pub fn is_entrypoint_fn(cx: &LateContext<'_, '_>, def_id: DefId) -> bool {
361     if let Some((entry_fn_def_id, _)) = cx.tcx.entry_fn(LOCAL_CRATE) {
362         return def_id == entry_fn_def_id;
363     }
364     false
365 }
366
367 /// Get the name of the item the expression is in, if available.
368 pub fn get_item_name(cx: &LateContext<'_, '_>, expr: &Expr) -> Option<Name> {
369     let parent_id = cx.tcx.hir().get_parent(expr.id);
370     match cx.tcx.hir().find(parent_id) {
371         Some(Node::Item(&Item { ref ident, .. })) => Some(ident.name),
372         Some(Node::TraitItem(&TraitItem { ident, .. })) | Some(Node::ImplItem(&ImplItem { ident, .. })) => {
373             Some(ident.name)
374         },
375         _ => None,
376     }
377 }
378
379 /// Get the name of a `Pat`, if any
380 pub fn get_pat_name(pat: &Pat) -> Option<Name> {
381     match pat.node {
382         PatKind::Binding(_, _, ref spname, _) => Some(spname.name),
383         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
384         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
385         _ => None,
386     }
387 }
388
389 struct ContainsName {
390     name: Name,
391     result: bool,
392 }
393
394 impl<'tcx> Visitor<'tcx> for ContainsName {
395     fn visit_name(&mut self, _: Span, name: Name) {
396         if self.name == name {
397             self.result = true;
398         }
399     }
400     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
401         NestedVisitorMap::None
402     }
403 }
404
405 /// check if an `Expr` contains a certain name
406 pub fn contains_name(name: Name, expr: &Expr) -> bool {
407     let mut cn = ContainsName { name, result: false };
408     cn.visit_expr(expr);
409     cn.result
410 }
411
412 /// Convert a span to a code snippet if available, otherwise use default.
413 ///
414 /// This is useful if you want to provide suggestions for your lint or more generally, if you want
415 /// to convert a given `Span` to a `str`.
416 ///
417 /// # Example
418 /// ```rust,ignore
419 /// snippet(cx, expr.span, "..")
420 /// ```
421 pub fn snippet<'a, 'b, T: LintContext<'b>>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
422     snippet_opt(cx, span).map_or_else(|| Cow::Borrowed(default), From::from)
423 }
424
425 /// Same as `snippet`, but it adapts the applicability level by following rules:
426 ///
427 /// - Applicability level `Unspecified` will never be changed.
428 /// - If the span is inside a macro, change the applicability level to `MaybeIncorrect`.
429 /// - If the default value is used and the applicability level is `MachineApplicable`, change it to
430 /// `HasPlaceholders`
431 pub fn snippet_with_applicability<'a, 'b, T: LintContext<'b>>(
432     cx: &T,
433     span: Span,
434     default: &'a str,
435     applicability: &mut Applicability,
436 ) -> Cow<'a, str> {
437     if *applicability != Applicability::Unspecified && in_macro(span) {
438         *applicability = Applicability::MaybeIncorrect;
439     }
440     snippet_opt(cx, span).map_or_else(
441         || {
442             if *applicability == Applicability::MachineApplicable {
443                 *applicability = Applicability::HasPlaceholders;
444             }
445             Cow::Borrowed(default)
446         },
447         From::from,
448     )
449 }
450
451 /// Same as `snippet`, but should only be used when it's clear that the input span is
452 /// not a macro argument.
453 pub fn snippet_with_macro_callsite<'a, 'b, T: LintContext<'b>>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
454     snippet(cx, span.source_callsite(), default)
455 }
456
457 /// Convert a span to a code snippet. Returns `None` if not available.
458 pub fn snippet_opt<'a, T: LintContext<'a>>(cx: &T, span: Span) -> Option<String> {
459     cx.sess().source_map().span_to_snippet(span).ok()
460 }
461
462 /// Convert a span (from a block) to a code snippet if available, otherwise use
463 /// default.
464 /// This trims the code of indentation, except for the first line. Use it for
465 /// blocks or block-like
466 /// things which need to be printed as such.
467 ///
468 /// # Example
469 /// ```rust,ignore
470 /// snippet_block(cx, expr.span, "..")
471 /// ```
472 pub fn snippet_block<'a, 'b, T: LintContext<'b>>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
473     let snip = snippet(cx, span, default);
474     trim_multiline(snip, true)
475 }
476
477 /// Same as `snippet_block`, but adapts the applicability level by the rules of
478 /// `snippet_with_applicabiliy`.
479 pub fn snippet_block_with_applicability<'a, 'b, T: LintContext<'b>>(
480     cx: &T,
481     span: Span,
482     default: &'a str,
483     applicability: &mut Applicability,
484 ) -> Cow<'a, str> {
485     let snip = snippet_with_applicability(cx, span, default, applicability);
486     trim_multiline(snip, true)
487 }
488
489 /// Returns a new Span that covers the full last line of the given Span
490 pub fn last_line_of_span<'a, T: LintContext<'a>>(cx: &T, span: Span) -> Span {
491     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
492     let line_no = source_map_and_line.line;
493     let line_start = &source_map_and_line.sf.lines[line_no];
494     Span::new(*line_start, span.hi(), span.ctxt())
495 }
496
497 /// Like `snippet_block`, but add braces if the expr is not an `ExprKind::Block`.
498 /// Also takes an `Option<String>` which can be put inside the braces.
499 pub fn expr_block<'a, 'b, T: LintContext<'b>>(
500     cx: &T,
501     expr: &Expr,
502     option: Option<String>,
503     default: &'a str,
504 ) -> Cow<'a, str> {
505     let code = snippet_block(cx, expr.span, default);
506     let string = option.unwrap_or_default();
507     if in_macro(expr.span) {
508         Cow::Owned(format!("{{ {} }}", snippet_with_macro_callsite(cx, expr.span, default)))
509     } else if let ExprKind::Block(_, _) = expr.node {
510         Cow::Owned(format!("{}{}", code, string))
511     } else if string.is_empty() {
512         Cow::Owned(format!("{{ {} }}", code))
513     } else {
514         Cow::Owned(format!("{{\n{};\n{}\n}}", code, string))
515     }
516 }
517
518 /// Trim indentation from a multiline string with possibility of ignoring the
519 /// first line.
520 pub fn trim_multiline(s: Cow<'_, str>, ignore_first: bool) -> Cow<'_, str> {
521     let s_space = trim_multiline_inner(s, ignore_first, ' ');
522     let s_tab = trim_multiline_inner(s_space, ignore_first, '\t');
523     trim_multiline_inner(s_tab, ignore_first, ' ')
524 }
525
526 fn trim_multiline_inner(s: Cow<'_, str>, ignore_first: bool, ch: char) -> Cow<'_, str> {
527     let x = s
528         .lines()
529         .skip(ignore_first as usize)
530         .filter_map(|l| {
531             if l.is_empty() {
532                 None
533             } else {
534                 // ignore empty lines
535                 Some(l.char_indices().find(|&(_, x)| x != ch).unwrap_or((l.len(), ch)).0)
536             }
537         })
538         .min()
539         .unwrap_or(0);
540     if x > 0 {
541         Cow::Owned(
542             s.lines()
543                 .enumerate()
544                 .map(|(i, l)| {
545                     if (ignore_first && i == 0) || l.is_empty() {
546                         l
547                     } else {
548                         l.split_at(x).1
549                     }
550                 })
551                 .collect::<Vec<_>>()
552                 .join("\n"),
553         )
554     } else {
555         s
556     }
557 }
558
559 /// Get a parent expressions if any â€“ this is useful to constrain a lint.
560 pub fn get_parent_expr<'c>(cx: &'c LateContext<'_, '_>, e: &Expr) -> Option<&'c Expr> {
561     let map = &cx.tcx.hir();
562     let node_id: NodeId = e.id;
563     let parent_id: NodeId = map.get_parent_node(node_id);
564     if node_id == parent_id {
565         return None;
566     }
567     map.find(parent_id).and_then(|node| {
568         if let Node::Expr(parent) = node {
569             Some(parent)
570         } else {
571             None
572         }
573     })
574 }
575
576 pub fn get_enclosing_block<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, node: NodeId) -> Option<&'tcx Block> {
577     let map = &cx.tcx.hir();
578     let enclosing_node = map
579         .get_enclosing_scope(node)
580         .and_then(|enclosing_id| map.find(enclosing_id));
581     if let Some(node) = enclosing_node {
582         match node {
583             Node::Block(block) => Some(block),
584             Node::Item(&Item {
585                 node: ItemKind::Fn(_, _, _, eid),
586                 ..
587             })
588             | Node::ImplItem(&ImplItem {
589                 node: ImplItemKind::Method(_, eid),
590                 ..
591             }) => match cx.tcx.hir().body(eid).value.node {
592                 ExprKind::Block(ref block, _) => Some(block),
593                 _ => None,
594             },
595             _ => None,
596         }
597     } else {
598         None
599     }
600 }
601
602 pub struct DiagnosticWrapper<'a>(pub DiagnosticBuilder<'a>);
603
604 impl<'a> Drop for DiagnosticWrapper<'a> {
605     fn drop(&mut self) {
606         self.0.emit();
607     }
608 }
609
610 impl<'a> DiagnosticWrapper<'a> {
611     fn docs_link(&mut self, lint: &'static Lint) {
612         if env::var("CLIPPY_DISABLE_DOCS_LINKS").is_err() {
613             self.0.help(&format!(
614                 "for further information visit https://rust-lang.github.io/rust-clippy/{}/index.html#{}",
615                 &option_env!("RUST_RELEASE_NUM").map_or("master".to_string(), |n| {
616                     // extract just major + minor version and ignore patch versions
617                     format!("rust-{}", n.rsplitn(2, '.').nth(1).unwrap())
618                 }),
619                 lint.name_lower().replacen("clippy::", "", 1)
620             ));
621         }
622     }
623 }
624
625 pub fn span_lint<'a, T: LintContext<'a>>(cx: &T, lint: &'static Lint, sp: Span, msg: &str) {
626     DiagnosticWrapper(cx.struct_span_lint(lint, sp, msg)).docs_link(lint);
627 }
628
629 pub fn span_help_and_lint<'a, 'tcx: 'a, T: LintContext<'tcx>>(
630     cx: &'a T,
631     lint: &'static Lint,
632     span: Span,
633     msg: &str,
634     help: &str,
635 ) {
636     let mut db = DiagnosticWrapper(cx.struct_span_lint(lint, span, msg));
637     db.0.help(help);
638     db.docs_link(lint);
639 }
640
641 pub fn span_note_and_lint<'a, 'tcx: 'a, T: LintContext<'tcx>>(
642     cx: &'a T,
643     lint: &'static Lint,
644     span: Span,
645     msg: &str,
646     note_span: Span,
647     note: &str,
648 ) {
649     let mut db = DiagnosticWrapper(cx.struct_span_lint(lint, span, msg));
650     if note_span == span {
651         db.0.note(note);
652     } else {
653         db.0.span_note(note_span, note);
654     }
655     db.docs_link(lint);
656 }
657
658 pub fn span_lint_and_then<'a, 'tcx: 'a, T: LintContext<'tcx>, F>(
659     cx: &'a T,
660     lint: &'static Lint,
661     sp: Span,
662     msg: &str,
663     f: F,
664 ) where
665     F: for<'b> FnOnce(&mut DiagnosticBuilder<'b>),
666 {
667     let mut db = DiagnosticWrapper(cx.struct_span_lint(lint, sp, msg));
668     f(&mut db.0);
669     db.docs_link(lint);
670 }
671
672 pub fn span_lint_node(cx: &LateContext<'_, '_>, lint: &'static Lint, node: NodeId, sp: Span, msg: &str) {
673     DiagnosticWrapper(cx.tcx.struct_span_lint_node(lint, node, sp, msg)).docs_link(lint);
674 }
675
676 pub fn span_lint_node_and_then(
677     cx: &LateContext<'_, '_>,
678     lint: &'static Lint,
679     node: NodeId,
680     sp: Span,
681     msg: &str,
682     f: impl FnOnce(&mut DiagnosticBuilder<'_>),
683 ) {
684     let mut db = DiagnosticWrapper(cx.tcx.struct_span_lint_node(lint, node, sp, msg));
685     f(&mut db.0);
686     db.docs_link(lint);
687 }
688
689 /// Add a span lint with a suggestion on how to fix it.
690 ///
691 /// These suggestions can be parsed by rustfix to allow it to automatically fix your code.
692 /// In the example below, `help` is `"try"` and `sugg` is the suggested replacement `".any(|x| x >
693 /// 2)"`.
694 ///
695 /// ```ignore
696 /// error: This `.fold` can be more succinctly expressed as `.any`
697 /// --> $DIR/methods.rs:390:13
698 ///     |
699 /// 390 |     let _ = (0..3).fold(false, |acc, x| acc || x > 2);
700 ///     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.any(|x| x > 2)`
701 ///     |
702 ///     = note: `-D fold-any` implied by `-D warnings`
703 /// ```
704 pub fn span_lint_and_sugg<'a, 'tcx: 'a, T: LintContext<'tcx>>(
705     cx: &'a T,
706     lint: &'static Lint,
707     sp: Span,
708     msg: &str,
709     help: &str,
710     sugg: String,
711     applicability: Applicability,
712 ) {
713     span_lint_and_then(cx, lint, sp, msg, |db| {
714         db.span_suggestion(sp, help, sugg, applicability);
715     });
716 }
717
718 /// Create a suggestion made from several `span â†’ replacement`.
719 ///
720 /// Note: in the JSON format (used by `compiletest_rs`), the help message will
721 /// appear once per
722 /// replacement. In human-readable format though, it only appears once before
723 /// the whole suggestion.
724 pub fn multispan_sugg<I>(db: &mut DiagnosticBuilder<'_>, help_msg: String, sugg: I)
725 where
726     I: IntoIterator<Item = (Span, String)>,
727 {
728     let sugg = CodeSuggestion {
729         substitutions: vec![Substitution {
730             parts: sugg
731                 .into_iter()
732                 .map(|(span, snippet)| SubstitutionPart { snippet, span })
733                 .collect(),
734         }],
735         msg: help_msg,
736         show_code_when_inline: true,
737         applicability: Applicability::Unspecified,
738     };
739     db.suggestions.push(sugg);
740 }
741
742 /// Return the base type for HIR references and pointers.
743 pub fn walk_ptrs_hir_ty(ty: &hir::Ty) -> &hir::Ty {
744     match ty.node {
745         TyKind::Ptr(ref mut_ty) | TyKind::Rptr(_, ref mut_ty) => walk_ptrs_hir_ty(&mut_ty.ty),
746         _ => ty,
747     }
748 }
749
750 /// Return the base type for references and raw pointers.
751 pub fn walk_ptrs_ty(ty: Ty<'_>) -> Ty<'_> {
752     match ty.sty {
753         ty::Ref(_, ty, _) => walk_ptrs_ty(ty),
754         _ => ty,
755     }
756 }
757
758 /// Return the base type for references and raw pointers, and count reference
759 /// depth.
760 pub fn walk_ptrs_ty_depth(ty: Ty<'_>) -> (Ty<'_>, usize) {
761     fn inner(ty: Ty<'_>, depth: usize) -> (Ty<'_>, usize) {
762         match ty.sty {
763             ty::Ref(_, ty, _) => inner(ty, depth + 1),
764             _ => (ty, depth),
765         }
766     }
767     inner(ty, 0)
768 }
769
770 /// Check whether the given expression is a constant literal of the given value.
771 pub fn is_integer_literal(expr: &Expr, value: u128) -> bool {
772     // FIXME: use constant folding
773     if let ExprKind::Lit(ref spanned) = expr.node {
774         if let LitKind::Int(v, _) = spanned.node {
775             return v == value;
776         }
777     }
778     false
779 }
780
781 /// Returns `true` if the given `Expr` has been coerced before.
782 ///
783 /// Examples of coercions can be found in the Nomicon at
784 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
785 ///
786 /// See `rustc::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
787 /// information on adjustments and coercions.
788 pub fn is_adjusted(cx: &LateContext<'_, '_>, e: &Expr) -> bool {
789     cx.tables.adjustments().get(e.hir_id).is_some()
790 }
791
792 pub struct LimitStack {
793     stack: Vec<u64>,
794 }
795
796 impl Drop for LimitStack {
797     fn drop(&mut self) {
798         assert_eq!(self.stack.len(), 1);
799     }
800 }
801
802 impl LimitStack {
803     pub fn new(limit: u64) -> Self {
804         Self { stack: vec![limit] }
805     }
806     pub fn limit(&self) -> u64 {
807         *self.stack.last().expect("there should always be a value in the stack")
808     }
809     pub fn push_attrs(&mut self, sess: &Session, attrs: &[ast::Attribute], name: &'static str) {
810         let stack = &mut self.stack;
811         parse_attrs(sess, attrs, name, |val| stack.push(val));
812     }
813     pub fn pop_attrs(&mut self, sess: &Session, attrs: &[ast::Attribute], name: &'static str) {
814         let stack = &mut self.stack;
815         parse_attrs(sess, attrs, name, |val| assert_eq!(stack.pop(), Some(val)));
816     }
817 }
818
819 pub fn get_attr<'a>(attrs: &'a [ast::Attribute], name: &'static str) -> impl Iterator<Item = &'a ast::Attribute> {
820     attrs.iter().filter(move |attr| {
821         attr.path.segments.len() == 2
822             && attr.path.segments[0].ident.to_string() == "clippy"
823             && attr.path.segments[1].ident.to_string() == name
824     })
825 }
826
827 fn parse_attrs<F: FnMut(u64)>(sess: &Session, attrs: &[ast::Attribute], name: &'static str, mut f: F) {
828     for attr in get_attr(attrs, name) {
829         if let Some(ref value) = attr.value_str() {
830             if let Ok(value) = FromStr::from_str(&value.as_str()) {
831                 f(value)
832             } else {
833                 sess.span_err(attr.span, "not a number");
834             }
835         } else {
836             sess.span_err(attr.span, "bad clippy attribute");
837         }
838     }
839 }
840
841 /// Return the pre-expansion span if is this comes from an expansion of the
842 /// macro `name`.
843 /// See also `is_direct_expn_of`.
844 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
845     loop {
846         let span_name_span = span
847             .ctxt()
848             .outer()
849             .expn_info()
850             .map(|ei| (ei.format.name(), ei.call_site));
851
852         match span_name_span {
853             Some((mac_name, new_span)) if mac_name == name => return Some(new_span),
854             None => return None,
855             Some((_, new_span)) => span = new_span,
856         }
857     }
858 }
859
860 /// Return the pre-expansion span if is this directly comes from an expansion
861 /// of the macro `name`.
862 /// The difference with `is_expn_of` is that in
863 /// ```rust,ignore
864 /// foo!(bar!(42));
865 /// ```
866 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
867 /// `bar!` by
868 /// `is_direct_expn_of`.
869 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
870     let span_name_span = span
871         .ctxt()
872         .outer()
873         .expn_info()
874         .map(|ei| (ei.format.name(), ei.call_site));
875
876     match span_name_span {
877         Some((mac_name, new_span)) if mac_name == name => Some(new_span),
878         _ => None,
879     }
880 }
881
882 /// Convenience function to get the return type of a function
883 pub fn return_ty<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, fn_item: NodeId) -> Ty<'tcx> {
884     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
885     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
886     cx.tcx.erase_late_bound_regions(&ret_ty)
887 }
888
889 /// Check if two types are the same.
890 ///
891 /// This discards any lifetime annotations, too.
892 // FIXME: this works correctly for lifetimes bounds (`for <'a> Foo<'a>` == `for
893 // <'b> Foo<'b>` but
894 // not for type parameters.
895 pub fn same_tys<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, a: Ty<'tcx>, b: Ty<'tcx>) -> bool {
896     let a = cx.tcx.erase_late_bound_regions(&Binder::bind(a));
897     let b = cx.tcx.erase_late_bound_regions(&Binder::bind(b));
898     cx.tcx
899         .infer_ctxt()
900         .enter(|infcx| infcx.can_eq(cx.param_env, a, b).is_ok())
901 }
902
903 /// Return whether the given type is an `unsafe` function.
904 pub fn type_is_unsafe_function<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
905     match ty.sty {
906         ty::FnDef(..) | ty::FnPtr(_) => ty.fn_sig(cx.tcx).unsafety() == Unsafety::Unsafe,
907         _ => false,
908     }
909 }
910
911 pub fn is_copy<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
912     ty.is_copy_modulo_regions(cx.tcx.global_tcx(), cx.param_env, DUMMY_SP)
913 }
914
915 /// Return whether a pattern is refutable.
916 pub fn is_refutable(cx: &LateContext<'_, '_>, pat: &Pat) -> bool {
917     fn is_enum_variant(cx: &LateContext<'_, '_>, qpath: &QPath, id: HirId) -> bool {
918         matches!(
919             cx.tables.qpath_def(qpath, id),
920             def::Def::Variant(..) | def::Def::VariantCtor(..)
921         )
922     }
923
924     fn are_refutable<'a, I: Iterator<Item = &'a Pat>>(cx: &LateContext<'_, '_>, mut i: I) -> bool {
925         i.any(|pat| is_refutable(cx, pat))
926     }
927
928     match pat.node {
929         PatKind::Binding(..) | PatKind::Wild => false,
930         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
931         PatKind::Lit(..) | PatKind::Range(..) => true,
932         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
933         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
934         PatKind::Struct(ref qpath, ref fields, _) => {
935             if is_enum_variant(cx, qpath, pat.hir_id) {
936                 true
937             } else {
938                 are_refutable(cx, fields.iter().map(|field| &*field.node.pat))
939             }
940         },
941         PatKind::TupleStruct(ref qpath, ref pats, _) => {
942             if is_enum_variant(cx, qpath, pat.hir_id) {
943                 true
944             } else {
945                 are_refutable(cx, pats.iter().map(|pat| &**pat))
946             }
947         },
948         PatKind::Slice(ref head, ref middle, ref tail) => {
949             are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat))
950         },
951     }
952 }
953
954 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
955 /// implementations have.
956 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
957     attr::contains_name(attrs, "automatically_derived")
958 }
959
960 /// Remove blocks around an expression.
961 ///
962 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
963 /// themselves.
964 pub fn remove_blocks(expr: &Expr) -> &Expr {
965     if let ExprKind::Block(ref block, _) = expr.node {
966         if block.stmts.is_empty() {
967             if let Some(ref expr) = block.expr {
968                 remove_blocks(expr)
969             } else {
970                 expr
971             }
972         } else {
973             expr
974         }
975     } else {
976         expr
977     }
978 }
979
980 pub fn opt_def_id(def: Def) -> Option<DefId> {
981     match def {
982         Def::Fn(id)
983         | Def::Mod(id)
984         | Def::Static(id, _)
985         | Def::Variant(id)
986         | Def::VariantCtor(id, ..)
987         | Def::Enum(id)
988         | Def::TyAlias(id)
989         | Def::AssociatedTy(id)
990         | Def::TyParam(id)
991         | Def::ForeignTy(id)
992         | Def::Struct(id)
993         | Def::StructCtor(id, ..)
994         | Def::Union(id)
995         | Def::Trait(id)
996         | Def::TraitAlias(id)
997         | Def::Method(id)
998         | Def::Const(id)
999         | Def::AssociatedConst(id)
1000         | Def::Macro(id, ..)
1001         | Def::Existential(id)
1002         | Def::AssociatedExistential(id)
1003         | Def::SelfCtor(id) => Some(id),
1004
1005         Def::Upvar(..)
1006         | Def::Local(_)
1007         | Def::Label(..)
1008         | Def::PrimTy(..)
1009         | Def::SelfTy(..)
1010         | Def::ToolMod
1011         | Def::NonMacroAttr { .. }
1012         | Def::Err => None,
1013     }
1014 }
1015
1016 pub fn is_self(slf: &Arg) -> bool {
1017     if let PatKind::Binding(_, _, name, _) = slf.pat.node {
1018         name.name == keywords::SelfLower.name()
1019     } else {
1020         false
1021     }
1022 }
1023
1024 pub fn is_self_ty(slf: &hir::Ty) -> bool {
1025     if_chain! {
1026         if let TyKind::Path(ref qp) = slf.node;
1027         if let QPath::Resolved(None, ref path) = *qp;
1028         if let Def::SelfTy(..) = path.def;
1029         then {
1030             return true
1031         }
1032     }
1033     false
1034 }
1035
1036 pub fn iter_input_pats<'tcx>(decl: &FnDecl, body: &'tcx Body) -> impl Iterator<Item = &'tcx Arg> {
1037     (0..decl.inputs.len()).map(move |i| &body.arguments[i])
1038 }
1039
1040 /// Check if a given expression is a match expression
1041 /// expanded from `?` operator or `try` macro.
1042 pub fn is_try(expr: &Expr) -> Option<&Expr> {
1043     fn is_ok(arm: &Arm) -> bool {
1044         if_chain! {
1045             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pats[0].node;
1046             if match_qpath(path, &paths::RESULT_OK[1..]);
1047             if let PatKind::Binding(_, defid, _, None) = pat[0].node;
1048             if let ExprKind::Path(QPath::Resolved(None, ref path)) = arm.body.node;
1049             if let Def::Local(lid) = path.def;
1050             if lid == defid;
1051             then {
1052                 return true;
1053             }
1054         }
1055         false
1056     }
1057
1058     fn is_err(arm: &Arm) -> bool {
1059         if let PatKind::TupleStruct(ref path, _, _) = arm.pats[0].node {
1060             match_qpath(path, &paths::RESULT_ERR[1..])
1061         } else {
1062             false
1063         }
1064     }
1065
1066     if let ExprKind::Match(_, ref arms, ref source) = expr.node {
1067         // desugared from a `?` operator
1068         if let MatchSource::TryDesugar = *source {
1069             return Some(expr);
1070         }
1071
1072         if_chain! {
1073             if arms.len() == 2;
1074             if arms[0].pats.len() == 1 && arms[0].guard.is_none();
1075             if arms[1].pats.len() == 1 && arms[1].guard.is_none();
1076             if (is_ok(&arms[0]) && is_err(&arms[1])) ||
1077                 (is_ok(&arms[1]) && is_err(&arms[0]));
1078             then {
1079                 return Some(expr);
1080             }
1081         }
1082     }
1083
1084     None
1085 }
1086
1087 /// Returns true if the lint is allowed in the current context
1088 ///
1089 /// Useful for skipping long running code when it's unnecessary
1090 pub fn is_allowed(cx: &LateContext<'_, '_>, lint: &'static Lint, id: NodeId) -> bool {
1091     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1092 }
1093
1094 pub fn get_arg_name(pat: &Pat) -> Option<ast::Name> {
1095     match pat.node {
1096         PatKind::Binding(_, _, ident, None) => Some(ident.name),
1097         PatKind::Ref(ref subpat, _) => get_arg_name(subpat),
1098         _ => None,
1099     }
1100 }
1101
1102 pub fn int_bits(tcx: TyCtxt<'_, '_, '_>, ity: ast::IntTy) -> u64 {
1103     layout::Integer::from_attr(&tcx, attr::IntType::SignedInt(ity))
1104         .size()
1105         .bits()
1106 }
1107
1108 #[allow(clippy::cast_possible_wrap)]
1109 /// Turn a constant int byte representation into an i128
1110 pub fn sext(tcx: TyCtxt<'_, '_, '_>, u: u128, ity: ast::IntTy) -> i128 {
1111     let amt = 128 - int_bits(tcx, ity);
1112     ((u as i128) << amt) >> amt
1113 }
1114
1115 #[allow(clippy::cast_sign_loss)]
1116 /// clip unused bytes
1117 pub fn unsext(tcx: TyCtxt<'_, '_, '_>, u: i128, ity: ast::IntTy) -> u128 {
1118     let amt = 128 - int_bits(tcx, ity);
1119     ((u as u128) << amt) >> amt
1120 }
1121
1122 /// clip unused bytes
1123 pub fn clip(tcx: TyCtxt<'_, '_, '_>, u: u128, ity: ast::UintTy) -> u128 {
1124     let bits = layout::Integer::from_attr(&tcx, attr::IntType::UnsignedInt(ity))
1125         .size()
1126         .bits();
1127     let amt = 128 - bits;
1128     (u << amt) >> amt
1129 }
1130
1131 /// Remove block comments from the given Vec of lines
1132 ///
1133 /// # Examples
1134 ///
1135 /// ```rust,ignore
1136 /// without_block_comments(vec!["/*", "foo", "*/"]);
1137 /// // => vec![]
1138 ///
1139 /// without_block_comments(vec!["bar", "/*", "foo", "*/"]);
1140 /// // => vec!["bar"]
1141 /// ```
1142 pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str> {
1143     let mut without = vec![];
1144
1145     let mut nest_level = 0;
1146
1147     for line in lines {
1148         if line.contains("/*") {
1149             nest_level += 1;
1150             continue;
1151         } else if line.contains("*/") {
1152             nest_level -= 1;
1153             continue;
1154         }
1155
1156         if nest_level == 0 {
1157             without.push(line);
1158         }
1159     }
1160
1161     without
1162 }
1163
1164 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_, '_, '_>, node: NodeId) -> bool {
1165     let map = &tcx.hir();
1166     let mut prev_enclosing_node = None;
1167     let mut enclosing_node = node;
1168     while Some(enclosing_node) != prev_enclosing_node {
1169         if is_automatically_derived(map.attrs(enclosing_node)) {
1170             return true;
1171         }
1172         prev_enclosing_node = Some(enclosing_node);
1173         enclosing_node = map.get_parent(enclosing_node);
1174     }
1175     false
1176 }
1177
1178 #[cfg(test)]
1179 mod test {
1180     use super::{trim_multiline, without_block_comments};
1181
1182     #[test]
1183     fn test_trim_multiline_single_line() {
1184         assert_eq!("", trim_multiline("".into(), false));
1185         assert_eq!("...", trim_multiline("...".into(), false));
1186         assert_eq!("...", trim_multiline("    ...".into(), false));
1187         assert_eq!("...", trim_multiline("\t...".into(), false));
1188         assert_eq!("...", trim_multiline("\t\t...".into(), false));
1189     }
1190
1191     #[test]
1192     #[rustfmt::skip]
1193     fn test_trim_multiline_block() {
1194         assert_eq!("\
1195     if x {
1196         y
1197     } else {
1198         z
1199     }", trim_multiline("    if x {
1200             y
1201         } else {
1202             z
1203         }".into(), false));
1204         assert_eq!("\
1205     if x {
1206     \ty
1207     } else {
1208     \tz
1209     }", trim_multiline("    if x {
1210         \ty
1211         } else {
1212         \tz
1213         }".into(), false));
1214     }
1215
1216     #[test]
1217     #[rustfmt::skip]
1218     fn test_trim_multiline_empty_line() {
1219         assert_eq!("\
1220     if x {
1221         y
1222
1223     } else {
1224         z
1225     }", trim_multiline("    if x {
1226             y
1227
1228         } else {
1229             z
1230         }".into(), false));
1231     }
1232
1233     #[test]
1234     fn test_without_block_comments_lines_without_block_comments() {
1235         let result = without_block_comments(vec!["/*", "", "*/"]);
1236         println!("result: {:?}", result);
1237         assert!(result.is_empty());
1238
1239         let result = without_block_comments(vec!["", "/*", "", "*/", "#[crate_type = \"lib\"]", "/*", "", "*/", ""]);
1240         assert_eq!(result, vec!["", "#[crate_type = \"lib\"]", ""]);
1241
1242         let result = without_block_comments(vec!["/* rust", "", "*/"]);
1243         assert!(result.is_empty());
1244
1245         let result = without_block_comments(vec!["/* one-line comment */"]);
1246         assert!(result.is_empty());
1247
1248         let result = without_block_comments(vec!["/* nested", "/* multi-line", "comment", "*/", "test", "*/"]);
1249         assert!(result.is_empty());
1250
1251         let result = without_block_comments(vec!["/* nested /* inline /* comment */ test */ */"]);
1252         assert!(result.is_empty());
1253
1254         let result = without_block_comments(vec!["foo", "bar", "baz"]);
1255         assert_eq!(result, vec!["foo", "bar", "baz"]);
1256     }
1257 }