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