2019-02-22 19:19:50 -06:00
|
|
|
//! calculate cognitive complexity and warn about overly complex functions
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2020-02-29 21:23:33 -06:00
|
|
|
use rustc_ast::ast::Attribute;
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc_hir::intravisit::{walk_expr, FnKind, NestedVisitorMap, Visitor};
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{Body, Expr, ExprKind, FnDecl, HirId};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::hir::map::Map;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::Span;
|
2019-12-30 18:17:56 -06:00
|
|
|
use rustc_span::BytePos;
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2020-04-12 08:23:54 -05:00
|
|
|
use crate::utils::{is_type_diagnostic_item, snippet_opt, span_lint_and_help, LimitStack};
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-02-22 19:19:50 -06:00
|
|
|
/// **What it does:** Checks for methods with high cognitive complexity.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2019-02-22 19:19:50 -06:00
|
|
|
/// **Why is this bad?** Methods of high cognitive complexity tend to be hard to
|
|
|
|
/// both read and maintain. Also LLVM will tend to optimize small methods better.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** Sometimes it's hard to find a way to reduce the
|
|
|
|
/// complexity.
|
|
|
|
///
|
|
|
|
/// **Example:** No. You'll see it when you get the warning.
|
2019-02-22 19:19:50 -06:00
|
|
|
pub COGNITIVE_COMPLEXITY,
|
2020-04-06 17:46:40 -05:00
|
|
|
nursery,
|
2016-08-06 03:18:36 -05:00
|
|
|
"functions that should be split up into multiple functions"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2019-02-22 19:19:50 -06:00
|
|
|
pub struct CognitiveComplexity {
|
2015-11-18 05:35:18 -06:00
|
|
|
limit: LimitStack,
|
|
|
|
}
|
|
|
|
|
2019-02-22 19:19:50 -06:00
|
|
|
impl CognitiveComplexity {
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2015-11-18 05:35:18 -06:00
|
|
|
pub fn new(limit: u64) -> Self {
|
2017-09-05 04:33:04 -05:00
|
|
|
Self {
|
|
|
|
limit: LimitStack::new(limit),
|
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl_lint_pass!(CognitiveComplexity => [COGNITIVE_COMPLEXITY]);
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2019-02-22 19:19:50 -06:00
|
|
|
impl CognitiveComplexity {
|
2019-12-21 20:07:53 -06:00
|
|
|
#[allow(clippy::cast_possible_truncation)]
|
|
|
|
fn check<'a, 'tcx>(
|
|
|
|
&mut self,
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
kind: FnKind<'tcx>,
|
2019-12-29 22:02:10 -06:00
|
|
|
decl: &'tcx FnDecl<'_>,
|
2019-12-22 08:42:41 -06:00
|
|
|
body: &'tcx Body<'_>,
|
2019-12-21 20:07:53 -06:00
|
|
|
body_span: Span,
|
|
|
|
) {
|
|
|
|
if body_span.from_expansion() {
|
2016-01-03 22:26:12 -06:00
|
|
|
return;
|
|
|
|
}
|
2016-04-05 10:29:14 -05:00
|
|
|
|
2017-03-04 20:10:46 -06:00
|
|
|
let expr = &body.value;
|
2019-09-08 05:39:42 -05:00
|
|
|
|
|
|
|
let mut helper = CCHelper { cc: 1, returns: 0 };
|
2016-11-16 14:57:56 -06:00
|
|
|
helper.visit_expr(expr);
|
2019-09-08 05:39:42 -05:00
|
|
|
let CCHelper { cc, returns } = helper;
|
2020-06-25 18:56:23 -05:00
|
|
|
let ret_ty = cx.tables().node_type(expr.hir_id);
|
2020-04-12 08:23:07 -05:00
|
|
|
let ret_adjust = if is_type_diagnostic_item(cx, ret_ty, sym!(result_type)) {
|
2016-04-23 07:30:05 -05:00
|
|
|
returns
|
|
|
|
} else {
|
2019-06-11 11:53:12 -05:00
|
|
|
#[allow(clippy::integer_division)]
|
|
|
|
(returns / 2)
|
2016-04-23 07:30:05 -05:00
|
|
|
};
|
2016-03-04 09:27:03 -06:00
|
|
|
|
2019-09-08 05:39:42 -05:00
|
|
|
let mut rust_cc = cc;
|
|
|
|
// prevent degenerate cases where unreachable code contains `return` statements
|
|
|
|
if rust_cc >= ret_adjust {
|
|
|
|
rust_cc -= ret_adjust;
|
|
|
|
}
|
2019-12-21 20:07:53 -06:00
|
|
|
|
2019-09-08 05:39:42 -05:00
|
|
|
if rust_cc > self.limit.limit() {
|
2019-12-21 20:07:53 -06:00
|
|
|
let fn_span = match kind {
|
|
|
|
FnKind::ItemFn(ident, _, _, _, _) | FnKind::Method(ident, _, _, _) => ident.span,
|
|
|
|
FnKind::Closure(_) => {
|
|
|
|
let header_span = body_span.with_hi(decl.output.span().lo());
|
|
|
|
let pos = snippet_opt(cx, header_span).and_then(|snip| {
|
|
|
|
let low_offset = snip.find('|')?;
|
|
|
|
let high_offset = 1 + snip.get(low_offset + 1..)?.find('|')?;
|
|
|
|
let low = header_span.lo() + BytePos(low_offset as u32);
|
|
|
|
let high = low + BytePos(high_offset as u32 + 1);
|
|
|
|
|
|
|
|
Some((low, high))
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Some((low, high)) = pos {
|
|
|
|
Span::new(low, high, header_span.ctxt())
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-01-26 19:56:22 -06:00
|
|
|
span_lint_and_help(
|
2017-08-11 07:11:46 -05:00
|
|
|
cx,
|
2019-09-08 05:39:42 -05:00
|
|
|
COGNITIVE_COMPLEXITY,
|
2019-12-21 20:07:53 -06:00
|
|
|
fn_span,
|
2019-09-08 05:39:42 -05:00
|
|
|
&format!(
|
|
|
|
"the function has a cognitive complexity of ({}/{})",
|
|
|
|
rust_cc,
|
|
|
|
self.limit.limit()
|
|
|
|
),
|
2020-04-18 05:28:29 -05:00
|
|
|
None,
|
2019-09-08 05:39:42 -05:00
|
|
|
"you could split it up into multiple smaller functions",
|
2017-08-11 07:11:46 -05:00
|
|
|
);
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 19:19:50 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CognitiveComplexity {
|
2017-01-13 10:04:56 -06:00
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
2019-12-21 20:07:53 -06:00
|
|
|
kind: FnKind<'tcx>,
|
2019-12-29 22:02:10 -06:00
|
|
|
decl: &'tcx FnDecl<'_>,
|
2019-12-22 08:42:41 -06:00
|
|
|
body: &'tcx Body<'_>,
|
2017-01-13 10:04:56 -06:00
|
|
|
span: Span,
|
2019-02-20 04:11:11 -06:00
|
|
|
hir_id: HirId,
|
2017-01-13 10:04:56 -06:00
|
|
|
) {
|
2019-07-05 22:52:51 -05:00
|
|
|
let def_id = cx.tcx.hir().local_def_id(hir_id);
|
2020-04-24 04:57:34 -05:00
|
|
|
if !cx.tcx.has_attr(def_id.to_def_id(), sym!(test)) {
|
2019-12-21 20:07:53 -06:00
|
|
|
self.check(cx, kind, decl, body, span);
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn enter_lint_attrs(&mut self, cx: &LateContext<'a, 'tcx>, attrs: &'tcx [Attribute]) {
|
2019-02-22 19:19:50 -06:00
|
|
|
self.limit.push_attrs(cx.sess(), attrs, "cognitive_complexity");
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
2016-12-07 06:13:40 -06:00
|
|
|
fn exit_lint_attrs(&mut self, cx: &LateContext<'a, 'tcx>, attrs: &'tcx [Attribute]) {
|
2019-02-22 19:19:50 -06:00
|
|
|
self.limit.pop_attrs(cx.sess(), attrs, "cognitive_complexity");
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 05:39:42 -05:00
|
|
|
struct CCHelper {
|
|
|
|
cc: u64,
|
2016-04-23 07:30:05 -05:00
|
|
|
returns: u64,
|
2016-03-04 09:27:03 -06:00
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2019-09-08 05:39:42 -05:00
|
|
|
impl<'tcx> Visitor<'tcx> for CCHelper {
|
2020-01-09 01:13:22 -06:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn visit_expr(&mut self, e: &'tcx Expr<'_>) {
|
2019-09-08 05:39:42 -05:00
|
|
|
walk_expr(self, e);
|
2019-09-27 10:16:06 -05:00
|
|
|
match e.kind {
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Match(_, ref arms, _) => {
|
2019-09-25 14:00:17 -05:00
|
|
|
if arms.len() > 1 {
|
2019-09-08 05:39:42 -05:00
|
|
|
self.cc += 1;
|
2016-03-08 08:10:02 -06:00
|
|
|
}
|
2019-09-08 05:39:42 -05:00
|
|
|
self.cc += arms.iter().filter(|arm| arm.guard.is_some()).count() as u64;
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Ret(_) => self.returns += 1,
|
2019-09-08 05:39:42 -05:00
|
|
|
_ => {},
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
2020-03-15 17:41:20 -05:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
2016-12-06 04:32:21 -06:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|