]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/utils/mod.rs
3d22732a6d4bacb11a2d237884349c879547f14b
[rust.git] / clippy_lints / src / utils / mod.rs
1 #[macro_use]
2 pub mod sym;
3
4 pub mod attrs;
5 pub mod author;
6 pub mod camel_case;
7 pub mod comparisons;
8 pub mod conf;
9 pub mod constants;
10 mod diagnostics;
11 pub mod higher;
12 mod hir_utils;
13 pub mod inspector;
14 pub mod internal_lints;
15 pub mod paths;
16 pub mod ptr;
17 pub mod sugg;
18 pub mod usage;
19 pub use self::attrs::*;
20 pub use self::diagnostics::*;
21 pub use self::hir_utils::{SpanlessEq, SpanlessHash};
22
23 use std::borrow::Cow;
24 use std::mem;
25
26 use if_chain::if_chain;
27 use matches::matches;
28 use rustc::hir;
29 use rustc::hir::def::{DefKind, Res};
30 use rustc::hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
31 use rustc::hir::intravisit::{NestedVisitorMap, Visitor};
32 use rustc::hir::Node;
33 use rustc::hir::*;
34 use rustc::lint::{LateContext, Level, Lint, LintContext};
35 use rustc::traits;
36 use rustc::ty::{
37     self,
38     layout::{self, IntegerExt},
39     subst::Kind,
40     Binder, Ty, TyCtxt,
41 };
42 use rustc_data_structures::sync::Lrc;
43 use rustc_errors::Applicability;
44 use syntax::ast::{self, LitKind};
45 use syntax::attr;
46 use syntax::ext::hygiene::ExpnFormat;
47 use syntax::source_map::{Span, DUMMY_SP};
48 use syntax::symbol::{keywords, Symbol};
49
50 use crate::reexport::*;
51
52 /// Returns `true` if the two spans come from differing expansions (i.e., one is
53 /// from a macro and one isn't).
54 pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
55     rhs.ctxt() != lhs.ctxt()
56 }
57
58 /// Returns `true` if the given `NodeId` is inside a constant context
59 ///
60 /// # Example
61 ///
62 /// ```rust,ignore
63 /// if in_constant(cx, expr.id) {
64 ///     // Do something
65 /// }
66 /// ```
67 pub fn in_constant(cx: &LateContext<'_, '_>, id: HirId) -> bool {
68     let parent_id = cx.tcx.hir().get_parent_item(id);
69     match cx.tcx.hir().get_by_hir_id(parent_id) {
70         Node::Item(&Item {
71             node: ItemKind::Const(..),
72             ..
73         })
74         | Node::TraitItem(&TraitItem {
75             node: TraitItemKind::Const(..),
76             ..
77         })
78         | Node::ImplItem(&ImplItem {
79             node: ImplItemKind::Const(..),
80             ..
81         })
82         | Node::AnonConst(_)
83         | Node::Item(&Item {
84             node: ItemKind::Static(..),
85             ..
86         }) => true,
87         Node::Item(&Item {
88             node: ItemKind::Fn(_, header, ..),
89             ..
90         }) => header.constness == Constness::Const,
91         _ => false,
92     }
93 }
94
95 /// Returns `true` if this `expn_info` was expanded by any macro or desugaring
96 pub fn in_macro_or_desugar(span: Span) -> bool {
97     span.ctxt().outer().expn_info().is_some()
98 }
99
100 /// Returns `true` if this `expn_info` was expanded by any macro.
101 pub fn in_macro(span: Span) -> bool {
102     if let Some(info) = span.ctxt().outer().expn_info() {
103         if let ExpnFormat::CompilerDesugaring(..) = info.format {
104             false
105         } else {
106             true
107         }
108     } else {
109         false
110     }
111 }
112 // If the snippet is empty, it's an attribute that was inserted during macro
113 // expansion and we want to ignore those, because they could come from external
114 // sources that the user has no control over.
115 // For some reason these attributes don't have any expansion info on them, so
116 // we have to check it this way until there is a better way.
117 pub fn is_present_in_source<'a, T: LintContext<'a>>(cx: &T, span: Span) -> bool {
118     if let Some(snippet) = snippet_opt(cx, span) {
119         if snippet.is_empty() {
120             return false;
121         }
122     }
123     true
124 }
125
126 /// Checks if type is struct, enum or union type with the given def path.
127 pub fn match_type(cx: &LateContext<'_, '_>, ty: Ty<'_>, path: &[&str]) -> bool {
128     match ty.sty {
129         ty::Adt(adt, _) => match_def_path(cx, adt.did, path),
130         _ => false,
131     }
132 }
133
134 /// Checks if the method call given in `expr` belongs to the given trait.
135 pub fn match_trait_method(cx: &LateContext<'_, '_>, expr: &Expr, path: &[&str]) -> bool {
136     let def_id = cx.tables.type_dependent_def_id(expr.hir_id).unwrap();
137     let trt_id = cx.tcx.trait_of_item(def_id);
138     if let Some(trt_id) = trt_id {
139         match_def_path(cx, trt_id, path)
140     } else {
141         false
142     }
143 }
144
145 /// Checks if an expression references a variable of the given name.
146 pub fn match_var(expr: &Expr, var: Name) -> bool {
147     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.node {
148         if path.segments.len() == 1 && path.segments[0].ident.name == var {
149             return true;
150         }
151     }
152     false
153 }
154
155 pub fn last_path_segment(path: &QPath) -> &PathSegment {
156     match *path {
157         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
158         QPath::TypeRelative(_, ref seg) => seg,
159     }
160 }
161
162 pub fn single_segment_path(path: &QPath) -> Option<&PathSegment> {
163     match *path {
164         QPath::Resolved(_, ref path) if path.segments.len() == 1 => Some(&path.segments[0]),
165         QPath::Resolved(..) => None,
166         QPath::TypeRelative(_, ref seg) => Some(seg),
167     }
168 }
169
170 /// Matches a `QPath` against a slice of segment string literals.
171 ///
172 /// There is also `match_path` if you are dealing with a `rustc::hir::Path` instead of a
173 /// `rustc::hir::QPath`.
174 ///
175 /// # Examples
176 /// ```rust,ignore
177 /// match_qpath(path, &["std", "rt", "begin_unwind"])
178 /// ```
179 pub fn match_qpath(path: &QPath, segments: &[&str]) -> bool {
180     match *path {
181         QPath::Resolved(_, ref path) => match_path(path, segments),
182         QPath::TypeRelative(ref ty, ref segment) => match ty.node {
183             TyKind::Path(ref inner_path) => {
184                 !segments.is_empty()
185                     && match_qpath(inner_path, &segments[..(segments.len() - 1)])
186                     && segment.ident.name.as_str() == segments[segments.len() - 1]
187             },
188             _ => false,
189         },
190     }
191 }
192
193 /// Matches a `Path` against a slice of segment string literals.
194 ///
195 /// There is also `match_qpath` if you are dealing with a `rustc::hir::QPath` instead of a
196 /// `rustc::hir::Path`.
197 ///
198 /// # Examples
199 ///
200 /// ```rust,ignore
201 /// if match_path(&trait_ref.path, &paths::HASH) {
202 ///     // This is the `std::hash::Hash` trait.
203 /// }
204 ///
205 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
206 ///     // This is a `rustc::lint::Lint`.
207 /// }
208 /// ```
209 pub fn match_path(path: &Path, segments: &[&str]) -> bool {
210     path.segments
211         .iter()
212         .rev()
213         .zip(segments.iter().rev())
214         .all(|(a, b)| a.ident.name.as_str() == *b)
215 }
216
217 /// Matches a `Path` against a slice of segment string literals, e.g.
218 ///
219 /// # Examples
220 /// ```rust,ignore
221 /// match_qpath(path, &["std", "rt", "begin_unwind"])
222 /// ```
223 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
224     path.segments
225         .iter()
226         .rev()
227         .zip(segments.iter().rev())
228         .all(|(a, b)| a.ident.name.as_str() == *b)
229 }
230
231 /// Gets the definition associated to a path.
232 pub fn path_to_res(cx: &LateContext<'_, '_>, path: &[&str]) -> Option<(def::Res)> {
233     let crates = cx.tcx.crates();
234     let krate = crates
235         .iter()
236         .find(|&&krate| cx.tcx.crate_name(krate).as_str() == path[0]);
237     if let Some(krate) = krate {
238         let krate = DefId {
239             krate: *krate,
240             index: CRATE_DEF_INDEX,
241         };
242         let mut items = cx.tcx.item_children(krate);
243         let mut path_it = path.iter().skip(1).peekable();
244
245         loop {
246             let segment = match path_it.next() {
247                 Some(segment) => segment,
248                 None => return None,
249             };
250
251             for item in mem::replace(&mut items, Lrc::new(vec![])).iter() {
252                 if item.ident.name.as_str() == *segment {
253                     if path_it.peek().is_none() {
254                         return Some(item.res);
255                     }
256
257                     items = cx.tcx.item_children(item.res.def_id());
258                     break;
259                 }
260             }
261         }
262     } else {
263         None
264     }
265 }
266
267 /// Convenience function to get the `DefId` of a trait by path.
268 pub fn get_trait_def_id(cx: &LateContext<'_, '_>, path: &[&str]) -> Option<DefId> {
269     let res = match path_to_res(cx, path) {
270         Some(res) => res,
271         None => return None,
272     };
273
274     match res {
275         def::Res::Def(DefKind::Trait, trait_id) => Some(trait_id),
276         _ => None,
277     }
278 }
279
280 /// Checks whether a type implements a trait.
281 /// See also `get_trait_def_id`.
282 pub fn implements_trait<'a, 'tcx>(
283     cx: &LateContext<'a, 'tcx>,
284     ty: Ty<'tcx>,
285     trait_id: DefId,
286     ty_params: &[Kind<'tcx>],
287 ) -> bool {
288     let ty = cx.tcx.erase_regions(&ty);
289     let obligation = cx.tcx.predicate_for_trait_def(
290         cx.param_env,
291         traits::ObligationCause::dummy(),
292         trait_id,
293         0,
294         ty,
295         ty_params,
296     );
297     cx.tcx
298         .infer_ctxt()
299         .enter(|infcx| infcx.predicate_must_hold_modulo_regions(&obligation))
300 }
301
302 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
303 ///
304 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
305 ///
306 /// ```rust
307 /// struct Point(isize, isize);
308 ///
309 /// impl std::ops::Add for Point {
310 ///     type Output = Self;
311 ///
312 ///     fn add(self, other: Self) -> Self {
313 ///         Point(0, 0)
314 ///     }
315 /// }
316 /// ```
317 pub fn trait_ref_of_method(cx: &LateContext<'_, '_>, hir_id: HirId) -> Option<TraitRef> {
318     // Get the implemented trait for the current function
319     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
320     if_chain! {
321         if parent_impl != hir::CRATE_HIR_ID;
322         if let hir::Node::Item(item) = cx.tcx.hir().get_by_hir_id(parent_impl);
323         if let hir::ItemKind::Impl(_, _, _, _, trait_ref, _, _) = &item.node;
324         then { return trait_ref.clone(); }
325     }
326     None
327 }
328
329 /// Checks whether this type implements `Drop`.
330 pub fn has_drop<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
331     match ty.ty_adt_def() {
332         Some(def) => def.has_dtor(cx.tcx),
333         _ => false,
334     }
335 }
336
337 /// Resolves the definition of a node from its `HirId`.
338 pub fn resolve_node(cx: &LateContext<'_, '_>, qpath: &QPath, id: HirId) -> Res {
339     cx.tables.qpath_res(qpath, id)
340 }
341
342 /// Returns the method names and argument list of nested method call expressions that make up
343 /// `expr`.
344 pub fn method_calls<'a>(expr: &'a Expr, max_depth: usize) -> (Vec<Symbol>, Vec<&'a [Expr]>) {
345     let mut method_names = Vec::with_capacity(max_depth);
346     let mut arg_lists = Vec::with_capacity(max_depth);
347
348     let mut current = expr;
349     for _ in 0..max_depth {
350         if let ExprKind::MethodCall(path, _, args) = &current.node {
351             if args.iter().any(|e| in_macro_or_desugar(e.span)) {
352                 break;
353             }
354             method_names.push(path.ident.name);
355             arg_lists.push(&**args);
356             current = &args[0];
357         } else {
358             break;
359         }
360     }
361
362     (method_names, arg_lists)
363 }
364
365 /// Matches an `Expr` against a chain of methods, and return the matched `Expr`s.
366 ///
367 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
368 /// `matched_method_chain(expr, &["bar", "baz"])` will return a `Vec`
369 /// containing the `Expr`s for
370 /// `.bar()` and `.baz()`
371 pub fn method_chain_args<'a>(expr: &'a Expr, methods: &[&str]) -> Option<Vec<&'a [Expr]>> {
372     let mut current = expr;
373     let mut matched = Vec::with_capacity(methods.len());
374     for method_name in methods.iter().rev() {
375         // method chains are stored last -> first
376         if let ExprKind::MethodCall(ref path, _, ref args) = current.node {
377             if path.ident.name.as_str() == *method_name {
378                 if args.iter().any(|e| in_macro_or_desugar(e.span)) {
379                     return None;
380                 }
381                 matched.push(&**args); // build up `matched` backwards
382                 current = &args[0] // go to parent expression
383             } else {
384                 return None;
385             }
386         } else {
387             return None;
388         }
389     }
390     // Reverse `matched` so that it is in the same order as `methods`.
391     matched.reverse();
392     Some(matched)
393 }
394
395 /// Returns `true` if the provided `def_id` is an entrypoint to a program.
396 pub fn is_entrypoint_fn(cx: &LateContext<'_, '_>, def_id: DefId) -> bool {
397     if let Some((entry_fn_def_id, _)) = cx.tcx.entry_fn(LOCAL_CRATE) {
398         return def_id == entry_fn_def_id;
399     }
400     false
401 }
402
403 /// Gets the name of the item the expression is in, if available.
404 pub fn get_item_name(cx: &LateContext<'_, '_>, expr: &Expr) -> Option<Name> {
405     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
406     match cx.tcx.hir().find_by_hir_id(parent_id) {
407         Some(Node::Item(&Item { ref ident, .. })) => Some(ident.name),
408         Some(Node::TraitItem(&TraitItem { ident, .. })) | Some(Node::ImplItem(&ImplItem { ident, .. })) => {
409             Some(ident.name)
410         },
411         _ => None,
412     }
413 }
414
415 /// Gets the name of a `Pat`, if any.
416 pub fn get_pat_name(pat: &Pat) -> Option<Name> {
417     match pat.node {
418         PatKind::Binding(.., ref spname, _) => Some(spname.name),
419         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
420         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
421         _ => None,
422     }
423 }
424
425 struct ContainsName {
426     name: Name,
427     result: bool,
428 }
429
430 impl<'tcx> Visitor<'tcx> for ContainsName {
431     fn visit_name(&mut self, _: Span, name: Name) {
432         if self.name == name {
433             self.result = true;
434         }
435     }
436     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
437         NestedVisitorMap::None
438     }
439 }
440
441 /// Checks if an `Expr` contains a certain name.
442 pub fn contains_name(name: Name, expr: &Expr) -> bool {
443     let mut cn = ContainsName { name, result: false };
444     cn.visit_expr(expr);
445     cn.result
446 }
447
448 /// Converts a span to a code snippet if available, otherwise use default.
449 ///
450 /// This is useful if you want to provide suggestions for your lint or more generally, if you want
451 /// to convert a given `Span` to a `str`.
452 ///
453 /// # Example
454 /// ```rust,ignore
455 /// snippet(cx, expr.span, "..")
456 /// ```
457 pub fn snippet<'a, 'b, T: LintContext<'b>>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
458     snippet_opt(cx, span).map_or_else(|| Cow::Borrowed(default), From::from)
459 }
460
461 /// Same as `snippet`, but it adapts the applicability level by following rules:
462 ///
463 /// - Applicability level `Unspecified` will never be changed.
464 /// - If the span is inside a macro, change the applicability level to `MaybeIncorrect`.
465 /// - If the default value is used and the applicability level is `MachineApplicable`, change it to
466 /// `HasPlaceholders`
467 pub fn snippet_with_applicability<'a, 'b, T: LintContext<'b>>(
468     cx: &T,
469     span: Span,
470     default: &'a str,
471     applicability: &mut Applicability,
472 ) -> Cow<'a, str> {
473     if *applicability != Applicability::Unspecified && in_macro_or_desugar(span) {
474         *applicability = Applicability::MaybeIncorrect;
475     }
476     snippet_opt(cx, span).map_or_else(
477         || {
478             if *applicability == Applicability::MachineApplicable {
479                 *applicability = Applicability::HasPlaceholders;
480             }
481             Cow::Borrowed(default)
482         },
483         From::from,
484     )
485 }
486
487 /// Same as `snippet`, but should only be used when it's clear that the input span is
488 /// not a macro argument.
489 pub fn snippet_with_macro_callsite<'a, 'b, T: LintContext<'b>>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
490     snippet(cx, span.source_callsite(), default)
491 }
492
493 /// Converts a span to a code snippet. Returns `None` if not available.
494 pub fn snippet_opt<'a, T: LintContext<'a>>(cx: &T, span: Span) -> Option<String> {
495     cx.sess().source_map().span_to_snippet(span).ok()
496 }
497
498 /// Converts a span (from a block) to a code snippet if available, otherwise use
499 /// default.
500 /// This trims the code of indentation, except for the first line. Use it for
501 /// blocks or block-like
502 /// things which need to be printed as such.
503 ///
504 /// # Example
505 /// ```rust,ignore
506 /// snippet_block(cx, expr.span, "..")
507 /// ```
508 pub fn snippet_block<'a, 'b, T: LintContext<'b>>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
509     let snip = snippet(cx, span, default);
510     trim_multiline(snip, true)
511 }
512
513 /// Same as `snippet_block`, but adapts the applicability level by the rules of
514 /// `snippet_with_applicabiliy`.
515 pub fn snippet_block_with_applicability<'a, 'b, T: LintContext<'b>>(
516     cx: &T,
517     span: Span,
518     default: &'a str,
519     applicability: &mut Applicability,
520 ) -> Cow<'a, str> {
521     let snip = snippet_with_applicability(cx, span, default, applicability);
522     trim_multiline(snip, true)
523 }
524
525 /// Returns a new Span that covers the full last line of the given Span
526 pub fn last_line_of_span<'a, T: LintContext<'a>>(cx: &T, span: Span) -> Span {
527     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
528     let line_no = source_map_and_line.line;
529     let line_start = &source_map_and_line.sf.lines[line_no];
530     Span::new(*line_start, span.hi(), span.ctxt())
531 }
532
533 /// Like `snippet_block`, but add braces if the expr is not an `ExprKind::Block`.
534 /// Also takes an `Option<String>` which can be put inside the braces.
535 pub fn expr_block<'a, 'b, T: LintContext<'b>>(
536     cx: &T,
537     expr: &Expr,
538     option: Option<String>,
539     default: &'a str,
540 ) -> Cow<'a, str> {
541     let code = snippet_block(cx, expr.span, default);
542     let string = option.unwrap_or_default();
543     if in_macro_or_desugar(expr.span) {
544         Cow::Owned(format!("{{ {} }}", snippet_with_macro_callsite(cx, expr.span, default)))
545     } else if let ExprKind::Block(_, _) = expr.node {
546         Cow::Owned(format!("{}{}", code, string))
547     } else if string.is_empty() {
548         Cow::Owned(format!("{{ {} }}", code))
549     } else {
550         Cow::Owned(format!("{{\n{};\n{}\n}}", code, string))
551     }
552 }
553
554 /// Trim indentation from a multiline string with possibility of ignoring the
555 /// first line.
556 pub fn trim_multiline(s: Cow<'_, str>, ignore_first: bool) -> Cow<'_, str> {
557     let s_space = trim_multiline_inner(s, ignore_first, ' ');
558     let s_tab = trim_multiline_inner(s_space, ignore_first, '\t');
559     trim_multiline_inner(s_tab, ignore_first, ' ')
560 }
561
562 fn trim_multiline_inner(s: Cow<'_, str>, ignore_first: bool, ch: char) -> Cow<'_, str> {
563     let x = s
564         .lines()
565         .skip(ignore_first as usize)
566         .filter_map(|l| {
567             if l.is_empty() {
568                 None
569             } else {
570                 // ignore empty lines
571                 Some(l.char_indices().find(|&(_, x)| x != ch).unwrap_or((l.len(), ch)).0)
572             }
573         })
574         .min()
575         .unwrap_or(0);
576     if x > 0 {
577         Cow::Owned(
578             s.lines()
579                 .enumerate()
580                 .map(|(i, l)| {
581                     if (ignore_first && i == 0) || l.is_empty() {
582                         l
583                     } else {
584                         l.split_at(x).1
585                     }
586                 })
587                 .collect::<Vec<_>>()
588                 .join("\n"),
589         )
590     } else {
591         s
592     }
593 }
594
595 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
596 pub fn get_parent_expr<'c>(cx: &'c LateContext<'_, '_>, e: &Expr) -> Option<&'c Expr> {
597     let map = &cx.tcx.hir();
598     let hir_id = e.hir_id;
599     let parent_id = map.get_parent_node_by_hir_id(hir_id);
600     if hir_id == parent_id {
601         return None;
602     }
603     map.find_by_hir_id(parent_id).and_then(|node| {
604         if let Node::Expr(parent) = node {
605             Some(parent)
606         } else {
607             None
608         }
609     })
610 }
611
612 pub fn get_enclosing_block<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, hir_id: HirId) -> Option<&'tcx Block> {
613     let map = &cx.tcx.hir();
614     let enclosing_node = map
615         .get_enclosing_scope(hir_id)
616         .and_then(|enclosing_id| map.find_by_hir_id(enclosing_id));
617     if let Some(node) = enclosing_node {
618         match node {
619             Node::Block(block) => Some(block),
620             Node::Item(&Item {
621                 node: ItemKind::Fn(_, _, _, eid),
622                 ..
623             })
624             | Node::ImplItem(&ImplItem {
625                 node: ImplItemKind::Method(_, eid),
626                 ..
627             }) => match cx.tcx.hir().body(eid).value.node {
628                 ExprKind::Block(ref block, _) => Some(block),
629                 _ => None,
630             },
631             _ => None,
632         }
633     } else {
634         None
635     }
636 }
637
638 /// Returns the base type for HIR references and pointers.
639 pub fn walk_ptrs_hir_ty(ty: &hir::Ty) -> &hir::Ty {
640     match ty.node {
641         TyKind::Ptr(ref mut_ty) | TyKind::Rptr(_, ref mut_ty) => walk_ptrs_hir_ty(&mut_ty.ty),
642         _ => ty,
643     }
644 }
645
646 /// Returns the base type for references and raw pointers.
647 pub fn walk_ptrs_ty(ty: Ty<'_>) -> Ty<'_> {
648     match ty.sty {
649         ty::Ref(_, ty, _) => walk_ptrs_ty(ty),
650         _ => ty,
651     }
652 }
653
654 /// Returns the base type for references and raw pointers, and count reference
655 /// depth.
656 pub fn walk_ptrs_ty_depth(ty: Ty<'_>) -> (Ty<'_>, usize) {
657     fn inner(ty: Ty<'_>, depth: usize) -> (Ty<'_>, usize) {
658         match ty.sty {
659             ty::Ref(_, ty, _) => inner(ty, depth + 1),
660             _ => (ty, depth),
661         }
662     }
663     inner(ty, 0)
664 }
665
666 /// Checks whether the given expression is a constant literal of the given value.
667 pub fn is_integer_literal(expr: &Expr, value: u128) -> bool {
668     // FIXME: use constant folding
669     if let ExprKind::Lit(ref spanned) = expr.node {
670         if let LitKind::Int(v, _) = spanned.node {
671             return v == value;
672         }
673     }
674     false
675 }
676
677 /// Returns `true` if the given `Expr` has been coerced before.
678 ///
679 /// Examples of coercions can be found in the Nomicon at
680 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
681 ///
682 /// See `rustc::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
683 /// information on adjustments and coercions.
684 pub fn is_adjusted(cx: &LateContext<'_, '_>, e: &Expr) -> bool {
685     cx.tables.adjustments().get(e.hir_id).is_some()
686 }
687
688 /// Returns the pre-expansion span if is this comes from an expansion of the
689 /// macro `name`.
690 /// See also `is_direct_expn_of`.
691 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
692     loop {
693         let span_name_span = span
694             .ctxt()
695             .outer()
696             .expn_info()
697             .map(|ei| (ei.format.name(), ei.call_site));
698
699         match span_name_span {
700             Some((mac_name, new_span)) if mac_name.as_str() == name => return Some(new_span),
701             None => return None,
702             Some((_, new_span)) => span = new_span,
703         }
704     }
705 }
706
707 /// Returns the pre-expansion span if the span directly comes from an expansion
708 /// of the macro `name`.
709 /// The difference with `is_expn_of` is that in
710 /// ```rust,ignore
711 /// foo!(bar!(42));
712 /// ```
713 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
714 /// `bar!` by
715 /// `is_direct_expn_of`.
716 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
717     let span_name_span = span
718         .ctxt()
719         .outer()
720         .expn_info()
721         .map(|ei| (ei.format.name(), ei.call_site));
722
723     match span_name_span {
724         Some((mac_name, new_span)) if mac_name.as_str() == name => Some(new_span),
725         _ => None,
726     }
727 }
728
729 /// Convenience function to get the return type of a function.
730 pub fn return_ty<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
731     let fn_def_id = cx.tcx.hir().local_def_id_from_hir_id(fn_item);
732     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
733     cx.tcx.erase_late_bound_regions(&ret_ty)
734 }
735
736 /// Checks if two types are the same.
737 ///
738 /// This discards any lifetime annotations, too.
739 //
740 // FIXME: this works correctly for lifetimes bounds (`for <'a> Foo<'a>` ==
741 // `for <'b> Foo<'b>`, but not for type parameters).
742 pub fn same_tys<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, a: Ty<'tcx>, b: Ty<'tcx>) -> bool {
743     let a = cx.tcx.erase_late_bound_regions(&Binder::bind(a));
744     let b = cx.tcx.erase_late_bound_regions(&Binder::bind(b));
745     cx.tcx
746         .infer_ctxt()
747         .enter(|infcx| infcx.can_eq(cx.param_env, a, b).is_ok())
748 }
749
750 /// Returns `true` if the given type is an `unsafe` function.
751 pub fn type_is_unsafe_function<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
752     match ty.sty {
753         ty::FnDef(..) | ty::FnPtr(_) => ty.fn_sig(cx.tcx).unsafety() == Unsafety::Unsafe,
754         _ => false,
755     }
756 }
757
758 pub fn is_copy<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
759     ty.is_copy_modulo_regions(cx.tcx.global_tcx(), cx.param_env, DUMMY_SP)
760 }
761
762 /// Checks if an expression is constructing a tuple-like enum variant or struct
763 pub fn is_ctor_function(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
764     if let ExprKind::Call(ref fun, _) = expr.node {
765         if let ExprKind::Path(ref qp) = fun.node {
766             return matches!(
767                 cx.tables.qpath_res(qp, fun.hir_id),
768                 def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(..), _)
769             );
770         }
771     }
772     false
773 }
774
775 /// Returns `true` if a pattern is refutable.
776 pub fn is_refutable(cx: &LateContext<'_, '_>, pat: &Pat) -> bool {
777     fn is_enum_variant(cx: &LateContext<'_, '_>, qpath: &QPath, id: HirId) -> bool {
778         matches!(
779             cx.tables.qpath_res(qpath, id),
780             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
781         )
782     }
783
784     fn are_refutable<'a, I: Iterator<Item = &'a Pat>>(cx: &LateContext<'_, '_>, mut i: I) -> bool {
785         i.any(|pat| is_refutable(cx, pat))
786     }
787
788     match pat.node {
789         PatKind::Binding(..) | PatKind::Wild => false,
790         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
791         PatKind::Lit(..) | PatKind::Range(..) => true,
792         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
793         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
794         PatKind::Struct(ref qpath, ref fields, _) => {
795             if is_enum_variant(cx, qpath, pat.hir_id) {
796                 true
797             } else {
798                 are_refutable(cx, fields.iter().map(|field| &*field.node.pat))
799             }
800         },
801         PatKind::TupleStruct(ref qpath, ref pats, _) => {
802             if is_enum_variant(cx, qpath, pat.hir_id) {
803                 true
804             } else {
805                 are_refutable(cx, pats.iter().map(|pat| &**pat))
806             }
807         },
808         PatKind::Slice(ref head, ref middle, ref tail) => {
809             are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat))
810         },
811     }
812 }
813
814 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
815 /// implementations have.
816 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
817     attr::contains_name(attrs, sym!(automatically_derived))
818 }
819
820 /// Remove blocks around an expression.
821 ///
822 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
823 /// themselves.
824 pub fn remove_blocks(expr: &Expr) -> &Expr {
825     if let ExprKind::Block(ref block, _) = expr.node {
826         if block.stmts.is_empty() {
827             if let Some(ref expr) = block.expr {
828                 remove_blocks(expr)
829             } else {
830                 expr
831             }
832         } else {
833             expr
834         }
835     } else {
836         expr
837     }
838 }
839
840 pub fn is_self(slf: &Arg) -> bool {
841     if let PatKind::Binding(.., name, _) = slf.pat.node {
842         name.name == keywords::SelfLower.name()
843     } else {
844         false
845     }
846 }
847
848 pub fn is_self_ty(slf: &hir::Ty) -> bool {
849     if_chain! {
850         if let TyKind::Path(ref qp) = slf.node;
851         if let QPath::Resolved(None, ref path) = *qp;
852         if let Res::SelfTy(..) = path.res;
853         then {
854             return true
855         }
856     }
857     false
858 }
859
860 pub fn iter_input_pats<'tcx>(decl: &FnDecl, body: &'tcx Body) -> impl Iterator<Item = &'tcx Arg> {
861     (0..decl.inputs.len()).map(move |i| &body.arguments[i])
862 }
863
864 /// Checks if a given expression is a match expression expanded from the `?`
865 /// operator or the `try` macro.
866 pub fn is_try(expr: &Expr) -> Option<&Expr> {
867     fn is_ok(arm: &Arm) -> bool {
868         if_chain! {
869             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pats[0].node;
870             if match_qpath(path, &paths::RESULT_OK[1..]);
871             if let PatKind::Binding(_, hir_id, _, None) = pat[0].node;
872             if let ExprKind::Path(QPath::Resolved(None, ref path)) = arm.body.node;
873             if let Res::Local(lid) = path.res;
874             if lid == hir_id;
875             then {
876                 return true;
877             }
878         }
879         false
880     }
881
882     fn is_err(arm: &Arm) -> bool {
883         if let PatKind::TupleStruct(ref path, _, _) = arm.pats[0].node {
884             match_qpath(path, &paths::RESULT_ERR[1..])
885         } else {
886             false
887         }
888     }
889
890     if let ExprKind::Match(_, ref arms, ref source) = expr.node {
891         // desugared from a `?` operator
892         if let MatchSource::TryDesugar = *source {
893             return Some(expr);
894         }
895
896         if_chain! {
897             if arms.len() == 2;
898             if arms[0].pats.len() == 1 && arms[0].guard.is_none();
899             if arms[1].pats.len() == 1 && arms[1].guard.is_none();
900             if (is_ok(&arms[0]) && is_err(&arms[1])) ||
901                 (is_ok(&arms[1]) && is_err(&arms[0]));
902             then {
903                 return Some(expr);
904             }
905         }
906     }
907
908     None
909 }
910
911 /// Returns `true` if the lint is allowed in the current context
912 ///
913 /// Useful for skipping long running code when it's unnecessary
914 pub fn is_allowed(cx: &LateContext<'_, '_>, lint: &'static Lint, id: HirId) -> bool {
915     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
916 }
917
918 pub fn get_arg_name(pat: &Pat) -> Option<ast::Name> {
919     match pat.node {
920         PatKind::Binding(.., ident, None) => Some(ident.name),
921         PatKind::Ref(ref subpat, _) => get_arg_name(subpat),
922         _ => None,
923     }
924 }
925
926 pub fn int_bits(tcx: TyCtxt<'_, '_, '_>, ity: ast::IntTy) -> u64 {
927     layout::Integer::from_attr(&tcx, attr::IntType::SignedInt(ity))
928         .size()
929         .bits()
930 }
931
932 #[allow(clippy::cast_possible_wrap)]
933 /// Turn a constant int byte representation into an i128
934 pub fn sext(tcx: TyCtxt<'_, '_, '_>, u: u128, ity: ast::IntTy) -> i128 {
935     let amt = 128 - int_bits(tcx, ity);
936     ((u as i128) << amt) >> amt
937 }
938
939 #[allow(clippy::cast_sign_loss)]
940 /// clip unused bytes
941 pub fn unsext(tcx: TyCtxt<'_, '_, '_>, u: i128, ity: ast::IntTy) -> u128 {
942     let amt = 128 - int_bits(tcx, ity);
943     ((u as u128) << amt) >> amt
944 }
945
946 /// clip unused bytes
947 pub fn clip(tcx: TyCtxt<'_, '_, '_>, u: u128, ity: ast::UintTy) -> u128 {
948     let bits = layout::Integer::from_attr(&tcx, attr::IntType::UnsignedInt(ity))
949         .size()
950         .bits();
951     let amt = 128 - bits;
952     (u << amt) >> amt
953 }
954
955 /// Removes block comments from the given `Vec` of lines.
956 ///
957 /// # Examples
958 ///
959 /// ```rust,ignore
960 /// without_block_comments(vec!["/*", "foo", "*/"]);
961 /// // => vec![]
962 ///
963 /// without_block_comments(vec!["bar", "/*", "foo", "*/"]);
964 /// // => vec!["bar"]
965 /// ```
966 pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str> {
967     let mut without = vec![];
968
969     let mut nest_level = 0;
970
971     for line in lines {
972         if line.contains("/*") {
973             nest_level += 1;
974             continue;
975         } else if line.contains("*/") {
976             nest_level -= 1;
977             continue;
978         }
979
980         if nest_level == 0 {
981             without.push(line);
982         }
983     }
984
985     without
986 }
987
988 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_, '_, '_>, node: HirId) -> bool {
989     let map = &tcx.hir();
990     let mut prev_enclosing_node = None;
991     let mut enclosing_node = node;
992     while Some(enclosing_node) != prev_enclosing_node {
993         if is_automatically_derived(map.attrs_by_hir_id(enclosing_node)) {
994             return true;
995         }
996         prev_enclosing_node = Some(enclosing_node);
997         enclosing_node = map.get_parent_item(enclosing_node);
998     }
999     false
1000 }
1001
1002 /// Returns true if ty has `iter` or `iter_mut` methods
1003 pub fn has_iter_method(cx: &LateContext<'_, '_>, probably_ref_ty: Ty<'_>) -> Option<&'static str> {
1004     // FIXME: instead of this hard-coded list, we should check if `<adt>::iter`
1005     // exists and has the desired signature. Unfortunately FnCtxt is not exported
1006     // so we can't use its `lookup_method` method.
1007     let into_iter_collections: [&[&str]; 13] = [
1008         &paths::VEC,
1009         &paths::OPTION,
1010         &paths::RESULT,
1011         &paths::BTREESET,
1012         &paths::BTREEMAP,
1013         &paths::VEC_DEQUE,
1014         &paths::LINKED_LIST,
1015         &paths::BINARY_HEAP,
1016         &paths::HASHSET,
1017         &paths::HASHMAP,
1018         &paths::PATH_BUF,
1019         &paths::PATH,
1020         &paths::RECEIVER,
1021     ];
1022
1023     let ty_to_check = match probably_ref_ty.sty {
1024         ty::Ref(_, ty_to_check, _) => ty_to_check,
1025         _ => probably_ref_ty,
1026     };
1027
1028     let def_id = match ty_to_check.sty {
1029         ty::Array(..) => return Some("array"),
1030         ty::Slice(..) => return Some("slice"),
1031         ty::Adt(adt, _) => adt.did,
1032         _ => return None,
1033     };
1034
1035     for path in &into_iter_collections {
1036         if match_def_path(cx, def_id, path) {
1037             return Some(*path.last().unwrap());
1038         }
1039     }
1040     None
1041 }
1042
1043 #[cfg(test)]
1044 mod test {
1045     use super::{trim_multiline, without_block_comments};
1046
1047     #[test]
1048     fn test_trim_multiline_single_line() {
1049         assert_eq!("", trim_multiline("".into(), false));
1050         assert_eq!("...", trim_multiline("...".into(), false));
1051         assert_eq!("...", trim_multiline("    ...".into(), false));
1052         assert_eq!("...", trim_multiline("\t...".into(), false));
1053         assert_eq!("...", trim_multiline("\t\t...".into(), false));
1054     }
1055
1056     #[test]
1057     #[rustfmt::skip]
1058     fn test_trim_multiline_block() {
1059         assert_eq!("\
1060     if x {
1061         y
1062     } else {
1063         z
1064     }", trim_multiline("    if x {
1065             y
1066         } else {
1067             z
1068         }".into(), false));
1069         assert_eq!("\
1070     if x {
1071     \ty
1072     } else {
1073     \tz
1074     }", trim_multiline("    if x {
1075         \ty
1076         } else {
1077         \tz
1078         }".into(), false));
1079     }
1080
1081     #[test]
1082     #[rustfmt::skip]
1083     fn test_trim_multiline_empty_line() {
1084         assert_eq!("\
1085     if x {
1086         y
1087
1088     } else {
1089         z
1090     }", trim_multiline("    if x {
1091             y
1092
1093         } else {
1094             z
1095         }".into(), false));
1096     }
1097
1098     #[test]
1099     fn test_without_block_comments_lines_without_block_comments() {
1100         let result = without_block_comments(vec!["/*", "", "*/"]);
1101         println!("result: {:?}", result);
1102         assert!(result.is_empty());
1103
1104         let result = without_block_comments(vec!["", "/*", "", "*/", "#[crate_type = \"lib\"]", "/*", "", "*/", ""]);
1105         assert_eq!(result, vec!["", "#[crate_type = \"lib\"]", ""]);
1106
1107         let result = without_block_comments(vec!["/* rust", "", "*/"]);
1108         assert!(result.is_empty());
1109
1110         let result = without_block_comments(vec!["/* one-line comment */"]);
1111         assert!(result.is_empty());
1112
1113         let result = without_block_comments(vec!["/* nested", "/* multi-line", "comment", "*/", "test", "*/"]);
1114         assert!(result.is_empty());
1115
1116         let result = without_block_comments(vec!["/* nested /* inline /* comment */ test */ */"]);
1117         assert!(result.is_empty());
1118
1119         let result = without_block_comments(vec!["foo", "bar", "baz"]);
1120         assert_eq!(result, vec!["foo", "bar", "baz"]);
1121     }
1122 }
1123
1124 pub fn match_def_path<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, did: DefId, syms: &[&str]) -> bool {
1125     cx.match_def_path(did, &syms)
1126 }