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