]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/utils/mod.rs
Also return the method spans in utils::method_calls
[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_errors::Applicability;
43 use smallvec::SmallVec;
44 use syntax::ast::{self, LitKind};
45 use syntax::attr;
46 use syntax::ext::hygiene::ExpnKind;
47 use syntax::source_map::{Span, DUMMY_SP};
48 use syntax::symbol::{kw, 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(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 `span` was expanded by any macro.
96 pub fn in_macro(span: Span) -> bool {
97     if span.from_expansion() {
98         if let ExpnKind::Desugaring(..) = span.ctxt().outer_expn_data().kind {
99             false
100         } else {
101             true
102         }
103     } else {
104         false
105     }
106 }
107 // If the snippet is empty, it's an attribute that was inserted during macro
108 // expansion and we want to ignore those, because they could come from external
109 // sources that the user has no control over.
110 // For some reason these attributes don't have any expansion info on them, so
111 // we have to check it this way until there is a better way.
112 pub fn is_present_in_source<T: LintContext>(cx: &T, span: Span) -> bool {
113     if let Some(snippet) = snippet_opt(cx, span) {
114         if snippet.is_empty() {
115             return false;
116         }
117     }
118     true
119 }
120
121 /// Checks if type is struct, enum or union type with the given def path.
122 pub fn match_type(cx: &LateContext<'_, '_>, ty: Ty<'_>, path: &[&str]) -> bool {
123     match ty.sty {
124         ty::Adt(adt, _) => match_def_path(cx, adt.did, path),
125         _ => false,
126     }
127 }
128
129 /// Checks if the method call given in `expr` belongs to the given trait.
130 pub fn match_trait_method(cx: &LateContext<'_, '_>, expr: &Expr, path: &[&str]) -> bool {
131     let def_id = cx.tables.type_dependent_def_id(expr.hir_id).unwrap();
132     let trt_id = cx.tcx.trait_of_item(def_id);
133     if let Some(trt_id) = trt_id {
134         match_def_path(cx, trt_id, path)
135     } else {
136         false
137     }
138 }
139
140 /// Checks if an expression references a variable of the given name.
141 pub fn match_var(expr: &Expr, var: Name) -> bool {
142     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.node {
143         if path.segments.len() == 1 && path.segments[0].ident.name == var {
144             return true;
145         }
146     }
147     false
148 }
149
150 pub fn last_path_segment(path: &QPath) -> &PathSegment {
151     match *path {
152         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
153         QPath::TypeRelative(_, ref seg) => seg,
154     }
155 }
156
157 pub fn single_segment_path(path: &QPath) -> Option<&PathSegment> {
158     match *path {
159         QPath::Resolved(_, ref path) if path.segments.len() == 1 => Some(&path.segments[0]),
160         QPath::Resolved(..) => None,
161         QPath::TypeRelative(_, ref seg) => Some(seg),
162     }
163 }
164
165 /// Matches a `QPath` against a slice of segment string literals.
166 ///
167 /// There is also `match_path` if you are dealing with a `rustc::hir::Path` instead of a
168 /// `rustc::hir::QPath`.
169 ///
170 /// # Examples
171 /// ```rust,ignore
172 /// match_qpath(path, &["std", "rt", "begin_unwind"])
173 /// ```
174 pub fn match_qpath(path: &QPath, segments: &[&str]) -> bool {
175     match *path {
176         QPath::Resolved(_, ref path) => match_path(path, segments),
177         QPath::TypeRelative(ref ty, ref segment) => match ty.node {
178             TyKind::Path(ref inner_path) => {
179                 !segments.is_empty()
180                     && match_qpath(inner_path, &segments[..(segments.len() - 1)])
181                     && segment.ident.name.as_str() == segments[segments.len() - 1]
182             },
183             _ => false,
184         },
185     }
186 }
187
188 /// Matches a `Path` against a slice of segment string literals.
189 ///
190 /// There is also `match_qpath` if you are dealing with a `rustc::hir::QPath` instead of a
191 /// `rustc::hir::Path`.
192 ///
193 /// # Examples
194 ///
195 /// ```rust,ignore
196 /// if match_path(&trait_ref.path, &paths::HASH) {
197 ///     // This is the `std::hash::Hash` trait.
198 /// }
199 ///
200 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
201 ///     // This is a `rustc::lint::Lint`.
202 /// }
203 /// ```
204 pub fn match_path(path: &Path, segments: &[&str]) -> bool {
205     path.segments
206         .iter()
207         .rev()
208         .zip(segments.iter().rev())
209         .all(|(a, b)| a.ident.name.as_str() == *b)
210 }
211
212 /// Matches a `Path` against a slice of segment string literals, e.g.
213 ///
214 /// # Examples
215 /// ```rust,ignore
216 /// match_qpath(path, &["std", "rt", "begin_unwind"])
217 /// ```
218 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
219     path.segments
220         .iter()
221         .rev()
222         .zip(segments.iter().rev())
223         .all(|(a, b)| a.ident.name.as_str() == *b)
224 }
225
226 /// Gets the definition associated to a path.
227 pub fn path_to_res(cx: &LateContext<'_, '_>, path: &[&str]) -> Option<(def::Res)> {
228     let crates = cx.tcx.crates();
229     let krate = crates
230         .iter()
231         .find(|&&krate| cx.tcx.crate_name(krate).as_str() == path[0]);
232     if let Some(krate) = krate {
233         let krate = DefId {
234             krate: *krate,
235             index: CRATE_DEF_INDEX,
236         };
237         let mut items = cx.tcx.item_children(krate);
238         let mut path_it = path.iter().skip(1).peekable();
239
240         loop {
241             let segment = match path_it.next() {
242                 Some(segment) => segment,
243                 None => return None,
244             };
245
246             let result = SmallVec::<[_; 8]>::new();
247             for item in mem::replace(&mut items, cx.tcx.arena.alloc_slice(&result)).iter() {
248                 if item.ident.name.as_str() == *segment {
249                     if path_it.peek().is_none() {
250                         return Some(item.res);
251                     }
252
253                     items = cx.tcx.item_children(item.res.def_id());
254                     break;
255                 }
256             }
257         }
258     } else {
259         None
260     }
261 }
262
263 /// Convenience function to get the `DefId` of a trait by path.
264 /// It could be a trait or trait alias.
265 pub fn get_trait_def_id(cx: &LateContext<'_, '_>, path: &[&str]) -> Option<DefId> {
266     let res = match path_to_res(cx, path) {
267         Some(res) => res,
268         None => return None,
269     };
270
271     match res {
272         Res::Def(DefKind::Trait, trait_id) | Res::Def(DefKind::TraitAlias, trait_id) => Some(trait_id),
273         Res::Err => unreachable!("this trait resolution is impossible: {:?}", &path),
274         _ => None,
275     }
276 }
277
278 /// Checks whether a type implements a trait.
279 /// See also `get_trait_def_id`.
280 pub fn implements_trait<'a, 'tcx>(
281     cx: &LateContext<'a, 'tcx>,
282     ty: Ty<'tcx>,
283     trait_id: DefId,
284     ty_params: &[Kind<'tcx>],
285 ) -> bool {
286     let ty = cx.tcx.erase_regions(&ty);
287     let obligation = cx.tcx.predicate_for_trait_def(
288         cx.param_env,
289         traits::ObligationCause::dummy(),
290         trait_id,
291         0,
292         ty,
293         ty_params,
294     );
295     cx.tcx
296         .infer_ctxt()
297         .enter(|infcx| infcx.predicate_must_hold_modulo_regions(&obligation))
298 }
299
300 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
301 ///
302 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
303 ///
304 /// ```rust
305 /// struct Point(isize, isize);
306 ///
307 /// impl std::ops::Add for Point {
308 ///     type Output = Self;
309 ///
310 ///     fn add(self, other: Self) -> Self {
311 ///         Point(0, 0)
312 ///     }
313 /// }
314 /// ```
315 pub fn trait_ref_of_method<'tcx>(cx: &LateContext<'_, 'tcx>, hir_id: HirId) -> Option<&'tcx TraitRef> {
316     // Get the implemented trait for the current function
317     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
318     if_chain! {
319         if parent_impl != hir::CRATE_HIR_ID;
320         if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
321         if let hir::ItemKind::Impl(_, _, _, _, trait_ref, _, _) = &item.node;
322         then { return trait_ref.as_ref(); }
323     }
324     None
325 }
326
327 /// Checks whether this type implements `Drop`.
328 pub fn has_drop<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'tcx>) -> bool {
329     match ty.ty_adt_def() {
330         Some(def) => def.has_dtor(cx.tcx),
331         _ => false,
332     }
333 }
334
335 /// Resolves the definition of a node from its `HirId`.
336 pub fn resolve_node(cx: &LateContext<'_, '_>, qpath: &QPath, id: HirId) -> Res {
337     cx.tables.qpath_res(qpath, id)
338 }
339
340 /// Returns the method names and argument list of nested method call expressions that make up
341 /// `expr`.
342 pub fn method_calls(expr: &Expr, max_depth: usize) -> (Vec<Symbol>, Vec<&[Expr]>, Vec<Span>) {
343     let mut method_names = Vec::with_capacity(max_depth);
344     let mut arg_lists = Vec::with_capacity(max_depth);
345     let mut spans = Vec::with_capacity(max_depth);
346
347     let mut current = expr;
348     for _ in 0..max_depth {
349         if let ExprKind::MethodCall(path, span, args) = &current.node {
350             if args.iter().any(|e| e.span.from_expansion()) {
351                 break;
352             }
353             method_names.push(path.ident.name);
354             arg_lists.push(&**args);
355             spans.push(*span);
356             current = &args[0];
357         } else {
358             break;
359         }
360     }
361
362     (method_names, arg_lists, spans)
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| e.span.from_expansion()) {
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(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, T: LintContext>(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, T: LintContext>(
468     cx: &T,
469     span: Span,
470     default: &'a str,
471     applicability: &mut Applicability,
472 ) -> Cow<'a, str> {
473     if *applicability != Applicability::Unspecified && span.from_expansion() {
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, T: LintContext>(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<T: LintContext>(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, T: LintContext>(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, T: LintContext>(
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<T: LintContext>(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, T: LintContext>(cx: &T, expr: &Expr, option: Option<String>, default: &'a str) -> Cow<'a, str> {
536     let code = snippet_block(cx, expr.span, default);
537     let string = option.unwrap_or_default();
538     if expr.span.from_expansion() {
539         Cow::Owned(format!("{{ {} }}", snippet_with_macro_callsite(cx, expr.span, default)))
540     } else if let ExprKind::Block(_, _) = expr.node {
541         Cow::Owned(format!("{}{}", code, string))
542     } else if string.is_empty() {
543         Cow::Owned(format!("{{ {} }}", code))
544     } else {
545         Cow::Owned(format!("{{\n{};\n{}\n}}", code, string))
546     }
547 }
548
549 /// Trim indentation from a multiline string with possibility of ignoring the
550 /// first line.
551 pub fn trim_multiline(s: Cow<'_, str>, ignore_first: bool) -> Cow<'_, str> {
552     let s_space = trim_multiline_inner(s, ignore_first, ' ');
553     let s_tab = trim_multiline_inner(s_space, ignore_first, '\t');
554     trim_multiline_inner(s_tab, ignore_first, ' ')
555 }
556
557 fn trim_multiline_inner(s: Cow<'_, str>, ignore_first: bool, ch: char) -> Cow<'_, str> {
558     let x = s
559         .lines()
560         .skip(ignore_first as usize)
561         .filter_map(|l| {
562             if l.is_empty() {
563                 None
564             } else {
565                 // ignore empty lines
566                 Some(l.char_indices().find(|&(_, x)| x != ch).unwrap_or((l.len(), ch)).0)
567             }
568         })
569         .min()
570         .unwrap_or(0);
571     if x > 0 {
572         Cow::Owned(
573             s.lines()
574                 .enumerate()
575                 .map(|(i, l)| {
576                     if (ignore_first && i == 0) || l.is_empty() {
577                         l
578                     } else {
579                         l.split_at(x).1
580                     }
581                 })
582                 .collect::<Vec<_>>()
583                 .join("\n"),
584         )
585     } else {
586         s
587     }
588 }
589
590 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
591 pub fn get_parent_expr<'c>(cx: &'c LateContext<'_, '_>, e: &Expr) -> Option<&'c Expr> {
592     let map = &cx.tcx.hir();
593     let hir_id = e.hir_id;
594     let parent_id = map.get_parent_node(hir_id);
595     if hir_id == parent_id {
596         return None;
597     }
598     map.find(parent_id).and_then(|node| {
599         if let Node::Expr(parent) = node {
600             Some(parent)
601         } else {
602             None
603         }
604     })
605 }
606
607 pub fn get_enclosing_block<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, hir_id: HirId) -> Option<&'tcx Block> {
608     let map = &cx.tcx.hir();
609     let enclosing_node = map
610         .get_enclosing_scope(hir_id)
611         .and_then(|enclosing_id| map.find(enclosing_id));
612     if let Some(node) = enclosing_node {
613         match node {
614             Node::Block(block) => Some(block),
615             Node::Item(&Item {
616                 node: ItemKind::Fn(_, _, _, eid),
617                 ..
618             })
619             | Node::ImplItem(&ImplItem {
620                 node: ImplItemKind::Method(_, eid),
621                 ..
622             }) => match cx.tcx.hir().body(eid).value.node {
623                 ExprKind::Block(ref block, _) => Some(block),
624                 _ => None,
625             },
626             _ => None,
627         }
628     } else {
629         None
630     }
631 }
632
633 /// Returns the base type for HIR references and pointers.
634 pub fn walk_ptrs_hir_ty(ty: &hir::Ty) -> &hir::Ty {
635     match ty.node {
636         TyKind::Ptr(ref mut_ty) | TyKind::Rptr(_, ref mut_ty) => walk_ptrs_hir_ty(&mut_ty.ty),
637         _ => ty,
638     }
639 }
640
641 /// Returns the base type for references and raw pointers.
642 pub fn walk_ptrs_ty(ty: Ty<'_>) -> Ty<'_> {
643     match ty.sty {
644         ty::Ref(_, ty, _) => walk_ptrs_ty(ty),
645         _ => ty,
646     }
647 }
648
649 /// Returns the base type for references and raw pointers, and count reference
650 /// depth.
651 pub fn walk_ptrs_ty_depth(ty: Ty<'_>) -> (Ty<'_>, usize) {
652     fn inner(ty: Ty<'_>, depth: usize) -> (Ty<'_>, usize) {
653         match ty.sty {
654             ty::Ref(_, ty, _) => inner(ty, depth + 1),
655             _ => (ty, depth),
656         }
657     }
658     inner(ty, 0)
659 }
660
661 /// Checks whether the given expression is a constant literal of the given value.
662 pub fn is_integer_literal(expr: &Expr, value: u128) -> bool {
663     // FIXME: use constant folding
664     if let ExprKind::Lit(ref spanned) = expr.node {
665         if let LitKind::Int(v, _) = spanned.node {
666             return v == value;
667         }
668     }
669     false
670 }
671
672 /// Returns `true` if the given `Expr` has been coerced before.
673 ///
674 /// Examples of coercions can be found in the Nomicon at
675 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
676 ///
677 /// See `rustc::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
678 /// information on adjustments and coercions.
679 pub fn is_adjusted(cx: &LateContext<'_, '_>, e: &Expr) -> bool {
680     cx.tables.adjustments().get(e.hir_id).is_some()
681 }
682
683 /// Returns the pre-expansion span if is this comes from an expansion of the
684 /// macro `name`.
685 /// See also `is_direct_expn_of`.
686 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
687     loop {
688         if span.from_expansion() {
689             let data = span.ctxt().outer_expn_data();
690             let mac_name = data.kind.descr();
691             let new_span = data.call_site;
692
693             if mac_name.as_str() == name {
694                 return Some(new_span);
695             } else {
696                 span = new_span;
697             }
698         } else {
699             return None;
700         }
701     }
702 }
703
704 /// Returns the pre-expansion span if the span directly comes from an expansion
705 /// of the macro `name`.
706 /// The difference with `is_expn_of` is that in
707 /// ```rust,ignore
708 /// foo!(bar!(42));
709 /// ```
710 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
711 /// `bar!` by
712 /// `is_direct_expn_of`.
713 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
714     if span.from_expansion() {
715         let data = span.ctxt().outer_expn_data();
716         let mac_name = data.kind.descr();
717         let new_span = data.call_site;
718
719         if mac_name.as_str() == name {
720             Some(new_span)
721         } else {
722             None
723         }
724     } else {
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(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::Or(ref pats) | 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.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: &Param) -> bool {
841     if let PatKind::Binding(.., name, _) = slf.pat.node {
842         name.name == kw::SelfLower
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 Param> {
861     (0..decl.inputs.len()).map(move |i| &body.params[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(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     // HACK: find a way to use symbols from clippy or just go fully to diagnostic items
1126     let syms: Vec<_> = syms.iter().map(|sym| Symbol::intern(sym)).collect();
1127     cx.match_def_path(did, &syms)
1128 }