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