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