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