]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/utils/mod.rs
Don't use `dep_graph.with_ignore` when encoding fn param names
[rust.git] / src / tools / clippy / clippy_lints / src / utils / mod.rs
1 #[macro_use]
2 pub mod sym;
3
4 #[allow(clippy::module_name_repetitions)]
5 pub mod ast_utils;
6 pub mod attrs;
7 pub mod author;
8 pub mod camel_case;
9 pub mod comparisons;
10 pub mod conf;
11 pub mod constants;
12 mod diagnostics;
13 pub mod higher;
14 mod hir_utils;
15 pub mod inspector;
16 pub mod internal_lints;
17 pub mod numeric_literal;
18 pub mod paths;
19 pub mod ptr;
20 pub mod sugg;
21 pub mod usage;
22 pub use self::attrs::*;
23 pub use self::diagnostics::*;
24 pub use self::hir_utils::{both, over, SpanlessEq, SpanlessHash};
25
26 use std::borrow::Cow;
27 use std::mem;
28
29 use if_chain::if_chain;
30 use rustc_ast::ast::{self, Attribute, LitKind};
31 use rustc_attr as attr;
32 use rustc_errors::Applicability;
33 use rustc_hir as hir;
34 use rustc_hir::def::{DefKind, Res};
35 use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
36 use rustc_hir::intravisit::{NestedVisitorMap, Visitor};
37 use rustc_hir::Node;
38 use rustc_hir::{
39     def, Arm, Block, Body, Constness, Crate, Expr, ExprKind, FnDecl, HirId, ImplItem, ImplItemKind, Item, ItemKind,
40     MatchSource, Param, Pat, PatKind, Path, PathSegment, QPath, TraitItem, TraitItemKind, TraitRef, TyKind, Unsafety,
41 };
42 use rustc_infer::infer::TyCtxtInferExt;
43 use rustc_lint::{LateContext, Level, Lint, LintContext};
44 use rustc_middle::hir::map::Map;
45 use rustc_middle::ty::{self, layout::IntegerExt, subst::GenericArg, Ty, TyCtxt, TypeFoldable};
46 use rustc_mir::const_eval;
47 use rustc_span::hygiene::{ExpnKind, MacroKind};
48 use rustc_span::source_map::original_sp;
49 use rustc_span::symbol::{self, kw, Symbol};
50 use rustc_span::{BytePos, Pos, Span, DUMMY_SP};
51 use rustc_target::abi::Integer;
52 use rustc_trait_selection::traits::query::normalize::AtExt;
53 use smallvec::SmallVec;
54
55 use crate::consts::{constant, Constant};
56
57 /// Returns `true` if the two spans come from differing expansions (i.e., one is
58 /// from a macro and one isn't).
59 #[must_use]
60 pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
61     rhs.ctxt() != lhs.ctxt()
62 }
63
64 /// Returns `true` if the given `NodeId` is inside a constant context
65 ///
66 /// # Example
67 ///
68 /// ```rust,ignore
69 /// if in_constant(cx, expr.hir_id) {
70 ///     // Do something
71 /// }
72 /// ```
73 pub fn in_constant(cx: &LateContext<'_>, id: HirId) -> bool {
74     let parent_id = cx.tcx.hir().get_parent_item(id);
75     match cx.tcx.hir().get(parent_id) {
76         Node::Item(&Item {
77             kind: ItemKind::Const(..) | ItemKind::Static(..),
78             ..
79         })
80         | Node::TraitItem(&TraitItem {
81             kind: TraitItemKind::Const(..),
82             ..
83         })
84         | Node::ImplItem(&ImplItem {
85             kind: ImplItemKind::Const(..),
86             ..
87         })
88         | Node::AnonConst(_) => true,
89         Node::Item(&Item {
90             kind: ItemKind::Fn(ref sig, ..),
91             ..
92         })
93         | Node::ImplItem(&ImplItem {
94             kind: ImplItemKind::Fn(ref sig, _),
95             ..
96         }) => sig.header.constness == Constness::Const,
97         _ => false,
98     }
99 }
100
101 /// Returns `true` if this `span` was expanded by any macro.
102 #[must_use]
103 pub fn in_macro(span: Span) -> bool {
104     if span.from_expansion() {
105         !matches!(span.ctxt().outer_expn_data().kind, ExpnKind::Desugaring(..))
106     } else {
107         false
108     }
109 }
110 // If the snippet is empty, it's an attribute that was inserted during macro
111 // expansion and we want to ignore those, because they could come from external
112 // sources that the user has no control over.
113 // For some reason these attributes don't have any expansion info on them, so
114 // we have to check it this way until there is a better way.
115 pub fn is_present_in_source<T: LintContext>(cx: &T, span: Span) -> bool {
116     if let Some(snippet) = snippet_opt(cx, span) {
117         if snippet.is_empty() {
118             return false;
119         }
120     }
121     true
122 }
123
124 /// Checks if given pattern is a wildcard (`_`)
125 pub fn is_wild<'tcx>(pat: &impl std::ops::Deref<Target = Pat<'tcx>>) -> bool {
126     matches!(pat.kind, PatKind::Wild)
127 }
128
129 /// Checks if type is struct, enum or union type with the given def path.
130 pub fn match_type(cx: &LateContext<'_>, ty: Ty<'_>, path: &[&str]) -> bool {
131     match ty.kind {
132         ty::Adt(adt, _) => match_def_path(cx, adt.did, path),
133         _ => false,
134     }
135 }
136
137 /// Checks if the type is equal to a diagnostic item
138 pub fn is_type_diagnostic_item(cx: &LateContext<'_>, ty: Ty<'_>, diag_item: Symbol) -> bool {
139     match ty.kind {
140         ty::Adt(adt, _) => cx.tcx.is_diagnostic_item(diag_item, adt.did),
141         _ => false,
142     }
143 }
144
145 /// Checks if the method call given in `expr` belongs to the given trait.
146 pub fn match_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, path: &[&str]) -> bool {
147     let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
148     let trt_id = cx.tcx.trait_of_item(def_id);
149     trt_id.map_or(false, |trt_id| match_def_path(cx, trt_id, path))
150 }
151
152 /// Checks if an expression references a variable of the given name.
153 pub fn match_var(expr: &Expr<'_>, var: Symbol) -> bool {
154     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
155         if let [p] = path.segments {
156             return p.ident.name == var;
157         }
158     }
159     false
160 }
161
162 pub fn last_path_segment<'tcx>(path: &QPath<'tcx>) -> &'tcx PathSegment<'tcx> {
163     match *path {
164         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
165         QPath::TypeRelative(_, ref seg) => seg,
166     }
167 }
168
169 pub fn single_segment_path<'tcx>(path: &QPath<'tcx>) -> Option<&'tcx PathSegment<'tcx>> {
170     match *path {
171         QPath::Resolved(_, ref path) => path.segments.get(0),
172         QPath::TypeRelative(_, ref seg) => Some(seg),
173     }
174 }
175
176 /// Matches a `QPath` against a slice of segment string literals.
177 ///
178 /// There is also `match_path` if you are dealing with a `rustc_hir::Path` instead of a
179 /// `rustc_hir::QPath`.
180 ///
181 /// # Examples
182 /// ```rust,ignore
183 /// match_qpath(path, &["std", "rt", "begin_unwind"])
184 /// ```
185 pub fn match_qpath(path: &QPath<'_>, segments: &[&str]) -> bool {
186     match *path {
187         QPath::Resolved(_, ref path) => match_path(path, segments),
188         QPath::TypeRelative(ref ty, ref segment) => match ty.kind {
189             TyKind::Path(ref inner_path) => {
190                 if let [prefix @ .., end] = segments {
191                     if match_qpath(inner_path, prefix) {
192                         return segment.ident.name.as_str() == *end;
193                     }
194                 }
195                 false
196             },
197             _ => false,
198         },
199     }
200 }
201
202 /// Matches a `Path` against a slice of segment string literals.
203 ///
204 /// There is also `match_qpath` if you are dealing with a `rustc_hir::QPath` instead of a
205 /// `rustc_hir::Path`.
206 ///
207 /// # Examples
208 ///
209 /// ```rust,ignore
210 /// if match_path(&trait_ref.path, &paths::HASH) {
211 ///     // This is the `std::hash::Hash` trait.
212 /// }
213 ///
214 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
215 ///     // This is a `rustc_middle::lint::Lint`.
216 /// }
217 /// ```
218 pub fn match_path(path: &Path<'_>, segments: &[&str]) -> bool {
219     path.segments
220         .iter()
221         .rev()
222         .zip(segments.iter().rev())
223         .all(|(a, b)| a.ident.name.as_str() == *b)
224 }
225
226 /// Matches a `Path` against a slice of segment string literals, e.g.
227 ///
228 /// # Examples
229 /// ```rust,ignore
230 /// match_path_ast(path, &["std", "rt", "begin_unwind"])
231 /// ```
232 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
233     path.segments
234         .iter()
235         .rev()
236         .zip(segments.iter().rev())
237         .all(|(a, b)| a.ident.name.as_str() == *b)
238 }
239
240 /// Gets the definition associated to a path.
241 pub fn path_to_res(cx: &LateContext<'_>, path: &[&str]) -> Option<def::Res> {
242     let crates = cx.tcx.crates();
243     let krate = crates
244         .iter()
245         .find(|&&krate| cx.tcx.crate_name(krate).as_str() == path[0]);
246     if let Some(krate) = krate {
247         let krate = DefId {
248             krate: *krate,
249             index: CRATE_DEF_INDEX,
250         };
251         let mut items = cx.tcx.item_children(krate);
252         let mut path_it = path.iter().skip(1).peekable();
253
254         loop {
255             let segment = match path_it.next() {
256                 Some(segment) => segment,
257                 None => return None,
258             };
259
260             let result = SmallVec::<[_; 8]>::new();
261             for item in mem::replace(&mut items, cx.tcx.arena.alloc_slice(&result)).iter() {
262                 if item.ident.name.as_str() == *segment {
263                     if path_it.peek().is_none() {
264                         return Some(item.res);
265                     }
266
267                     items = cx.tcx.item_children(item.res.def_id());
268                     break;
269                 }
270             }
271         }
272     } else {
273         None
274     }
275 }
276
277 pub fn qpath_res(cx: &LateContext<'_>, qpath: &hir::QPath<'_>, id: hir::HirId) -> Res {
278     match qpath {
279         hir::QPath::Resolved(_, path) => path.res,
280         hir::QPath::TypeRelative(..) => {
281             if cx.tcx.has_typeck_results(id.owner.to_def_id()) {
282                 cx.tcx.typeck(id.owner.to_def_id().expect_local()).qpath_res(qpath, id)
283             } else {
284                 Res::Err
285             }
286         },
287     }
288 }
289
290 /// Convenience function to get the `DefId` of a trait by path.
291 /// It could be a trait or trait alias.
292 pub fn get_trait_def_id(cx: &LateContext<'_>, path: &[&str]) -> Option<DefId> {
293     let res = match path_to_res(cx, path) {
294         Some(res) => res,
295         None => return None,
296     };
297
298     match res {
299         Res::Def(DefKind::Trait | DefKind::TraitAlias, trait_id) => Some(trait_id),
300         Res::Err => unreachable!("this trait resolution is impossible: {:?}", &path),
301         _ => None,
302     }
303 }
304
305 /// Checks whether a type implements a trait.
306 /// See also `get_trait_def_id`.
307 pub fn implements_trait<'tcx>(
308     cx: &LateContext<'tcx>,
309     ty: Ty<'tcx>,
310     trait_id: DefId,
311     ty_params: &[GenericArg<'tcx>],
312 ) -> bool {
313     // Do not check on infer_types to avoid panic in evaluate_obligation.
314     if ty.has_infer_types() {
315         return false;
316     }
317     let ty = cx.tcx.erase_regions(&ty);
318     let ty_params = cx.tcx.mk_substs(ty_params.iter());
319     cx.tcx.type_implements_trait((trait_id, ty, ty_params, cx.param_env))
320 }
321
322 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
323 ///
324 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
325 ///
326 /// ```rust
327 /// struct Point(isize, isize);
328 ///
329 /// impl std::ops::Add for Point {
330 ///     type Output = Self;
331 ///
332 ///     fn add(self, other: Self) -> Self {
333 ///         Point(0, 0)
334 ///     }
335 /// }
336 /// ```
337 pub fn trait_ref_of_method<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx TraitRef<'tcx>> {
338     // Get the implemented trait for the current function
339     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
340     if_chain! {
341         if parent_impl != hir::CRATE_HIR_ID;
342         if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
343         if let hir::ItemKind::Impl{ of_trait: trait_ref, .. } = &item.kind;
344         then { return trait_ref.as_ref(); }
345     }
346     None
347 }
348
349 /// Checks whether this type implements `Drop`.
350 pub fn has_drop<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
351     match ty.ty_adt_def() {
352         Some(def) => def.has_dtor(cx.tcx),
353         None => false,
354     }
355 }
356
357 /// Returns the method names and argument list of nested method call expressions that make up
358 /// `expr`. method/span lists are sorted with the most recent call first.
359 pub fn method_calls<'tcx>(
360     expr: &'tcx Expr<'tcx>,
361     max_depth: usize,
362 ) -> (Vec<Symbol>, Vec<&'tcx [Expr<'tcx>]>, Vec<Span>) {
363     let mut method_names = Vec::with_capacity(max_depth);
364     let mut arg_lists = Vec::with_capacity(max_depth);
365     let mut spans = Vec::with_capacity(max_depth);
366
367     let mut current = expr;
368     for _ in 0..max_depth {
369         if let ExprKind::MethodCall(path, span, args, _) = &current.kind {
370             if args.iter().any(|e| e.span.from_expansion()) {
371                 break;
372             }
373             method_names.push(path.ident.name);
374             arg_lists.push(&**args);
375             spans.push(*span);
376             current = &args[0];
377         } else {
378             break;
379         }
380     }
381
382     (method_names, arg_lists, spans)
383 }
384
385 /// Matches an `Expr` against a chain of methods, and return the matched `Expr`s.
386 ///
387 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
388 /// `method_chain_args(expr, &["bar", "baz"])` will return a `Vec`
389 /// containing the `Expr`s for
390 /// `.bar()` and `.baz()`
391 pub fn method_chain_args<'a>(expr: &'a Expr<'_>, methods: &[&str]) -> Option<Vec<&'a [Expr<'a>]>> {
392     let mut current = expr;
393     let mut matched = Vec::with_capacity(methods.len());
394     for method_name in methods.iter().rev() {
395         // method chains are stored last -> first
396         if let ExprKind::MethodCall(ref path, _, ref args, _) = current.kind {
397             if path.ident.name.as_str() == *method_name {
398                 if args.iter().any(|e| e.span.from_expansion()) {
399                     return None;
400                 }
401                 matched.push(&**args); // build up `matched` backwards
402                 current = &args[0] // go to parent expression
403             } else {
404                 return None;
405             }
406         } else {
407             return None;
408         }
409     }
410     // Reverse `matched` so that it is in the same order as `methods`.
411     matched.reverse();
412     Some(matched)
413 }
414
415 /// Returns `true` if the provided `def_id` is an entrypoint to a program.
416 pub fn is_entrypoint_fn(cx: &LateContext<'_>, def_id: DefId) -> bool {
417     cx.tcx
418         .entry_fn(LOCAL_CRATE)
419         .map_or(false, |(entry_fn_def_id, _)| def_id == entry_fn_def_id.to_def_id())
420 }
421
422 /// Gets the name of the item the expression is in, if available.
423 pub fn get_item_name(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<Symbol> {
424     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
425     match cx.tcx.hir().find(parent_id) {
426         Some(
427             Node::Item(Item { ident, .. })
428             | Node::TraitItem(TraitItem { ident, .. })
429             | Node::ImplItem(ImplItem { ident, .. }),
430         ) => Some(ident.name),
431         _ => None,
432     }
433 }
434
435 /// Gets the name of a `Pat`, if any.
436 pub fn get_pat_name(pat: &Pat<'_>) -> Option<Symbol> {
437     match pat.kind {
438         PatKind::Binding(.., ref spname, _) => Some(spname.name),
439         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
440         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
441         _ => None,
442     }
443 }
444
445 struct ContainsName {
446     name: Symbol,
447     result: bool,
448 }
449
450 impl<'tcx> Visitor<'tcx> for ContainsName {
451     type Map = Map<'tcx>;
452
453     fn visit_name(&mut self, _: Span, name: Symbol) {
454         if self.name == name {
455             self.result = true;
456         }
457     }
458     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
459         NestedVisitorMap::None
460     }
461 }
462
463 /// Checks if an `Expr` contains a certain name.
464 pub fn contains_name(name: Symbol, expr: &Expr<'_>) -> bool {
465     let mut cn = ContainsName { name, result: false };
466     cn.visit_expr(expr);
467     cn.result
468 }
469
470 /// Converts a span to a code snippet if available, otherwise use default.
471 ///
472 /// This is useful if you want to provide suggestions for your lint or more generally, if you want
473 /// to convert a given `Span` to a `str`.
474 ///
475 /// # Example
476 /// ```rust,ignore
477 /// snippet(cx, expr.span, "..")
478 /// ```
479 pub fn snippet<'a, T: LintContext>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
480     snippet_opt(cx, span).map_or_else(|| Cow::Borrowed(default), From::from)
481 }
482
483 /// Same as `snippet`, but it adapts the applicability level by following rules:
484 ///
485 /// - Applicability level `Unspecified` will never be changed.
486 /// - If the span is inside a macro, change the applicability level to `MaybeIncorrect`.
487 /// - If the default value is used and the applicability level is `MachineApplicable`, change it to
488 /// `HasPlaceholders`
489 pub fn snippet_with_applicability<'a, T: LintContext>(
490     cx: &T,
491     span: Span,
492     default: &'a str,
493     applicability: &mut Applicability,
494 ) -> Cow<'a, str> {
495     if *applicability != Applicability::Unspecified && span.from_expansion() {
496         *applicability = Applicability::MaybeIncorrect;
497     }
498     snippet_opt(cx, span).map_or_else(
499         || {
500             if *applicability == Applicability::MachineApplicable {
501                 *applicability = Applicability::HasPlaceholders;
502             }
503             Cow::Borrowed(default)
504         },
505         From::from,
506     )
507 }
508
509 /// Same as `snippet`, but should only be used when it's clear that the input span is
510 /// not a macro argument.
511 pub fn snippet_with_macro_callsite<'a, T: LintContext>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
512     snippet(cx, span.source_callsite(), default)
513 }
514
515 /// Converts a span to a code snippet. Returns `None` if not available.
516 pub fn snippet_opt<T: LintContext>(cx: &T, span: Span) -> Option<String> {
517     cx.sess().source_map().span_to_snippet(span).ok()
518 }
519
520 /// Converts a span (from a block) to a code snippet if available, otherwise use default.
521 ///
522 /// This trims the code of indentation, except for the first line. Use it for blocks or block-like
523 /// things which need to be printed as such.
524 ///
525 /// The `indent_relative_to` arg can be used, to provide a span, where the indentation of the
526 /// resulting snippet of the given span.
527 ///
528 /// # Example
529 ///
530 /// ```rust,ignore
531 /// snippet_block(cx, block.span, "..", None)
532 /// // where, `block` is the block of the if expr
533 ///     if x {
534 ///         y;
535 ///     }
536 /// // will return the snippet
537 /// {
538 ///     y;
539 /// }
540 /// ```
541 ///
542 /// ```rust,ignore
543 /// snippet_block(cx, block.span, "..", Some(if_expr.span))
544 /// // where, `block` is the block of the if expr
545 ///     if x {
546 ///         y;
547 ///     }
548 /// // will return the snippet
549 /// {
550 ///         y;
551 ///     } // aligned with `if`
552 /// ```
553 /// Note that the first line of the snippet always has 0 indentation.
554 pub fn snippet_block<'a, T: LintContext>(
555     cx: &T,
556     span: Span,
557     default: &'a str,
558     indent_relative_to: Option<Span>,
559 ) -> Cow<'a, str> {
560     let snip = snippet(cx, span, default);
561     let indent = indent_relative_to.and_then(|s| indent_of(cx, s));
562     trim_multiline(snip, true, indent)
563 }
564
565 /// Same as `snippet_block`, but adapts the applicability level by the rules of
566 /// `snippet_with_applicabiliy`.
567 pub fn snippet_block_with_applicability<'a, T: LintContext>(
568     cx: &T,
569     span: Span,
570     default: &'a str,
571     indent_relative_to: Option<Span>,
572     applicability: &mut Applicability,
573 ) -> Cow<'a, str> {
574     let snip = snippet_with_applicability(cx, span, default, applicability);
575     let indent = indent_relative_to.and_then(|s| indent_of(cx, s));
576     trim_multiline(snip, true, indent)
577 }
578
579 /// Returns a new Span that extends the original Span to the first non-whitespace char of the first
580 /// line.
581 ///
582 /// ```rust,ignore
583 ///     let x = ();
584 /// //          ^^
585 /// // will be converted to
586 ///     let x = ();
587 /// //  ^^^^^^^^^^
588 /// ```
589 pub fn first_line_of_span<T: LintContext>(cx: &T, span: Span) -> Span {
590     first_char_in_first_line(cx, span).map_or(span, |first_char_pos| span.with_lo(first_char_pos))
591 }
592
593 fn first_char_in_first_line<T: LintContext>(cx: &T, span: Span) -> Option<BytePos> {
594     let line_span = line_span(cx, span);
595     snippet_opt(cx, line_span).and_then(|snip| {
596         snip.find(|c: char| !c.is_whitespace())
597             .map(|pos| line_span.lo() + BytePos::from_usize(pos))
598     })
599 }
600
601 /// Returns the indentation of the line of a span
602 ///
603 /// ```rust,ignore
604 /// let x = ();
605 /// //      ^^ -- will return 0
606 ///     let x = ();
607 /// //          ^^ -- will return 4
608 /// ```
609 pub fn indent_of<T: LintContext>(cx: &T, span: Span) -> Option<usize> {
610     snippet_opt(cx, line_span(cx, span)).and_then(|snip| snip.find(|c: char| !c.is_whitespace()))
611 }
612
613 /// Extends the span to the beginning of the spans line, incl. whitespaces.
614 ///
615 /// ```rust,ignore
616 ///        let x = ();
617 /// //             ^^
618 /// // will be converted to
619 ///        let x = ();
620 /// // ^^^^^^^^^^^^^^
621 /// ```
622 fn line_span<T: LintContext>(cx: &T, span: Span) -> Span {
623     let span = original_sp(span, DUMMY_SP);
624     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
625     let line_no = source_map_and_line.line;
626     let line_start = source_map_and_line.sf.lines[line_no];
627     Span::new(line_start, span.hi(), span.ctxt())
628 }
629
630 /// Like `snippet_block`, but add braces if the expr is not an `ExprKind::Block`.
631 /// Also takes an `Option<String>` which can be put inside the braces.
632 pub fn expr_block<'a, T: LintContext>(
633     cx: &T,
634     expr: &Expr<'_>,
635     option: Option<String>,
636     default: &'a str,
637     indent_relative_to: Option<Span>,
638 ) -> Cow<'a, str> {
639     let code = snippet_block(cx, expr.span, default, indent_relative_to);
640     let string = option.unwrap_or_default();
641     if expr.span.from_expansion() {
642         Cow::Owned(format!("{{ {} }}", snippet_with_macro_callsite(cx, expr.span, default)))
643     } else if let ExprKind::Block(_, _) = expr.kind {
644         Cow::Owned(format!("{}{}", code, string))
645     } else if string.is_empty() {
646         Cow::Owned(format!("{{ {} }}", code))
647     } else {
648         Cow::Owned(format!("{{\n{};\n{}\n}}", code, string))
649     }
650 }
651
652 /// Trim indentation from a multiline string with possibility of ignoring the
653 /// first line.
654 fn trim_multiline(s: Cow<'_, str>, ignore_first: bool, indent: Option<usize>) -> Cow<'_, str> {
655     let s_space = trim_multiline_inner(s, ignore_first, indent, ' ');
656     let s_tab = trim_multiline_inner(s_space, ignore_first, indent, '\t');
657     trim_multiline_inner(s_tab, ignore_first, indent, ' ')
658 }
659
660 fn trim_multiline_inner(s: Cow<'_, str>, ignore_first: bool, indent: Option<usize>, ch: char) -> Cow<'_, str> {
661     let mut x = s
662         .lines()
663         .skip(ignore_first as usize)
664         .filter_map(|l| {
665             if l.is_empty() {
666                 None
667             } else {
668                 // ignore empty lines
669                 Some(l.char_indices().find(|&(_, x)| x != ch).unwrap_or((l.len(), ch)).0)
670             }
671         })
672         .min()
673         .unwrap_or(0);
674     if let Some(indent) = indent {
675         x = x.saturating_sub(indent);
676     }
677     if x > 0 {
678         Cow::Owned(
679             s.lines()
680                 .enumerate()
681                 .map(|(i, l)| {
682                     if (ignore_first && i == 0) || l.is_empty() {
683                         l
684                     } else {
685                         l.split_at(x).1
686                     }
687                 })
688                 .collect::<Vec<_>>()
689                 .join("\n"),
690         )
691     } else {
692         s
693     }
694 }
695
696 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
697 pub fn get_parent_expr<'c>(cx: &'c LateContext<'_>, e: &Expr<'_>) -> Option<&'c Expr<'c>> {
698     let map = &cx.tcx.hir();
699     let hir_id = e.hir_id;
700     let parent_id = map.get_parent_node(hir_id);
701     if hir_id == parent_id {
702         return None;
703     }
704     map.find(parent_id).and_then(|node| {
705         if let Node::Expr(parent) = node {
706             Some(parent)
707         } else {
708             None
709         }
710     })
711 }
712
713 pub fn get_enclosing_block<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Block<'tcx>> {
714     let map = &cx.tcx.hir();
715     let enclosing_node = map
716         .get_enclosing_scope(hir_id)
717         .and_then(|enclosing_id| map.find(enclosing_id));
718     enclosing_node.and_then(|node| match node {
719         Node::Block(block) => Some(block),
720         Node::Item(&Item {
721             kind: ItemKind::Fn(_, _, eid),
722             ..
723         })
724         | Node::ImplItem(&ImplItem {
725             kind: ImplItemKind::Fn(_, eid),
726             ..
727         }) => match cx.tcx.hir().body(eid).value.kind {
728             ExprKind::Block(ref block, _) => Some(block),
729             _ => None,
730         },
731         _ => None,
732     })
733 }
734
735 /// Returns the base type for HIR references and pointers.
736 pub fn walk_ptrs_hir_ty<'tcx>(ty: &'tcx hir::Ty<'tcx>) -> &'tcx hir::Ty<'tcx> {
737     match ty.kind {
738         TyKind::Ptr(ref mut_ty) | TyKind::Rptr(_, ref mut_ty) => walk_ptrs_hir_ty(&mut_ty.ty),
739         _ => ty,
740     }
741 }
742
743 /// Returns the base type for references and raw pointers.
744 pub fn walk_ptrs_ty(ty: Ty<'_>) -> Ty<'_> {
745     match ty.kind {
746         ty::Ref(_, ty, _) => walk_ptrs_ty(ty),
747         _ => ty,
748     }
749 }
750
751 /// Returns the base type for references and raw pointers, and count reference
752 /// depth.
753 pub fn walk_ptrs_ty_depth(ty: Ty<'_>) -> (Ty<'_>, usize) {
754     fn inner(ty: Ty<'_>, depth: usize) -> (Ty<'_>, usize) {
755         match ty.kind {
756             ty::Ref(_, ty, _) => inner(ty, depth + 1),
757             _ => (ty, depth),
758         }
759     }
760     inner(ty, 0)
761 }
762
763 /// Checks whether the given expression is a constant integer of the given value.
764 /// unlike `is_integer_literal`, this version does const folding
765 pub fn is_integer_const(cx: &LateContext<'_>, e: &Expr<'_>, value: u128) -> bool {
766     if is_integer_literal(e, value) {
767         return true;
768     }
769     let map = cx.tcx.hir();
770     let parent_item = map.get_parent_item(e.hir_id);
771     if let Some((Constant::Int(v), _)) = map
772         .maybe_body_owned_by(parent_item)
773         .and_then(|body_id| constant(cx, cx.tcx.typeck_body(body_id), e))
774     {
775         value == v
776     } else {
777         false
778     }
779 }
780
781 /// Checks whether the given expression is a constant literal of the given value.
782 pub fn is_integer_literal(expr: &Expr<'_>, value: u128) -> bool {
783     // FIXME: use constant folding
784     if let ExprKind::Lit(ref spanned) = expr.kind {
785         if let LitKind::Int(v, _) = spanned.node {
786             return v == value;
787         }
788     }
789     false
790 }
791
792 /// Returns `true` if the given `Expr` has been coerced before.
793 ///
794 /// Examples of coercions can be found in the Nomicon at
795 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
796 ///
797 /// See `rustc_middle::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
798 /// information on adjustments and coercions.
799 pub fn is_adjusted(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
800     cx.typeck_results().adjustments().get(e.hir_id).is_some()
801 }
802
803 /// Returns the pre-expansion span if is this comes from an expansion of the
804 /// macro `name`.
805 /// See also `is_direct_expn_of`.
806 #[must_use]
807 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
808     loop {
809         if span.from_expansion() {
810             let data = span.ctxt().outer_expn_data();
811             let new_span = data.call_site;
812
813             if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
814                 if mac_name.as_str() == name {
815                     return Some(new_span);
816                 }
817             }
818
819             span = new_span;
820         } else {
821             return None;
822         }
823     }
824 }
825
826 /// Returns the pre-expansion span if the span directly comes from an expansion
827 /// of the macro `name`.
828 /// The difference with `is_expn_of` is that in
829 /// ```rust,ignore
830 /// foo!(bar!(42));
831 /// ```
832 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
833 /// `bar!` by
834 /// `is_direct_expn_of`.
835 #[must_use]
836 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
837     if span.from_expansion() {
838         let data = span.ctxt().outer_expn_data();
839         let new_span = data.call_site;
840
841         if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
842             if mac_name.as_str() == name {
843                 return Some(new_span);
844             }
845         }
846     }
847
848     None
849 }
850
851 /// Convenience function to get the return type of a function.
852 pub fn return_ty<'tcx>(cx: &LateContext<'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
853     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
854     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
855     cx.tcx.erase_late_bound_regions(&ret_ty)
856 }
857
858 /// Returns `true` if the given type is an `unsafe` function.
859 pub fn type_is_unsafe_function<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
860     match ty.kind {
861         ty::FnDef(..) | ty::FnPtr(_) => ty.fn_sig(cx.tcx).unsafety() == Unsafety::Unsafe,
862         _ => false,
863     }
864 }
865
866 pub fn is_copy<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
867     ty.is_copy_modulo_regions(cx.tcx.at(DUMMY_SP), cx.param_env)
868 }
869
870 /// Checks if an expression is constructing a tuple-like enum variant or struct
871 pub fn is_ctor_or_promotable_const_function(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
872     fn has_no_arguments(cx: &LateContext<'_>, def_id: DefId) -> bool {
873         cx.tcx.fn_sig(def_id).skip_binder().inputs().is_empty()
874     }
875
876     if let ExprKind::Call(ref fun, _) = expr.kind {
877         if let ExprKind::Path(ref qp) = fun.kind {
878             let res = cx.qpath_res(qp, fun.hir_id);
879             return match res {
880                 def::Res::Def(DefKind::Variant | DefKind::Ctor(..), ..) => true,
881                 // FIXME: check the constness of the arguments, see https://github.com/rust-lang/rust-clippy/pull/5682#issuecomment-638681210
882                 def::Res::Def(DefKind::Fn, def_id) if has_no_arguments(cx, def_id) => {
883                     const_eval::is_const_fn(cx.tcx, def_id)
884                 },
885                 def::Res::Def(_, def_id) => cx.tcx.is_promotable_const_fn(def_id),
886                 _ => false,
887             };
888         }
889     }
890     false
891 }
892
893 /// Returns `true` if a pattern is refutable.
894 // TODO: should be implemented using rustc/mir_build/thir machinery
895 pub fn is_refutable(cx: &LateContext<'_>, pat: &Pat<'_>) -> bool {
896     fn is_enum_variant(cx: &LateContext<'_>, qpath: &QPath<'_>, id: HirId) -> bool {
897         matches!(
898             cx.qpath_res(qpath, id),
899             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
900         )
901     }
902
903     fn are_refutable<'a, I: Iterator<Item = &'a Pat<'a>>>(cx: &LateContext<'_>, mut i: I) -> bool {
904         i.any(|pat| is_refutable(cx, pat))
905     }
906
907     match pat.kind {
908         PatKind::Wild => false,
909         PatKind::Binding(_, _, _, pat) => pat.map_or(false, |pat| is_refutable(cx, pat)),
910         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
911         PatKind::Lit(..) | PatKind::Range(..) => true,
912         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
913         PatKind::Or(ref pats) => {
914             // TODO: should be the honest check, that pats is exhaustive set
915             are_refutable(cx, pats.iter().map(|pat| &**pat))
916         },
917         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
918         PatKind::Struct(ref qpath, ref fields, _) => {
919             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, fields.iter().map(|field| &*field.pat))
920         },
921         PatKind::TupleStruct(ref qpath, ref pats, _) => {
922             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, pats.iter().map(|pat| &**pat))
923         },
924         PatKind::Slice(ref head, ref middle, ref tail) => {
925             match &cx.typeck_results().node_type(pat.hir_id).kind {
926                 ty::Slice(..) => {
927                     // [..] is the only irrefutable slice pattern.
928                     !head.is_empty() || middle.is_none() || !tail.is_empty()
929                 },
930                 ty::Array(..) => are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat)),
931                 _ => {
932                     // unreachable!()
933                     true
934                 },
935             }
936         },
937     }
938 }
939
940 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
941 /// implementations have.
942 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
943     attrs.iter().any(|attr| attr.has_name(sym!(automatically_derived)))
944 }
945
946 /// Remove blocks around an expression.
947 ///
948 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
949 /// themselves.
950 pub fn remove_blocks<'tcx>(mut expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
951     while let ExprKind::Block(ref block, ..) = expr.kind {
952         match (block.stmts.is_empty(), block.expr.as_ref()) {
953             (true, Some(e)) => expr = e,
954             _ => break,
955         }
956     }
957     expr
958 }
959
960 pub fn is_self(slf: &Param<'_>) -> bool {
961     if let PatKind::Binding(.., name, _) = slf.pat.kind {
962         name.name == kw::SelfLower
963     } else {
964         false
965     }
966 }
967
968 pub fn is_self_ty(slf: &hir::Ty<'_>) -> bool {
969     if_chain! {
970         if let TyKind::Path(ref qp) = slf.kind;
971         if let QPath::Resolved(None, ref path) = *qp;
972         if let Res::SelfTy(..) = path.res;
973         then {
974             return true
975         }
976     }
977     false
978 }
979
980 pub fn iter_input_pats<'tcx>(decl: &FnDecl<'_>, body: &'tcx Body<'_>) -> impl Iterator<Item = &'tcx Param<'tcx>> {
981     (0..decl.inputs.len()).map(move |i| &body.params[i])
982 }
983
984 /// Checks if a given expression is a match expression expanded from the `?`
985 /// operator or the `try` macro.
986 pub fn is_try<'tcx>(expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
987     fn is_ok(arm: &Arm<'_>) -> bool {
988         if_chain! {
989             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pat.kind;
990             if match_qpath(path, &paths::RESULT_OK[1..]);
991             if let PatKind::Binding(_, hir_id, _, None) = pat[0].kind;
992             if let ExprKind::Path(QPath::Resolved(None, ref path)) = arm.body.kind;
993             if let Res::Local(lid) = path.res;
994             if lid == hir_id;
995             then {
996                 return true;
997             }
998         }
999         false
1000     }
1001
1002     fn is_err(arm: &Arm<'_>) -> bool {
1003         if let PatKind::TupleStruct(ref path, _, _) = arm.pat.kind {
1004             match_qpath(path, &paths::RESULT_ERR[1..])
1005         } else {
1006             false
1007         }
1008     }
1009
1010     if let ExprKind::Match(_, ref arms, ref source) = expr.kind {
1011         // desugared from a `?` operator
1012         if let MatchSource::TryDesugar = *source {
1013             return Some(expr);
1014         }
1015
1016         if_chain! {
1017             if arms.len() == 2;
1018             if arms[0].guard.is_none();
1019             if arms[1].guard.is_none();
1020             if (is_ok(&arms[0]) && is_err(&arms[1])) ||
1021                 (is_ok(&arms[1]) && is_err(&arms[0]));
1022             then {
1023                 return Some(expr);
1024             }
1025         }
1026     }
1027
1028     None
1029 }
1030
1031 /// Returns `true` if the lint is allowed in the current context
1032 ///
1033 /// Useful for skipping long running code when it's unnecessary
1034 pub fn is_allowed(cx: &LateContext<'_>, lint: &'static Lint, id: HirId) -> bool {
1035     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1036 }
1037
1038 pub fn get_arg_name(pat: &Pat<'_>) -> Option<Symbol> {
1039     match pat.kind {
1040         PatKind::Binding(.., ident, None) => Some(ident.name),
1041         PatKind::Ref(ref subpat, _) => get_arg_name(subpat),
1042         _ => None,
1043     }
1044 }
1045
1046 pub fn int_bits(tcx: TyCtxt<'_>, ity: ast::IntTy) -> u64 {
1047     Integer::from_attr(&tcx, attr::IntType::SignedInt(ity)).size().bits()
1048 }
1049
1050 #[allow(clippy::cast_possible_wrap)]
1051 /// Turn a constant int byte representation into an i128
1052 pub fn sext(tcx: TyCtxt<'_>, u: u128, ity: ast::IntTy) -> i128 {
1053     let amt = 128 - int_bits(tcx, ity);
1054     ((u as i128) << amt) >> amt
1055 }
1056
1057 #[allow(clippy::cast_sign_loss)]
1058 /// clip unused bytes
1059 pub fn unsext(tcx: TyCtxt<'_>, u: i128, ity: ast::IntTy) -> u128 {
1060     let amt = 128 - int_bits(tcx, ity);
1061     ((u as u128) << amt) >> amt
1062 }
1063
1064 /// clip unused bytes
1065 pub fn clip(tcx: TyCtxt<'_>, u: u128, ity: ast::UintTy) -> u128 {
1066     let bits = Integer::from_attr(&tcx, attr::IntType::UnsignedInt(ity)).size().bits();
1067     let amt = 128 - bits;
1068     (u << amt) >> amt
1069 }
1070
1071 /// Removes block comments from the given `Vec` of lines.
1072 ///
1073 /// # Examples
1074 ///
1075 /// ```rust,ignore
1076 /// without_block_comments(vec!["/*", "foo", "*/"]);
1077 /// // => vec![]
1078 ///
1079 /// without_block_comments(vec!["bar", "/*", "foo", "*/"]);
1080 /// // => vec!["bar"]
1081 /// ```
1082 pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str> {
1083     let mut without = vec![];
1084
1085     let mut nest_level = 0;
1086
1087     for line in lines {
1088         if line.contains("/*") {
1089             nest_level += 1;
1090             continue;
1091         } else if line.contains("*/") {
1092             nest_level -= 1;
1093             continue;
1094         }
1095
1096         if nest_level == 0 {
1097             without.push(line);
1098         }
1099     }
1100
1101     without
1102 }
1103
1104 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_>, node: HirId) -> bool {
1105     let map = &tcx.hir();
1106     let mut prev_enclosing_node = None;
1107     let mut enclosing_node = node;
1108     while Some(enclosing_node) != prev_enclosing_node {
1109         if is_automatically_derived(map.attrs(enclosing_node)) {
1110             return true;
1111         }
1112         prev_enclosing_node = Some(enclosing_node);
1113         enclosing_node = map.get_parent_item(enclosing_node);
1114     }
1115     false
1116 }
1117
1118 /// Returns true if ty has `iter` or `iter_mut` methods
1119 pub fn has_iter_method(cx: &LateContext<'_>, probably_ref_ty: Ty<'_>) -> Option<&'static str> {
1120     // FIXME: instead of this hard-coded list, we should check if `<adt>::iter`
1121     // exists and has the desired signature. Unfortunately FnCtxt is not exported
1122     // so we can't use its `lookup_method` method.
1123     let into_iter_collections: [&[&str]; 13] = [
1124         &paths::VEC,
1125         &paths::OPTION,
1126         &paths::RESULT,
1127         &paths::BTREESET,
1128         &paths::BTREEMAP,
1129         &paths::VEC_DEQUE,
1130         &paths::LINKED_LIST,
1131         &paths::BINARY_HEAP,
1132         &paths::HASHSET,
1133         &paths::HASHMAP,
1134         &paths::PATH_BUF,
1135         &paths::PATH,
1136         &paths::RECEIVER,
1137     ];
1138
1139     let ty_to_check = match probably_ref_ty.kind {
1140         ty::Ref(_, ty_to_check, _) => ty_to_check,
1141         _ => probably_ref_ty,
1142     };
1143
1144     let def_id = match ty_to_check.kind {
1145         ty::Array(..) => return Some("array"),
1146         ty::Slice(..) => return Some("slice"),
1147         ty::Adt(adt, _) => adt.did,
1148         _ => return None,
1149     };
1150
1151     for path in &into_iter_collections {
1152         if match_def_path(cx, def_id, path) {
1153             return Some(*path.last().unwrap());
1154         }
1155     }
1156     None
1157 }
1158
1159 /// Matches a function call with the given path and returns the arguments.
1160 ///
1161 /// Usage:
1162 ///
1163 /// ```rust,ignore
1164 /// if let Some(args) = match_function_call(cx, begin_panic_call, &paths::BEGIN_PANIC);
1165 /// ```
1166 pub fn match_function_call<'tcx>(
1167     cx: &LateContext<'tcx>,
1168     expr: &'tcx Expr<'_>,
1169     path: &[&str],
1170 ) -> Option<&'tcx [Expr<'tcx>]> {
1171     if_chain! {
1172         if let ExprKind::Call(ref fun, ref args) = expr.kind;
1173         if let ExprKind::Path(ref qpath) = fun.kind;
1174         if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
1175         if match_def_path(cx, fun_def_id, path);
1176         then {
1177             return Some(&args)
1178         }
1179     };
1180     None
1181 }
1182
1183 /// Checks if `Ty` is normalizable. This function is useful
1184 /// to avoid crashes on `layout_of`.
1185 pub fn is_normalizable<'tcx>(cx: &LateContext<'tcx>, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> bool {
1186     cx.tcx.infer_ctxt().enter(|infcx| {
1187         let cause = rustc_middle::traits::ObligationCause::dummy();
1188         infcx.at(&cause, param_env).normalize(&ty).is_ok()
1189     })
1190 }
1191
1192 pub fn match_def_path<'tcx>(cx: &LateContext<'tcx>, did: DefId, syms: &[&str]) -> bool {
1193     // We have to convert `syms` to `&[Symbol]` here because rustc's `match_def_path`
1194     // accepts only that. We should probably move to Symbols in Clippy as well.
1195     let syms = syms.iter().map(|p| Symbol::intern(p)).collect::<Vec<Symbol>>();
1196     cx.match_def_path(did, &syms)
1197 }
1198
1199 /// Returns the list of condition expressions and the list of blocks in a
1200 /// sequence of `if/else`.
1201 /// E.g., this returns `([a, b], [c, d, e])` for the expression
1202 /// `if a { c } else if b { d } else { e }`.
1203 pub fn if_sequence<'tcx>(
1204     mut expr: &'tcx Expr<'tcx>,
1205 ) -> (SmallVec<[&'tcx Expr<'tcx>; 1]>, SmallVec<[&'tcx Block<'tcx>; 1]>) {
1206     let mut conds = SmallVec::new();
1207     let mut blocks: SmallVec<[&Block<'_>; 1]> = SmallVec::new();
1208
1209     while let Some((ref cond, ref then_expr, ref else_expr)) = higher::if_block(&expr) {
1210         conds.push(&**cond);
1211         if let ExprKind::Block(ref block, _) = then_expr.kind {
1212             blocks.push(block);
1213         } else {
1214             panic!("ExprKind::If node is not an ExprKind::Block");
1215         }
1216
1217         if let Some(ref else_expr) = *else_expr {
1218             expr = else_expr;
1219         } else {
1220             break;
1221         }
1222     }
1223
1224     // final `else {..}`
1225     if !blocks.is_empty() {
1226         if let ExprKind::Block(ref block, _) = expr.kind {
1227             blocks.push(&**block);
1228         }
1229     }
1230
1231     (conds, blocks)
1232 }
1233
1234 pub fn parent_node_is_if_expr(expr: &Expr<'_>, cx: &LateContext<'_>) -> bool {
1235     let map = cx.tcx.hir();
1236     let parent_id = map.get_parent_node(expr.hir_id);
1237     let parent_node = map.get(parent_id);
1238
1239     match parent_node {
1240         Node::Expr(e) => higher::if_block(&e).is_some(),
1241         Node::Arm(e) => higher::if_block(&e.body).is_some(),
1242         _ => false,
1243     }
1244 }
1245
1246 // Finds the attribute with the given name, if any
1247 pub fn attr_by_name<'a>(attrs: &'a [Attribute], name: &'_ str) -> Option<&'a Attribute> {
1248     attrs
1249         .iter()
1250         .find(|attr| attr.ident().map_or(false, |ident| ident.as_str() == name))
1251 }
1252
1253 // Finds the `#[must_use]` attribute, if any
1254 pub fn must_use_attr(attrs: &[Attribute]) -> Option<&Attribute> {
1255     attr_by_name(attrs, "must_use")
1256 }
1257
1258 // Returns whether the type has #[must_use] attribute
1259 pub fn is_must_use_ty<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
1260     match ty.kind {
1261         ty::Adt(ref adt, _) => must_use_attr(&cx.tcx.get_attrs(adt.did)).is_some(),
1262         ty::Foreign(ref did) => must_use_attr(&cx.tcx.get_attrs(*did)).is_some(),
1263         ty::Slice(ref ty)
1264         | ty::Array(ref ty, _)
1265         | ty::RawPtr(ty::TypeAndMut { ref ty, .. })
1266         | ty::Ref(_, ref ty, _) => {
1267             // for the Array case we don't need to care for the len == 0 case
1268             // because we don't want to lint functions returning empty arrays
1269             is_must_use_ty(cx, *ty)
1270         },
1271         ty::Tuple(ref substs) => substs.types().any(|ty| is_must_use_ty(cx, ty)),
1272         ty::Opaque(ref def_id, _) => {
1273             for (predicate, _) in cx.tcx.predicates_of(*def_id).predicates {
1274                 if let ty::PredicateAtom::Trait(trait_predicate, _) = predicate.skip_binders() {
1275                     if must_use_attr(&cx.tcx.get_attrs(trait_predicate.trait_ref.def_id)).is_some() {
1276                         return true;
1277                     }
1278                 }
1279             }
1280             false
1281         },
1282         ty::Dynamic(binder, _) => {
1283             for predicate in binder.skip_binder().iter() {
1284                 if let ty::ExistentialPredicate::Trait(ref trait_ref) = predicate {
1285                     if must_use_attr(&cx.tcx.get_attrs(trait_ref.def_id)).is_some() {
1286                         return true;
1287                     }
1288                 }
1289             }
1290             false
1291         },
1292         _ => false,
1293     }
1294 }
1295
1296 // check if expr is calling method or function with #[must_use] attribyte
1297 pub fn is_must_use_func_call(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1298     let did = match expr.kind {
1299         ExprKind::Call(ref path, _) => if_chain! {
1300             if let ExprKind::Path(ref qpath) = path.kind;
1301             if let def::Res::Def(_, did) = cx.qpath_res(qpath, path.hir_id);
1302             then {
1303                 Some(did)
1304             } else {
1305                 None
1306             }
1307         },
1308         ExprKind::MethodCall(_, _, _, _) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1309         _ => None,
1310     };
1311
1312     did.map_or(false, |did| must_use_attr(&cx.tcx.get_attrs(did)).is_some())
1313 }
1314
1315 pub fn is_no_std_crate(krate: &Crate<'_>) -> bool {
1316     krate.item.attrs.iter().any(|attr| {
1317         if let ast::AttrKind::Normal(ref attr) = attr.kind {
1318             attr.path == symbol::sym::no_std
1319         } else {
1320             false
1321         }
1322     })
1323 }
1324
1325 /// Check if parent of a hir node is a trait implementation block.
1326 /// For example, `f` in
1327 /// ```rust,ignore
1328 /// impl Trait for S {
1329 ///     fn f() {}
1330 /// }
1331 /// ```
1332 pub fn is_trait_impl_item(cx: &LateContext<'_>, hir_id: HirId) -> bool {
1333     if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
1334         matches!(item.kind, ItemKind::Impl{ of_trait: Some(_), .. })
1335     } else {
1336         false
1337     }
1338 }
1339
1340 /// Check if it's even possible to satisfy the `where` clause for the item.
1341 ///
1342 /// `trivial_bounds` feature allows functions with unsatisfiable bounds, for example:
1343 ///
1344 /// ```ignore
1345 /// fn foo() where i32: Iterator {
1346 ///     for _ in 2i32 {}
1347 /// }
1348 /// ```
1349 pub fn fn_has_unsatisfiable_preds(cx: &LateContext<'_>, did: DefId) -> bool {
1350     use rustc_trait_selection::traits;
1351     let predicates =
1352         cx.tcx
1353             .predicates_of(did)
1354             .predicates
1355             .iter()
1356             .filter_map(|(p, _)| if p.is_global() { Some(*p) } else { None });
1357     traits::impossible_predicates(
1358         cx.tcx,
1359         traits::elaborate_predicates(cx.tcx, predicates)
1360             .map(|o| o.predicate)
1361             .collect::<Vec<_>>(),
1362     )
1363 }
1364
1365 /// Returns the `DefId` of the callee if the given expression is a function or method call.
1366 pub fn fn_def_id(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<DefId> {
1367     match &expr.kind {
1368         ExprKind::MethodCall(..) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1369         ExprKind::Call(
1370             Expr {
1371                 kind: ExprKind::Path(qpath),
1372                 ..
1373             },
1374             ..,
1375         ) => cx.typeck_results().qpath_res(qpath, expr.hir_id).opt_def_id(),
1376         _ => None,
1377     }
1378 }
1379
1380 pub fn run_lints(cx: &LateContext<'_>, lints: &[&'static Lint], id: HirId) -> bool {
1381     lints.iter().any(|lint| {
1382         matches!(
1383             cx.tcx.lint_level_at_node(lint, id),
1384             (Level::Forbid | Level::Deny | Level::Warn, _)
1385         )
1386     })
1387 }
1388
1389 /// Returns true iff the given type is a primitive (a bool or char, any integer or floating-point
1390 /// number type, a str, or an array, slice, or tuple of those types).
1391 pub fn is_recursively_primitive_type(ty: Ty<'_>) -> bool {
1392     match ty.kind {
1393         ty::Bool | ty::Char | ty::Int(_) | ty::Uint(_) | ty::Float(_) | ty::Str => true,
1394         ty::Ref(_, inner, _) if inner.kind == ty::Str => true,
1395         ty::Array(inner_type, _) | ty::Slice(inner_type) => is_recursively_primitive_type(inner_type),
1396         ty::Tuple(inner_types) => inner_types.types().all(is_recursively_primitive_type),
1397         _ => false,
1398     }
1399 }
1400
1401 /// Returns true iff the given expression is a slice of primitives (as defined in the
1402 /// `is_recursively_primitive_type` function).
1403 pub fn is_slice_of_primitives(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1404     let expr_type = cx.typeck_results().expr_ty_adjusted(expr);
1405     match expr_type.kind {
1406         ty::Slice(ref element_type)
1407         | ty::Ref(
1408             _,
1409             ty::TyS {
1410                 kind: ty::Slice(ref element_type),
1411                 ..
1412             },
1413             _,
1414         ) => is_recursively_primitive_type(element_type),
1415         _ => false,
1416     }
1417 }
1418
1419 #[macro_export]
1420 macro_rules! unwrap_cargo_metadata {
1421     ($cx: ident, $lint: ident, $deps: expr) => {{
1422         let mut command = cargo_metadata::MetadataCommand::new();
1423         if !$deps {
1424             command.no_deps();
1425         }
1426
1427         match command.exec() {
1428             Ok(metadata) => metadata,
1429             Err(err) => {
1430                 span_lint($cx, $lint, DUMMY_SP, &format!("could not read cargo metadata: {}", err));
1431                 return;
1432             },
1433         }
1434     }};
1435 }
1436
1437 #[cfg(test)]
1438 mod test {
1439     use super::{trim_multiline, without_block_comments};
1440
1441     #[test]
1442     fn test_trim_multiline_single_line() {
1443         assert_eq!("", trim_multiline("".into(), false, None));
1444         assert_eq!("...", trim_multiline("...".into(), false, None));
1445         assert_eq!("...", trim_multiline("    ...".into(), false, None));
1446         assert_eq!("...", trim_multiline("\t...".into(), false, None));
1447         assert_eq!("...", trim_multiline("\t\t...".into(), false, None));
1448     }
1449
1450     #[test]
1451     #[rustfmt::skip]
1452     fn test_trim_multiline_block() {
1453         assert_eq!("\
1454     if x {
1455         y
1456     } else {
1457         z
1458     }", trim_multiline("    if x {
1459             y
1460         } else {
1461             z
1462         }".into(), false, None));
1463         assert_eq!("\
1464     if x {
1465     \ty
1466     } else {
1467     \tz
1468     }", trim_multiline("    if x {
1469         \ty
1470         } else {
1471         \tz
1472         }".into(), false, None));
1473     }
1474
1475     #[test]
1476     #[rustfmt::skip]
1477     fn test_trim_multiline_empty_line() {
1478         assert_eq!("\
1479     if x {
1480         y
1481
1482     } else {
1483         z
1484     }", trim_multiline("    if x {
1485             y
1486
1487         } else {
1488             z
1489         }".into(), false, None));
1490     }
1491
1492     #[test]
1493     fn test_without_block_comments_lines_without_block_comments() {
1494         let result = without_block_comments(vec!["/*", "", "*/"]);
1495         println!("result: {:?}", result);
1496         assert!(result.is_empty());
1497
1498         let result = without_block_comments(vec!["", "/*", "", "*/", "#[crate_type = \"lib\"]", "/*", "", "*/", ""]);
1499         assert_eq!(result, vec!["", "#[crate_type = \"lib\"]", ""]);
1500
1501         let result = without_block_comments(vec!["/* rust", "", "*/"]);
1502         assert!(result.is_empty());
1503
1504         let result = without_block_comments(vec!["/* one-line comment */"]);
1505         assert!(result.is_empty());
1506
1507         let result = without_block_comments(vec!["/* nested", "/* multi-line", "comment", "*/", "test", "*/"]);
1508         assert!(result.is_empty());
1509
1510         let result = without_block_comments(vec!["/* nested /* inline /* comment */ test */ */"]);
1511         assert!(result.is_empty());
1512
1513         let result = without_block_comments(vec!["foo", "bar", "baz"]);
1514         assert_eq!(result, vec!["foo", "bar", "baz"]);
1515     }
1516 }