rust/clippy_lints/src/cognitive_complexity.rs

235 lines
7.0 KiB
Rust
Raw Normal View History

//! calculate cognitive complexity and warn about overly complex functions
use rustc::cfg::CFG;
use rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
use rustc::hir::*;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintContext, LintPass};
use rustc::ty;
2019-04-08 15:43:55 -05:00
use rustc::{declare_tool_lint, impl_lint_pass};
2019-02-20 04:11:11 -06:00
use syntax::ast::Attribute;
use syntax::source_map::Span;
2019-08-19 11:30:32 -05:00
use crate::utils::{is_allowed, match_type, paths, span_help_and_lint, LimitStack};
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for methods with high cognitive complexity.
///
/// **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.
///
/// **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.
pub COGNITIVE_COMPLEXITY,
2018-03-28 08:24:26 -05:00
complexity,
"functions that should be split up into multiple functions"
}
pub struct CognitiveComplexity {
limit: LimitStack,
}
impl CognitiveComplexity {
pub fn new(limit: u64) -> Self {
2017-09-05 04:33:04 -05:00
Self {
limit: LimitStack::new(limit),
}
}
}
2019-04-08 15:43:55 -05:00
impl_lint_pass!(CognitiveComplexity => [COGNITIVE_COMPLEXITY]);
impl CognitiveComplexity {
fn check<'a, 'tcx>(&mut self, cx: &'a LateContext<'a, 'tcx>, body: &'tcx Body, span: Span) {
2019-08-19 11:30:32 -05:00
if span.from_expansion() {
2016-01-03 22:26:12 -06:00
return;
}
let cfg = CFG::new(cx.tcx, body);
let expr = &body.value;
let n = cfg.graph.len_nodes() as u64;
let e = cfg.graph.len_edges() as u64;
if e + 2 < n {
// the function has unreachable code, other lints should catch this
return;
}
let cc = e + 2 - n;
let mut helper = CCHelper {
match_arms: 0,
divergence: 0,
short_circuits: 0,
2016-04-23 07:30:05 -05:00
returns: 0,
cx,
};
helper.visit_expr(expr);
2017-08-09 02:30:56 -05:00
let CCHelper {
match_arms,
divergence,
short_circuits,
returns,
..
} = helper;
2019-02-13 15:06:19 -06:00
let ret_ty = cx.tables.node_type(expr.hir_id);
2019-05-17 16:53:54 -05:00
let ret_adjust = if match_type(cx, ret_ty, &paths::RESULT) {
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
};
if cc + divergence < match_arms + short_circuits {
2017-08-11 07:11:46 -05:00
report_cc_bug(
cx,
cc,
match_arms,
divergence,
short_circuits,
ret_adjust,
span,
body.id().hir_id,
2017-08-11 07:11:46 -05:00
);
} else {
2016-04-23 07:30:05 -05:00
let mut rust_cc = cc + divergence - match_arms - short_circuits;
// prevent degenerate cases where unreachable code contains `return` statements
if rust_cc >= ret_adjust {
rust_cc -= ret_adjust;
}
if rust_cc > self.limit.limit() {
2017-08-09 02:30:56 -05:00
span_help_and_lint(
cx,
COGNITIVE_COMPLEXITY,
2017-08-09 02:30:56 -05:00
span,
&format!(
"the function has a cognitive complexity of ({}/{})",
rust_cc,
self.limit.limit()
),
2017-08-09 02:30:56 -05:00
"you could split it up into multiple smaller functions",
);
}
}
}
}
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>,
_: intravisit::FnKind<'tcx>,
_: &'tcx FnDecl,
body: &'tcx Body,
span: Span,
2019-02-20 04:11:11 -06:00
hir_id: HirId,
2017-01-13 10:04:56 -06:00
) {
let def_id = cx.tcx.hir().local_def_id(hir_id);
2019-05-17 16:53:54 -05:00
if !cx.tcx.has_attr(def_id, sym!(test)) {
self.check(cx, body, span);
}
}
fn enter_lint_attrs(&mut self, cx: &LateContext<'a, 'tcx>, attrs: &'tcx [Attribute]) {
self.limit.push_attrs(cx.sess(), attrs, "cognitive_complexity");
}
fn exit_lint_attrs(&mut self, cx: &LateContext<'a, 'tcx>, attrs: &'tcx [Attribute]) {
self.limit.pop_attrs(cx.sess(), attrs, "cognitive_complexity");
}
}
struct CCHelper<'a, 'tcx> {
match_arms: u64,
divergence: u64,
2016-04-23 07:30:05 -05:00
returns: u64,
short_circuits: u64, // && and ||
cx: &'a LateContext<'a, 'tcx>,
}
impl<'a, 'tcx> Visitor<'tcx> for CCHelper<'a, 'tcx> {
fn visit_expr(&mut self, e: &'tcx Expr) {
match e.node {
2018-07-12 02:30:57 -05:00
ExprKind::Match(_, ref arms, _) => {
walk_expr(self, e);
let arms_n: u64 = arms.iter().map(|arm| arm.pats.len() as u64).sum();
if arms_n > 1 {
self.match_arms += arms_n - 2;
}
2016-12-20 11:21:30 -06:00
},
2018-07-12 02:30:57 -05:00
ExprKind::Call(ref callee, _) => {
walk_expr(self, e);
2019-02-13 15:06:19 -06:00
let ty = self.cx.tables.node_type(callee.hir_id);
match ty.sty {
ty::FnDef(..) | ty::FnPtr(_) => {
let sig = ty.fn_sig(self.cx.tcx);
if sig.skip_binder().output().sty == ty::Never {
self.divergence += 1;
}
2016-12-20 11:21:30 -06:00
},
_ => (),
}
2016-12-20 11:21:30 -06:00
},
2018-07-12 02:30:57 -05:00
ExprKind::Closure(.., _) => (),
ExprKind::Binary(op, _, _) => {
walk_expr(self, e);
match op.node {
2018-07-12 02:50:09 -05:00
BinOpKind::And | BinOpKind::Or => self.short_circuits += 1,
2016-04-14 13:14:03 -05:00
_ => (),
}
2016-12-20 11:21:30 -06:00
},
2018-07-12 02:30:57 -05:00
ExprKind::Ret(_) => self.returns += 1,
_ => walk_expr(self, e),
}
}
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
NestedVisitorMap::None
}
}
2017-08-09 02:30:56 -05:00
#[cfg(feature = "debugging")]
2018-08-01 15:48:41 -05:00
#[allow(clippy::too_many_arguments)]
2018-11-27 14:14:15 -06:00
fn report_cc_bug(
_: &LateContext<'_, '_>,
cc: u64,
narms: u64,
div: u64,
shorts: u64,
returns: u64,
span: Span,
_: HirId,
2018-11-27 14:14:15 -06:00
) {
2017-08-09 02:30:56 -05:00
span_bug!(
span,
"Clippy encountered a bug calculating cognitive complexity: cc = {}, arms = {}, \
2017-09-05 04:33:04 -05:00
div = {}, shorts = {}, returns = {}. Please file a bug report.",
2017-08-09 02:30:56 -05:00
cc,
narms,
div,
shorts,
returns
);
}
2017-08-09 02:30:56 -05:00
#[cfg(not(feature = "debugging"))]
2018-08-01 15:48:41 -05:00
#[allow(clippy::too_many_arguments)]
2018-11-27 14:14:15 -06:00
fn report_cc_bug(
cx: &LateContext<'_, '_>,
cc: u64,
narms: u64,
div: u64,
shorts: u64,
returns: u64,
span: Span,
id: HirId,
2018-11-27 14:14:15 -06:00
) {
if !is_allowed(cx, COGNITIVE_COMPLEXITY, id) {
2017-08-09 02:30:56 -05:00
cx.sess().span_note_without_error(
span,
&format!(
"Clippy encountered a bug calculating cognitive complexity \
(hide this message with `#[allow(cognitive_complexity)]`): \
2017-09-05 04:33:04 -05:00
cc = {}, arms = {}, div = {}, shorts = {}, returns = {}. \
Please file a bug report.",
2018-11-27 14:14:15 -06:00
cc, narms, div, shorts, returns
2017-08-09 02:30:56 -05:00
),
);
}
}