2015-11-18 05:35:18 -06:00
|
|
|
//! calculate cyclomatic complexity and warn about overly complex functions
|
|
|
|
|
2016-03-27 13:59:02 -05:00
|
|
|
use rustc::cfg::CFG;
|
2016-04-05 10:29:14 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2017-01-13 10:04:56 -06:00
|
|
|
use rustc::ty;
|
2016-12-06 04:32:21 -06:00
|
|
|
use rustc::hir::intravisit::{Visitor, walk_expr, NestedVisitorMap};
|
2017-01-13 10:04:56 -06:00
|
|
|
use syntax::ast::{Attribute, NodeId};
|
2016-02-24 10:38:57 -06:00
|
|
|
use syntax::codemap::Span;
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2016-04-23 07:30:05 -05:00
|
|
|
use utils::{in_macro, LimitStack, span_help_and_lint, paths, match_type};
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for methods with high cyclomatic complexity.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Methods of high cyclomatic complexity tend to be badly
|
|
|
|
/// readable. Also LLVM will usually optimize small methods better.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** Sometimes it's hard to find a way to reduce the complexity.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
|
|
|
/// **Example:** No. You'll see it when you get the warning.
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub CYCLOMATIC_COMPLEXITY,
|
|
|
|
Warn,
|
|
|
|
"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
|
|
|
|
|
|
|
pub struct CyclomaticComplexity {
|
|
|
|
limit: LimitStack,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CyclomaticComplexity {
|
|
|
|
pub fn new(limit: u64) -> Self {
|
2016-01-03 22:26:12 -06:00
|
|
|
CyclomaticComplexity { limit: LimitStack::new(limit) }
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for CyclomaticComplexity {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(CYCLOMATIC_COMPLEXITY)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CyclomaticComplexity {
|
2017-03-04 20:10:46 -06:00
|
|
|
fn check<'a, 'tcx: 'a>(&mut self, cx: &'a LateContext<'a, 'tcx>, body: &'tcx Body, span: Span) {
|
2017-03-31 17:14:04 -05:00
|
|
|
if in_macro(span) {
|
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 cfg = CFG::new(cx.tcx, body);
|
|
|
|
let expr = &body.value;
|
2015-11-18 05:35:18 -06:00
|
|
|
let n = cfg.graph.len_nodes() as u64;
|
|
|
|
let e = cfg.graph.len_edges() as u64;
|
2016-03-14 11:24:55 -05:00
|
|
|
if e + 2 < n {
|
|
|
|
// the function has unreachable code, other lints should catch this
|
|
|
|
return;
|
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
let cc = e + 2 - n;
|
2016-03-04 09:27:03 -06:00
|
|
|
let mut helper = CCHelper {
|
|
|
|
match_arms: 0,
|
|
|
|
divergence: 0,
|
2016-03-08 08:10:02 -06:00
|
|
|
short_circuits: 0,
|
2016-04-23 07:30:05 -05:00
|
|
|
returns: 0,
|
2016-12-06 04:32:21 -06:00
|
|
|
cx: cx,
|
2016-03-04 09:27:03 -06:00
|
|
|
};
|
2016-11-16 14:57:56 -06:00
|
|
|
helper.visit_expr(expr);
|
2016-04-23 07:30:05 -05:00
|
|
|
let CCHelper { match_arms, divergence, short_circuits, returns, .. } = helper;
|
2017-01-13 10:04:56 -06:00
|
|
|
let ret_ty = cx.tables.node_id_to_type(expr.id);
|
2016-04-23 07:30:05 -05:00
|
|
|
let ret_adjust = if match_type(cx, ret_ty, &paths::RESULT) {
|
|
|
|
returns
|
|
|
|
} else {
|
|
|
|
returns / 2
|
|
|
|
};
|
2016-03-04 09:27:03 -06:00
|
|
|
|
2016-06-05 18:42:39 -05:00
|
|
|
if cc + divergence < match_arms + short_circuits {
|
2016-04-23 07:30:05 -05:00
|
|
|
report_cc_bug(cx, cc, match_arms, divergence, short_circuits, ret_adjust, span);
|
2015-12-05 02:53:00 -06: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;
|
|
|
|
}
|
2015-12-05 02:53:00 -06:00
|
|
|
if rust_cc > self.limit.limit() {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_help_and_lint(cx,
|
|
|
|
CYCLOMATIC_COMPLEXITY,
|
|
|
|
span,
|
2016-02-05 14:54:29 -06:00
|
|
|
&format!("the function has a cyclomatic complexity of {}", rust_cc),
|
|
|
|
"you could split it up into multiple smaller functions");
|
2015-12-05 02:53:00 -06:00
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CyclomaticComplexity {
|
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,
|
|
|
|
node_id: NodeId
|
|
|
|
) {
|
2017-02-02 10:53:28 -06:00
|
|
|
let def_id = cx.tcx.hir.local_def_id(node_id);
|
2017-01-13 10:04:56 -06:00
|
|
|
if !cx.tcx.has_attr(def_id, "test") {
|
2017-03-04 20:10:46 -06:00
|
|
|
self.check(cx, 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]) {
|
2015-11-18 05:35:18 -06:00
|
|
|
self.limit.push_attrs(cx.sess(), attrs, "cyclomatic_complexity");
|
|
|
|
}
|
2016-12-07 06:13:40 -06:00
|
|
|
fn exit_lint_attrs(&mut self, cx: &LateContext<'a, 'tcx>, attrs: &'tcx [Attribute]) {
|
2015-11-18 05:35:18 -06:00
|
|
|
self.limit.pop_attrs(cx.sess(), attrs, "cyclomatic_complexity");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
struct CCHelper<'a, 'tcx: 'a> {
|
2016-03-04 09:27:03 -06:00
|
|
|
match_arms: u64,
|
|
|
|
divergence: u64,
|
2016-04-23 07:30:05 -05:00
|
|
|
returns: u64,
|
2016-03-08 08:10:02 -06:00
|
|
|
short_circuits: u64, // && and ||
|
2016-12-06 04:32:21 -06:00
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2016-03-04 09:27:03 -06:00
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for CCHelper<'a, 'tcx> {
|
|
|
|
fn visit_expr(&mut self, e: &'tcx Expr) {
|
2015-11-18 05:35:18 -06:00
|
|
|
match e.node {
|
|
|
|
ExprMatch(_, ref arms, _) => {
|
|
|
|
walk_expr(self, e);
|
|
|
|
let arms_n: u64 = arms.iter().map(|arm| arm.pats.len() as u64).sum();
|
2015-12-14 07:29:20 -06:00
|
|
|
if arms_n > 1 {
|
2016-03-04 09:27:03 -06:00
|
|
|
self.match_arms += arms_n - 2;
|
2015-12-14 07:29:20 -06:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-12-14 07:29:20 -06:00
|
|
|
ExprCall(ref callee, _) => {
|
|
|
|
walk_expr(self, e);
|
2017-01-13 10:04:56 -06:00
|
|
|
let ty = self.cx.tables.node_id_to_type(callee.id);
|
2016-03-10 11:13:49 -06:00
|
|
|
match ty.sty {
|
2016-04-14 13:14:03 -05:00
|
|
|
ty::TyFnDef(_, _, ty) |
|
2017-03-01 06:24:19 -06:00
|
|
|
ty::TyFnPtr(ty) if ty.skip_binder().output().sty == ty::TyNever => {
|
2016-03-04 09:27:03 -06:00
|
|
|
self.divergence += 1;
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-03-10 11:13:49 -06:00
|
|
|
_ => (),
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-03-10 11:13:49 -06:00
|
|
|
ExprClosure(..) => (),
|
2016-03-08 08:10:02 -06:00
|
|
|
ExprBinary(op, _, _) => {
|
|
|
|
walk_expr(self, e);
|
|
|
|
match op.node {
|
|
|
|
BiAnd | BiOr => self.short_circuits += 1,
|
2016-04-14 13:14:03 -05:00
|
|
|
_ => (),
|
2016-03-08 08:10:02 -06:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-04-23 07:30:05 -05:00
|
|
|
ExprRet(_) => self.returns += 1,
|
2015-11-18 05:35:18 -06:00
|
|
|
_ => walk_expr(self, e),
|
|
|
|
}
|
|
|
|
}
|
2016-12-06 04:32:21 -06:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
}
|
2015-12-05 02:53:00 -06:00
|
|
|
|
|
|
|
#[cfg(feature="debugging")]
|
2016-04-23 07:30:05 -05:00
|
|
|
fn report_cc_bug(_: &LateContext, cc: u64, narms: u64, div: u64, shorts: u64, returns: u64, span: Span) {
|
2016-04-03 10:16:53 -05:00
|
|
|
span_bug!(span,
|
|
|
|
"Clippy encountered a bug calculating cyclomatic complexity: cc = {}, arms = {}, \
|
2016-04-23 07:30:05 -05:00
|
|
|
div = {}, shorts = {}, returns = {}. Please file a bug report.",
|
2016-04-14 13:14:03 -05:00
|
|
|
cc,
|
|
|
|
narms,
|
|
|
|
div,
|
2016-04-23 07:30:05 -05:00
|
|
|
shorts,
|
|
|
|
returns);
|
2015-12-05 02:53:00 -06:00
|
|
|
}
|
|
|
|
#[cfg(not(feature="debugging"))]
|
2016-04-23 07:30:05 -05:00
|
|
|
fn report_cc_bug(cx: &LateContext, cc: u64, narms: u64, div: u64, shorts: u64, returns: u64, span: Span) {
|
2015-12-05 02:53:00 -06:00
|
|
|
if cx.current_level(CYCLOMATIC_COMPLEXITY) != Level::Allow {
|
2015-12-31 14:39:03 -06:00
|
|
|
cx.sess().span_note_without_error(span,
|
|
|
|
&format!("Clippy encountered a bug calculating cyclomatic complexity \
|
2016-06-05 18:42:39 -05:00
|
|
|
(hide this message with `#[allow(cyclomatic_complexity)]`): \
|
|
|
|
cc = {}, arms = {}, div = {}, shorts = {}, returns = {}. \
|
|
|
|
Please file a bug report.",
|
2016-01-03 22:26:12 -06:00
|
|
|
cc,
|
|
|
|
narms,
|
2016-03-08 08:10:02 -06:00
|
|
|
div,
|
2016-04-23 07:30:05 -05:00
|
|
|
shorts,
|
|
|
|
returns));
|
2015-12-05 02:53:00 -06:00
|
|
|
}
|
|
|
|
}
|