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