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