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