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