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