]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/lib.rs
Auto merge of #7074 - camsteffen:diag-methods, r=llogiq
[rust.git] / clippy_utils / src / lib.rs
1 #![feature(box_patterns)]
2 #![feature(in_band_lifetimes)]
3 #![feature(iter_zip)]
4 #![feature(rustc_private)]
5 #![recursion_limit = "512"]
6 #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc, clippy::must_use_candidate)]
7
8 // FIXME: switch to something more ergonomic here, once available.
9 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
10 extern crate rustc_ast;
11 extern crate rustc_ast_pretty;
12 extern crate rustc_data_structures;
13 extern crate rustc_errors;
14 extern crate rustc_hir;
15 extern crate rustc_hir_pretty;
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, count_eq, 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::{DefKind, Res};
61 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
62 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
63 use rustc_hir::LangItem::{ResultErr, ResultOk};
64 use rustc_hir::{
65     def, Arm, BindingAnnotation, Block, Body, Constness, Expr, ExprKind, FnDecl, GenericArgs, HirId, Impl, ImplItem,
66     ImplItemKind, Item, ItemKind, LangItem, MatchSource, Node, Param, Pat, PatKind, Path, PathSegment, QPath,
67     TraitItem, TraitItemKind, TraitRef, TyKind,
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, 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 /// Checks if a `QPath` resolves to a constructor of a `LangItem`.
227 /// For example, use this to check whether a function call or a pattern is `Some(..)`.
228 pub fn is_lang_ctor(cx: &LateContext<'_>, qpath: &QPath<'_>, lang_item: LangItem) -> bool {
229     if let QPath::Resolved(_, path) = qpath {
230         if let Res::Def(DefKind::Ctor(..), ctor_id) = path.res {
231             if let Ok(item_id) = cx.tcx.lang_items().require(lang_item) {
232                 return cx.tcx.parent(ctor_id) == Some(item_id);
233             }
234         }
235     }
236     false
237 }
238
239 /// Returns `true` if this `span` was expanded by any macro.
240 #[must_use]
241 pub fn in_macro(span: Span) -> bool {
242     if span.from_expansion() {
243         !matches!(span.ctxt().outer_expn_data().kind, ExpnKind::Desugaring(..))
244     } else {
245         false
246     }
247 }
248
249 /// Checks if given pattern is a wildcard (`_`)
250 pub fn is_wild<'tcx>(pat: &impl std::ops::Deref<Target = Pat<'tcx>>) -> bool {
251     matches!(pat.kind, PatKind::Wild)
252 }
253
254 /// Checks if the first type parameter is a lang item.
255 pub fn is_ty_param_lang_item(cx: &LateContext<'_>, qpath: &QPath<'tcx>, item: LangItem) -> Option<&'tcx hir::Ty<'tcx>> {
256     let ty = get_qpath_generic_tys(qpath).next()?;
257
258     if let TyKind::Path(qpath) = &ty.kind {
259         cx.qpath_res(qpath, ty.hir_id)
260             .opt_def_id()
261             .map_or(false, |id| {
262                 cx.tcx.lang_items().require(item).map_or(false, |lang_id| id == lang_id)
263             })
264             .then(|| ty)
265     } else {
266         None
267     }
268 }
269
270 /// Checks if the first type parameter is a diagnostic item.
271 pub fn is_ty_param_diagnostic_item(
272     cx: &LateContext<'_>,
273     qpath: &QPath<'tcx>,
274     item: Symbol,
275 ) -> Option<&'tcx hir::Ty<'tcx>> {
276     let ty = get_qpath_generic_tys(qpath).next()?;
277
278     if let TyKind::Path(qpath) = &ty.kind {
279         cx.qpath_res(qpath, ty.hir_id)
280             .opt_def_id()
281             .map_or(false, |id| cx.tcx.is_diagnostic_item(item, id))
282             .then(|| ty)
283     } else {
284         None
285     }
286 }
287
288 /// Checks if the method call given in `expr` belongs to the given trait.
289 /// This is a deprecated function, consider using [`is_trait_method`].
290 pub fn match_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, path: &[&str]) -> bool {
291     let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
292     let trt_id = cx.tcx.trait_of_item(def_id);
293     trt_id.map_or(false, |trt_id| match_def_path(cx, trt_id, path))
294 }
295
296 /// Checks if a method is defined in an impl of a diagnostic item
297 pub fn is_diag_item_method(cx: &LateContext<'_>, def_id: DefId, diag_item: Symbol) -> bool {
298     if let Some(impl_did) = cx.tcx.impl_of_method(def_id) {
299         if let Some(adt) = cx.tcx.type_of(impl_did).ty_adt_def() {
300             return cx.tcx.is_diagnostic_item(diag_item, adt.did);
301         }
302     }
303     false
304 }
305
306 /// Checks if a method is in a diagnostic item trait
307 pub fn is_diag_trait_item(cx: &LateContext<'_>, def_id: DefId, diag_item: Symbol) -> bool {
308     if let Some(trait_did) = cx.tcx.trait_of_item(def_id) {
309         return cx.tcx.is_diagnostic_item(diag_item, trait_did);
310     }
311     false
312 }
313
314 /// Checks if the method call given in `expr` belongs to the given trait.
315 pub fn is_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, diag_item: Symbol) -> bool {
316     cx.typeck_results()
317         .type_dependent_def_id(expr.hir_id)
318         .map_or(false, |did| is_diag_trait_item(cx, did, diag_item))
319 }
320
321 /// Checks if an expression references a variable of the given name.
322 pub fn match_var(expr: &Expr<'_>, var: Symbol) -> bool {
323     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
324         if let [p] = path.segments {
325             return p.ident.name == var;
326         }
327     }
328     false
329 }
330
331 pub fn last_path_segment<'tcx>(path: &QPath<'tcx>) -> &'tcx PathSegment<'tcx> {
332     match *path {
333         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
334         QPath::TypeRelative(_, ref seg) => seg,
335         QPath::LangItem(..) => panic!("last_path_segment: lang item has no path segments"),
336     }
337 }
338
339 pub fn get_qpath_generics(path: &QPath<'tcx>) -> Option<&'tcx GenericArgs<'tcx>> {
340     match path {
341         QPath::Resolved(_, p) => p.segments.last().and_then(|s| s.args),
342         QPath::TypeRelative(_, s) => s.args,
343         QPath::LangItem(..) => None,
344     }
345 }
346
347 pub fn get_qpath_generic_tys(path: &QPath<'tcx>) -> impl Iterator<Item = &'tcx hir::Ty<'tcx>> {
348     get_qpath_generics(path)
349         .map_or([].as_ref(), |a| a.args)
350         .iter()
351         .filter_map(|a| {
352             if let hir::GenericArg::Type(ty) = a {
353                 Some(ty)
354             } else {
355                 None
356             }
357         })
358 }
359
360 pub fn single_segment_path<'tcx>(path: &QPath<'tcx>) -> Option<&'tcx PathSegment<'tcx>> {
361     match *path {
362         QPath::Resolved(_, ref path) => path.segments.get(0),
363         QPath::TypeRelative(_, ref seg) => Some(seg),
364         QPath::LangItem(..) => None,
365     }
366 }
367
368 /// THIS METHOD IS DEPRECATED and will eventually be removed since it does not match against the
369 /// entire path or resolved `DefId`. Prefer using `match_def_path`. Consider getting a `DefId` from
370 /// `QPath::Resolved.1.res.opt_def_id()`.
371 ///
372 /// Matches a `QPath` against a slice of segment string literals.
373 ///
374 /// There is also `match_path` if you are dealing with a `rustc_hir::Path` instead of a
375 /// `rustc_hir::QPath`.
376 ///
377 /// # Examples
378 /// ```rust,ignore
379 /// match_qpath(path, &["std", "rt", "begin_unwind"])
380 /// ```
381 pub fn match_qpath(path: &QPath<'_>, segments: &[&str]) -> bool {
382     match *path {
383         QPath::Resolved(_, ref path) => match_path(path, segments),
384         QPath::TypeRelative(ref ty, ref segment) => match ty.kind {
385             TyKind::Path(ref inner_path) => {
386                 if let [prefix @ .., end] = segments {
387                     if match_qpath(inner_path, prefix) {
388                         return segment.ident.name.as_str() == *end;
389                     }
390                 }
391                 false
392             },
393             _ => false,
394         },
395         QPath::LangItem(..) => false,
396     }
397 }
398
399 /// THIS METHOD IS DEPRECATED and will eventually be removed since it does not match against the
400 /// entire path or resolved `DefId`. Prefer using `match_def_path`. Consider getting a `DefId` from
401 /// `QPath::Resolved.1.res.opt_def_id()`.
402 ///
403 /// Matches a `Path` against a slice of segment string literals.
404 ///
405 /// There is also `match_qpath` if you are dealing with a `rustc_hir::QPath` instead of a
406 /// `rustc_hir::Path`.
407 ///
408 /// # Examples
409 ///
410 /// ```rust,ignore
411 /// if match_path(&trait_ref.path, &paths::HASH) {
412 ///     // This is the `std::hash::Hash` trait.
413 /// }
414 ///
415 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
416 ///     // This is a `rustc_middle::lint::Lint`.
417 /// }
418 /// ```
419 pub fn match_path(path: &Path<'_>, segments: &[&str]) -> bool {
420     path.segments
421         .iter()
422         .rev()
423         .zip(segments.iter().rev())
424         .all(|(a, b)| a.ident.name.as_str() == *b)
425 }
426
427 /// Matches a `Path` against a slice of segment string literals, e.g.
428 ///
429 /// # Examples
430 /// ```rust,ignore
431 /// match_path_ast(path, &["std", "rt", "begin_unwind"])
432 /// ```
433 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
434     path.segments
435         .iter()
436         .rev()
437         .zip(segments.iter().rev())
438         .all(|(a, b)| a.ident.name.as_str() == *b)
439 }
440
441 /// If the expression is a path to a local, returns the canonical `HirId` of the local.
442 pub fn path_to_local(expr: &Expr<'_>) -> Option<HirId> {
443     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
444         if let Res::Local(id) = path.res {
445             return Some(id);
446         }
447     }
448     None
449 }
450
451 /// Returns true if the expression is a path to a local with the specified `HirId`.
452 /// Use this function to see if an expression matches a function argument or a match binding.
453 pub fn path_to_local_id(expr: &Expr<'_>, id: HirId) -> bool {
454     path_to_local(expr) == Some(id)
455 }
456
457 /// Gets the definition associated to a path.
458 #[allow(clippy::shadow_unrelated)] // false positive #6563
459 pub fn path_to_res(cx: &LateContext<'_>, path: &[&str]) -> Res {
460     macro_rules! try_res {
461         ($e:expr) => {
462             match $e {
463                 Some(e) => e,
464                 None => return Res::Err,
465             }
466         };
467     }
468     fn item_child_by_name<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, name: &str) -> Option<&'tcx Export<HirId>> {
469         tcx.item_children(def_id)
470             .iter()
471             .find(|item| item.ident.name.as_str() == name)
472     }
473
474     let (krate, first, path) = match *path {
475         [krate, first, ref path @ ..] => (krate, first, path),
476         _ => return Res::Err,
477     };
478     let tcx = cx.tcx;
479     let crates = tcx.crates();
480     let krate = try_res!(crates.iter().find(|&&num| tcx.crate_name(num).as_str() == krate));
481     let first = try_res!(item_child_by_name(tcx, krate.as_def_id(), first));
482     let last = path
483         .iter()
484         .copied()
485         // `get_def_path` seems to generate these empty segments for extern blocks.
486         // We can just ignore them.
487         .filter(|segment| !segment.is_empty())
488         // for each segment, find the child item
489         .try_fold(first, |item, segment| {
490             let def_id = item.res.def_id();
491             if let Some(item) = item_child_by_name(tcx, def_id, segment) {
492                 Some(item)
493             } else if matches!(item.res, Res::Def(DefKind::Enum | DefKind::Struct, _)) {
494                 // it is not a child item so check inherent impl items
495                 tcx.inherent_impls(def_id)
496                     .iter()
497                     .find_map(|&impl_def_id| item_child_by_name(tcx, impl_def_id, segment))
498             } else {
499                 None
500             }
501         });
502     try_res!(last).res
503 }
504
505 /// Convenience function to get the `DefId` of a trait by path.
506 /// It could be a trait or trait alias.
507 pub fn get_trait_def_id(cx: &LateContext<'_>, path: &[&str]) -> Option<DefId> {
508     match path_to_res(cx, path) {
509         Res::Def(DefKind::Trait | DefKind::TraitAlias, trait_id) => Some(trait_id),
510         _ => None,
511     }
512 }
513
514 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
515 ///
516 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
517 ///
518 /// ```rust
519 /// struct Point(isize, isize);
520 ///
521 /// impl std::ops::Add for Point {
522 ///     type Output = Self;
523 ///
524 ///     fn add(self, other: Self) -> Self {
525 ///         Point(0, 0)
526 ///     }
527 /// }
528 /// ```
529 pub fn trait_ref_of_method<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx TraitRef<'tcx>> {
530     // Get the implemented trait for the current function
531     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
532     if_chain! {
533         if parent_impl != hir::CRATE_HIR_ID;
534         if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
535         if let hir::ItemKind::Impl(impl_) = &item.kind;
536         then { return impl_.of_trait.as_ref(); }
537     }
538     None
539 }
540
541 /// Returns the method names and argument list of nested method call expressions that make up
542 /// `expr`. method/span lists are sorted with the most recent call first.
543 pub fn method_calls<'tcx>(
544     expr: &'tcx Expr<'tcx>,
545     max_depth: usize,
546 ) -> (Vec<Symbol>, Vec<&'tcx [Expr<'tcx>]>, Vec<Span>) {
547     let mut method_names = Vec::with_capacity(max_depth);
548     let mut arg_lists = Vec::with_capacity(max_depth);
549     let mut spans = Vec::with_capacity(max_depth);
550
551     let mut current = expr;
552     for _ in 0..max_depth {
553         if let ExprKind::MethodCall(path, span, args, _) = &current.kind {
554             if args.iter().any(|e| e.span.from_expansion()) {
555                 break;
556             }
557             method_names.push(path.ident.name);
558             arg_lists.push(&**args);
559             spans.push(*span);
560             current = &args[0];
561         } else {
562             break;
563         }
564     }
565
566     (method_names, arg_lists, spans)
567 }
568
569 /// Matches an `Expr` against a chain of methods, and return the matched `Expr`s.
570 ///
571 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
572 /// `method_chain_args(expr, &["bar", "baz"])` will return a `Vec`
573 /// containing the `Expr`s for
574 /// `.bar()` and `.baz()`
575 pub fn method_chain_args<'a>(expr: &'a Expr<'_>, methods: &[&str]) -> Option<Vec<&'a [Expr<'a>]>> {
576     let mut current = expr;
577     let mut matched = Vec::with_capacity(methods.len());
578     for method_name in methods.iter().rev() {
579         // method chains are stored last -> first
580         if let ExprKind::MethodCall(ref path, _, ref args, _) = current.kind {
581             if path.ident.name.as_str() == *method_name {
582                 if args.iter().any(|e| e.span.from_expansion()) {
583                     return None;
584                 }
585                 matched.push(&**args); // build up `matched` backwards
586                 current = &args[0] // go to parent expression
587             } else {
588                 return None;
589             }
590         } else {
591             return None;
592         }
593     }
594     // Reverse `matched` so that it is in the same order as `methods`.
595     matched.reverse();
596     Some(matched)
597 }
598
599 /// Returns `true` if the provided `def_id` is an entrypoint to a program.
600 pub fn is_entrypoint_fn(cx: &LateContext<'_>, def_id: DefId) -> bool {
601     cx.tcx
602         .entry_fn(LOCAL_CRATE)
603         .map_or(false, |(entry_fn_def_id, _)| def_id == entry_fn_def_id.to_def_id())
604 }
605
606 /// Returns `true` if the expression is in the program's `#[panic_handler]`.
607 pub fn is_in_panic_handler(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
608     let parent = cx.tcx.hir().get_parent_item(e.hir_id);
609     let def_id = cx.tcx.hir().local_def_id(parent).to_def_id();
610     Some(def_id) == cx.tcx.lang_items().panic_impl()
611 }
612
613 /// Gets the name of the item the expression is in, if available.
614 pub fn get_item_name(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<Symbol> {
615     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
616     match cx.tcx.hir().find(parent_id) {
617         Some(
618             Node::Item(Item { ident, .. })
619             | Node::TraitItem(TraitItem { ident, .. })
620             | Node::ImplItem(ImplItem { ident, .. }),
621         ) => Some(ident.name),
622         _ => None,
623     }
624 }
625
626 /// Gets the name of a `Pat`, if any.
627 pub fn get_pat_name(pat: &Pat<'_>) -> Option<Symbol> {
628     match pat.kind {
629         PatKind::Binding(.., ref spname, _) => Some(spname.name),
630         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
631         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
632         _ => None,
633     }
634 }
635
636 pub struct ContainsName {
637     pub name: Symbol,
638     pub result: bool,
639 }
640
641 impl<'tcx> Visitor<'tcx> for ContainsName {
642     type Map = Map<'tcx>;
643
644     fn visit_name(&mut self, _: Span, name: Symbol) {
645         if self.name == name {
646             self.result = true;
647         }
648     }
649     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
650         NestedVisitorMap::None
651     }
652 }
653
654 /// Checks if an `Expr` contains a certain name.
655 pub fn contains_name(name: Symbol, expr: &Expr<'_>) -> bool {
656     let mut cn = ContainsName { name, result: false };
657     cn.visit_expr(expr);
658     cn.result
659 }
660
661 /// Returns `true` if `expr` contains a return expression
662 pub fn contains_return(expr: &hir::Expr<'_>) -> bool {
663     struct RetCallFinder {
664         found: bool,
665     }
666
667     impl<'tcx> hir::intravisit::Visitor<'tcx> for RetCallFinder {
668         type Map = Map<'tcx>;
669
670         fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
671             if self.found {
672                 return;
673             }
674             if let hir::ExprKind::Ret(..) = &expr.kind {
675                 self.found = true;
676             } else {
677                 hir::intravisit::walk_expr(self, expr);
678             }
679         }
680
681         fn nested_visit_map(&mut self) -> hir::intravisit::NestedVisitorMap<Self::Map> {
682             hir::intravisit::NestedVisitorMap::None
683         }
684     }
685
686     let mut visitor = RetCallFinder { found: false };
687     visitor.visit_expr(expr);
688     visitor.found
689 }
690
691 struct FindMacroCalls<'a, 'b> {
692     names: &'a [&'b str],
693     result: Vec<Span>,
694 }
695
696 impl<'a, 'b, 'tcx> Visitor<'tcx> for FindMacroCalls<'a, 'b> {
697     type Map = Map<'tcx>;
698
699     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
700         if self.names.iter().any(|fun| is_expn_of(expr.span, fun).is_some()) {
701             self.result.push(expr.span);
702         }
703         // and check sub-expressions
704         intravisit::walk_expr(self, expr);
705     }
706
707     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
708         NestedVisitorMap::None
709     }
710 }
711
712 /// Finds calls of the specified macros in a function body.
713 pub fn find_macro_calls(names: &[&str], body: &Body<'_>) -> Vec<Span> {
714     let mut fmc = FindMacroCalls {
715         names,
716         result: Vec::new(),
717     };
718     fmc.visit_expr(&body.value);
719     fmc.result
720 }
721
722 /// Extends the span to the beginning of the spans line, incl. whitespaces.
723 ///
724 /// ```rust,ignore
725 ///        let x = ();
726 /// //             ^^
727 /// // will be converted to
728 ///        let x = ();
729 /// // ^^^^^^^^^^^^^^
730 /// ```
731 fn line_span<T: LintContext>(cx: &T, span: Span) -> Span {
732     let span = original_sp(span, DUMMY_SP);
733     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
734     let line_no = source_map_and_line.line;
735     let line_start = source_map_and_line.sf.lines[line_no];
736     Span::new(line_start, span.hi(), span.ctxt())
737 }
738
739 /// Gets the parent node, if any.
740 pub fn get_parent_node(tcx: TyCtxt<'_>, id: HirId) -> Option<Node<'_>> {
741     tcx.hir().parent_iter(id).next().map(|(_, node)| node)
742 }
743
744 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
745 pub fn get_parent_expr<'tcx>(cx: &LateContext<'tcx>, e: &Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
746     match get_parent_node(cx.tcx, e.hir_id) {
747         Some(Node::Expr(parent)) => Some(parent),
748         _ => None,
749     }
750 }
751
752 pub fn get_enclosing_block<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Block<'tcx>> {
753     let map = &cx.tcx.hir();
754     let enclosing_node = map
755         .get_enclosing_scope(hir_id)
756         .and_then(|enclosing_id| map.find(enclosing_id));
757     enclosing_node.and_then(|node| match node {
758         Node::Block(block) => Some(block),
759         Node::Item(&Item {
760             kind: ItemKind::Fn(_, _, eid),
761             ..
762         })
763         | Node::ImplItem(&ImplItem {
764             kind: ImplItemKind::Fn(_, eid),
765             ..
766         }) => match cx.tcx.hir().body(eid).value.kind {
767             ExprKind::Block(ref block, _) => Some(block),
768             _ => None,
769         },
770         _ => None,
771     })
772 }
773
774 /// Gets the parent node if it's an impl block.
775 pub fn get_parent_as_impl(tcx: TyCtxt<'_>, id: HirId) -> Option<&Impl<'_>> {
776     let map = tcx.hir();
777     match map.parent_iter(id).next() {
778         Some((
779             _,
780             Node::Item(Item {
781                 kind: ItemKind::Impl(imp),
782                 ..
783             }),
784         )) => Some(imp),
785         _ => None,
786     }
787 }
788
789 /// Checks if the given expression is the else clause of either an `if` or `if let` expression.
790 pub fn is_else_clause(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
791     let map = tcx.hir();
792     let mut iter = map.parent_iter(expr.hir_id);
793     match iter.next() {
794         Some((arm_id, Node::Arm(..))) => matches!(
795             iter.next(),
796             Some((
797                 _,
798                 Node::Expr(Expr {
799                     kind: ExprKind::Match(_, [_, else_arm], MatchSource::IfLetDesugar { .. }),
800                     ..
801                 })
802             ))
803             if else_arm.hir_id == arm_id
804         ),
805         Some((
806             _,
807             Node::Expr(Expr {
808                 kind: ExprKind::If(_, _, Some(else_expr)),
809                 ..
810             }),
811         )) => else_expr.hir_id == expr.hir_id,
812         _ => false,
813     }
814 }
815
816 /// Checks whether the given expression is a constant integer of the given value.
817 /// unlike `is_integer_literal`, this version does const folding
818 pub fn is_integer_const(cx: &LateContext<'_>, e: &Expr<'_>, value: u128) -> bool {
819     if is_integer_literal(e, value) {
820         return true;
821     }
822     let map = cx.tcx.hir();
823     let parent_item = map.get_parent_item(e.hir_id);
824     if let Some((Constant::Int(v), _)) = map
825         .maybe_body_owned_by(parent_item)
826         .and_then(|body_id| constant(cx, cx.tcx.typeck_body(body_id), e))
827     {
828         value == v
829     } else {
830         false
831     }
832 }
833
834 /// Checks whether the given expression is a constant literal of the given value.
835 pub fn is_integer_literal(expr: &Expr<'_>, value: u128) -> bool {
836     // FIXME: use constant folding
837     if let ExprKind::Lit(ref spanned) = expr.kind {
838         if let LitKind::Int(v, _) = spanned.node {
839             return v == value;
840         }
841     }
842     false
843 }
844
845 /// Returns `true` if the given `Expr` has been coerced before.
846 ///
847 /// Examples of coercions can be found in the Nomicon at
848 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
849 ///
850 /// See `rustc_middle::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
851 /// information on adjustments and coercions.
852 pub fn is_adjusted(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
853     cx.typeck_results().adjustments().get(e.hir_id).is_some()
854 }
855
856 /// Returns the pre-expansion span if is this comes from an expansion of the
857 /// macro `name`.
858 /// See also `is_direct_expn_of`.
859 #[must_use]
860 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
861     loop {
862         if span.from_expansion() {
863             let data = span.ctxt().outer_expn_data();
864             let new_span = data.call_site;
865
866             if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
867                 if mac_name.as_str() == name {
868                     return Some(new_span);
869                 }
870             }
871
872             span = new_span;
873         } else {
874             return None;
875         }
876     }
877 }
878
879 /// Returns the pre-expansion span if the span directly comes from an expansion
880 /// of the macro `name`.
881 /// The difference with `is_expn_of` is that in
882 /// ```rust,ignore
883 /// foo!(bar!(42));
884 /// ```
885 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
886 /// `bar!` by
887 /// `is_direct_expn_of`.
888 #[must_use]
889 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
890     if span.from_expansion() {
891         let data = span.ctxt().outer_expn_data();
892         let new_span = data.call_site;
893
894         if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
895             if mac_name.as_str() == name {
896                 return Some(new_span);
897             }
898         }
899     }
900
901     None
902 }
903
904 /// Convenience function to get the return type of a function.
905 pub fn return_ty<'tcx>(cx: &LateContext<'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
906     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
907     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
908     cx.tcx.erase_late_bound_regions(ret_ty)
909 }
910
911 /// Checks if an expression is constructing a tuple-like enum variant or struct
912 pub fn is_ctor_or_promotable_const_function(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
913     if let ExprKind::Call(ref fun, _) = expr.kind {
914         if let ExprKind::Path(ref qp) = fun.kind {
915             let res = cx.qpath_res(qp, fun.hir_id);
916             return match res {
917                 def::Res::Def(DefKind::Variant | DefKind::Ctor(..), ..) => true,
918                 def::Res::Def(_, def_id) => cx.tcx.is_promotable_const_fn(def_id),
919                 _ => false,
920             };
921         }
922     }
923     false
924 }
925
926 /// Returns `true` if a pattern is refutable.
927 // TODO: should be implemented using rustc/mir_build/thir machinery
928 pub fn is_refutable(cx: &LateContext<'_>, pat: &Pat<'_>) -> bool {
929     fn is_enum_variant(cx: &LateContext<'_>, qpath: &QPath<'_>, id: HirId) -> bool {
930         matches!(
931             cx.qpath_res(qpath, id),
932             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
933         )
934     }
935
936     fn are_refutable<'a, I: Iterator<Item = &'a Pat<'a>>>(cx: &LateContext<'_>, mut i: I) -> bool {
937         i.any(|pat| is_refutable(cx, pat))
938     }
939
940     match pat.kind {
941         PatKind::Wild => false,
942         PatKind::Binding(_, _, _, pat) => pat.map_or(false, |pat| is_refutable(cx, pat)),
943         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
944         PatKind::Lit(..) | PatKind::Range(..) => true,
945         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
946         PatKind::Or(ref pats) => {
947             // TODO: should be the honest check, that pats is exhaustive set
948             are_refutable(cx, pats.iter().map(|pat| &**pat))
949         },
950         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
951         PatKind::Struct(ref qpath, ref fields, _) => {
952             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, fields.iter().map(|field| &*field.pat))
953         },
954         PatKind::TupleStruct(ref qpath, ref pats, _) => {
955             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, pats.iter().map(|pat| &**pat))
956         },
957         PatKind::Slice(ref head, ref middle, ref tail) => {
958             match &cx.typeck_results().node_type(pat.hir_id).kind() {
959                 rustc_ty::Slice(..) => {
960                     // [..] is the only irrefutable slice pattern.
961                     !head.is_empty() || middle.is_none() || !tail.is_empty()
962                 },
963                 rustc_ty::Array(..) => {
964                     are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat))
965                 },
966                 _ => {
967                     // unreachable!()
968                     true
969                 },
970             }
971         },
972     }
973 }
974
975 /// If the pattern is an `or` pattern, call the function once for each sub pattern. Otherwise, call
976 /// the function once on the given pattern.
977 pub fn recurse_or_patterns<'tcx, F: FnMut(&'tcx Pat<'tcx>)>(pat: &'tcx Pat<'tcx>, mut f: F) {
978     if let PatKind::Or(pats) = pat.kind {
979         pats.iter().cloned().for_each(f)
980     } else {
981         f(pat)
982     }
983 }
984
985 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
986 /// implementations have.
987 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
988     attrs.iter().any(|attr| attr.has_name(sym::automatically_derived))
989 }
990
991 /// Remove blocks around an expression.
992 ///
993 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
994 /// themselves.
995 pub fn remove_blocks<'tcx>(mut expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
996     while let ExprKind::Block(ref block, ..) = expr.kind {
997         match (block.stmts.is_empty(), block.expr.as_ref()) {
998             (true, Some(e)) => expr = e,
999             _ => break,
1000         }
1001     }
1002     expr
1003 }
1004
1005 pub fn is_self(slf: &Param<'_>) -> bool {
1006     if let PatKind::Binding(.., name, _) = slf.pat.kind {
1007         name.name == kw::SelfLower
1008     } else {
1009         false
1010     }
1011 }
1012
1013 pub fn is_self_ty(slf: &hir::Ty<'_>) -> bool {
1014     if_chain! {
1015         if let TyKind::Path(QPath::Resolved(None, ref path)) = slf.kind;
1016         if let Res::SelfTy(..) = path.res;
1017         then {
1018             return true
1019         }
1020     }
1021     false
1022 }
1023
1024 pub fn iter_input_pats<'tcx>(decl: &FnDecl<'_>, body: &'tcx Body<'_>) -> impl Iterator<Item = &'tcx Param<'tcx>> {
1025     (0..decl.inputs.len()).map(move |i| &body.params[i])
1026 }
1027
1028 /// Checks if a given expression is a match expression expanded from the `?`
1029 /// operator or the `try` macro.
1030 pub fn is_try<'tcx>(cx: &LateContext<'_>, expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
1031     fn is_ok(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1032         if_chain! {
1033             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pat.kind;
1034             if is_lang_ctor(cx, path, ResultOk);
1035             if let PatKind::Binding(_, hir_id, _, None) = pat[0].kind;
1036             if path_to_local_id(arm.body, hir_id);
1037             then {
1038                 return true;
1039             }
1040         }
1041         false
1042     }
1043
1044     fn is_err(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1045         if let PatKind::TupleStruct(ref path, _, _) = arm.pat.kind {
1046             is_lang_ctor(cx, path, ResultErr)
1047         } else {
1048             false
1049         }
1050     }
1051
1052     if let ExprKind::Match(_, ref arms, ref source) = expr.kind {
1053         // desugared from a `?` operator
1054         if let MatchSource::TryDesugar = *source {
1055             return Some(expr);
1056         }
1057
1058         if_chain! {
1059             if arms.len() == 2;
1060             if arms[0].guard.is_none();
1061             if arms[1].guard.is_none();
1062             if (is_ok(cx, &arms[0]) && is_err(cx, &arms[1])) ||
1063                 (is_ok(cx, &arms[1]) && is_err(cx, &arms[0]));
1064             then {
1065                 return Some(expr);
1066             }
1067         }
1068     }
1069
1070     None
1071 }
1072
1073 /// Returns `true` if the lint is allowed in the current context
1074 ///
1075 /// Useful for skipping long running code when it's unnecessary
1076 pub fn is_allowed(cx: &LateContext<'_>, lint: &'static Lint, id: HirId) -> bool {
1077     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1078 }
1079
1080 pub fn strip_pat_refs<'hir>(mut pat: &'hir Pat<'hir>) -> &'hir Pat<'hir> {
1081     while let PatKind::Ref(subpat, _) = pat.kind {
1082         pat = subpat;
1083     }
1084     pat
1085 }
1086
1087 pub fn int_bits(tcx: TyCtxt<'_>, ity: rustc_ty::IntTy) -> u64 {
1088     Integer::from_int_ty(&tcx, ity).size().bits()
1089 }
1090
1091 #[allow(clippy::cast_possible_wrap)]
1092 /// Turn a constant int byte representation into an i128
1093 pub fn sext(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::IntTy) -> i128 {
1094     let amt = 128 - int_bits(tcx, ity);
1095     ((u as i128) << amt) >> amt
1096 }
1097
1098 #[allow(clippy::cast_sign_loss)]
1099 /// clip unused bytes
1100 pub fn unsext(tcx: TyCtxt<'_>, u: i128, ity: rustc_ty::IntTy) -> u128 {
1101     let amt = 128 - int_bits(tcx, ity);
1102     ((u as u128) << amt) >> amt
1103 }
1104
1105 /// clip unused bytes
1106 pub fn clip(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::UintTy) -> u128 {
1107     let bits = Integer::from_uint_ty(&tcx, ity).size().bits();
1108     let amt = 128 - bits;
1109     (u << amt) >> amt
1110 }
1111
1112 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_>, node: HirId) -> bool {
1113     let map = &tcx.hir();
1114     let mut prev_enclosing_node = None;
1115     let mut enclosing_node = node;
1116     while Some(enclosing_node) != prev_enclosing_node {
1117         if is_automatically_derived(map.attrs(enclosing_node)) {
1118             return true;
1119         }
1120         prev_enclosing_node = Some(enclosing_node);
1121         enclosing_node = map.get_parent_item(enclosing_node);
1122     }
1123     false
1124 }
1125
1126 /// Matches a function call with the given path and returns the arguments.
1127 ///
1128 /// Usage:
1129 ///
1130 /// ```rust,ignore
1131 /// if let Some(args) = match_function_call(cx, cmp_max_call, &paths::CMP_MAX);
1132 /// ```
1133 pub fn match_function_call<'tcx>(
1134     cx: &LateContext<'tcx>,
1135     expr: &'tcx Expr<'_>,
1136     path: &[&str],
1137 ) -> Option<&'tcx [Expr<'tcx>]> {
1138     if_chain! {
1139         if let ExprKind::Call(ref fun, ref args) = expr.kind;
1140         if let ExprKind::Path(ref qpath) = fun.kind;
1141         if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
1142         if match_def_path(cx, fun_def_id, path);
1143         then {
1144             return Some(&args)
1145         }
1146     };
1147     None
1148 }
1149
1150 pub fn match_def_path<'tcx>(cx: &LateContext<'tcx>, did: DefId, syms: &[&str]) -> bool {
1151     // We have to convert `syms` to `&[Symbol]` here because rustc's `match_def_path`
1152     // accepts only that. We should probably move to Symbols in Clippy as well.
1153     let syms = syms.iter().map(|p| Symbol::intern(p)).collect::<Vec<Symbol>>();
1154     cx.match_def_path(did, &syms)
1155 }
1156
1157 pub fn match_panic_call<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Option<&'tcx [Expr<'tcx>]> {
1158     match_function_call(cx, expr, &paths::BEGIN_PANIC)
1159         .or_else(|| match_function_call(cx, expr, &paths::BEGIN_PANIC_FMT))
1160         .or_else(|| match_function_call(cx, expr, &paths::PANIC_ANY))
1161         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC))
1162         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC_FMT))
1163         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC_STR))
1164 }
1165
1166 pub fn match_panic_def_id(cx: &LateContext<'_>, did: DefId) -> bool {
1167     match_def_path(cx, did, &paths::BEGIN_PANIC)
1168         || match_def_path(cx, did, &paths::BEGIN_PANIC_FMT)
1169         || match_def_path(cx, did, &paths::PANIC_ANY)
1170         || match_def_path(cx, did, &paths::PANICKING_PANIC)
1171         || match_def_path(cx, did, &paths::PANICKING_PANIC_FMT)
1172         || match_def_path(cx, did, &paths::PANICKING_PANIC_STR)
1173 }
1174
1175 /// Returns the list of condition expressions and the list of blocks in a
1176 /// sequence of `if/else`.
1177 /// E.g., this returns `([a, b], [c, d, e])` for the expression
1178 /// `if a { c } else if b { d } else { e }`.
1179 pub fn if_sequence<'tcx>(mut expr: &'tcx Expr<'tcx>) -> (Vec<&'tcx Expr<'tcx>>, Vec<&'tcx Block<'tcx>>) {
1180     let mut conds = Vec::new();
1181     let mut blocks: Vec<&Block<'_>> = Vec::new();
1182
1183     while let ExprKind::If(ref cond, ref then_expr, ref else_expr) = expr.kind {
1184         conds.push(&**cond);
1185         if let ExprKind::Block(ref block, _) = then_expr.kind {
1186             blocks.push(block);
1187         } else {
1188             panic!("ExprKind::If node is not an ExprKind::Block");
1189         }
1190
1191         if let Some(ref else_expr) = *else_expr {
1192             expr = else_expr;
1193         } else {
1194             break;
1195         }
1196     }
1197
1198     // final `else {..}`
1199     if !blocks.is_empty() {
1200         if let ExprKind::Block(ref block, _) = expr.kind {
1201             blocks.push(&**block);
1202         }
1203     }
1204
1205     (conds, blocks)
1206 }
1207
1208 /// This function returns true if the given expression is the `else` or `if else` part of an if
1209 /// statement
1210 pub fn parent_node_is_if_expr(expr: &Expr<'_>, cx: &LateContext<'_>) -> bool {
1211     let map = cx.tcx.hir();
1212     let parent_id = map.get_parent_node(expr.hir_id);
1213     let parent_node = map.get(parent_id);
1214     matches!(
1215         parent_node,
1216         Node::Expr(Expr {
1217             kind: ExprKind::If(_, _, _),
1218             ..
1219         })
1220     )
1221 }
1222
1223 // Finds the `#[must_use]` attribute, if any
1224 pub fn must_use_attr(attrs: &[Attribute]) -> Option<&Attribute> {
1225     attrs.iter().find(|a| a.has_name(sym::must_use))
1226 }
1227
1228 // check if expr is calling method or function with #[must_use] attribute
1229 pub fn is_must_use_func_call(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1230     let did = match expr.kind {
1231         ExprKind::Call(ref path, _) => if_chain! {
1232             if let ExprKind::Path(ref qpath) = path.kind;
1233             if let def::Res::Def(_, did) = cx.qpath_res(qpath, path.hir_id);
1234             then {
1235                 Some(did)
1236             } else {
1237                 None
1238             }
1239         },
1240         ExprKind::MethodCall(_, _, _, _) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1241         _ => None,
1242     };
1243
1244     did.map_or(false, |did| must_use_attr(&cx.tcx.get_attrs(did)).is_some())
1245 }
1246
1247 pub fn is_no_std_crate(cx: &LateContext<'_>) -> bool {
1248     cx.tcx.hir().attrs(hir::CRATE_HIR_ID).iter().any(|attr| {
1249         if let ast::AttrKind::Normal(ref attr, _) = attr.kind {
1250             attr.path == sym::no_std
1251         } else {
1252             false
1253         }
1254     })
1255 }
1256
1257 /// Check if parent of a hir node is a trait implementation block.
1258 /// For example, `f` in
1259 /// ```rust,ignore
1260 /// impl Trait for S {
1261 ///     fn f() {}
1262 /// }
1263 /// ```
1264 pub fn is_trait_impl_item(cx: &LateContext<'_>, hir_id: HirId) -> bool {
1265     if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
1266         matches!(item.kind, ItemKind::Impl(hir::Impl { of_trait: Some(_), .. }))
1267     } else {
1268         false
1269     }
1270 }
1271
1272 /// Check if it's even possible to satisfy the `where` clause for the item.
1273 ///
1274 /// `trivial_bounds` feature allows functions with unsatisfiable bounds, for example:
1275 ///
1276 /// ```ignore
1277 /// fn foo() where i32: Iterator {
1278 ///     for _ in 2i32 {}
1279 /// }
1280 /// ```
1281 pub fn fn_has_unsatisfiable_preds(cx: &LateContext<'_>, did: DefId) -> bool {
1282     use rustc_trait_selection::traits;
1283     let predicates = cx
1284         .tcx
1285         .predicates_of(did)
1286         .predicates
1287         .iter()
1288         .filter_map(|(p, _)| if p.is_global() { Some(*p) } else { None });
1289     traits::impossible_predicates(
1290         cx.tcx,
1291         traits::elaborate_predicates(cx.tcx, predicates)
1292             .map(|o| o.predicate)
1293             .collect::<Vec<_>>(),
1294     )
1295 }
1296
1297 /// Returns the `DefId` of the callee if the given expression is a function or method call.
1298 pub fn fn_def_id(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<DefId> {
1299     match &expr.kind {
1300         ExprKind::MethodCall(..) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1301         ExprKind::Call(
1302             Expr {
1303                 kind: ExprKind::Path(qpath),
1304                 hir_id: path_hir_id,
1305                 ..
1306             },
1307             ..,
1308         ) => cx.typeck_results().qpath_res(qpath, *path_hir_id).opt_def_id(),
1309         _ => None,
1310     }
1311 }
1312
1313 /// This function checks if any of the lints in the slice is enabled for the provided `HirId`.
1314 /// A lint counts as enabled with any of the levels: `Level::Forbid` | `Level::Deny` | `Level::Warn`
1315 ///
1316 /// ```ignore
1317 /// #[deny(clippy::YOUR_AWESOME_LINT)]
1318 /// println!("Hello, World!"); // <- Clippy code: run_lints(cx, &[YOUR_AWESOME_LINT], id) == true
1319 ///
1320 /// #[allow(clippy::YOUR_AWESOME_LINT)]
1321 /// println!("See you soon!"); // <- Clippy code: run_lints(cx, &[YOUR_AWESOME_LINT], id) == false
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 }