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