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