]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/lib.rs
Auto merge of #7007 - Y-Nak:result_unit_err, r=giraffate
[rust.git] / clippy_utils / src / lib.rs
1 #![feature(box_patterns)]
2 #![feature(in_band_lifetimes)]
3 #![feature(rustc_private)]
4 #![recursion_limit = "512"]
5 #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc, clippy::must_use_candidate)]
6
7 // FIXME: switch to something more ergonomic here, once available.
8 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
9 extern crate rustc_ast;
10 extern crate rustc_ast_pretty;
11 extern crate rustc_data_structures;
12 extern crate rustc_errors;
13 extern crate rustc_hir;
14 extern crate rustc_hir_pretty;
15 extern crate rustc_infer;
16 extern crate rustc_lexer;
17 extern crate rustc_lint;
18 extern crate rustc_middle;
19 extern crate rustc_mir;
20 extern crate rustc_session;
21 extern crate rustc_span;
22 extern crate rustc_target;
23 extern crate rustc_trait_selection;
24 extern crate rustc_typeck;
25
26 #[macro_use]
27 pub mod sym_helper;
28
29 #[allow(clippy::module_name_repetitions)]
30 pub mod ast_utils;
31 pub mod attrs;
32 pub mod camel_case;
33 pub mod comparisons;
34 pub mod consts;
35 pub mod diagnostics;
36 pub mod eager_or_lazy;
37 pub mod higher;
38 mod hir_utils;
39 pub mod numeric_literal;
40 pub mod paths;
41 pub mod ptr;
42 pub mod qualify_min_const_fn;
43 pub mod source;
44 pub mod sugg;
45 pub mod ty;
46 pub mod usage;
47 pub mod visitors;
48
49 pub use self::attrs::*;
50 pub use self::hir_utils::{both, eq_expr_value, over, SpanlessEq, SpanlessHash};
51
52 use std::collections::hash_map::Entry;
53 use std::hash::BuildHasherDefault;
54
55 use if_chain::if_chain;
56 use rustc_ast::ast::{self, Attribute, BorrowKind, LitKind};
57 use rustc_data_structures::fx::FxHashMap;
58 use rustc_hir as hir;
59 use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};
60 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
61 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
62 use rustc_hir::{
63     def, Arm, BindingAnnotation, Block, Body, Constness, CrateItem, Expr, ExprKind, FieldDef, FnDecl, ForeignItem,
64     GenericArgs, GenericParam, HirId, Impl, ImplItem, ImplItemKind, Item, ItemKind, LangItem, Lifetime, Local,
65     MacroDef, MatchSource, Node, Param, Pat, PatKind, Path, PathSegment, QPath, Stmt, TraitItem, TraitItemKind,
66     TraitRef, TyKind, Variant, Visibility,
67 };
68 use rustc_lint::{LateContext, Level, Lint, LintContext};
69 use rustc_middle::hir::exports::Export;
70 use rustc_middle::hir::map::Map;
71 use rustc_middle::ty as rustc_ty;
72 use rustc_middle::ty::{layout::IntegerExt, DefIdTree, Ty, TyCtxt, TypeFoldable};
73 use rustc_semver::RustcVersion;
74 use rustc_session::Session;
75 use rustc_span::hygiene::{ExpnKind, MacroKind};
76 use rustc_span::source_map::original_sp;
77 use rustc_span::sym;
78 use rustc_span::symbol::{kw, Ident, Symbol};
79 use rustc_span::{Span, DUMMY_SP};
80 use rustc_target::abi::Integer;
81
82 use crate::consts::{constant, Constant};
83 use crate::ty::is_recursively_primitive_type;
84
85 pub fn parse_msrv(msrv: &str, sess: Option<&Session>, span: Option<Span>) -> Option<RustcVersion> {
86     if let Ok(version) = RustcVersion::parse(msrv) {
87         return Some(version);
88     } else if let Some(sess) = sess {
89         if let Some(span) = span {
90             sess.span_err(span, &format!("`{}` is not a valid Rust version", msrv));
91         }
92     }
93     None
94 }
95
96 pub fn meets_msrv(msrv: Option<&RustcVersion>, lint_msrv: &RustcVersion) -> bool {
97     msrv.map_or(true, |msrv| msrv.meets(*lint_msrv))
98 }
99
100 #[macro_export]
101 macro_rules! extract_msrv_attr {
102     (LateContext) => {
103         extract_msrv_attr!(@LateContext, ());
104     };
105     (EarlyContext) => {
106         extract_msrv_attr!(@EarlyContext);
107     };
108     (@$context:ident$(, $call:tt)?) => {
109         fn enter_lint_attrs(&mut self, cx: &rustc_lint::$context<'tcx>, attrs: &'tcx [rustc_ast::ast::Attribute]) {
110             use $crate::get_unique_inner_attr;
111             match get_unique_inner_attr(cx.sess$($call)?, attrs, "msrv") {
112                 Some(msrv_attr) => {
113                     if let Some(msrv) = msrv_attr.value_str() {
114                         self.msrv = $crate::parse_msrv(
115                             &msrv.to_string(),
116                             Some(cx.sess$($call)?),
117                             Some(msrv_attr.span),
118                         );
119                     } else {
120                         cx.sess$($call)?.span_err(msrv_attr.span, "bad clippy attribute");
121                     }
122                 },
123                 _ => (),
124             }
125         }
126     };
127 }
128
129 /// Returns `true` if the two spans come from differing expansions (i.e., one is
130 /// from a macro and one isn't).
131 #[must_use]
132 pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
133     rhs.ctxt() != lhs.ctxt()
134 }
135
136 /// If the given expression is a local binding, find the initializer expression.
137 /// If that initializer expression is another local binding, find its initializer again.
138 /// This process repeats as long as possible (but usually no more than once). Initializer
139 /// expressions with adjustments are ignored. If this is not desired, use [`find_binding_init`]
140 /// instead.
141 ///
142 /// Examples:
143 /// ```ignore
144 /// let abc = 1;
145 /// //        ^ output
146 /// let def = abc;
147 /// dbg!(def)
148 /// //   ^^^ input
149 ///
150 /// // or...
151 /// let abc = 1;
152 /// let def = abc + 2;
153 /// //        ^^^^^^^ output
154 /// dbg!(def)
155 /// //   ^^^ input
156 /// ```
157 pub fn expr_or_init<'a, 'b, 'tcx: 'b>(cx: &LateContext<'tcx>, mut expr: &'a Expr<'b>) -> &'a Expr<'b> {
158     while let Some(init) = path_to_local(expr)
159         .and_then(|id| find_binding_init(cx, id))
160         .filter(|init| cx.typeck_results().expr_adjustments(init).is_empty())
161     {
162         expr = init;
163     }
164     expr
165 }
166
167 /// Finds the initializer expression for a local binding. Returns `None` if the binding is mutable.
168 /// By only considering immutable bindings, we guarantee that the returned expression represents the
169 /// value of the binding wherever it is referenced.
170 ///
171 /// Example: For `let x = 1`, if the `HirId` of `x` is provided, the `Expr` `1` is returned.
172 /// Note: If you have an expression that references a binding `x`, use `path_to_local` to get the
173 /// canonical binding `HirId`.
174 pub fn find_binding_init<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Expr<'tcx>> {
175     let hir = cx.tcx.hir();
176     if_chain! {
177         if let Some(Node::Binding(pat)) = hir.find(hir_id);
178         if matches!(pat.kind, PatKind::Binding(BindingAnnotation::Unannotated, ..));
179         let parent = hir.get_parent_node(hir_id);
180         if let Some(Node::Local(local)) = hir.find(parent);
181         then {
182             return local.init;
183         }
184     }
185     None
186 }
187
188 /// Returns `true` if the given `NodeId` is inside a constant context
189 ///
190 /// # Example
191 ///
192 /// ```rust,ignore
193 /// if in_constant(cx, expr.hir_id) {
194 ///     // Do something
195 /// }
196 /// ```
197 pub fn in_constant(cx: &LateContext<'_>, id: HirId) -> bool {
198     let parent_id = cx.tcx.hir().get_parent_item(id);
199     match cx.tcx.hir().get(parent_id) {
200         Node::Item(&Item {
201             kind: ItemKind::Const(..) | ItemKind::Static(..),
202             ..
203         })
204         | Node::TraitItem(&TraitItem {
205             kind: TraitItemKind::Const(..),
206             ..
207         })
208         | Node::ImplItem(&ImplItem {
209             kind: ImplItemKind::Const(..),
210             ..
211         })
212         | Node::AnonConst(_) => true,
213         Node::Item(&Item {
214             kind: ItemKind::Fn(ref sig, ..),
215             ..
216         })
217         | Node::ImplItem(&ImplItem {
218             kind: ImplItemKind::Fn(ref sig, _),
219             ..
220         }) => sig.header.constness == Constness::Const,
221         _ => false,
222     }
223 }
224
225 /// Returns `true` if this `span` was expanded by any macro.
226 #[must_use]
227 pub fn in_macro(span: Span) -> bool {
228     if span.from_expansion() {
229         !matches!(span.ctxt().outer_expn_data().kind, ExpnKind::Desugaring(..))
230     } else {
231         false
232     }
233 }
234
235 /// Checks if given pattern is a wildcard (`_`)
236 pub fn is_wild<'tcx>(pat: &impl std::ops::Deref<Target = Pat<'tcx>>) -> bool {
237     matches!(pat.kind, PatKind::Wild)
238 }
239
240 /// Checks if the first type parameter is a lang item.
241 pub fn is_ty_param_lang_item(cx: &LateContext<'_>, qpath: &QPath<'tcx>, item: LangItem) -> Option<&'tcx hir::Ty<'tcx>> {
242     let ty = get_qpath_generic_tys(qpath).next()?;
243
244     if let TyKind::Path(qpath) = &ty.kind {
245         cx.qpath_res(qpath, ty.hir_id)
246             .opt_def_id()
247             .map_or(false, |id| {
248                 cx.tcx.lang_items().require(item).map_or(false, |lang_id| id == lang_id)
249             })
250             .then(|| ty)
251     } else {
252         None
253     }
254 }
255
256 /// Checks if the first type parameter is a diagnostic item.
257 pub fn is_ty_param_diagnostic_item(
258     cx: &LateContext<'_>,
259     qpath: &QPath<'tcx>,
260     item: Symbol,
261 ) -> Option<&'tcx hir::Ty<'tcx>> {
262     let ty = get_qpath_generic_tys(qpath).next()?;
263
264     if let TyKind::Path(qpath) = &ty.kind {
265         cx.qpath_res(qpath, ty.hir_id)
266             .opt_def_id()
267             .map_or(false, |id| cx.tcx.is_diagnostic_item(item, id))
268             .then(|| ty)
269     } else {
270         None
271     }
272 }
273
274 /// Checks if the method call given in `expr` belongs to the given trait.
275 /// This is a deprecated function, consider using [`is_trait_method`].
276 pub fn match_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, path: &[&str]) -> bool {
277     let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
278     let trt_id = cx.tcx.trait_of_item(def_id);
279     trt_id.map_or(false, |trt_id| match_def_path(cx, trt_id, path))
280 }
281
282 /// Checks if the method call given in `def_id` belongs to a trait or other container with a given
283 /// diagnostic item
284 pub fn is_diagnostic_assoc_item(cx: &LateContext<'_>, def_id: DefId, diag_item: Symbol) -> bool {
285     cx.tcx
286         .opt_associated_item(def_id)
287         .and_then(|associated_item| match associated_item.container {
288             rustc_ty::TraitContainer(assoc_def_id) => Some(assoc_def_id),
289             rustc_ty::ImplContainer(assoc_def_id) => match cx.tcx.type_of(assoc_def_id).kind() {
290                 rustc_ty::Adt(adt, _) => Some(adt.did),
291                 rustc_ty::Slice(_) => cx.tcx.get_diagnostic_item(sym::slice), // this isn't perfect but it works
292                 _ => None,
293             },
294         })
295         .map_or(false, |assoc_def_id| cx.tcx.is_diagnostic_item(diag_item, assoc_def_id))
296 }
297
298 /// Checks if the method call given in `expr` belongs to the given trait.
299 pub fn is_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, diag_item: Symbol) -> bool {
300     cx.typeck_results()
301         .type_dependent_def_id(expr.hir_id)
302         .map_or(false, |did| is_diagnostic_assoc_item(cx, did, diag_item))
303 }
304
305 /// Checks if an expression references a variable of the given name.
306 pub fn match_var(expr: &Expr<'_>, var: Symbol) -> bool {
307     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
308         if let [p] = path.segments {
309             return p.ident.name == var;
310         }
311     }
312     false
313 }
314
315 pub fn last_path_segment<'tcx>(path: &QPath<'tcx>) -> &'tcx PathSegment<'tcx> {
316     match *path {
317         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
318         QPath::TypeRelative(_, ref seg) => seg,
319         QPath::LangItem(..) => panic!("last_path_segment: lang item has no path segments"),
320     }
321 }
322
323 pub fn get_qpath_generics(path: &QPath<'tcx>) -> Option<&'tcx GenericArgs<'tcx>> {
324     match path {
325         QPath::Resolved(_, p) => p.segments.last().and_then(|s| s.args),
326         QPath::TypeRelative(_, s) => s.args,
327         QPath::LangItem(..) => None,
328     }
329 }
330
331 pub fn get_qpath_generic_tys(path: &QPath<'tcx>) -> impl Iterator<Item = &'tcx hir::Ty<'tcx>> {
332     get_qpath_generics(path)
333         .map_or([].as_ref(), |a| a.args)
334         .iter()
335         .filter_map(|a| {
336             if let hir::GenericArg::Type(ty) = a {
337                 Some(ty)
338             } else {
339                 None
340             }
341         })
342 }
343
344 pub fn single_segment_path<'tcx>(path: &QPath<'tcx>) -> Option<&'tcx PathSegment<'tcx>> {
345     match *path {
346         QPath::Resolved(_, ref path) => path.segments.get(0),
347         QPath::TypeRelative(_, ref seg) => Some(seg),
348         QPath::LangItem(..) => None,
349     }
350 }
351
352 /// Matches a `QPath` against a slice of segment string literals.
353 ///
354 /// There is also `match_path` if you are dealing with a `rustc_hir::Path` instead of a
355 /// `rustc_hir::QPath`.
356 ///
357 /// # Examples
358 /// ```rust,ignore
359 /// match_qpath(path, &["std", "rt", "begin_unwind"])
360 /// ```
361 pub fn match_qpath(path: &QPath<'_>, segments: &[&str]) -> bool {
362     match *path {
363         QPath::Resolved(_, ref path) => match_path(path, segments),
364         QPath::TypeRelative(ref ty, ref segment) => match ty.kind {
365             TyKind::Path(ref inner_path) => {
366                 if let [prefix @ .., end] = segments {
367                     if match_qpath(inner_path, prefix) {
368                         return segment.ident.name.as_str() == *end;
369                     }
370                 }
371                 false
372             },
373             _ => false,
374         },
375         QPath::LangItem(..) => false,
376     }
377 }
378
379 /// Matches a `Path` against a slice of segment string literals.
380 ///
381 /// There is also `match_qpath` if you are dealing with a `rustc_hir::QPath` instead of a
382 /// `rustc_hir::Path`.
383 ///
384 /// # Examples
385 ///
386 /// ```rust,ignore
387 /// if match_path(&trait_ref.path, &paths::HASH) {
388 ///     // This is the `std::hash::Hash` trait.
389 /// }
390 ///
391 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
392 ///     // This is a `rustc_middle::lint::Lint`.
393 /// }
394 /// ```
395 pub fn match_path(path: &Path<'_>, segments: &[&str]) -> bool {
396     path.segments
397         .iter()
398         .rev()
399         .zip(segments.iter().rev())
400         .all(|(a, b)| a.ident.name.as_str() == *b)
401 }
402
403 /// Matches a `Path` against a slice of segment string literals, e.g.
404 ///
405 /// # Examples
406 /// ```rust,ignore
407 /// match_path_ast(path, &["std", "rt", "begin_unwind"])
408 /// ```
409 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
410     path.segments
411         .iter()
412         .rev()
413         .zip(segments.iter().rev())
414         .all(|(a, b)| a.ident.name.as_str() == *b)
415 }
416
417 /// If the expression is a path to a local, returns the canonical `HirId` of the local.
418 pub fn path_to_local(expr: &Expr<'_>) -> Option<HirId> {
419     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
420         if let Res::Local(id) = path.res {
421             return Some(id);
422         }
423     }
424     None
425 }
426
427 /// Returns true if the expression is a path to a local with the specified `HirId`.
428 /// Use this function to see if an expression matches a function argument or a match binding.
429 pub fn path_to_local_id(expr: &Expr<'_>, id: HirId) -> bool {
430     path_to_local(expr) == Some(id)
431 }
432
433 /// Gets the definition associated to a path.
434 #[allow(clippy::shadow_unrelated)] // false positive #6563
435 pub fn path_to_res(cx: &LateContext<'_>, path: &[&str]) -> Res {
436     macro_rules! try_res {
437         ($e:expr) => {
438             match $e {
439                 Some(e) => e,
440                 None => return Res::Err,
441             }
442         };
443     }
444     fn item_child_by_name<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, name: &str) -> Option<&'tcx Export<HirId>> {
445         tcx.item_children(def_id)
446             .iter()
447             .find(|item| item.ident.name.as_str() == name)
448     }
449
450     let (krate, first, path) = match *path {
451         [krate, first, ref path @ ..] => (krate, first, path),
452         _ => return Res::Err,
453     };
454     let tcx = cx.tcx;
455     let crates = tcx.crates();
456     let krate = try_res!(crates.iter().find(|&&num| tcx.crate_name(num).as_str() == krate));
457     let first = try_res!(item_child_by_name(tcx, krate.as_def_id(), first));
458     let last = path
459         .iter()
460         .copied()
461         // `get_def_path` seems to generate these empty segments for extern blocks.
462         // We can just ignore them.
463         .filter(|segment| !segment.is_empty())
464         // for each segment, find the child item
465         .try_fold(first, |item, segment| {
466             let def_id = item.res.def_id();
467             if let Some(item) = item_child_by_name(tcx, def_id, segment) {
468                 Some(item)
469             } else if matches!(item.res, Res::Def(DefKind::Enum | DefKind::Struct, _)) {
470                 // it is not a child item so check inherent impl items
471                 tcx.inherent_impls(def_id)
472                     .iter()
473                     .find_map(|&impl_def_id| item_child_by_name(tcx, impl_def_id, segment))
474             } else {
475                 None
476             }
477         });
478     try_res!(last).res
479 }
480
481 /// Convenience function to get the `DefId` of a trait by path.
482 /// It could be a trait or trait alias.
483 pub fn get_trait_def_id(cx: &LateContext<'_>, path: &[&str]) -> Option<DefId> {
484     match path_to_res(cx, path) {
485         Res::Def(DefKind::Trait | DefKind::TraitAlias, trait_id) => Some(trait_id),
486         _ => None,
487     }
488 }
489
490 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
491 ///
492 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
493 ///
494 /// ```rust
495 /// struct Point(isize, isize);
496 ///
497 /// impl std::ops::Add for Point {
498 ///     type Output = Self;
499 ///
500 ///     fn add(self, other: Self) -> Self {
501 ///         Point(0, 0)
502 ///     }
503 /// }
504 /// ```
505 pub fn trait_ref_of_method<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx TraitRef<'tcx>> {
506     // Get the implemented trait for the current function
507     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
508     if_chain! {
509         if parent_impl != hir::CRATE_HIR_ID;
510         if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
511         if let hir::ItemKind::Impl(impl_) = &item.kind;
512         then { return impl_.of_trait.as_ref(); }
513     }
514     None
515 }
516
517 /// Returns the method names and argument list of nested method call expressions that make up
518 /// `expr`. method/span lists are sorted with the most recent call first.
519 pub fn method_calls<'tcx>(
520     expr: &'tcx Expr<'tcx>,
521     max_depth: usize,
522 ) -> (Vec<Symbol>, Vec<&'tcx [Expr<'tcx>]>, Vec<Span>) {
523     let mut method_names = Vec::with_capacity(max_depth);
524     let mut arg_lists = Vec::with_capacity(max_depth);
525     let mut spans = Vec::with_capacity(max_depth);
526
527     let mut current = expr;
528     for _ in 0..max_depth {
529         if let ExprKind::MethodCall(path, span, args, _) = &current.kind {
530             if args.iter().any(|e| e.span.from_expansion()) {
531                 break;
532             }
533             method_names.push(path.ident.name);
534             arg_lists.push(&**args);
535             spans.push(*span);
536             current = &args[0];
537         } else {
538             break;
539         }
540     }
541
542     (method_names, arg_lists, spans)
543 }
544
545 /// Matches an `Expr` against a chain of methods, and return the matched `Expr`s.
546 ///
547 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
548 /// `method_chain_args(expr, &["bar", "baz"])` will return a `Vec`
549 /// containing the `Expr`s for
550 /// `.bar()` and `.baz()`
551 pub fn method_chain_args<'a>(expr: &'a Expr<'_>, methods: &[&str]) -> Option<Vec<&'a [Expr<'a>]>> {
552     let mut current = expr;
553     let mut matched = Vec::with_capacity(methods.len());
554     for method_name in methods.iter().rev() {
555         // method chains are stored last -> first
556         if let ExprKind::MethodCall(ref path, _, ref args, _) = current.kind {
557             if path.ident.name.as_str() == *method_name {
558                 if args.iter().any(|e| e.span.from_expansion()) {
559                     return None;
560                 }
561                 matched.push(&**args); // build up `matched` backwards
562                 current = &args[0] // go to parent expression
563             } else {
564                 return None;
565             }
566         } else {
567             return None;
568         }
569     }
570     // Reverse `matched` so that it is in the same order as `methods`.
571     matched.reverse();
572     Some(matched)
573 }
574
575 /// Returns `true` if the provided `def_id` is an entrypoint to a program.
576 pub fn is_entrypoint_fn(cx: &LateContext<'_>, def_id: DefId) -> bool {
577     cx.tcx
578         .entry_fn(LOCAL_CRATE)
579         .map_or(false, |(entry_fn_def_id, _)| def_id == entry_fn_def_id.to_def_id())
580 }
581
582 /// Returns `true` if the expression is in the program's `#[panic_handler]`.
583 pub fn is_in_panic_handler(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
584     let parent = cx.tcx.hir().get_parent_item(e.hir_id);
585     let def_id = cx.tcx.hir().local_def_id(parent).to_def_id();
586     Some(def_id) == cx.tcx.lang_items().panic_impl()
587 }
588
589 /// Gets the name of the item the expression is in, if available.
590 pub fn get_item_name(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<Symbol> {
591     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
592     match cx.tcx.hir().find(parent_id) {
593         Some(
594             Node::Item(Item { ident, .. })
595             | Node::TraitItem(TraitItem { ident, .. })
596             | Node::ImplItem(ImplItem { ident, .. }),
597         ) => Some(ident.name),
598         _ => None,
599     }
600 }
601
602 /// Gets the name of a `Pat`, if any.
603 pub fn get_pat_name(pat: &Pat<'_>) -> Option<Symbol> {
604     match pat.kind {
605         PatKind::Binding(.., ref spname, _) => Some(spname.name),
606         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
607         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
608         _ => None,
609     }
610 }
611
612 struct ContainsName {
613     name: Symbol,
614     result: bool,
615 }
616
617 impl<'tcx> Visitor<'tcx> for ContainsName {
618     type Map = Map<'tcx>;
619
620     fn visit_name(&mut self, _: Span, name: Symbol) {
621         if self.name == name {
622             self.result = true;
623         }
624     }
625     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
626         NestedVisitorMap::None
627     }
628 }
629
630 /// Checks if an `Expr` contains a certain name.
631 pub fn contains_name(name: Symbol, expr: &Expr<'_>) -> bool {
632     let mut cn = ContainsName { name, result: false };
633     cn.visit_expr(expr);
634     cn.result
635 }
636
637 /// Returns `true` if `expr` contains a return expression
638 pub fn contains_return(expr: &hir::Expr<'_>) -> bool {
639     struct RetCallFinder {
640         found: bool,
641     }
642
643     impl<'tcx> hir::intravisit::Visitor<'tcx> for RetCallFinder {
644         type Map = Map<'tcx>;
645
646         fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
647             if self.found {
648                 return;
649             }
650             if let hir::ExprKind::Ret(..) = &expr.kind {
651                 self.found = true;
652             } else {
653                 hir::intravisit::walk_expr(self, expr);
654             }
655         }
656
657         fn nested_visit_map(&mut self) -> hir::intravisit::NestedVisitorMap<Self::Map> {
658             hir::intravisit::NestedVisitorMap::None
659         }
660     }
661
662     let mut visitor = RetCallFinder { found: false };
663     visitor.visit_expr(expr);
664     visitor.found
665 }
666
667 struct FindMacroCalls<'a, 'b> {
668     names: &'a [&'b str],
669     result: Vec<Span>,
670 }
671
672 impl<'a, 'b, 'tcx> Visitor<'tcx> for FindMacroCalls<'a, 'b> {
673     type Map = Map<'tcx>;
674
675     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
676         if self.names.iter().any(|fun| is_expn_of(expr.span, fun).is_some()) {
677             self.result.push(expr.span);
678         }
679         // and check sub-expressions
680         intravisit::walk_expr(self, expr);
681     }
682
683     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
684         NestedVisitorMap::None
685     }
686 }
687
688 /// Finds calls of the specified macros in a function body.
689 pub fn find_macro_calls(names: &[&str], body: &Body<'_>) -> Vec<Span> {
690     let mut fmc = FindMacroCalls {
691         names,
692         result: Vec::new(),
693     };
694     fmc.visit_expr(&body.value);
695     fmc.result
696 }
697
698 /// Extends the span to the beginning of the spans line, incl. whitespaces.
699 ///
700 /// ```rust,ignore
701 ///        let x = ();
702 /// //             ^^
703 /// // will be converted to
704 ///        let x = ();
705 /// // ^^^^^^^^^^^^^^
706 /// ```
707 fn line_span<T: LintContext>(cx: &T, span: Span) -> Span {
708     let span = original_sp(span, DUMMY_SP);
709     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
710     let line_no = source_map_and_line.line;
711     let line_start = source_map_and_line.sf.lines[line_no];
712     Span::new(line_start, span.hi(), span.ctxt())
713 }
714
715 /// Gets the span of the node, if there is one.
716 pub fn get_node_span(node: Node<'_>) -> Option<Span> {
717     match node {
718         Node::Param(Param { span, .. })
719         | Node::Item(Item { span, .. })
720         | Node::ForeignItem(ForeignItem { span, .. })
721         | Node::TraitItem(TraitItem { span, .. })
722         | Node::ImplItem(ImplItem { span, .. })
723         | Node::Variant(Variant { span, .. })
724         | Node::Field(FieldDef { span, .. })
725         | Node::Expr(Expr { span, .. })
726         | Node::Stmt(Stmt { span, .. })
727         | Node::PathSegment(PathSegment {
728             ident: Ident { span, .. },
729             ..
730         })
731         | Node::Ty(hir::Ty { span, .. })
732         | Node::TraitRef(TraitRef {
733             path: Path { span, .. },
734             ..
735         })
736         | Node::Binding(Pat { span, .. })
737         | Node::Pat(Pat { span, .. })
738         | Node::Arm(Arm { span, .. })
739         | Node::Block(Block { span, .. })
740         | Node::Local(Local { span, .. })
741         | Node::MacroDef(MacroDef { span, .. })
742         | Node::Lifetime(Lifetime { span, .. })
743         | Node::GenericParam(GenericParam { span, .. })
744         | Node::Visibility(Visibility { span, .. })
745         | Node::Crate(CrateItem { span, .. }) => Some(*span),
746         Node::Ctor(_) | Node::AnonConst(_) => None,
747     }
748 }
749
750 /// Gets the parent node, if any.
751 pub fn get_parent_node(tcx: TyCtxt<'_>, id: HirId) -> Option<Node<'_>> {
752     tcx.hir().parent_iter(id).next().map(|(_, node)| node)
753 }
754
755 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
756 pub fn get_parent_expr<'tcx>(cx: &LateContext<'tcx>, e: &Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
757     match get_parent_node(cx.tcx, e.hir_id) {
758         Some(Node::Expr(parent)) => Some(parent),
759         _ => None,
760     }
761 }
762
763 pub fn get_enclosing_block<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Block<'tcx>> {
764     let map = &cx.tcx.hir();
765     let enclosing_node = map
766         .get_enclosing_scope(hir_id)
767         .and_then(|enclosing_id| map.find(enclosing_id));
768     enclosing_node.and_then(|node| match node {
769         Node::Block(block) => Some(block),
770         Node::Item(&Item {
771             kind: ItemKind::Fn(_, _, eid),
772             ..
773         })
774         | Node::ImplItem(&ImplItem {
775             kind: ImplItemKind::Fn(_, eid),
776             ..
777         }) => match cx.tcx.hir().body(eid).value.kind {
778             ExprKind::Block(ref block, _) => Some(block),
779             _ => None,
780         },
781         _ => None,
782     })
783 }
784
785 /// Gets the parent node if it's an impl block.
786 pub fn get_parent_as_impl(tcx: TyCtxt<'_>, id: HirId) -> Option<&Impl<'_>> {
787     let map = tcx.hir();
788     match map.parent_iter(id).next() {
789         Some((
790             _,
791             Node::Item(Item {
792                 kind: ItemKind::Impl(imp),
793                 ..
794             }),
795         )) => Some(imp),
796         _ => None,
797     }
798 }
799
800 /// Checks if the given expression is the else clause of either an `if` or `if let` expression.
801 pub fn is_else_clause(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
802     let map = tcx.hir();
803     let mut iter = map.parent_iter(expr.hir_id);
804     match iter.next() {
805         Some((arm_id, Node::Arm(..))) => matches!(
806             iter.next(),
807             Some((
808                 _,
809                 Node::Expr(Expr {
810                     kind: ExprKind::Match(_, [_, else_arm], MatchSource::IfLetDesugar { .. }),
811                     ..
812                 })
813             ))
814             if else_arm.hir_id == arm_id
815         ),
816         Some((
817             _,
818             Node::Expr(Expr {
819                 kind: ExprKind::If(_, _, Some(else_expr)),
820                 ..
821             }),
822         )) => else_expr.hir_id == expr.hir_id,
823         _ => false,
824     }
825 }
826
827 /// Checks whether the given expression is a constant integer of the given value.
828 /// unlike `is_integer_literal`, this version does const folding
829 pub fn is_integer_const(cx: &LateContext<'_>, e: &Expr<'_>, value: u128) -> bool {
830     if is_integer_literal(e, value) {
831         return true;
832     }
833     let map = cx.tcx.hir();
834     let parent_item = map.get_parent_item(e.hir_id);
835     if let Some((Constant::Int(v), _)) = map
836         .maybe_body_owned_by(parent_item)
837         .and_then(|body_id| constant(cx, cx.tcx.typeck_body(body_id), e))
838     {
839         value == v
840     } else {
841         false
842     }
843 }
844
845 /// Checks whether the given expression is a constant literal of the given value.
846 pub fn is_integer_literal(expr: &Expr<'_>, value: u128) -> bool {
847     // FIXME: use constant folding
848     if let ExprKind::Lit(ref spanned) = expr.kind {
849         if let LitKind::Int(v, _) = spanned.node {
850             return v == value;
851         }
852     }
853     false
854 }
855
856 /// Returns `true` if the given `Expr` has been coerced before.
857 ///
858 /// Examples of coercions can be found in the Nomicon at
859 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
860 ///
861 /// See `rustc_middle::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
862 /// information on adjustments and coercions.
863 pub fn is_adjusted(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
864     cx.typeck_results().adjustments().get(e.hir_id).is_some()
865 }
866
867 /// Returns the pre-expansion span if is this comes from an expansion of the
868 /// macro `name`.
869 /// See also `is_direct_expn_of`.
870 #[must_use]
871 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
872     loop {
873         if span.from_expansion() {
874             let data = span.ctxt().outer_expn_data();
875             let new_span = data.call_site;
876
877             if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
878                 if mac_name.as_str() == name {
879                     return Some(new_span);
880                 }
881             }
882
883             span = new_span;
884         } else {
885             return None;
886         }
887     }
888 }
889
890 /// Returns the pre-expansion span if the span directly comes from an expansion
891 /// of the macro `name`.
892 /// The difference with `is_expn_of` is that in
893 /// ```rust,ignore
894 /// foo!(bar!(42));
895 /// ```
896 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
897 /// `bar!` by
898 /// `is_direct_expn_of`.
899 #[must_use]
900 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
901     if span.from_expansion() {
902         let data = span.ctxt().outer_expn_data();
903         let new_span = data.call_site;
904
905         if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
906             if mac_name.as_str() == name {
907                 return Some(new_span);
908             }
909         }
910     }
911
912     None
913 }
914
915 /// Convenience function to get the return type of a function.
916 pub fn return_ty<'tcx>(cx: &LateContext<'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
917     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
918     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
919     cx.tcx.erase_late_bound_regions(ret_ty)
920 }
921
922 /// Checks if an expression is constructing a tuple-like enum variant or struct
923 pub fn is_ctor_or_promotable_const_function(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
924     if let ExprKind::Call(ref fun, _) = expr.kind {
925         if let ExprKind::Path(ref qp) = fun.kind {
926             let res = cx.qpath_res(qp, fun.hir_id);
927             return match res {
928                 def::Res::Def(DefKind::Variant | DefKind::Ctor(..), ..) => true,
929                 def::Res::Def(_, def_id) => cx.tcx.is_promotable_const_fn(def_id),
930                 _ => false,
931             };
932         }
933     }
934     false
935 }
936
937 /// Returns `true` if a pattern is refutable.
938 // TODO: should be implemented using rustc/mir_build/thir machinery
939 pub fn is_refutable(cx: &LateContext<'_>, pat: &Pat<'_>) -> bool {
940     fn is_enum_variant(cx: &LateContext<'_>, qpath: &QPath<'_>, id: HirId) -> bool {
941         matches!(
942             cx.qpath_res(qpath, id),
943             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
944         )
945     }
946
947     fn are_refutable<'a, I: Iterator<Item = &'a Pat<'a>>>(cx: &LateContext<'_>, mut i: I) -> bool {
948         i.any(|pat| is_refutable(cx, pat))
949     }
950
951     match pat.kind {
952         PatKind::Wild => false,
953         PatKind::Binding(_, _, _, pat) => pat.map_or(false, |pat| is_refutable(cx, pat)),
954         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
955         PatKind::Lit(..) | PatKind::Range(..) => true,
956         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
957         PatKind::Or(ref pats) => {
958             // TODO: should be the honest check, that pats is exhaustive set
959             are_refutable(cx, pats.iter().map(|pat| &**pat))
960         },
961         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
962         PatKind::Struct(ref qpath, ref fields, _) => {
963             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, fields.iter().map(|field| &*field.pat))
964         },
965         PatKind::TupleStruct(ref qpath, ref pats, _) => {
966             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, pats.iter().map(|pat| &**pat))
967         },
968         PatKind::Slice(ref head, ref middle, ref tail) => {
969             match &cx.typeck_results().node_type(pat.hir_id).kind() {
970                 rustc_ty::Slice(..) => {
971                     // [..] is the only irrefutable slice pattern.
972                     !head.is_empty() || middle.is_none() || !tail.is_empty()
973                 },
974                 rustc_ty::Array(..) => {
975                     are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat))
976                 },
977                 _ => {
978                     // unreachable!()
979                     true
980                 },
981             }
982         },
983     }
984 }
985
986 /// If the pattern is an `or` pattern, call the function once for each sub pattern. Otherwise, call
987 /// the function once on the given pattern.
988 pub fn recurse_or_patterns<'tcx, F: FnMut(&'tcx Pat<'tcx>)>(pat: &'tcx Pat<'tcx>, mut f: F) {
989     if let PatKind::Or(pats) = pat.kind {
990         pats.iter().cloned().for_each(f)
991     } else {
992         f(pat)
993     }
994 }
995
996 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
997 /// implementations have.
998 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
999     attrs.iter().any(|attr| attr.has_name(sym::automatically_derived))
1000 }
1001
1002 /// Remove blocks around an expression.
1003 ///
1004 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
1005 /// themselves.
1006 pub fn remove_blocks<'tcx>(mut expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
1007     while let ExprKind::Block(ref block, ..) = expr.kind {
1008         match (block.stmts.is_empty(), block.expr.as_ref()) {
1009             (true, Some(e)) => expr = e,
1010             _ => break,
1011         }
1012     }
1013     expr
1014 }
1015
1016 pub fn is_self(slf: &Param<'_>) -> bool {
1017     if let PatKind::Binding(.., name, _) = slf.pat.kind {
1018         name.name == kw::SelfLower
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(QPath::Resolved(None, ref path)) = slf.kind;
1027         if let Res::SelfTy(..) = path.res;
1028         then {
1029             return true
1030         }
1031     }
1032     false
1033 }
1034
1035 pub fn iter_input_pats<'tcx>(decl: &FnDecl<'_>, body: &'tcx Body<'_>) -> impl Iterator<Item = &'tcx Param<'tcx>> {
1036     (0..decl.inputs.len()).map(move |i| &body.params[i])
1037 }
1038
1039 /// Checks if a given expression is a match expression expanded from the `?`
1040 /// operator or the `try` macro.
1041 pub fn is_try<'tcx>(expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
1042     fn is_ok(arm: &Arm<'_>) -> bool {
1043         if_chain! {
1044             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pat.kind;
1045             if match_qpath(path, &paths::RESULT_OK[1..]);
1046             if let PatKind::Binding(_, hir_id, _, None) = pat[0].kind;
1047             if path_to_local_id(arm.body, hir_id);
1048             then {
1049                 return true;
1050             }
1051         }
1052         false
1053     }
1054
1055     fn is_err(arm: &Arm<'_>) -> bool {
1056         if let PatKind::TupleStruct(ref path, _, _) = arm.pat.kind {
1057             match_qpath(path, &paths::RESULT_ERR[1..])
1058         } else {
1059             false
1060         }
1061     }
1062
1063     if let ExprKind::Match(_, ref arms, ref source) = expr.kind {
1064         // desugared from a `?` operator
1065         if let MatchSource::TryDesugar = *source {
1066             return Some(expr);
1067         }
1068
1069         if_chain! {
1070             if arms.len() == 2;
1071             if arms[0].guard.is_none();
1072             if arms[1].guard.is_none();
1073             if (is_ok(&arms[0]) && is_err(&arms[1])) ||
1074                 (is_ok(&arms[1]) && is_err(&arms[0]));
1075             then {
1076                 return Some(expr);
1077             }
1078         }
1079     }
1080
1081     None
1082 }
1083
1084 /// Returns `true` if the lint is allowed in the current context
1085 ///
1086 /// Useful for skipping long running code when it's unnecessary
1087 pub fn is_allowed(cx: &LateContext<'_>, lint: &'static Lint, id: HirId) -> bool {
1088     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1089 }
1090
1091 pub fn strip_pat_refs<'hir>(mut pat: &'hir Pat<'hir>) -> &'hir Pat<'hir> {
1092     while let PatKind::Ref(subpat, _) = pat.kind {
1093         pat = subpat;
1094     }
1095     pat
1096 }
1097
1098 pub fn int_bits(tcx: TyCtxt<'_>, ity: rustc_ty::IntTy) -> u64 {
1099     Integer::from_int_ty(&tcx, ity).size().bits()
1100 }
1101
1102 #[allow(clippy::cast_possible_wrap)]
1103 /// Turn a constant int byte representation into an i128
1104 pub fn sext(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::IntTy) -> i128 {
1105     let amt = 128 - int_bits(tcx, ity);
1106     ((u as i128) << amt) >> amt
1107 }
1108
1109 #[allow(clippy::cast_sign_loss)]
1110 /// clip unused bytes
1111 pub fn unsext(tcx: TyCtxt<'_>, u: i128, ity: rustc_ty::IntTy) -> u128 {
1112     let amt = 128 - int_bits(tcx, ity);
1113     ((u as u128) << amt) >> amt
1114 }
1115
1116 /// clip unused bytes
1117 pub fn clip(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::UintTy) -> u128 {
1118     let bits = Integer::from_uint_ty(&tcx, ity).size().bits();
1119     let amt = 128 - bits;
1120     (u << amt) >> amt
1121 }
1122
1123 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_>, node: HirId) -> bool {
1124     let map = &tcx.hir();
1125     let mut prev_enclosing_node = None;
1126     let mut enclosing_node = node;
1127     while Some(enclosing_node) != prev_enclosing_node {
1128         if is_automatically_derived(map.attrs(enclosing_node)) {
1129             return true;
1130         }
1131         prev_enclosing_node = Some(enclosing_node);
1132         enclosing_node = map.get_parent_item(enclosing_node);
1133     }
1134     false
1135 }
1136
1137 /// Matches a function call with the given path and returns the arguments.
1138 ///
1139 /// Usage:
1140 ///
1141 /// ```rust,ignore
1142 /// if let Some(args) = match_function_call(cx, cmp_max_call, &paths::CMP_MAX);
1143 /// ```
1144 pub fn match_function_call<'tcx>(
1145     cx: &LateContext<'tcx>,
1146     expr: &'tcx Expr<'_>,
1147     path: &[&str],
1148 ) -> Option<&'tcx [Expr<'tcx>]> {
1149     if_chain! {
1150         if let ExprKind::Call(ref fun, ref args) = expr.kind;
1151         if let ExprKind::Path(ref qpath) = fun.kind;
1152         if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
1153         if match_def_path(cx, fun_def_id, path);
1154         then {
1155             return Some(&args)
1156         }
1157     };
1158     None
1159 }
1160
1161 pub fn match_def_path<'tcx>(cx: &LateContext<'tcx>, did: DefId, syms: &[&str]) -> bool {
1162     // We have to convert `syms` to `&[Symbol]` here because rustc's `match_def_path`
1163     // accepts only that. We should probably move to Symbols in Clippy as well.
1164     let syms = syms.iter().map(|p| Symbol::intern(p)).collect::<Vec<Symbol>>();
1165     cx.match_def_path(did, &syms)
1166 }
1167
1168 pub fn match_panic_call<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Option<&'tcx [Expr<'tcx>]> {
1169     match_function_call(cx, expr, &paths::BEGIN_PANIC)
1170         .or_else(|| match_function_call(cx, expr, &paths::BEGIN_PANIC_FMT))
1171         .or_else(|| match_function_call(cx, expr, &paths::PANIC_ANY))
1172         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC))
1173         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC_FMT))
1174         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC_STR))
1175 }
1176
1177 pub fn match_panic_def_id(cx: &LateContext<'_>, did: DefId) -> bool {
1178     match_def_path(cx, did, &paths::BEGIN_PANIC)
1179         || match_def_path(cx, did, &paths::BEGIN_PANIC_FMT)
1180         || match_def_path(cx, did, &paths::PANIC_ANY)
1181         || match_def_path(cx, did, &paths::PANICKING_PANIC)
1182         || match_def_path(cx, did, &paths::PANICKING_PANIC_FMT)
1183         || match_def_path(cx, did, &paths::PANICKING_PANIC_STR)
1184 }
1185
1186 /// Returns the list of condition expressions and the list of blocks in a
1187 /// sequence of `if/else`.
1188 /// E.g., this returns `([a, b], [c, d, e])` for the expression
1189 /// `if a { c } else if b { d } else { e }`.
1190 pub fn if_sequence<'tcx>(mut expr: &'tcx Expr<'tcx>) -> (Vec<&'tcx Expr<'tcx>>, Vec<&'tcx Block<'tcx>>) {
1191     let mut conds = Vec::new();
1192     let mut blocks: Vec<&Block<'_>> = Vec::new();
1193
1194     while let ExprKind::If(ref cond, ref then_expr, ref else_expr) = expr.kind {
1195         conds.push(&**cond);
1196         if let ExprKind::Block(ref block, _) = then_expr.kind {
1197             blocks.push(block);
1198         } else {
1199             panic!("ExprKind::If node is not an ExprKind::Block");
1200         }
1201
1202         if let Some(ref else_expr) = *else_expr {
1203             expr = else_expr;
1204         } else {
1205             break;
1206         }
1207     }
1208
1209     // final `else {..}`
1210     if !blocks.is_empty() {
1211         if let ExprKind::Block(ref block, _) = expr.kind {
1212             blocks.push(&**block);
1213         }
1214     }
1215
1216     (conds, blocks)
1217 }
1218
1219 pub fn parent_node_is_if_expr(expr: &Expr<'_>, cx: &LateContext<'_>) -> bool {
1220     let map = cx.tcx.hir();
1221     let parent_id = map.get_parent_node(expr.hir_id);
1222     let parent_node = map.get(parent_id);
1223     matches!(
1224         parent_node,
1225         Node::Expr(Expr {
1226             kind: ExprKind::If(_, _, _),
1227             ..
1228         })
1229     )
1230 }
1231
1232 // Finds the attribute with the given name, if any
1233 pub fn attr_by_name<'a>(attrs: &'a [Attribute], name: &'_ str) -> Option<&'a Attribute> {
1234     attrs
1235         .iter()
1236         .find(|attr| attr.ident().map_or(false, |ident| ident.as_str() == name))
1237 }
1238
1239 // Finds the `#[must_use]` attribute, if any
1240 pub fn must_use_attr(attrs: &[Attribute]) -> Option<&Attribute> {
1241     attr_by_name(attrs, "must_use")
1242 }
1243
1244 // check if expr is calling method or function with #[must_use] attribute
1245 pub fn is_must_use_func_call(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1246     let did = match expr.kind {
1247         ExprKind::Call(ref path, _) => if_chain! {
1248             if let ExprKind::Path(ref qpath) = path.kind;
1249             if let def::Res::Def(_, did) = cx.qpath_res(qpath, path.hir_id);
1250             then {
1251                 Some(did)
1252             } else {
1253                 None
1254             }
1255         },
1256         ExprKind::MethodCall(_, _, _, _) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1257         _ => None,
1258     };
1259
1260     did.map_or(false, |did| must_use_attr(&cx.tcx.get_attrs(did)).is_some())
1261 }
1262
1263 pub fn is_no_std_crate(cx: &LateContext<'_>) -> bool {
1264     cx.tcx.hir().attrs(hir::CRATE_HIR_ID).iter().any(|attr| {
1265         if let ast::AttrKind::Normal(ref attr, _) = attr.kind {
1266             attr.path == sym::no_std
1267         } else {
1268             false
1269         }
1270     })
1271 }
1272
1273 /// Check if parent of a hir node is a trait implementation block.
1274 /// For example, `f` in
1275 /// ```rust,ignore
1276 /// impl Trait for S {
1277 ///     fn f() {}
1278 /// }
1279 /// ```
1280 pub fn is_trait_impl_item(cx: &LateContext<'_>, hir_id: HirId) -> bool {
1281     if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
1282         matches!(item.kind, ItemKind::Impl(hir::Impl { of_trait: Some(_), .. }))
1283     } else {
1284         false
1285     }
1286 }
1287
1288 /// Check if it's even possible to satisfy the `where` clause for the item.
1289 ///
1290 /// `trivial_bounds` feature allows functions with unsatisfiable bounds, for example:
1291 ///
1292 /// ```ignore
1293 /// fn foo() where i32: Iterator {
1294 ///     for _ in 2i32 {}
1295 /// }
1296 /// ```
1297 pub fn fn_has_unsatisfiable_preds(cx: &LateContext<'_>, did: DefId) -> bool {
1298     use rustc_trait_selection::traits;
1299     let predicates = cx
1300         .tcx
1301         .predicates_of(did)
1302         .predicates
1303         .iter()
1304         .filter_map(|(p, _)| if p.is_global() { Some(*p) } else { None });
1305     traits::impossible_predicates(
1306         cx.tcx,
1307         traits::elaborate_predicates(cx.tcx, predicates)
1308             .map(|o| o.predicate)
1309             .collect::<Vec<_>>(),
1310     )
1311 }
1312
1313 /// Returns the `DefId` of the callee if the given expression is a function or method call.
1314 pub fn fn_def_id(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<DefId> {
1315     match &expr.kind {
1316         ExprKind::MethodCall(..) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1317         ExprKind::Call(
1318             Expr {
1319                 kind: ExprKind::Path(qpath),
1320                 hir_id: path_hir_id,
1321                 ..
1322             },
1323             ..,
1324         ) => cx.typeck_results().qpath_res(qpath, *path_hir_id).opt_def_id(),
1325         _ => None,
1326     }
1327 }
1328
1329 pub fn run_lints(cx: &LateContext<'_>, lints: &[&'static Lint], id: HirId) -> bool {
1330     lints.iter().any(|lint| {
1331         matches!(
1332             cx.tcx.lint_level_at_node(lint, id),
1333             (Level::Forbid | Level::Deny | Level::Warn, _)
1334         )
1335     })
1336 }
1337
1338 /// Returns Option<String> where String is a textual representation of the type encapsulated in the
1339 /// slice iff the given expression is a slice of primitives (as defined in the
1340 /// `is_recursively_primitive_type` function) and None otherwise.
1341 pub fn is_slice_of_primitives(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<String> {
1342     let expr_type = cx.typeck_results().expr_ty_adjusted(expr);
1343     let expr_kind = expr_type.kind();
1344     let is_primitive = match expr_kind {
1345         rustc_ty::Slice(element_type) => is_recursively_primitive_type(element_type),
1346         rustc_ty::Ref(_, inner_ty, _) if matches!(inner_ty.kind(), &rustc_ty::Slice(_)) => {
1347             if let rustc_ty::Slice(element_type) = inner_ty.kind() {
1348                 is_recursively_primitive_type(element_type)
1349             } else {
1350                 unreachable!()
1351             }
1352         },
1353         _ => false,
1354     };
1355
1356     if is_primitive {
1357         // if we have wrappers like Array, Slice or Tuple, print these
1358         // and get the type enclosed in the slice ref
1359         match expr_type.peel_refs().walk().nth(1).unwrap().expect_ty().kind() {
1360             rustc_ty::Slice(..) => return Some("slice".into()),
1361             rustc_ty::Array(..) => return Some("array".into()),
1362             rustc_ty::Tuple(..) => return Some("tuple".into()),
1363             _ => {
1364                 // is_recursively_primitive_type() should have taken care
1365                 // of the rest and we can rely on the type that is found
1366                 let refs_peeled = expr_type.peel_refs();
1367                 return Some(refs_peeled.walk().last().unwrap().to_string());
1368             },
1369         }
1370     }
1371     None
1372 }
1373
1374 /// returns list of all pairs (a, b) from `exprs` such that `eq(a, b)`
1375 /// `hash` must be comformed with `eq`
1376 pub fn search_same<T, Hash, Eq>(exprs: &[T], hash: Hash, eq: Eq) -> Vec<(&T, &T)>
1377 where
1378     Hash: Fn(&T) -> u64,
1379     Eq: Fn(&T, &T) -> bool,
1380 {
1381     if exprs.len() == 2 && eq(&exprs[0], &exprs[1]) {
1382         return vec![(&exprs[0], &exprs[1])];
1383     }
1384
1385     let mut match_expr_list: Vec<(&T, &T)> = Vec::new();
1386
1387     let mut map: FxHashMap<_, Vec<&_>> =
1388         FxHashMap::with_capacity_and_hasher(exprs.len(), BuildHasherDefault::default());
1389
1390     for expr in exprs {
1391         match map.entry(hash(expr)) {
1392             Entry::Occupied(mut o) => {
1393                 for o in o.get() {
1394                     if eq(o, expr) {
1395                         match_expr_list.push((o, expr));
1396                     }
1397                 }
1398                 o.get_mut().push(expr);
1399             },
1400             Entry::Vacant(v) => {
1401                 v.insert(vec![expr]);
1402             },
1403         }
1404     }
1405
1406     match_expr_list
1407 }
1408
1409 /// Peels off all references on the pattern. Returns the underlying pattern and the number of
1410 /// references removed.
1411 pub fn peel_hir_pat_refs(pat: &'a Pat<'a>) -> (&'a Pat<'a>, usize) {
1412     fn peel(pat: &'a Pat<'a>, count: usize) -> (&'a Pat<'a>, usize) {
1413         if let PatKind::Ref(pat, _) = pat.kind {
1414             peel(pat, count + 1)
1415         } else {
1416             (pat, count)
1417         }
1418     }
1419     peel(pat, 0)
1420 }
1421
1422 /// Peels off up to the given number of references on the expression. Returns the underlying
1423 /// expression and the number of references removed.
1424 pub fn peel_n_hir_expr_refs(expr: &'a Expr<'a>, count: usize) -> (&'a Expr<'a>, usize) {
1425     fn f(expr: &'a Expr<'a>, count: usize, target: usize) -> (&'a Expr<'a>, usize) {
1426         match expr.kind {
1427             ExprKind::AddrOf(_, _, expr) if count != target => f(expr, count + 1, target),
1428             _ => (expr, count),
1429         }
1430     }
1431     f(expr, 0, count)
1432 }
1433
1434 /// Peels off all references on the expression. Returns the underlying expression and the number of
1435 /// references removed.
1436 pub fn peel_hir_expr_refs(expr: &'a Expr<'a>) -> (&'a Expr<'a>, usize) {
1437     fn f(expr: &'a Expr<'a>, count: usize) -> (&'a Expr<'a>, usize) {
1438         match expr.kind {
1439             ExprKind::AddrOf(BorrowKind::Ref, _, expr) => f(expr, count + 1),
1440             _ => (expr, count),
1441         }
1442     }
1443     f(expr, 0)
1444 }
1445
1446 #[macro_export]
1447 macro_rules! unwrap_cargo_metadata {
1448     ($cx: ident, $lint: ident, $deps: expr) => {{
1449         let mut command = cargo_metadata::MetadataCommand::new();
1450         if !$deps {
1451             command.no_deps();
1452         }
1453
1454         match command.exec() {
1455             Ok(metadata) => metadata,
1456             Err(err) => {
1457                 span_lint($cx, $lint, DUMMY_SP, &format!("could not read cargo metadata: {}", err));
1458                 return;
1459             },
1460         }
1461     }};
1462 }
1463
1464 pub fn is_hir_ty_cfg_dependant(cx: &LateContext<'_>, ty: &hir::Ty<'_>) -> bool {
1465     if_chain! {
1466         if let TyKind::Path(QPath::Resolved(_, path)) = ty.kind;
1467         if let Res::Def(_, def_id) = path.res;
1468         then {
1469             cx.tcx.has_attr(def_id, sym::cfg) || cx.tcx.has_attr(def_id, sym::cfg_attr)
1470         } else {
1471             false
1472         }
1473     }
1474 }
1475
1476 /// Check if the resolution of a given path is an `Ok` variant of `Result`.
1477 pub fn is_ok_ctor(cx: &LateContext<'_>, res: Res) -> bool {
1478     if let Some(ok_id) = cx.tcx.lang_items().result_ok_variant() {
1479         if let Res::Def(DefKind::Ctor(CtorOf::Variant, CtorKind::Fn), id) = res {
1480             if let Some(variant_id) = cx.tcx.parent(id) {
1481                 return variant_id == ok_id;
1482             }
1483         }
1484     }
1485     false
1486 }
1487
1488 /// Check if the resolution of a given path is a `Some` variant of `Option`.
1489 pub fn is_some_ctor(cx: &LateContext<'_>, res: Res) -> bool {
1490     if let Some(some_id) = cx.tcx.lang_items().option_some_variant() {
1491         if let Res::Def(DefKind::Ctor(CtorOf::Variant, CtorKind::Fn), id) = res {
1492             if let Some(variant_id) = cx.tcx.parent(id) {
1493                 return variant_id == some_id;
1494             }
1495         }
1496     }
1497     false
1498 }