]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/infinite_iter.rs
Fix false positive with cast_sign_loss lint
[rust.git] / clippy_lints / src / infinite_iter.rs
1 use rustc::declare_lint_pass;
2 use rustc::hir::*;
3 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
4 use rustc_session::declare_tool_lint;
5
6 use crate::utils::{get_trait_def_id, higher, implements_trait, match_qpath, match_type, paths, span_lint};
7
8 declare_clippy_lint! {
9     /// **What it does:** Checks for iteration that is guaranteed to be infinite.
10     ///
11     /// **Why is this bad?** While there may be places where this is acceptable
12     /// (e.g., in event streams), in most cases this is simply an error.
13     ///
14     /// **Known problems:** None.
15     ///
16     /// **Example:**
17     /// ```no_run
18     /// use std::iter;
19     ///
20     /// iter::repeat(1_u8).collect::<Vec<_>>();
21     /// ```
22     pub INFINITE_ITER,
23     correctness,
24     "infinite iteration"
25 }
26
27 declare_clippy_lint! {
28     /// **What it does:** Checks for iteration that may be infinite.
29     ///
30     /// **Why is this bad?** While there may be places where this is acceptable
31     /// (e.g., in event streams), in most cases this is simply an error.
32     ///
33     /// **Known problems:** The code may have a condition to stop iteration, but
34     /// this lint is not clever enough to analyze it.
35     ///
36     /// **Example:**
37     /// ```rust
38     /// let infinite_iter = 0..;
39     /// [0..].iter().zip(infinite_iter.take_while(|x| *x > 5));
40     /// ```
41     pub MAYBE_INFINITE_ITER,
42     pedantic,
43     "possible infinite iteration"
44 }
45
46 declare_lint_pass!(InfiniteIter => [INFINITE_ITER, MAYBE_INFINITE_ITER]);
47
48 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InfiniteIter {
49     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
50         let (lint, msg) = match complete_infinite_iter(cx, expr) {
51             Infinite => (INFINITE_ITER, "infinite iteration detected"),
52             MaybeInfinite => (MAYBE_INFINITE_ITER, "possible infinite iteration detected"),
53             Finite => {
54                 return;
55             },
56         };
57         span_lint(cx, lint, expr.span, msg)
58     }
59 }
60
61 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
62 enum Finiteness {
63     Infinite,
64     MaybeInfinite,
65     Finite,
66 }
67
68 use self::Finiteness::{Finite, Infinite, MaybeInfinite};
69
70 impl Finiteness {
71     #[must_use]
72     fn and(self, b: Self) -> Self {
73         match (self, b) {
74             (Finite, _) | (_, Finite) => Finite,
75             (MaybeInfinite, _) | (_, MaybeInfinite) => MaybeInfinite,
76             _ => Infinite,
77         }
78     }
79
80     #[must_use]
81     fn or(self, b: Self) -> Self {
82         match (self, b) {
83             (Infinite, _) | (_, Infinite) => Infinite,
84             (MaybeInfinite, _) | (_, MaybeInfinite) => MaybeInfinite,
85             _ => Finite,
86         }
87     }
88 }
89
90 impl From<bool> for Finiteness {
91     #[must_use]
92     fn from(b: bool) -> Self {
93         if b {
94             Infinite
95         } else {
96             Finite
97         }
98     }
99 }
100
101 /// This tells us what to look for to know if the iterator returned by
102 /// this method is infinite
103 #[derive(Copy, Clone)]
104 enum Heuristic {
105     /// infinite no matter what
106     Always,
107     /// infinite if the first argument is
108     First,
109     /// infinite if any of the supplied arguments is
110     Any,
111     /// infinite if all of the supplied arguments are
112     All,
113 }
114
115 use self::Heuristic::{All, Always, Any, First};
116
117 /// a slice of (method name, number of args, heuristic, bounds) tuples
118 /// that will be used to determine whether the method in question
119 /// returns an infinite or possibly infinite iterator. The finiteness
120 /// is an upper bound, e.g., some methods can return a possibly
121 /// infinite iterator at worst, e.g., `take_while`.
122 const HEURISTICS: [(&str, usize, Heuristic, Finiteness); 19] = [
123     ("zip", 2, All, Infinite),
124     ("chain", 2, Any, Infinite),
125     ("cycle", 1, Always, Infinite),
126     ("map", 2, First, Infinite),
127     ("by_ref", 1, First, Infinite),
128     ("cloned", 1, First, Infinite),
129     ("rev", 1, First, Infinite),
130     ("inspect", 1, First, Infinite),
131     ("enumerate", 1, First, Infinite),
132     ("peekable", 2, First, Infinite),
133     ("fuse", 1, First, Infinite),
134     ("skip", 2, First, Infinite),
135     ("skip_while", 1, First, Infinite),
136     ("filter", 2, First, Infinite),
137     ("filter_map", 2, First, Infinite),
138     ("flat_map", 2, First, Infinite),
139     ("unzip", 1, First, Infinite),
140     ("take_while", 2, First, MaybeInfinite),
141     ("scan", 3, First, MaybeInfinite),
142 ];
143
144 fn is_infinite(cx: &LateContext<'_, '_>, expr: &Expr) -> Finiteness {
145     match expr.kind {
146         ExprKind::MethodCall(ref method, _, ref args) => {
147             for &(name, len, heuristic, cap) in &HEURISTICS {
148                 if method.ident.name.as_str() == name && args.len() == len {
149                     return (match heuristic {
150                         Always => Infinite,
151                         First => is_infinite(cx, &args[0]),
152                         Any => is_infinite(cx, &args[0]).or(is_infinite(cx, &args[1])),
153                         All => is_infinite(cx, &args[0]).and(is_infinite(cx, &args[1])),
154                     })
155                     .and(cap);
156                 }
157             }
158             if method.ident.name == sym!(flat_map) && args.len() == 2 {
159                 if let ExprKind::Closure(_, _, body_id, _, _) = args[1].kind {
160                     let body = cx.tcx.hir().body(body_id);
161                     return is_infinite(cx, &body.value);
162                 }
163             }
164             Finite
165         },
166         ExprKind::Block(ref block, _) => block.expr.as_ref().map_or(Finite, |e| is_infinite(cx, e)),
167         ExprKind::Box(ref e) | ExprKind::AddrOf(BorrowKind::Ref, _, ref e) => is_infinite(cx, e),
168         ExprKind::Call(ref path, _) => {
169             if let ExprKind::Path(ref qpath) = path.kind {
170                 match_qpath(qpath, &paths::REPEAT).into()
171             } else {
172                 Finite
173             }
174         },
175         ExprKind::Struct(..) => higher::range(cx, expr).map_or(false, |r| r.end.is_none()).into(),
176         _ => Finite,
177     }
178 }
179
180 /// the names and argument lengths of methods that *may* exhaust their
181 /// iterators
182 const POSSIBLY_COMPLETING_METHODS: [(&str, usize); 6] = [
183     ("find", 2),
184     ("rfind", 2),
185     ("position", 2),
186     ("rposition", 2),
187     ("any", 2),
188     ("all", 2),
189 ];
190
191 /// the names and argument lengths of methods that *always* exhaust
192 /// their iterators
193 const COMPLETING_METHODS: [(&str, usize); 12] = [
194     ("count", 1),
195     ("fold", 3),
196     ("for_each", 2),
197     ("partition", 2),
198     ("max", 1),
199     ("max_by", 2),
200     ("max_by_key", 2),
201     ("min", 1),
202     ("min_by", 2),
203     ("min_by_key", 2),
204     ("sum", 1),
205     ("product", 1),
206 ];
207
208 /// the paths of types that are known to be infinitely allocating
209 const INFINITE_COLLECTORS: [&[&str]; 8] = [
210     &paths::BINARY_HEAP,
211     &paths::BTREEMAP,
212     &paths::BTREESET,
213     &paths::HASHMAP,
214     &paths::HASHSET,
215     &paths::LINKED_LIST,
216     &paths::VEC,
217     &paths::VEC_DEQUE,
218 ];
219
220 fn complete_infinite_iter(cx: &LateContext<'_, '_>, expr: &Expr) -> Finiteness {
221     match expr.kind {
222         ExprKind::MethodCall(ref method, _, ref args) => {
223             for &(name, len) in &COMPLETING_METHODS {
224                 if method.ident.name.as_str() == name && args.len() == len {
225                     return is_infinite(cx, &args[0]);
226                 }
227             }
228             for &(name, len) in &POSSIBLY_COMPLETING_METHODS {
229                 if method.ident.name.as_str() == name && args.len() == len {
230                     return MaybeInfinite.and(is_infinite(cx, &args[0]));
231                 }
232             }
233             if method.ident.name == sym!(last) && args.len() == 1 {
234                 let not_double_ended = get_trait_def_id(cx, &paths::DOUBLE_ENDED_ITERATOR)
235                     .map_or(false, |id| !implements_trait(cx, cx.tables.expr_ty(&args[0]), id, &[]));
236                 if not_double_ended {
237                     return is_infinite(cx, &args[0]);
238                 }
239             } else if method.ident.name == sym!(collect) {
240                 let ty = cx.tables.expr_ty(expr);
241                 if INFINITE_COLLECTORS.iter().any(|path| match_type(cx, ty, path)) {
242                     return is_infinite(cx, &args[0]);
243                 }
244             }
245         },
246         ExprKind::Binary(op, ref l, ref r) => {
247             if op.node.is_comparison() {
248                 return is_infinite(cx, l).and(is_infinite(cx, r)).and(MaybeInfinite);
249             }
250         }, // TODO: ExprKind::Loop + Match
251         _ => (),
252     }
253     Finite
254 }