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