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